@aerogel/core 0.0.0-next.f9394854509d71d644498ac087706a2f8f8eea1c → 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 +2418 -1771
- package/dist/aerogel-core.js +3266 -0
- package/dist/aerogel-core.js.map +1 -0
- package/package.json +30 -37
- package/src/bootstrap/bootstrap.test.ts +4 -7
- package/src/bootstrap/index.ts +21 -19
- package/src/bootstrap/options.ts +1 -1
- package/src/components/{AGAppLayout.vue → AppLayout.vue} +4 -4
- package/src/components/{AGAppModals.vue → AppModals.vue} +3 -4
- package/src/components/{AGAppOverlays.vue → AppOverlays.vue} +5 -10
- 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/{forms/AGHeadlessInputDescription.vue → HeadlessInputDescription.vue} +7 -8
- package/src/components/headless/{forms/AGHeadlessInputError.vue → HeadlessInputError.vue} +4 -8
- package/src/components/headless/{forms/AGHeadlessInputInput.vue → HeadlessInputInput.vue} +16 -25
- package/src/components/headless/{forms/AGHeadlessInputLabel.vue → HeadlessInputLabel.vue} +3 -7
- package/src/components/headless/{forms/AGHeadlessInputTextArea.vue → HeadlessInputTextArea.vue} +10 -13
- 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/{forms/AGHeadlessSelectError.vue → HeadlessSelectError.vue} +5 -6
- 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 -11
- 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} +34 -27
- package/src/components/ui/ErrorReportModalTitle.vue +24 -0
- package/src/components/{forms/AGForm.vue → ui/Form.vue} +4 -5
- 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/{lib/AGStartupCrash.vue → ui/StartupCrash.vue} +8 -8
- package/src/components/ui/Toast.vue +42 -0
- package/src/components/ui/index.ts +30 -0
- package/src/directives/index.ts +9 -5
- package/src/directives/measure.ts +1 -1
- package/src/errors/Errors.state.ts +1 -1
- package/src/errors/Errors.ts +17 -18
- package/src/errors/JobCancelledError.ts +3 -0
- package/src/errors/index.ts +9 -6
- package/src/errors/utils.ts +1 -1
- package/src/forms/{Form.test.ts → FormController.test.ts} +5 -4
- package/src/forms/{Form.ts → FormController.ts} +22 -19
- package/src/forms/composition.ts +4 -4
- package/src/forms/index.ts +2 -2
- package/src/forms/utils.ts +2 -2
- package/src/index.css +54 -0
- package/src/jobs/Job.ts +144 -2
- package/src/jobs/index.ts +4 -1
- package/src/jobs/listeners.ts +3 -0
- package/src/jobs/status.ts +4 -0
- package/src/lang/DefaultLangProvider.ts +7 -4
- package/src/lang/Lang.state.ts +1 -1
- package/src/lang/Lang.ts +1 -1
- 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 +1 -1
- package/src/plugins/index.ts +10 -7
- package/src/services/App.state.ts +23 -4
- package/src/services/App.ts +16 -3
- package/src/services/Cache.ts +1 -1
- package/src/services/Events.ts +15 -5
- package/src/services/Service.ts +116 -53
- package/src/services/Storage.ts +20 -0
- package/src/services/index.ts +14 -5
- package/src/services/utils.ts +18 -0
- package/src/testing/index.ts +4 -3
- package/src/testing/setup.ts +5 -13
- package/src/ui/UI.state.ts +12 -7
- package/src/ui/UI.ts +161 -78
- package/src/ui/index.ts +18 -18
- package/src/utils/classes.ts +49 -0
- package/src/utils/composition/events.ts +2 -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 -1
- 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 -136
- 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/histoire.config.ts +0 -7
- package/noeldemartin.config.js +0 -5
- package/postcss.config.js +0 -6
- package/src/assets/histoire.css +0 -3
- package/src/components/AGAppSnackbars.vue +0 -13
- package/src/components/composition.ts +0 -23
- package/src/components/constants.ts +0 -8
- package/src/components/forms/AGButton.vue +0 -44
- package/src/components/forms/AGCheckbox.vue +0 -41
- package/src/components/forms/AGInput.vue +0 -40
- package/src/components/forms/AGSelect.story.vue +0 -46
- package/src/components/forms/AGSelect.vue +0 -60
- package/src/components/forms/index.ts +0 -5
- package/src/components/headless/forms/AGHeadlessButton.ts +0 -3
- package/src/components/headless/forms/AGHeadlessButton.vue +0 -62
- package/src/components/headless/forms/AGHeadlessInput.ts +0 -34
- package/src/components/headless/forms/AGHeadlessInput.vue +0 -70
- package/src/components/headless/forms/AGHeadlessSelect.ts +0 -42
- package/src/components/headless/forms/AGHeadlessSelect.vue +0 -77
- package/src/components/headless/forms/AGHeadlessSelectButton.vue +0 -24
- package/src/components/headless/forms/AGHeadlessSelectLabel.vue +0 -24
- package/src/components/headless/forms/AGHeadlessSelectOption.ts +0 -4
- package/src/components/headless/forms/AGHeadlessSelectOption.vue +0 -39
- package/src/components/headless/forms/AGHeadlessSelectOptions.ts +0 -3
- package/src/components/headless/forms/composition.ts +0 -10
- package/src/components/headless/forms/index.ts +0 -18
- package/src/components/headless/modals/AGHeadlessModal.ts +0 -34
- package/src/components/headless/modals/AGHeadlessModal.vue +0 -86
- 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 -4
- package/src/components/headless/snackbars/AGHeadlessSnackbar.vue +0 -10
- package/src/components/headless/snackbars/index.ts +0 -40
- package/src/components/interfaces.ts +0 -24
- package/src/components/lib/AGErrorMessage.vue +0 -16
- package/src/components/lib/AGLink.vue +0 -9
- package/src/components/lib/AGMarkdown.vue +0 -41
- package/src/components/lib/AGMeasured.vue +0 -16
- package/src/components/lib/index.ts +0 -5
- package/src/components/modals/AGAlertModal.ts +0 -15
- package/src/components/modals/AGAlertModal.vue +0 -14
- package/src/components/modals/AGConfirmModal.ts +0 -33
- package/src/components/modals/AGConfirmModal.vue +0 -26
- package/src/components/modals/AGErrorReportModal.ts +0 -46
- package/src/components/modals/AGErrorReportModal.vue +0 -54
- package/src/components/modals/AGErrorReportModalTitle.vue +0 -25
- package/src/components/modals/AGLoadingModal.ts +0 -23
- package/src/components/modals/AGLoadingModal.vue +0 -15
- package/src/components/modals/AGModal.ts +0 -10
- package/src/components/modals/AGModal.vue +0 -39
- package/src/components/modals/AGModalContext.ts +0 -8
- package/src/components/modals/AGModalContext.vue +0 -22
- package/src/components/modals/AGModalTitle.vue +0 -9
- package/src/components/modals/AGPromptModal.ts +0 -36
- package/src/components/modals/AGPromptModal.vue +0 -34
- package/src/components/modals/index.ts +0 -17
- package/src/components/snackbars/AGSnackbar.vue +0 -36
- package/src/components/snackbars/index.ts +0 -3
- package/src/components/utils.ts +0 -10
- package/src/directives/initial-focus.ts +0 -11
- package/src/main.histoire.ts +0 -1
- package/src/utils/tailwindcss.test.ts +0 -26
- package/src/utils/tailwindcss.ts +0 -7
- package/tailwind.config.js +0 -4
- package/tsconfig.json +0 -11
- package/vite.config.ts +0 -17
- /package/src/{main.ts → index.ts} +0 -0
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -1,40 +1,1743 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { AcceptableValue } from 'reka-ui';
|
|
2
|
+
import { AllowedComponentProps } from 'vue';
|
|
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';
|
|
8
|
+
import { ComponentCustomProps } from 'vue';
|
|
9
|
+
import { ComponentInternalInstance } from 'vue';
|
|
10
|
+
import { ComponentOptionsBase } from 'vue';
|
|
4
11
|
import { ComponentOptionsMixin } from 'vue';
|
|
12
|
+
import { ComponentProvideOptions } from 'vue';
|
|
13
|
+
import { ComponentPublicInstance } from 'vue';
|
|
14
|
+
import { ComputedGetter } from 'vue';
|
|
5
15
|
import { ComputedRef } from 'vue';
|
|
6
16
|
import { Constructor } from '@noeldemartin/utils';
|
|
7
|
-
import
|
|
17
|
+
import { cva } from 'class-variance-authority';
|
|
18
|
+
import { DebuggerEvent } from 'vue';
|
|
19
|
+
import { DeepReadonly } from 'vue';
|
|
8
20
|
import { DefineComponent } from 'vue';
|
|
9
|
-
import
|
|
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
|
|
15
|
-
import
|
|
16
|
-
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';
|
|
17
41
|
import { MagicObject } from '@noeldemartin/utils';
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
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';
|
|
22
49
|
import { PromisedValue } from '@noeldemartin/utils';
|
|
23
50
|
import { PropType } from 'vue';
|
|
24
51
|
import { PublicProps } from 'vue';
|
|
25
52
|
import { Ref } from 'vue';
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
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';
|
|
32
60
|
import { VNode } from 'vue';
|
|
33
|
-
import
|
|
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
|
+
};
|
|
34
876
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
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>;
|
|
1495
|
+
|
|
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"]>;
|
|
38
1741
|
|
|
39
1742
|
export declare type AerogelGlobalEvents = Partial<{
|
|
40
1743
|
[Event in EventWithoutPayload]: () => unknown;
|
|
@@ -51,1258 +1754,20 @@ export declare interface AerogelTestingRuntime {
|
|
|
51
1754
|
on: (typeof Events)['on'];
|
|
52
1755
|
}
|
|
53
1756
|
|
|
54
|
-
export declare const
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
},
|
|
68
|
-
[key: string]: any;
|
|
69
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
70
|
-
title: {
|
|
71
|
-
type?: PropType<string | null> | undefined;
|
|
72
|
-
validator?(value: unknown): boolean;
|
|
73
|
-
} & {
|
|
74
|
-
default: string | (() => string | null) | null;
|
|
75
|
-
};
|
|
76
|
-
message: {
|
|
77
|
-
type?: PropType<string> | undefined;
|
|
78
|
-
validator?(value: unknown): boolean;
|
|
79
|
-
} & {
|
|
80
|
-
required: true;
|
|
81
|
-
};
|
|
82
|
-
}>>, {
|
|
83
|
-
title: string | null;
|
|
84
|
-
}, {}>;
|
|
85
|
-
|
|
86
|
-
export declare type AGAlertModalProps = ObjectWithoutEmpty<ExtractPropTypes<typeof alertModalProps>>;
|
|
87
|
-
|
|
88
|
-
export declare const AGAppLayout: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
89
|
-
[key: string]: any;
|
|
90
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
91
|
-
|
|
92
|
-
export declare const AGAppOverlays: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
93
|
-
[key: string]: any;
|
|
94
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
95
|
-
|
|
96
|
-
export declare const AGButton: DefineComponent< {
|
|
97
|
-
color: {
|
|
98
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
99
|
-
validator?(value: unknown): boolean;
|
|
100
|
-
} & {
|
|
101
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
102
|
-
};
|
|
103
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
104
|
-
[key: string]: any;
|
|
105
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
106
|
-
color: {
|
|
107
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
108
|
-
validator?(value: unknown): boolean;
|
|
109
|
-
} & {
|
|
110
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
111
|
-
};
|
|
112
|
-
}>>, {
|
|
113
|
-
color: "primary" | "secondary" | "danger" | "clear";
|
|
114
|
-
}, {}>;
|
|
115
|
-
|
|
116
|
-
export declare const AGCheckbox: DefineComponent< {
|
|
117
|
-
name: {
|
|
118
|
-
type?: PropType<string | null> | undefined;
|
|
119
|
-
validator?(value: unknown): boolean;
|
|
120
|
-
} & {
|
|
121
|
-
default: string | (() => string | null) | null;
|
|
122
|
-
};
|
|
123
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
124
|
-
[key: string]: any;
|
|
125
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
126
|
-
name: {
|
|
127
|
-
type?: PropType<string | null> | undefined;
|
|
128
|
-
validator?(value: unknown): boolean;
|
|
129
|
-
} & {
|
|
130
|
-
default: string | (() => string | null) | null;
|
|
131
|
-
};
|
|
132
|
-
}>> & {
|
|
133
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
134
|
-
}, {
|
|
135
|
-
name: string | null;
|
|
136
|
-
}, {}>;
|
|
137
|
-
|
|
138
|
-
export declare const AGConfirmModal: DefineComponent< {
|
|
139
|
-
title: {
|
|
140
|
-
type?: PropType<string | null> | undefined;
|
|
141
|
-
validator?(value: unknown): boolean;
|
|
142
|
-
} & {
|
|
143
|
-
default: string | (() => string | null) | null;
|
|
144
|
-
};
|
|
145
|
-
message: {
|
|
146
|
-
type?: PropType<string> | undefined;
|
|
147
|
-
validator?(value: unknown): boolean;
|
|
148
|
-
} & {
|
|
149
|
-
required: true;
|
|
150
|
-
};
|
|
151
|
-
acceptText: {
|
|
152
|
-
type?: PropType<string | null> | undefined;
|
|
153
|
-
validator?(value: unknown): boolean;
|
|
154
|
-
} & {
|
|
155
|
-
default: string | (() => string | null) | null;
|
|
156
|
-
};
|
|
157
|
-
acceptColor: {
|
|
158
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
159
|
-
validator?(value: unknown): boolean;
|
|
160
|
-
} & {
|
|
161
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
162
|
-
};
|
|
163
|
-
cancelText: {
|
|
164
|
-
type?: PropType<string | null> | undefined;
|
|
165
|
-
validator?(value: unknown): boolean;
|
|
166
|
-
} & {
|
|
167
|
-
default: string | (() => string | null) | null;
|
|
168
|
-
};
|
|
169
|
-
cancelColor: {
|
|
170
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
171
|
-
validator?(value: unknown): boolean;
|
|
172
|
-
} & {
|
|
173
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
174
|
-
};
|
|
175
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
176
|
-
[key: string]: any;
|
|
177
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
178
|
-
title: {
|
|
179
|
-
type?: PropType<string | null> | undefined;
|
|
180
|
-
validator?(value: unknown): boolean;
|
|
181
|
-
} & {
|
|
182
|
-
default: string | (() => string | null) | null;
|
|
183
|
-
};
|
|
184
|
-
message: {
|
|
185
|
-
type?: PropType<string> | undefined;
|
|
186
|
-
validator?(value: unknown): boolean;
|
|
187
|
-
} & {
|
|
188
|
-
required: true;
|
|
189
|
-
};
|
|
190
|
-
acceptText: {
|
|
191
|
-
type?: PropType<string | null> | undefined;
|
|
192
|
-
validator?(value: unknown): boolean;
|
|
193
|
-
} & {
|
|
194
|
-
default: string | (() => string | null) | null;
|
|
195
|
-
};
|
|
196
|
-
acceptColor: {
|
|
197
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
198
|
-
validator?(value: unknown): boolean;
|
|
199
|
-
} & {
|
|
200
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
201
|
-
};
|
|
202
|
-
cancelText: {
|
|
203
|
-
type?: PropType<string | null> | undefined;
|
|
204
|
-
validator?(value: unknown): boolean;
|
|
205
|
-
} & {
|
|
206
|
-
default: string | (() => string | null) | null;
|
|
207
|
-
};
|
|
208
|
-
cancelColor: {
|
|
209
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
210
|
-
validator?(value: unknown): boolean;
|
|
211
|
-
} & {
|
|
212
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
213
|
-
};
|
|
214
|
-
}>>, {
|
|
215
|
-
title: string | null;
|
|
216
|
-
acceptText: string | null;
|
|
217
|
-
acceptColor: "primary" | "secondary" | "danger" | "clear";
|
|
218
|
-
cancelText: string | null;
|
|
219
|
-
cancelColor: "primary" | "secondary" | "danger" | "clear";
|
|
220
|
-
}, {}>;
|
|
221
|
-
|
|
222
|
-
export declare type AGConfirmModalProps = SubPartial<ObjectWithoutEmpty<ExtractPropTypes<typeof confirmModalProps>>, 'acceptColor' | 'cancelColor'>;
|
|
223
|
-
|
|
224
|
-
export declare const AGErrorMessage: DefineComponent< {
|
|
225
|
-
error: {
|
|
226
|
-
type?: PropType<unknown> | undefined;
|
|
227
|
-
validator?(value: unknown): boolean;
|
|
228
|
-
} & {
|
|
229
|
-
required: true;
|
|
230
|
-
};
|
|
231
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
232
|
-
[key: string]: any;
|
|
233
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
234
|
-
error: {
|
|
235
|
-
type?: PropType<unknown> | undefined;
|
|
236
|
-
validator?(value: unknown): boolean;
|
|
237
|
-
} & {
|
|
238
|
-
required: true;
|
|
239
|
-
};
|
|
240
|
-
}>>, {}, {}>;
|
|
241
|
-
|
|
242
|
-
export declare const AGErrorReportModalButtons: DefineComponent< {
|
|
243
|
-
report: {
|
|
244
|
-
type?: PropType<ErrorReport> | undefined;
|
|
245
|
-
validator?(value: unknown): boolean;
|
|
246
|
-
} & {
|
|
247
|
-
required: true;
|
|
248
|
-
};
|
|
249
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
250
|
-
[key: string]: any;
|
|
251
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
252
|
-
report: {
|
|
253
|
-
type?: PropType<ErrorReport> | undefined;
|
|
254
|
-
validator?(value: unknown): boolean;
|
|
255
|
-
} & {
|
|
256
|
-
required: true;
|
|
257
|
-
};
|
|
258
|
-
}>>, {}, {}>;
|
|
259
|
-
|
|
260
|
-
export declare type AGErrorReportModalProps = ObjectWithoutEmpty<ExtractPropTypes<typeof errorReportModalProps>>;
|
|
261
|
-
|
|
262
|
-
export declare const AGErrorReportModalTitle: DefineComponent< {
|
|
263
|
-
report: {
|
|
264
|
-
type?: PropType<ErrorReport> | undefined;
|
|
265
|
-
validator?(value: unknown): boolean;
|
|
266
|
-
} & {
|
|
267
|
-
required: true;
|
|
268
|
-
};
|
|
269
|
-
currentReport: {
|
|
270
|
-
type?: PropType<number | null> | undefined;
|
|
271
|
-
validator?(value: unknown): boolean;
|
|
272
|
-
} & {
|
|
273
|
-
default: number | (() => number | null) | null;
|
|
274
|
-
};
|
|
275
|
-
totalReports: {
|
|
276
|
-
type?: PropType<number | null> | undefined;
|
|
277
|
-
validator?(value: unknown): boolean;
|
|
278
|
-
} & {
|
|
279
|
-
default: number | (() => number | null) | null;
|
|
280
|
-
};
|
|
281
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
282
|
-
[key: string]: any;
|
|
283
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
284
|
-
report: {
|
|
285
|
-
type?: PropType<ErrorReport> | undefined;
|
|
286
|
-
validator?(value: unknown): boolean;
|
|
287
|
-
} & {
|
|
288
|
-
required: true;
|
|
289
|
-
};
|
|
290
|
-
currentReport: {
|
|
291
|
-
type?: PropType<number | null> | undefined;
|
|
292
|
-
validator?(value: unknown): boolean;
|
|
293
|
-
} & {
|
|
294
|
-
default: number | (() => number | null) | null;
|
|
295
|
-
};
|
|
296
|
-
totalReports: {
|
|
297
|
-
type?: PropType<number | null> | undefined;
|
|
298
|
-
validator?(value: unknown): boolean;
|
|
299
|
-
} & {
|
|
300
|
-
default: number | (() => number | null) | null;
|
|
301
|
-
};
|
|
302
|
-
}>>, {
|
|
303
|
-
currentReport: number | null;
|
|
304
|
-
totalReports: number | null;
|
|
305
|
-
}, {}>;
|
|
306
|
-
|
|
307
|
-
export declare const AGForm: DefineComponent< {
|
|
308
|
-
form: {
|
|
309
|
-
type?: PropType<Form<FormFieldDefinitions> | null> | undefined;
|
|
310
|
-
validator?(value: unknown): boolean;
|
|
311
|
-
} & {
|
|
312
|
-
default: Form<FormFieldDefinitions> | (() => Form<FormFieldDefinitions> | null) | null;
|
|
313
|
-
};
|
|
314
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
315
|
-
[key: string]: any;
|
|
316
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "submit"[], "submit", PublicProps, Readonly<ExtractPropTypes< {
|
|
317
|
-
form: {
|
|
318
|
-
type?: PropType<Form<FormFieldDefinitions> | null> | undefined;
|
|
319
|
-
validator?(value: unknown): boolean;
|
|
320
|
-
} & {
|
|
321
|
-
default: Form<FormFieldDefinitions> | (() => Form<FormFieldDefinitions> | null) | null;
|
|
322
|
-
};
|
|
323
|
-
}>> & {
|
|
324
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
325
|
-
}, {
|
|
326
|
-
form: Form<FormFieldDefinitions> | null;
|
|
327
|
-
}, {}>;
|
|
328
|
-
|
|
329
|
-
export declare const AGHeadlessButton: DefineComponent< {
|
|
330
|
-
as: {
|
|
331
|
-
type?: PropType<Object | null> | undefined;
|
|
332
|
-
validator?(value: unknown): boolean;
|
|
333
|
-
} & {
|
|
334
|
-
default: Object | (() => Object | null) | null;
|
|
335
|
-
};
|
|
336
|
-
href: {
|
|
337
|
-
type?: PropType<string | null> | undefined;
|
|
338
|
-
validator?(value: unknown): boolean;
|
|
339
|
-
} & {
|
|
340
|
-
default: string | (() => string | null) | null;
|
|
341
|
-
};
|
|
342
|
-
url: {
|
|
343
|
-
type?: PropType<string | null> | undefined;
|
|
344
|
-
validator?(value: unknown): boolean;
|
|
345
|
-
} & {
|
|
346
|
-
default: string | (() => string | null) | null;
|
|
347
|
-
};
|
|
348
|
-
route: {
|
|
349
|
-
type?: PropType<string | null> | undefined;
|
|
350
|
-
validator?(value: unknown): boolean;
|
|
351
|
-
} & {
|
|
352
|
-
default: string | (() => string | null) | null;
|
|
353
|
-
};
|
|
354
|
-
routeParams: {
|
|
355
|
-
type?: PropType< {}> | undefined;
|
|
356
|
-
validator?(value: unknown): boolean;
|
|
357
|
-
} & {
|
|
358
|
-
default: {} | (() => {}) | null;
|
|
359
|
-
};
|
|
360
|
-
routeQuery: {
|
|
361
|
-
type?: PropType< {}> | undefined;
|
|
362
|
-
validator?(value: unknown): boolean;
|
|
363
|
-
} & {
|
|
364
|
-
default: {} | (() => {}) | null;
|
|
365
|
-
};
|
|
366
|
-
submit: {
|
|
367
|
-
type?: PropType<boolean> | undefined;
|
|
368
|
-
validator?(value: unknown): boolean;
|
|
369
|
-
} & {
|
|
370
|
-
default: boolean | (() => boolean) | null;
|
|
371
|
-
};
|
|
372
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
373
|
-
[key: string]: any;
|
|
374
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
375
|
-
as: {
|
|
376
|
-
type?: PropType<Object | null> | undefined;
|
|
377
|
-
validator?(value: unknown): boolean;
|
|
378
|
-
} & {
|
|
379
|
-
default: Object | (() => Object | null) | null;
|
|
380
|
-
};
|
|
381
|
-
href: {
|
|
382
|
-
type?: PropType<string | null> | undefined;
|
|
383
|
-
validator?(value: unknown): boolean;
|
|
384
|
-
} & {
|
|
385
|
-
default: string | (() => string | null) | null;
|
|
386
|
-
};
|
|
387
|
-
url: {
|
|
388
|
-
type?: PropType<string | null> | undefined;
|
|
389
|
-
validator?(value: unknown): boolean;
|
|
390
|
-
} & {
|
|
391
|
-
default: string | (() => string | null) | null;
|
|
392
|
-
};
|
|
393
|
-
route: {
|
|
394
|
-
type?: PropType<string | null> | undefined;
|
|
395
|
-
validator?(value: unknown): boolean;
|
|
396
|
-
} & {
|
|
397
|
-
default: string | (() => string | null) | null;
|
|
398
|
-
};
|
|
399
|
-
routeParams: {
|
|
400
|
-
type?: PropType< {}> | undefined;
|
|
401
|
-
validator?(value: unknown): boolean;
|
|
402
|
-
} & {
|
|
403
|
-
default: {} | (() => {}) | null;
|
|
404
|
-
};
|
|
405
|
-
routeQuery: {
|
|
406
|
-
type?: PropType< {}> | undefined;
|
|
407
|
-
validator?(value: unknown): boolean;
|
|
408
|
-
} & {
|
|
409
|
-
default: {} | (() => {}) | null;
|
|
410
|
-
};
|
|
411
|
-
submit: {
|
|
412
|
-
type?: PropType<boolean> | undefined;
|
|
413
|
-
validator?(value: unknown): boolean;
|
|
414
|
-
} & {
|
|
415
|
-
default: boolean | (() => boolean) | null;
|
|
416
|
-
};
|
|
417
|
-
}>>, {
|
|
418
|
-
as: Object | null;
|
|
419
|
-
href: string | null;
|
|
420
|
-
url: string | null;
|
|
421
|
-
route: string | null;
|
|
422
|
-
routeParams: {};
|
|
423
|
-
routeQuery: {};
|
|
424
|
-
submit: boolean;
|
|
425
|
-
}, {}>;
|
|
426
|
-
|
|
427
|
-
export declare const AGHeadlessInput: DefineComponent< {
|
|
428
|
-
name: {
|
|
429
|
-
type?: PropType<string | null> | undefined;
|
|
430
|
-
validator?(value: unknown): boolean;
|
|
431
|
-
} & {
|
|
432
|
-
default: string | (() => string | null) | null;
|
|
433
|
-
};
|
|
434
|
-
label: {
|
|
435
|
-
type?: PropType<string | null> | undefined;
|
|
436
|
-
validator?(value: unknown): boolean;
|
|
437
|
-
} & {
|
|
438
|
-
default: string | (() => string | null) | null;
|
|
439
|
-
};
|
|
440
|
-
description: {
|
|
441
|
-
type?: PropType<string | null> | undefined;
|
|
442
|
-
validator?(value: unknown): boolean;
|
|
443
|
-
} & {
|
|
444
|
-
default: string | (() => string | null) | null;
|
|
445
|
-
};
|
|
446
|
-
modelValue: {
|
|
447
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
448
|
-
validator?(value: unknown): boolean;
|
|
449
|
-
} & {
|
|
450
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
451
|
-
};
|
|
452
|
-
as: {
|
|
453
|
-
type?: PropType<string> | undefined;
|
|
454
|
-
validator?(value: unknown): boolean;
|
|
455
|
-
} & {
|
|
456
|
-
default: string | (() => string) | null;
|
|
457
|
-
};
|
|
458
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
459
|
-
[key: string]: any;
|
|
460
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
461
|
-
name: {
|
|
462
|
-
type?: PropType<string | null> | undefined;
|
|
463
|
-
validator?(value: unknown): boolean;
|
|
464
|
-
} & {
|
|
465
|
-
default: string | (() => string | null) | null;
|
|
466
|
-
};
|
|
467
|
-
label: {
|
|
468
|
-
type?: PropType<string | null> | undefined;
|
|
469
|
-
validator?(value: unknown): boolean;
|
|
470
|
-
} & {
|
|
471
|
-
default: string | (() => string | null) | null;
|
|
472
|
-
};
|
|
473
|
-
description: {
|
|
474
|
-
type?: PropType<string | null> | undefined;
|
|
475
|
-
validator?(value: unknown): boolean;
|
|
476
|
-
} & {
|
|
477
|
-
default: string | (() => string | null) | null;
|
|
478
|
-
};
|
|
479
|
-
modelValue: {
|
|
480
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
481
|
-
validator?(value: unknown): boolean;
|
|
482
|
-
} & {
|
|
483
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
484
|
-
};
|
|
485
|
-
as: {
|
|
486
|
-
type?: PropType<string> | undefined;
|
|
487
|
-
validator?(value: unknown): boolean;
|
|
488
|
-
} & {
|
|
489
|
-
default: string | (() => string) | null;
|
|
490
|
-
};
|
|
491
|
-
}>> & {
|
|
492
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
493
|
-
}, {
|
|
494
|
-
as: string;
|
|
495
|
-
name: string | null;
|
|
496
|
-
label: string | null;
|
|
497
|
-
description: string | null;
|
|
498
|
-
modelValue: FormFieldValue | null;
|
|
499
|
-
}, {}>;
|
|
500
|
-
|
|
501
|
-
export declare const AGHeadlessInputDescription: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
502
|
-
[key: string]: any;
|
|
503
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
504
|
-
|
|
505
|
-
export declare const AGHeadlessInputError: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
506
|
-
[key: string]: any;
|
|
507
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
508
|
-
|
|
509
|
-
export declare const AGHeadlessInputInput: DefineComponent< {
|
|
510
|
-
type: {
|
|
511
|
-
type?: PropType<string> | undefined;
|
|
512
|
-
validator?(value: unknown): boolean;
|
|
513
|
-
} & {
|
|
514
|
-
default: string | (() => string) | null;
|
|
515
|
-
};
|
|
516
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
517
|
-
[key: string]: any;
|
|
518
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
519
|
-
type: {
|
|
520
|
-
type?: PropType<string> | undefined;
|
|
521
|
-
validator?(value: unknown): boolean;
|
|
522
|
-
} & {
|
|
523
|
-
default: string | (() => string) | null;
|
|
524
|
-
};
|
|
525
|
-
}>>, {
|
|
526
|
-
type: string;
|
|
527
|
-
}, {}>;
|
|
528
|
-
|
|
529
|
-
export declare const AGHeadlessInputLabel: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
530
|
-
[key: string]: any;
|
|
531
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
532
|
-
|
|
533
|
-
export declare const AGHeadlessInputTextArea: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
534
|
-
[key: string]: any;
|
|
535
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
536
|
-
|
|
537
|
-
export declare const AGHeadlessModal: DefineComponent< {
|
|
538
|
-
cancellable: {
|
|
539
|
-
type?: PropType<boolean> | undefined;
|
|
540
|
-
validator?(value: unknown): boolean;
|
|
541
|
-
} & {
|
|
542
|
-
default: boolean | (() => boolean) | null;
|
|
543
|
-
};
|
|
544
|
-
title: {
|
|
545
|
-
type?: PropType<string | null> | undefined;
|
|
546
|
-
validator?(value: unknown): boolean;
|
|
547
|
-
} & {
|
|
548
|
-
default: string | (() => string | null) | null;
|
|
549
|
-
};
|
|
550
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
551
|
-
[key: string]: any;
|
|
552
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
553
|
-
cancellable: {
|
|
554
|
-
type?: PropType<boolean> | undefined;
|
|
555
|
-
validator?(value: unknown): boolean;
|
|
556
|
-
} & {
|
|
557
|
-
default: boolean | (() => boolean) | null;
|
|
558
|
-
};
|
|
559
|
-
title: {
|
|
560
|
-
type?: PropType<string | null> | undefined;
|
|
561
|
-
validator?(value: unknown): boolean;
|
|
562
|
-
} & {
|
|
563
|
-
default: string | (() => string | null) | null;
|
|
564
|
-
};
|
|
565
|
-
}>>, {
|
|
566
|
-
cancellable: boolean;
|
|
567
|
-
title: string | null;
|
|
568
|
-
}, {}>;
|
|
569
|
-
|
|
570
|
-
export declare const AGHeadlessModalPanel: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
571
|
-
[key: string]: any;
|
|
572
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
573
|
-
|
|
574
|
-
export declare const AGHeadlessModalTitle: DefineComponent< {
|
|
575
|
-
as: {
|
|
576
|
-
type?: PropType<string> | undefined;
|
|
577
|
-
validator?(value: unknown): boolean;
|
|
578
|
-
} & {
|
|
579
|
-
default: string | (() => string) | null;
|
|
580
|
-
};
|
|
581
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
582
|
-
[key: string]: any;
|
|
583
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
584
|
-
as: {
|
|
585
|
-
type?: PropType<string> | undefined;
|
|
586
|
-
validator?(value: unknown): boolean;
|
|
587
|
-
} & {
|
|
588
|
-
default: string | (() => string) | null;
|
|
589
|
-
};
|
|
590
|
-
}>>, {
|
|
591
|
-
as: string;
|
|
592
|
-
}, {}>;
|
|
593
|
-
|
|
594
|
-
export declare const AGHeadlessSelect: DefineComponent< {
|
|
595
|
-
name: {
|
|
596
|
-
type?: PropType<string | null> | undefined;
|
|
597
|
-
validator?(value: unknown): boolean;
|
|
598
|
-
} & {
|
|
599
|
-
default: string | (() => string | null) | null;
|
|
600
|
-
};
|
|
601
|
-
label: {
|
|
602
|
-
type?: PropType<string | null> | undefined;
|
|
603
|
-
validator?(value: unknown): boolean;
|
|
604
|
-
} & {
|
|
605
|
-
default: string | (() => string | null) | null;
|
|
606
|
-
};
|
|
607
|
-
options: {
|
|
608
|
-
type?: PropType<FormFieldValue[]> | undefined;
|
|
609
|
-
validator?(value: unknown): boolean;
|
|
610
|
-
} & {
|
|
611
|
-
required: true;
|
|
612
|
-
};
|
|
613
|
-
noSelectionText: {
|
|
614
|
-
type?: PropType<string | null> | undefined;
|
|
615
|
-
validator?(value: unknown): boolean;
|
|
616
|
-
} & {
|
|
617
|
-
default: string | (() => string | null) | null;
|
|
618
|
-
};
|
|
619
|
-
optionsText: {
|
|
620
|
-
type?: PropType<string | ((option: FormFieldValue) => string) | null> | undefined;
|
|
621
|
-
validator?(value: unknown): boolean;
|
|
622
|
-
} & {
|
|
623
|
-
default: string | ((option: FormFieldValue) => string) | (() => string | ((option: FormFieldValue) => string) | null) | null;
|
|
624
|
-
};
|
|
625
|
-
modelValue: {
|
|
626
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
627
|
-
validator?(value: unknown): boolean;
|
|
628
|
-
} & {
|
|
629
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
630
|
-
};
|
|
631
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
632
|
-
[key: string]: any;
|
|
633
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ["update:modelValue"], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
634
|
-
name: {
|
|
635
|
-
type?: PropType<string | null> | undefined;
|
|
636
|
-
validator?(value: unknown): boolean;
|
|
637
|
-
} & {
|
|
638
|
-
default: string | (() => string | null) | null;
|
|
639
|
-
};
|
|
640
|
-
label: {
|
|
641
|
-
type?: PropType<string | null> | undefined;
|
|
642
|
-
validator?(value: unknown): boolean;
|
|
643
|
-
} & {
|
|
644
|
-
default: string | (() => string | null) | null;
|
|
645
|
-
};
|
|
646
|
-
options: {
|
|
647
|
-
type?: PropType<FormFieldValue[]> | undefined;
|
|
648
|
-
validator?(value: unknown): boolean;
|
|
649
|
-
} & {
|
|
650
|
-
required: true;
|
|
651
|
-
};
|
|
652
|
-
noSelectionText: {
|
|
653
|
-
type?: PropType<string | null> | undefined;
|
|
654
|
-
validator?(value: unknown): boolean;
|
|
655
|
-
} & {
|
|
656
|
-
default: string | (() => string | null) | null;
|
|
657
|
-
};
|
|
658
|
-
optionsText: {
|
|
659
|
-
type?: PropType<string | ((option: FormFieldValue) => string) | null> | undefined;
|
|
660
|
-
validator?(value: unknown): boolean;
|
|
661
|
-
} & {
|
|
662
|
-
default: string | ((option: FormFieldValue) => string) | (() => string | ((option: FormFieldValue) => string) | null) | null;
|
|
663
|
-
};
|
|
664
|
-
modelValue: {
|
|
665
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
666
|
-
validator?(value: unknown): boolean;
|
|
667
|
-
} & {
|
|
668
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
669
|
-
};
|
|
670
|
-
}>> & {
|
|
671
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
672
|
-
}, {
|
|
673
|
-
modelValue: FormFieldValue | null;
|
|
674
|
-
name: string | null;
|
|
675
|
-
label: string | null;
|
|
676
|
-
noSelectionText: string | null;
|
|
677
|
-
optionsText: string | ((option: FormFieldValue) => string) | null;
|
|
678
|
-
}, {}>;
|
|
679
|
-
|
|
680
|
-
export declare const AGHeadlessSelectButton: DefineComponent< {
|
|
681
|
-
textClass: {
|
|
682
|
-
type?: PropType<string | null> | undefined;
|
|
683
|
-
validator?(value: unknown): boolean;
|
|
684
|
-
} & {
|
|
685
|
-
default: string | (() => string | null) | null;
|
|
686
|
-
};
|
|
687
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
688
|
-
[key: string]: any;
|
|
689
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
690
|
-
textClass: {
|
|
691
|
-
type?: PropType<string | null> | undefined;
|
|
692
|
-
validator?(value: unknown): boolean;
|
|
693
|
-
} & {
|
|
694
|
-
default: string | (() => string | null) | null;
|
|
695
|
-
};
|
|
696
|
-
}>>, {
|
|
697
|
-
textClass: string | null;
|
|
698
|
-
}, {}>;
|
|
699
|
-
|
|
700
|
-
export declare const AGHeadlessSelectError: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
701
|
-
[key: string]: any;
|
|
702
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
703
|
-
|
|
704
|
-
export declare const AGHeadlessSelectLabel: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
705
|
-
[key: string]: any;
|
|
706
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
707
|
-
|
|
708
|
-
export declare const AGHeadlessSelectOption: DefineComponent< {
|
|
709
|
-
value: {
|
|
710
|
-
type?: PropType<FormFieldValue> | undefined;
|
|
711
|
-
validator?(value: unknown): boolean;
|
|
712
|
-
} & {
|
|
713
|
-
required: true;
|
|
714
|
-
};
|
|
715
|
-
selectedClass: {
|
|
716
|
-
type?: PropType<string | null> | undefined;
|
|
717
|
-
validator?(value: unknown): boolean;
|
|
718
|
-
} & {
|
|
719
|
-
default: string | (() => string | null) | null;
|
|
720
|
-
};
|
|
721
|
-
unselectedClass: {
|
|
722
|
-
type?: PropType<string | null> | undefined;
|
|
723
|
-
validator?(value: unknown): boolean;
|
|
724
|
-
} & {
|
|
725
|
-
default: string | (() => string | null) | null;
|
|
726
|
-
};
|
|
727
|
-
activeClass: {
|
|
728
|
-
type?: PropType<string | null> | undefined;
|
|
729
|
-
validator?(value: unknown): boolean;
|
|
730
|
-
} & {
|
|
731
|
-
default: string | (() => string | null) | null;
|
|
732
|
-
};
|
|
733
|
-
inactiveClass: {
|
|
734
|
-
type?: PropType<string | null> | undefined;
|
|
735
|
-
validator?(value: unknown): boolean;
|
|
736
|
-
} & {
|
|
737
|
-
default: string | (() => string | null) | null;
|
|
738
|
-
};
|
|
739
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
740
|
-
[key: string]: any;
|
|
741
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
742
|
-
value: {
|
|
743
|
-
type?: PropType<FormFieldValue> | undefined;
|
|
744
|
-
validator?(value: unknown): boolean;
|
|
745
|
-
} & {
|
|
746
|
-
required: true;
|
|
747
|
-
};
|
|
748
|
-
selectedClass: {
|
|
749
|
-
type?: PropType<string | null> | undefined;
|
|
750
|
-
validator?(value: unknown): boolean;
|
|
751
|
-
} & {
|
|
752
|
-
default: string | (() => string | null) | null;
|
|
753
|
-
};
|
|
754
|
-
unselectedClass: {
|
|
755
|
-
type?: PropType<string | null> | undefined;
|
|
756
|
-
validator?(value: unknown): boolean;
|
|
757
|
-
} & {
|
|
758
|
-
default: string | (() => string | null) | null;
|
|
759
|
-
};
|
|
760
|
-
activeClass: {
|
|
761
|
-
type?: PropType<string | null> | undefined;
|
|
762
|
-
validator?(value: unknown): boolean;
|
|
763
|
-
} & {
|
|
764
|
-
default: string | (() => string | null) | null;
|
|
765
|
-
};
|
|
766
|
-
inactiveClass: {
|
|
767
|
-
type?: PropType<string | null> | undefined;
|
|
768
|
-
validator?(value: unknown): boolean;
|
|
769
|
-
} & {
|
|
770
|
-
default: string | (() => string | null) | null;
|
|
771
|
-
};
|
|
772
|
-
}>>, {
|
|
773
|
-
selectedClass: string | null;
|
|
774
|
-
unselectedClass: string | null;
|
|
775
|
-
activeClass: string | null;
|
|
776
|
-
inactiveClass: string | null;
|
|
777
|
-
}, {}>;
|
|
778
|
-
|
|
779
|
-
export { AGHeadlessSelectOptions }
|
|
780
|
-
|
|
781
|
-
export declare const AGHeadlessSnackbar: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
782
|
-
[key: string]: any;
|
|
783
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
784
|
-
|
|
785
|
-
export declare const AGInput: DefineComponent< {
|
|
786
|
-
name: {
|
|
787
|
-
type?: PropType<string | null> | undefined;
|
|
788
|
-
validator?(value: unknown): boolean;
|
|
789
|
-
} & {
|
|
790
|
-
default: string | (() => string | null) | null;
|
|
791
|
-
};
|
|
792
|
-
label: {
|
|
793
|
-
type?: PropType<string | null> | undefined;
|
|
794
|
-
validator?(value: unknown): boolean;
|
|
795
|
-
} & {
|
|
796
|
-
default: string | (() => string | null) | null;
|
|
797
|
-
};
|
|
798
|
-
description: {
|
|
799
|
-
type?: PropType<string | null> | undefined;
|
|
800
|
-
validator?(value: unknown): boolean;
|
|
801
|
-
} & {
|
|
802
|
-
default: string | (() => string | null) | null;
|
|
803
|
-
};
|
|
804
|
-
modelValue: {
|
|
805
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
806
|
-
validator?(value: unknown): boolean;
|
|
807
|
-
} & {
|
|
808
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
809
|
-
};
|
|
810
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
811
|
-
[key: string]: any;
|
|
812
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
813
|
-
name: {
|
|
814
|
-
type?: PropType<string | null> | undefined;
|
|
815
|
-
validator?(value: unknown): boolean;
|
|
816
|
-
} & {
|
|
817
|
-
default: string | (() => string | null) | null;
|
|
818
|
-
};
|
|
819
|
-
label: {
|
|
820
|
-
type?: PropType<string | null> | undefined;
|
|
821
|
-
validator?(value: unknown): boolean;
|
|
822
|
-
} & {
|
|
823
|
-
default: string | (() => string | null) | null;
|
|
824
|
-
};
|
|
825
|
-
description: {
|
|
826
|
-
type?: PropType<string | null> | undefined;
|
|
827
|
-
validator?(value: unknown): boolean;
|
|
828
|
-
} & {
|
|
829
|
-
default: string | (() => string | null) | null;
|
|
830
|
-
};
|
|
831
|
-
modelValue: {
|
|
832
|
-
type?: PropType<FormFieldValue | null> | undefined;
|
|
833
|
-
validator?(value: unknown): boolean;
|
|
834
|
-
} & {
|
|
835
|
-
default: FormFieldValue | (() => FormFieldValue | null) | null;
|
|
836
|
-
};
|
|
837
|
-
}>>, {
|
|
838
|
-
name: string | null;
|
|
839
|
-
label: string | null;
|
|
840
|
-
description: string | null;
|
|
841
|
-
modelValue: FormFieldValue | null;
|
|
842
|
-
}, {}>;
|
|
843
|
-
|
|
844
|
-
export declare const AGLink: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
845
|
-
[key: string]: any;
|
|
846
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
847
|
-
|
|
848
|
-
export declare const AGLoadingModal: DefineComponent< {
|
|
849
|
-
message: {
|
|
850
|
-
type?: PropType<string | null> | undefined;
|
|
851
|
-
validator?(value: unknown): boolean;
|
|
852
|
-
} & {
|
|
853
|
-
default: string | (() => string | null) | null;
|
|
854
|
-
};
|
|
855
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
856
|
-
[key: string]: any;
|
|
857
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
858
|
-
message: {
|
|
859
|
-
type?: PropType<string | null> | undefined;
|
|
860
|
-
validator?(value: unknown): boolean;
|
|
861
|
-
} & {
|
|
862
|
-
default: string | (() => string | null) | null;
|
|
863
|
-
};
|
|
864
|
-
}>>, {
|
|
865
|
-
message: string | null;
|
|
866
|
-
}, {}>;
|
|
867
|
-
|
|
868
|
-
export declare type AGLoadingModalProps = ObjectWithoutEmpty<ExtractPropTypes<typeof loadingModalProps>>;
|
|
869
|
-
|
|
870
|
-
export declare const AGMarkdown: DefineComponent< {
|
|
871
|
-
as: {
|
|
872
|
-
type?: PropType<string | null> | undefined;
|
|
873
|
-
validator?(value: unknown): boolean;
|
|
874
|
-
} & {
|
|
875
|
-
default: string | (() => string | null) | null;
|
|
876
|
-
};
|
|
877
|
-
inline: {
|
|
878
|
-
type?: PropType<boolean> | undefined;
|
|
879
|
-
validator?(value: unknown): boolean;
|
|
880
|
-
} & {
|
|
881
|
-
default: boolean | (() => boolean) | null;
|
|
882
|
-
};
|
|
883
|
-
langKey: {
|
|
884
|
-
type?: PropType<string | null> | undefined;
|
|
885
|
-
validator?(value: unknown): boolean;
|
|
886
|
-
} & {
|
|
887
|
-
default: string | (() => string | null) | null;
|
|
888
|
-
};
|
|
889
|
-
langParams: {
|
|
890
|
-
type?: PropType<number | Record<string, unknown> | null> | undefined;
|
|
891
|
-
validator?(value: unknown): boolean;
|
|
892
|
-
} & {
|
|
893
|
-
default: number | Record<string, unknown> | (() => number | Record<string, unknown> | null) | null;
|
|
894
|
-
};
|
|
895
|
-
text: {
|
|
896
|
-
type?: PropType<string | null> | undefined;
|
|
897
|
-
validator?(value: unknown): boolean;
|
|
898
|
-
} & {
|
|
899
|
-
default: string | (() => string | null) | null;
|
|
900
|
-
};
|
|
901
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
902
|
-
[key: string]: any;
|
|
903
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
904
|
-
as: {
|
|
905
|
-
type?: PropType<string | null> | undefined;
|
|
906
|
-
validator?(value: unknown): boolean;
|
|
907
|
-
} & {
|
|
908
|
-
default: string | (() => string | null) | null;
|
|
909
|
-
};
|
|
910
|
-
inline: {
|
|
911
|
-
type?: PropType<boolean> | undefined;
|
|
912
|
-
validator?(value: unknown): boolean;
|
|
913
|
-
} & {
|
|
914
|
-
default: boolean | (() => boolean) | null;
|
|
915
|
-
};
|
|
916
|
-
langKey: {
|
|
917
|
-
type?: PropType<string | null> | undefined;
|
|
918
|
-
validator?(value: unknown): boolean;
|
|
919
|
-
} & {
|
|
920
|
-
default: string | (() => string | null) | null;
|
|
921
|
-
};
|
|
922
|
-
langParams: {
|
|
923
|
-
type?: PropType<number | Record<string, unknown> | null> | undefined;
|
|
924
|
-
validator?(value: unknown): boolean;
|
|
925
|
-
} & {
|
|
926
|
-
default: number | Record<string, unknown> | (() => number | Record<string, unknown> | null) | null;
|
|
927
|
-
};
|
|
928
|
-
text: {
|
|
929
|
-
type?: PropType<string | null> | undefined;
|
|
930
|
-
validator?(value: unknown): boolean;
|
|
931
|
-
} & {
|
|
932
|
-
default: string | (() => string | null) | null;
|
|
933
|
-
};
|
|
934
|
-
}>>, {
|
|
935
|
-
as: string | null;
|
|
936
|
-
inline: boolean;
|
|
937
|
-
langKey: string | null;
|
|
938
|
-
langParams: number | Record<string, unknown> | null;
|
|
939
|
-
text: string | null;
|
|
940
|
-
}, {}>;
|
|
941
|
-
|
|
942
|
-
export declare const AGMeasured: DefineComponent< {
|
|
943
|
-
as: {
|
|
944
|
-
type?: PropType<string> | undefined;
|
|
945
|
-
validator?(value: unknown): boolean;
|
|
946
|
-
} & {
|
|
947
|
-
default: string | (() => string) | null;
|
|
948
|
-
};
|
|
949
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
950
|
-
[key: string]: any;
|
|
951
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
952
|
-
as: {
|
|
953
|
-
type?: PropType<string> | undefined;
|
|
954
|
-
validator?(value: unknown): boolean;
|
|
955
|
-
} & {
|
|
956
|
-
default: string | (() => string) | null;
|
|
957
|
-
};
|
|
958
|
-
}>>, {
|
|
959
|
-
as: string;
|
|
960
|
-
}, {}>;
|
|
961
|
-
|
|
962
|
-
export declare const AGModal: DefineComponent< {
|
|
963
|
-
cancellable: {
|
|
964
|
-
type?: PropType<boolean> | undefined;
|
|
965
|
-
validator?(value: unknown): boolean;
|
|
966
|
-
} & {
|
|
967
|
-
default: boolean | (() => boolean) | null;
|
|
968
|
-
};
|
|
969
|
-
title: {
|
|
970
|
-
type?: PropType<string | null> | undefined;
|
|
971
|
-
validator?(value: unknown): boolean;
|
|
972
|
-
} & {
|
|
973
|
-
default: string | (() => string | null) | null;
|
|
974
|
-
};
|
|
975
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
976
|
-
[key: string]: any;
|
|
977
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
978
|
-
cancellable: {
|
|
979
|
-
type?: PropType<boolean> | undefined;
|
|
980
|
-
validator?(value: unknown): boolean;
|
|
981
|
-
} & {
|
|
982
|
-
default: boolean | (() => boolean) | null;
|
|
983
|
-
};
|
|
984
|
-
title: {
|
|
985
|
-
type?: PropType<string | null> | undefined;
|
|
986
|
-
validator?(value: unknown): boolean;
|
|
987
|
-
} & {
|
|
988
|
-
default: string | (() => string | null) | null;
|
|
989
|
-
};
|
|
990
|
-
}>>, {
|
|
991
|
-
cancellable: boolean;
|
|
992
|
-
title: string | null;
|
|
993
|
-
}, {}>;
|
|
994
|
-
|
|
995
|
-
export declare const AGModalContext: DefineComponent< {
|
|
996
|
-
modal: {
|
|
997
|
-
type?: PropType<Modal<unknown>> | undefined;
|
|
998
|
-
validator?(value: unknown): boolean;
|
|
999
|
-
} & {
|
|
1000
|
-
required: true;
|
|
1001
|
-
};
|
|
1002
|
-
childIndex: {
|
|
1003
|
-
type?: PropType<number> | undefined;
|
|
1004
|
-
validator?(value: unknown): boolean;
|
|
1005
|
-
} & {
|
|
1006
|
-
required: true;
|
|
1007
|
-
};
|
|
1008
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1009
|
-
[key: string]: any;
|
|
1010
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1011
|
-
modal: {
|
|
1012
|
-
type?: PropType<Modal<unknown>> | undefined;
|
|
1013
|
-
validator?(value: unknown): boolean;
|
|
1014
|
-
} & {
|
|
1015
|
-
required: true;
|
|
1016
|
-
};
|
|
1017
|
-
childIndex: {
|
|
1018
|
-
type?: PropType<number> | undefined;
|
|
1019
|
-
validator?(value: unknown): boolean;
|
|
1020
|
-
} & {
|
|
1021
|
-
required: true;
|
|
1022
|
-
};
|
|
1023
|
-
}>>, {}, {}>;
|
|
1024
|
-
|
|
1025
|
-
export declare const AGModalTitle: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1026
|
-
[key: string]: any;
|
|
1027
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
1028
|
-
|
|
1029
|
-
export declare const AGPromptModal: DefineComponent< {
|
|
1030
|
-
title: {
|
|
1031
|
-
type?: PropType<string | null> | undefined;
|
|
1032
|
-
validator?(value: unknown): boolean;
|
|
1033
|
-
} & {
|
|
1034
|
-
default: string | (() => string | null) | null;
|
|
1035
|
-
};
|
|
1036
|
-
message: {
|
|
1037
|
-
type?: PropType<string> | undefined;
|
|
1038
|
-
validator?(value: unknown): boolean;
|
|
1039
|
-
} & {
|
|
1040
|
-
required: true;
|
|
1041
|
-
};
|
|
1042
|
-
label: {
|
|
1043
|
-
type?: PropType<string | null> | undefined;
|
|
1044
|
-
validator?(value: unknown): boolean;
|
|
1045
|
-
} & {
|
|
1046
|
-
default: string | (() => string | null) | null;
|
|
1047
|
-
};
|
|
1048
|
-
defaultValue: {
|
|
1049
|
-
type?: PropType<string | null> | undefined;
|
|
1050
|
-
validator?(value: unknown): boolean;
|
|
1051
|
-
} & {
|
|
1052
|
-
default: string | (() => string | null) | null;
|
|
1053
|
-
};
|
|
1054
|
-
placeholder: {
|
|
1055
|
-
type?: PropType<string | null> | undefined;
|
|
1056
|
-
validator?(value: unknown): boolean;
|
|
1057
|
-
} & {
|
|
1058
|
-
default: string | (() => string | null) | null;
|
|
1059
|
-
};
|
|
1060
|
-
acceptText: {
|
|
1061
|
-
type?: PropType<string | null> | undefined;
|
|
1062
|
-
validator?(value: unknown): boolean;
|
|
1063
|
-
} & {
|
|
1064
|
-
default: string | (() => string | null) | null;
|
|
1065
|
-
};
|
|
1066
|
-
acceptColor: {
|
|
1067
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1068
|
-
validator?(value: unknown): boolean;
|
|
1069
|
-
} & {
|
|
1070
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1071
|
-
};
|
|
1072
|
-
cancelText: {
|
|
1073
|
-
type?: PropType<string | null> | undefined;
|
|
1074
|
-
validator?(value: unknown): boolean;
|
|
1075
|
-
} & {
|
|
1076
|
-
default: string | (() => string | null) | null;
|
|
1077
|
-
};
|
|
1078
|
-
cancelColor: {
|
|
1079
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1080
|
-
validator?(value: unknown): boolean;
|
|
1081
|
-
} & {
|
|
1082
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1083
|
-
};
|
|
1084
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1085
|
-
[key: string]: any;
|
|
1086
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1087
|
-
title: {
|
|
1088
|
-
type?: PropType<string | null> | undefined;
|
|
1089
|
-
validator?(value: unknown): boolean;
|
|
1090
|
-
} & {
|
|
1091
|
-
default: string | (() => string | null) | null;
|
|
1092
|
-
};
|
|
1093
|
-
message: {
|
|
1094
|
-
type?: PropType<string> | undefined;
|
|
1095
|
-
validator?(value: unknown): boolean;
|
|
1096
|
-
} & {
|
|
1097
|
-
required: true;
|
|
1098
|
-
};
|
|
1099
|
-
label: {
|
|
1100
|
-
type?: PropType<string | null> | undefined;
|
|
1101
|
-
validator?(value: unknown): boolean;
|
|
1102
|
-
} & {
|
|
1103
|
-
default: string | (() => string | null) | null;
|
|
1104
|
-
};
|
|
1105
|
-
defaultValue: {
|
|
1106
|
-
type?: PropType<string | null> | undefined;
|
|
1107
|
-
validator?(value: unknown): boolean;
|
|
1108
|
-
} & {
|
|
1109
|
-
default: string | (() => string | null) | null;
|
|
1110
|
-
};
|
|
1111
|
-
placeholder: {
|
|
1112
|
-
type?: PropType<string | null> | undefined;
|
|
1113
|
-
validator?(value: unknown): boolean;
|
|
1114
|
-
} & {
|
|
1115
|
-
default: string | (() => string | null) | null;
|
|
1116
|
-
};
|
|
1117
|
-
acceptText: {
|
|
1118
|
-
type?: PropType<string | null> | undefined;
|
|
1119
|
-
validator?(value: unknown): boolean;
|
|
1120
|
-
} & {
|
|
1121
|
-
default: string | (() => string | null) | null;
|
|
1122
|
-
};
|
|
1123
|
-
acceptColor: {
|
|
1124
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1125
|
-
validator?(value: unknown): boolean;
|
|
1126
|
-
} & {
|
|
1127
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1128
|
-
};
|
|
1129
|
-
cancelText: {
|
|
1130
|
-
type?: PropType<string | null> | undefined;
|
|
1131
|
-
validator?(value: unknown): boolean;
|
|
1132
|
-
} & {
|
|
1133
|
-
default: string | (() => string | null) | null;
|
|
1134
|
-
};
|
|
1135
|
-
cancelColor: {
|
|
1136
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1137
|
-
validator?(value: unknown): boolean;
|
|
1138
|
-
} & {
|
|
1139
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1140
|
-
};
|
|
1141
|
-
}>>, {
|
|
1142
|
-
title: string | null;
|
|
1143
|
-
label: string | null;
|
|
1144
|
-
defaultValue: string | null;
|
|
1145
|
-
placeholder: string | null;
|
|
1146
|
-
acceptText: string | null;
|
|
1147
|
-
acceptColor: "primary" | "secondary" | "danger" | "clear";
|
|
1148
|
-
cancelText: string | null;
|
|
1149
|
-
cancelColor: "primary" | "secondary" | "danger" | "clear";
|
|
1150
|
-
}, {}>;
|
|
1151
|
-
|
|
1152
|
-
export declare type AGPromptModalProps = SubPartial<ObjectWithoutEmpty<ExtractPropTypes<typeof promptModalProps>>, 'acceptColor' | 'cancelColor'>;
|
|
1153
|
-
|
|
1154
|
-
export declare const AGSelect: DefineComponent< {
|
|
1155
|
-
name: {
|
|
1156
|
-
type?: PropType<string | null> | undefined;
|
|
1157
|
-
validator?(value: unknown): boolean;
|
|
1158
|
-
} & {
|
|
1159
|
-
default: string | (() => string | null) | null;
|
|
1160
|
-
};
|
|
1161
|
-
label: {
|
|
1162
|
-
type?: PropType<string | null> | undefined;
|
|
1163
|
-
validator?(value: unknown): boolean;
|
|
1164
|
-
} & {
|
|
1165
|
-
default: string | (() => string | null) | null;
|
|
1166
|
-
};
|
|
1167
|
-
options: {
|
|
1168
|
-
type?: PropType<FormFieldValue[]> | undefined;
|
|
1169
|
-
validator?(value: unknown): boolean;
|
|
1170
|
-
} & {
|
|
1171
|
-
required: true;
|
|
1172
|
-
};
|
|
1173
|
-
noSelectionText: {
|
|
1174
|
-
type?: PropType<string | null> | undefined;
|
|
1175
|
-
validator?(value: unknown): boolean;
|
|
1176
|
-
} & {
|
|
1177
|
-
default: string | (() => string | null) | null;
|
|
1178
|
-
};
|
|
1179
|
-
optionsText: {
|
|
1180
|
-
type?: PropType<string | ((option: FormFieldValue) => string) | null> | undefined;
|
|
1181
|
-
validator?(value: unknown): boolean;
|
|
1182
|
-
} & {
|
|
1183
|
-
default: string | ((option: FormFieldValue) => string) | (() => string | ((option: FormFieldValue) => string) | null) | null;
|
|
1184
|
-
};
|
|
1185
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1186
|
-
[key: string]: any;
|
|
1187
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ["update:modelValue"], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1188
|
-
name: {
|
|
1189
|
-
type?: PropType<string | null> | undefined;
|
|
1190
|
-
validator?(value: unknown): boolean;
|
|
1191
|
-
} & {
|
|
1192
|
-
default: string | (() => string | null) | null;
|
|
1193
|
-
};
|
|
1194
|
-
label: {
|
|
1195
|
-
type?: PropType<string | null> | undefined;
|
|
1196
|
-
validator?(value: unknown): boolean;
|
|
1197
|
-
} & {
|
|
1198
|
-
default: string | (() => string | null) | null;
|
|
1199
|
-
};
|
|
1200
|
-
options: {
|
|
1201
|
-
type?: PropType<FormFieldValue[]> | undefined;
|
|
1202
|
-
validator?(value: unknown): boolean;
|
|
1203
|
-
} & {
|
|
1204
|
-
required: true;
|
|
1205
|
-
};
|
|
1206
|
-
noSelectionText: {
|
|
1207
|
-
type?: PropType<string | null> | undefined;
|
|
1208
|
-
validator?(value: unknown): boolean;
|
|
1209
|
-
} & {
|
|
1210
|
-
default: string | (() => string | null) | null;
|
|
1211
|
-
};
|
|
1212
|
-
optionsText: {
|
|
1213
|
-
type?: PropType<string | ((option: FormFieldValue) => string) | null> | undefined;
|
|
1214
|
-
validator?(value: unknown): boolean;
|
|
1215
|
-
} & {
|
|
1216
|
-
default: string | ((option: FormFieldValue) => string) | (() => string | ((option: FormFieldValue) => string) | null) | null;
|
|
1217
|
-
};
|
|
1218
|
-
}>> & {
|
|
1219
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1220
|
-
}, {
|
|
1221
|
-
name: string | null;
|
|
1222
|
-
label: string | null;
|
|
1223
|
-
noSelectionText: string | null;
|
|
1224
|
-
optionsText: string | ((option: FormFieldValue) => string) | null;
|
|
1225
|
-
}, {}>;
|
|
1226
|
-
|
|
1227
|
-
export declare const AGSnackbar: DefineComponent< {
|
|
1228
|
-
id: {
|
|
1229
|
-
type?: PropType<string> | undefined;
|
|
1230
|
-
validator?(value: unknown): boolean;
|
|
1231
|
-
} & {
|
|
1232
|
-
required: true;
|
|
1233
|
-
};
|
|
1234
|
-
message: {
|
|
1235
|
-
type?: PropType<string> | undefined;
|
|
1236
|
-
validator?(value: unknown): boolean;
|
|
1237
|
-
} & {
|
|
1238
|
-
required: true;
|
|
1239
|
-
};
|
|
1240
|
-
actions: {
|
|
1241
|
-
type?: PropType<SnackbarAction[]> | undefined;
|
|
1242
|
-
validator?(value: unknown): boolean;
|
|
1243
|
-
} & {
|
|
1244
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
1245
|
-
};
|
|
1246
|
-
color: {
|
|
1247
|
-
type?: PropType<"secondary" | "danger"> | undefined;
|
|
1248
|
-
validator?(value: unknown): boolean;
|
|
1249
|
-
} & {
|
|
1250
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
1251
|
-
};
|
|
1252
|
-
}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1253
|
-
[key: string]: any;
|
|
1254
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1255
|
-
id: {
|
|
1256
|
-
type?: PropType<string> | undefined;
|
|
1257
|
-
validator?(value: unknown): boolean;
|
|
1258
|
-
} & {
|
|
1259
|
-
required: true;
|
|
1260
|
-
};
|
|
1261
|
-
message: {
|
|
1262
|
-
type?: PropType<string> | undefined;
|
|
1263
|
-
validator?(value: unknown): boolean;
|
|
1264
|
-
} & {
|
|
1265
|
-
required: true;
|
|
1266
|
-
};
|
|
1267
|
-
actions: {
|
|
1268
|
-
type?: PropType<SnackbarAction[]> | undefined;
|
|
1269
|
-
validator?(value: unknown): boolean;
|
|
1270
|
-
} & {
|
|
1271
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
1272
|
-
};
|
|
1273
|
-
color: {
|
|
1274
|
-
type?: PropType<"secondary" | "danger"> | undefined;
|
|
1275
|
-
validator?(value: unknown): boolean;
|
|
1276
|
-
} & {
|
|
1277
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
1278
|
-
};
|
|
1279
|
-
}>>, {
|
|
1280
|
-
actions: SnackbarAction[];
|
|
1281
|
-
color: "secondary" | "danger";
|
|
1282
|
-
}, {}>;
|
|
1283
|
-
|
|
1284
|
-
export declare type AGSnackbarProps = ObjectWithoutEmpty<ExtractPropTypes<typeof snackbarProps>>;
|
|
1285
|
-
|
|
1286
|
-
export declare const AGStartupCrash: DefineComponent< {}, (_ctx: any, _cache: any) => VNode<RendererNode, RendererElement, {
|
|
1287
|
-
[key: string]: any;
|
|
1288
|
-
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
1289
|
-
|
|
1290
|
-
export declare const alertModalProps: {
|
|
1291
|
-
title: {
|
|
1292
|
-
type?: PropType<string | null> | undefined;
|
|
1293
|
-
validator?(value: unknown): boolean;
|
|
1294
|
-
} & {
|
|
1295
|
-
default: string | (() => string | null) | null;
|
|
1296
|
-
};
|
|
1297
|
-
message: {
|
|
1298
|
-
type?: PropType<string> | undefined;
|
|
1299
|
-
validator?(value: unknown): boolean;
|
|
1300
|
-
} & {
|
|
1301
|
-
required: true;
|
|
1302
|
-
};
|
|
1303
|
-
};
|
|
1304
|
-
|
|
1305
|
-
export declare const App: Facade<AppService, AppService>;
|
|
1757
|
+
export declare const AlertModal: DefineComponent<AlertModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AlertModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1758
|
+
|
|
1759
|
+
export declare interface AlertModalProps {
|
|
1760
|
+
title?: string;
|
|
1761
|
+
message: string;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
export declare const App: Facade<AppService>;
|
|
1765
|
+
|
|
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>;
|
|
1306
1771
|
|
|
1307
1772
|
export declare class AppService extends _default_3 {
|
|
1308
1773
|
readonly name: string;
|
|
@@ -1310,32 +1775,50 @@ export declare class AppService extends _default_3 {
|
|
|
1310
1775
|
readonly mounted: PromisedValue<void>;
|
|
1311
1776
|
isReady(): boolean;
|
|
1312
1777
|
isMounted(): boolean;
|
|
1778
|
+
addSetting(setting: AppSetting): void;
|
|
1313
1779
|
whenReady<T>(callback: () => T): Promise<T>;
|
|
1314
1780
|
reload(queryParameters?: Record<string, string | undefined>): Promise<void>;
|
|
1315
1781
|
plugin<T extends Plugin_2 = Plugin_2>(name: string): T | null;
|
|
1782
|
+
service<T extends keyof Services>(name: T): Services[T] | null;
|
|
1316
1783
|
protected boot(): Promise<void>;
|
|
1317
1784
|
}
|
|
1318
1785
|
|
|
1319
|
-
export declare
|
|
1786
|
+
export declare interface AppSetting {
|
|
1787
|
+
component: Component;
|
|
1788
|
+
priority: number;
|
|
1789
|
+
}
|
|
1320
1790
|
|
|
1321
|
-
declare
|
|
1322
|
-
type?: PropType<T>;
|
|
1323
|
-
validator?(value: unknown): boolean;
|
|
1324
|
-
};
|
|
1791
|
+
export declare const AppToasts: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1325
1792
|
|
|
1326
1793
|
export declare function booleanInput(defaultValue?: boolean, options?: {
|
|
1327
1794
|
rules?: string;
|
|
1328
1795
|
}): FormFieldDefinition<typeof FormFieldTypes.Boolean>;
|
|
1329
1796
|
|
|
1330
|
-
export declare function booleanProp(defaultValue?: boolean): OptionalProp<boolean>;
|
|
1331
|
-
|
|
1332
1797
|
export declare function bootServices(app: App_2, services: Record<string, Service>): Promise<void>;
|
|
1333
1798
|
|
|
1334
1799
|
export declare function bootstrap(rootComponent: Component, options?: AerogelOptions): Promise<void>;
|
|
1335
1800
|
|
|
1336
1801
|
export declare function bootstrapApplication(app: App_2, options?: AerogelOptions): Promise<void>;
|
|
1337
1802
|
|
|
1338
|
-
declare const
|
|
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';
|
|
1818
|
+
|
|
1819
|
+
export declare type ButtonVariant = 'default' | 'secondary' | 'danger' | 'ghost' | 'outline' | 'link';
|
|
1820
|
+
|
|
1821
|
+
declare const Cache_2: Facade<CacheService>;
|
|
1339
1822
|
export { Cache_2 as Cache }
|
|
1340
1823
|
|
|
1341
1824
|
export declare class CacheService extends Service {
|
|
@@ -1346,162 +1829,144 @@ export declare class CacheService extends Service {
|
|
|
1346
1829
|
protected open(): Promise<Cache>;
|
|
1347
1830
|
}
|
|
1348
1831
|
|
|
1349
|
-
export declare
|
|
1832
|
+
export declare const Checkbox: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
1350
1833
|
|
|
1351
|
-
export declare
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
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
|
+
};
|
|
1356
1841
|
};
|
|
1357
1842
|
|
|
1358
|
-
export declare
|
|
1843
|
+
export declare function computedAsync<T>(getter: () => Promise<T>): Ref<T | undefined>;
|
|
1359
1844
|
|
|
1360
|
-
export declare function
|
|
1845
|
+
export declare function computedDebounce<T>(options: ComputedDebounceOptions<T>, getter: ComputedGetter<T>): ComputedRef<T>;
|
|
1361
1846
|
|
|
1362
|
-
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
|
+
}
|
|
1363
1853
|
|
|
1364
1854
|
export declare type ComputedStateDefinition<TState extends ServiceState, TComputedState extends ServiceState> = {
|
|
1365
|
-
[K in keyof TComputedState]: (state:
|
|
1855
|
+
[K in keyof TComputedState]: (state: Unref<TState>) => TComputedState[K];
|
|
1366
1856
|
} & ThisType<{
|
|
1367
1857
|
readonly [K in keyof TComputedState]: TComputedState[K];
|
|
1368
1858
|
}>;
|
|
1369
1859
|
|
|
1370
|
-
export declare
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
default: string | (() => string | null) | null;
|
|
1388
|
-
};
|
|
1389
|
-
acceptColor: {
|
|
1390
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1391
|
-
validator?(value: unknown): boolean;
|
|
1392
|
-
} & {
|
|
1393
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1394
|
-
};
|
|
1395
|
-
cancelText: {
|
|
1396
|
-
type?: PropType<string | null> | undefined;
|
|
1397
|
-
validator?(value: unknown): boolean;
|
|
1398
|
-
} & {
|
|
1399
|
-
default: string | (() => string | null) | null;
|
|
1400
|
-
};
|
|
1401
|
-
cancelColor: {
|
|
1402
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1403
|
-
validator?(value: unknown): boolean;
|
|
1404
|
-
} & {
|
|
1405
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1406
|
-
};
|
|
1407
|
-
};
|
|
1408
|
-
|
|
1409
|
-
export declare interface ConfirmOptions {
|
|
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;
|
|
1410
1877
|
acceptText?: string;
|
|
1411
|
-
|
|
1878
|
+
acceptVariant?: ButtonVariant;
|
|
1412
1879
|
cancelText?: string;
|
|
1413
|
-
|
|
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;
|
|
1414
1897
|
}
|
|
1415
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
|
+
|
|
1416
1903
|
export declare function dateInput(defaultValue?: Date, options?: {
|
|
1417
1904
|
rules?: string;
|
|
1418
1905
|
}): FormFieldDefinition<typeof FormFieldTypes.Date>;
|
|
1419
1906
|
|
|
1420
|
-
declare const _default:
|
|
1907
|
+
declare const _default: ServiceWithState< {
|
|
1421
1908
|
logs: ErrorReportLog[];
|
|
1422
1909
|
startupErrors: ErrorReport[];
|
|
1423
|
-
}
|
|
1424
|
-
hasErrors: boolean;
|
|
1425
|
-
hasNewErrors: boolean;
|
|
1426
|
-
hasStartupErrors: boolean;
|
|
1427
|
-
}> & Constructor<Service<UnrefServiceState< {
|
|
1428
|
-
logs: ErrorReportLog[];
|
|
1429
|
-
startupErrors: ErrorReport[];
|
|
1430
|
-
}>, {
|
|
1910
|
+
}, {
|
|
1431
1911
|
hasErrors: boolean;
|
|
1432
1912
|
hasNewErrors: boolean;
|
|
1433
1913
|
hasStartupErrors: boolean;
|
|
1434
|
-
}, Partial<
|
|
1914
|
+
}, Partial<{
|
|
1435
1915
|
logs: ErrorReportLog[];
|
|
1436
1916
|
startupErrors: ErrorReport[];
|
|
1437
|
-
}
|
|
1917
|
+
}>>;
|
|
1438
1918
|
|
|
1439
|
-
declare const _default_2:
|
|
1919
|
+
declare const _default_2: ServiceWithState< {
|
|
1440
1920
|
locale: string | null;
|
|
1441
1921
|
locales: string[];
|
|
1442
1922
|
fallbackLocale: string;
|
|
1443
|
-
}
|
|
1923
|
+
}, {}, Partial<{
|
|
1444
1924
|
locale: string | null;
|
|
1445
1925
|
locales: string[];
|
|
1446
1926
|
fallbackLocale: string;
|
|
1447
|
-
}
|
|
1448
|
-
locale: string | null;
|
|
1449
|
-
locales: string[];
|
|
1450
|
-
fallbackLocale: string;
|
|
1451
|
-
}>>>>;
|
|
1927
|
+
}>>;
|
|
1452
1928
|
|
|
1453
|
-
declare const _default_3:
|
|
1454
|
-
plugins: Record<string, Plugin_2>;
|
|
1455
|
-
environment: string;
|
|
1456
|
-
version: string;
|
|
1457
|
-
sourceUrl: string | undefined;
|
|
1458
|
-
}>> & Constructor< {
|
|
1459
|
-
development: boolean;
|
|
1460
|
-
testing: boolean;
|
|
1461
|
-
versionName: string;
|
|
1462
|
-
versionUrl: string;
|
|
1463
|
-
}> & Constructor<Service<UnrefServiceState< {
|
|
1929
|
+
declare const _default_3: ServiceWithState< {
|
|
1464
1930
|
plugins: Record<string, Plugin_2>;
|
|
1931
|
+
instance: App_2 | null;
|
|
1465
1932
|
environment: string;
|
|
1466
1933
|
version: string;
|
|
1467
1934
|
sourceUrl: string | undefined;
|
|
1468
|
-
|
|
1935
|
+
settings: AppSetting[];
|
|
1936
|
+
}, {
|
|
1469
1937
|
development: boolean;
|
|
1938
|
+
staging: boolean;
|
|
1470
1939
|
testing: boolean;
|
|
1471
1940
|
versionName: string;
|
|
1472
1941
|
versionUrl: string;
|
|
1473
|
-
}, Partial<
|
|
1942
|
+
}, Partial<{
|
|
1474
1943
|
plugins: Record<string, Plugin_2>;
|
|
1944
|
+
instance: App_2 | null;
|
|
1475
1945
|
environment: string;
|
|
1476
1946
|
version: string;
|
|
1477
1947
|
sourceUrl: string | undefined;
|
|
1478
|
-
|
|
1948
|
+
settings: AppSetting[];
|
|
1949
|
+
}>>;
|
|
1479
1950
|
|
|
1480
|
-
declare const _default_4:
|
|
1481
|
-
modals:
|
|
1482
|
-
|
|
1483
|
-
layout: Layout;
|
|
1484
|
-
}>> & Constructor< {
|
|
1485
|
-
mobile: boolean;
|
|
1486
|
-
desktop: boolean;
|
|
1487
|
-
}> & Constructor<Service<UnrefServiceState< {
|
|
1488
|
-
modals: Modal<unknown>[];
|
|
1489
|
-
snackbars: Snackbar[];
|
|
1951
|
+
declare const _default_4: ServiceWithState< {
|
|
1952
|
+
modals: UIModal[];
|
|
1953
|
+
toasts: UIToast[];
|
|
1490
1954
|
layout: Layout;
|
|
1491
|
-
}
|
|
1955
|
+
}, {
|
|
1492
1956
|
mobile: boolean;
|
|
1493
1957
|
desktop: boolean;
|
|
1494
|
-
}, Partial<
|
|
1495
|
-
modals:
|
|
1496
|
-
|
|
1958
|
+
}, Partial<{
|
|
1959
|
+
modals: UIModal[];
|
|
1960
|
+
toasts: UIToast[];
|
|
1497
1961
|
layout: Layout;
|
|
1498
|
-
}
|
|
1962
|
+
}>>;
|
|
1499
1963
|
|
|
1500
1964
|
export declare type DefaultServices = typeof defaultServices;
|
|
1501
1965
|
|
|
1502
1966
|
declare const defaultServices: {
|
|
1503
|
-
$app: Facade<AppService
|
|
1504
|
-
$events: Facade<EventsService
|
|
1967
|
+
$app: Facade<AppService>;
|
|
1968
|
+
$events: Facade<EventsService>;
|
|
1969
|
+
$storage: Facade<StorageService>;
|
|
1505
1970
|
};
|
|
1506
1971
|
|
|
1507
1972
|
export declare type DefaultServiceState = any;
|
|
@@ -1512,31 +1977,58 @@ export declare function defineFormValidationRule<T>(rule: string, validator: For
|
|
|
1512
1977
|
|
|
1513
1978
|
export declare function definePlugin<T extends Plugin_2>(plugin: T): T;
|
|
1514
1979
|
|
|
1515
|
-
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: {
|
|
1516
1981
|
name: string;
|
|
1517
1982
|
initialState: State | (() => State);
|
|
1518
1983
|
persist?: (keyof State)[];
|
|
1984
|
+
watch?: StateWatchers<Service, State>;
|
|
1519
1985
|
computed?: ComputedStateDefinition<State, ComputedState>;
|
|
1520
|
-
serialize?: (state: Partial<State>) =>
|
|
1521
|
-
|
|
1986
|
+
serialize?: (state: Partial<State>) => ServiceStorage;
|
|
1987
|
+
restore?: (state: ServiceStorage) => Partial<State>;
|
|
1988
|
+
}): ServiceWithState<State, ComputedState, ServiceStorage>;
|
|
1522
1989
|
|
|
1523
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>;
|
|
1524
1991
|
|
|
1992
|
+
export declare function defineSettings<T extends AppSetting[]>(settings: T): T;
|
|
1993
|
+
|
|
1525
1994
|
export declare function dispatch(job: Job): Promise<void>;
|
|
1526
1995
|
|
|
1527
|
-
export declare
|
|
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"]>;
|
|
1528
2020
|
|
|
1529
2021
|
export declare interface ElementSize {
|
|
1530
2022
|
width: number;
|
|
1531
2023
|
height: number;
|
|
1532
2024
|
}
|
|
1533
2025
|
|
|
1534
|
-
export declare function enumProp<Enum extends Record<string, unknown>>(enumeration: Enum, defaultValue?: Enum[keyof Enum]): OptionalProp<Enum[keyof Enum]>;
|
|
1535
|
-
|
|
1536
2026
|
export declare type ErrorHandler = (error: ErrorSource) => boolean;
|
|
1537
2027
|
|
|
1538
2028
|
declare type ErrorHandler_2 = (error: ErrorSource) => string | undefined;
|
|
1539
2029
|
|
|
2030
|
+
export declare const ErrorMessage: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2031
|
+
|
|
1540
2032
|
export declare interface ErrorReport {
|
|
1541
2033
|
title: string;
|
|
1542
2034
|
description?: string;
|
|
@@ -1550,16 +2042,25 @@ export declare interface ErrorReportLog {
|
|
|
1550
2042
|
date: Date;
|
|
1551
2043
|
}
|
|
1552
2044
|
|
|
1553
|
-
export declare const
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
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>;
|
|
1561
2062
|
|
|
1562
|
-
export declare const Errors: Facade<ErrorsService
|
|
2063
|
+
export declare const Errors: Facade<ErrorsService>;
|
|
1563
2064
|
|
|
1564
2065
|
export declare type ErrorSource = string | Error | JSError | unknown;
|
|
1565
2066
|
|
|
@@ -1584,7 +2085,7 @@ declare type EventListener_2<T = unknown> = (payload: T) => unknown;
|
|
|
1584
2085
|
export { EventListener_2 as EventListener }
|
|
1585
2086
|
|
|
1586
2087
|
declare interface EventListenerOptions_2 {
|
|
1587
|
-
priority:
|
|
2088
|
+
priority: EventListenerPriority;
|
|
1588
2089
|
}
|
|
1589
2090
|
export { EventListenerOptions_2 as EventListenerOptions }
|
|
1590
2091
|
|
|
@@ -1594,7 +2095,9 @@ export declare const EventListenerPriorities: {
|
|
|
1594
2095
|
readonly High: 256;
|
|
1595
2096
|
};
|
|
1596
2097
|
|
|
1597
|
-
export declare
|
|
2098
|
+
export declare type EventListenerPriority = (typeof EventListenerPriorities)[keyof typeof EventListenerPriorities];
|
|
2099
|
+
|
|
2100
|
+
export declare const Events: Facade<EventsService>;
|
|
1598
2101
|
|
|
1599
2102
|
export declare interface EventsPayload {
|
|
1600
2103
|
}
|
|
@@ -1606,10 +2109,13 @@ export declare class EventsService extends Service {
|
|
|
1606
2109
|
emit<Event extends EventWithPayload>(event: Event, payload: EventsPayload[Event]): Promise<void>;
|
|
1607
2110
|
emit<Event extends string>(event: UnknownEvent<Event>, payload?: unknown): Promise<void>;
|
|
1608
2111
|
on<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): () => void;
|
|
2112
|
+
on<Event extends EventWithoutPayload>(event: Event, priority: EventListenerPriority, listener: () => unknown): () => void;
|
|
1609
2113
|
on<Event extends EventWithoutPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: () => unknown): () => void;
|
|
1610
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;
|
|
1611
2116
|
on<Event extends EventWithPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: EventListener_2<EventsPayload[Event]>): () => void | void;
|
|
1612
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;
|
|
1613
2119
|
on<Event extends string>(event: UnknownEvent<Event>, options: Partial<EventListenerOptions_2>, listener: EventListener_2): () => void;
|
|
1614
2120
|
once<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): () => void;
|
|
1615
2121
|
once<Event extends EventWithoutPayload>(event: Event, options: Partial<EventListenerOptions_2>, listener: () => unknown): () => void;
|
|
@@ -1629,15 +2135,13 @@ export declare type EventWithPayload = {
|
|
|
1629
2135
|
[K in keyof EventsPayload]: EventsPayload[K] extends void ? never : K;
|
|
1630
2136
|
}[keyof EventsPayload];
|
|
1631
2137
|
|
|
1632
|
-
export declare
|
|
1633
|
-
|
|
1634
|
-
export declare function extractModalProps<T extends ExtractPropTypes<typeof modalProps>>(props: T): Pick<T, keyof typeof modalProps>;
|
|
1635
|
-
|
|
1636
|
-
export declare function extractSelectProps<T extends ExtractPropTypes<typeof selectProps>>(props: T): Pick<T, keyof typeof selectProps>;
|
|
2138
|
+
export declare type Falsifiable<T> = Nullable<T> | false;
|
|
1637
2139
|
|
|
1638
2140
|
export declare type FocusFormListener = (input: string) => unknown;
|
|
1639
2141
|
|
|
1640
|
-
export declare
|
|
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 {
|
|
1641
2145
|
errors: DeepReadonly<UnwrapNestedRefs<FormErrors<Fields>>>;
|
|
1642
2146
|
private _fields;
|
|
1643
2147
|
private _data;
|
|
@@ -1705,79 +2209,59 @@ export declare type FormFieldValue = GetFormFieldValue<FormFieldType>;
|
|
|
1705
2209
|
|
|
1706
2210
|
export declare function getCurrentLayout(): Layout;
|
|
1707
2211
|
|
|
1708
|
-
export declare function getElement(value: unknown): HTMLElement | undefined;
|
|
1709
|
-
|
|
1710
2212
|
export declare function getErrorMessage(error: ErrorSource): string;
|
|
1711
2213
|
|
|
1712
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;
|
|
1713
2215
|
|
|
1714
2216
|
export declare function getPiniaStore(): Pinia;
|
|
1715
2217
|
|
|
1716
|
-
export declare interface
|
|
1717
|
-
|
|
2218
|
+
export declare interface HasSelectOptionLabel {
|
|
2219
|
+
label: string | (() => string);
|
|
1718
2220
|
}
|
|
1719
2221
|
|
|
1720
|
-
export declare function
|
|
2222
|
+
export declare function hasSelectOptionLabel(option: unknown): option is HasSelectOptionLabel;
|
|
1721
2223
|
|
|
1722
|
-
export declare
|
|
1723
|
-
id: string;
|
|
1724
|
-
description: string;
|
|
1725
|
-
iconComponent: Component;
|
|
1726
|
-
url?: string;
|
|
1727
|
-
handler?(): void;
|
|
1728
|
-
}
|
|
2224
|
+
export declare const HeadlessButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1729
2225
|
|
|
1730
|
-
export declare
|
|
1731
|
-
}
|
|
2226
|
+
export declare const HeadlessInput: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1732
2227
|
|
|
1733
|
-
export declare
|
|
1734
|
-
id: string;
|
|
1735
|
-
name: ComputedRef<string | null>;
|
|
1736
|
-
label: ComputedRef<string | null>;
|
|
1737
|
-
description: ComputedRef<string | boolean | null>;
|
|
1738
|
-
value: ComputedRef<FormFieldValue | null>;
|
|
1739
|
-
required: ComputedRef<boolean | null>;
|
|
1740
|
-
errors: DeepReadonly<Ref<string[] | null>>;
|
|
1741
|
-
update(value: FormFieldValue | null): void;
|
|
1742
|
-
}
|
|
2228
|
+
export declare const HeadlessInputDescription: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1743
2229
|
|
|
1744
|
-
export declare
|
|
1745
|
-
}
|
|
2230
|
+
export declare const HeadlessInputError: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1746
2231
|
|
|
1747
|
-
export declare
|
|
1748
|
-
|
|
1749
|
-
}
|
|
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>;
|
|
1750
2235
|
|
|
1751
|
-
export declare
|
|
1752
|
-
id: string;
|
|
1753
|
-
label: ComputedRef<string | null>;
|
|
1754
|
-
noSelectionText: ComputedRef<string>;
|
|
1755
|
-
buttonText: ComputedRef<string>;
|
|
1756
|
-
renderText: ComputedRef<(value: FormFieldValue) => string>;
|
|
1757
|
-
selectedOption: ComputedRef<FormFieldValue | null>;
|
|
1758
|
-
options: ComputedRef<FormFieldValue[]>;
|
|
1759
|
-
errors: DeepReadonly<Ref<string[] | null>>;
|
|
1760
|
-
update(value: FormFieldValue): void;
|
|
1761
|
-
}
|
|
2236
|
+
export declare const HeadlessInputLabel: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1762
2237
|
|
|
1763
|
-
export declare
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
};
|
|
2238
|
+
export declare const HeadlessInputTextArea: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
2239
|
+
$textAreaRef: HTMLTextAreaElement;
|
|
2240
|
+
}, HTMLTextAreaElement>;
|
|
1767
2241
|
|
|
1768
|
-
export declare
|
|
1769
|
-
cancellable: Ref<boolean>;
|
|
1770
|
-
close(result?: unknown): Promise<void>;
|
|
1771
|
-
}
|
|
2242
|
+
export declare const HeadlessModal: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
1772
2243
|
|
|
1773
|
-
export declare
|
|
1774
|
-
modal: Ref<Modal>;
|
|
1775
|
-
childIndex: Ref<number>;
|
|
1776
|
-
}
|
|
2244
|
+
export declare const HeadlessModalContent: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
1777
2245
|
|
|
1778
|
-
export declare
|
|
1779
|
-
|
|
1780
|
-
|
|
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"]>;
|
|
1781
2265
|
|
|
1782
2266
|
export declare function injectOrFail<T>(key: InjectionKey<T> | string, errorMessage?: string): T;
|
|
1783
2267
|
|
|
@@ -1785,40 +2269,153 @@ export declare function injectReactive<T extends object>(key: InjectionKey<T> |
|
|
|
1785
2269
|
|
|
1786
2270
|
export declare function injectReactiveOrFail<T extends object>(key: InjectionKey<T> | string, errorMessage?: string): UnwrapNestedRefs<T>;
|
|
1787
2271
|
|
|
1788
|
-
export declare const
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
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>];
|
|
2359
|
+
}
|
|
2360
|
+
|
|
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;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
export declare interface InputProps {
|
|
2373
|
+
name?: string;
|
|
2374
|
+
label?: string;
|
|
2375
|
+
description?: string;
|
|
2376
|
+
modelValue?: Nullable<FormFieldValue>;
|
|
2377
|
+
}
|
|
1814
2378
|
|
|
1815
2379
|
export declare function installPlugins(plugins: Plugin_2[], ...args: GetClosureArgs<Plugin_2['install']>): Promise<void>;
|
|
1816
2380
|
|
|
1817
|
-
export declare abstract class Job {
|
|
1818
|
-
|
|
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;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
export declare class JobCancelledError extends JSError {
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
export declare interface JobListener {
|
|
2410
|
+
onUpdated?(progress: number): unknown;
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
export declare interface JobStatus {
|
|
2414
|
+
completed: boolean;
|
|
2415
|
+
children?: JobStatus[];
|
|
1819
2416
|
}
|
|
1820
2417
|
|
|
1821
|
-
export declare const Lang: Facade<LangService
|
|
2418
|
+
export declare const Lang: Facade<LangService>;
|
|
1822
2419
|
|
|
1823
2420
|
export declare interface LangProvider {
|
|
1824
2421
|
getLocale(): string;
|
|
@@ -1849,75 +2446,75 @@ export declare const Layouts: {
|
|
|
1849
2446
|
readonly Desktop: "desktop";
|
|
1850
2447
|
};
|
|
1851
2448
|
|
|
1852
|
-
export declare
|
|
2449
|
+
export declare const Link: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
1853
2450
|
|
|
1854
|
-
export declare const
|
|
1855
|
-
message: {
|
|
1856
|
-
type?: PropType<string | null> | undefined;
|
|
1857
|
-
validator?(value: unknown): boolean;
|
|
1858
|
-
} & {
|
|
1859
|
-
default: string | (() => string | null) | null;
|
|
1860
|
-
};
|
|
1861
|
-
};
|
|
2451
|
+
export declare const LoadingModal: DefineComponent<LoadingModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LoadingModalProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1862
2452
|
|
|
1863
|
-
export declare
|
|
2453
|
+
export declare interface LoadingModalProps {
|
|
2454
|
+
title?: string;
|
|
2455
|
+
message?: string;
|
|
2456
|
+
progress?: number;
|
|
2457
|
+
job?: Job;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
export declare type LoadingOptions = AcceptRefs<{
|
|
2461
|
+
title?: string;
|
|
2462
|
+
message?: string;
|
|
2463
|
+
progress?: number;
|
|
2464
|
+
}>;
|
|
1864
2465
|
|
|
1865
|
-
export declare
|
|
2466
|
+
export declare const Markdown: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
1866
2467
|
|
|
1867
|
-
export declare
|
|
2468
|
+
export declare type MeasureDirectiveListener = (size: ElementSize) => unknown;
|
|
1868
2469
|
|
|
1869
2470
|
export declare const MOBILE_BREAKPOINT = 768;
|
|
1870
2471
|
|
|
1871
|
-
declare
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
component: Component;
|
|
1875
|
-
beforeClose: Promise<T | undefined>;
|
|
1876
|
-
afterClose: Promise<T | undefined>;
|
|
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> {
|
|
1877
2475
|
}
|
|
1878
2476
|
|
|
1879
|
-
declare
|
|
2477
|
+
export declare type ModalContentInstance = Nullable<InstanceType<typeof DialogContent>>;
|
|
2478
|
+
|
|
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;
|
|
1880
2484
|
}
|
|
1881
2485
|
|
|
1882
2486
|
declare type ModalProperties<TComponent> = TComponent extends ModalComponent<infer TProperties, unknown> ? TProperties : never;
|
|
1883
2487
|
|
|
1884
|
-
export declare
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
title: {
|
|
1892
|
-
type?: PropType<string | null> | undefined;
|
|
1893
|
-
validator?(value: unknown): boolean;
|
|
1894
|
-
} & {
|
|
1895
|
-
default: string | (() => string | null) | null;
|
|
1896
|
-
};
|
|
1897
|
-
};
|
|
2488
|
+
export declare interface ModalProps {
|
|
2489
|
+
persistent?: boolean;
|
|
2490
|
+
title?: string;
|
|
2491
|
+
titleHidden?: boolean;
|
|
2492
|
+
description?: string;
|
|
2493
|
+
descriptionHidden?: boolean;
|
|
2494
|
+
}
|
|
1898
2495
|
|
|
1899
2496
|
declare type ModalResult<TComponent> = TComponent extends ModalComponent<Record<string, unknown>, infer TResult> ? TResult : never;
|
|
1900
2497
|
|
|
2498
|
+
export declare interface ModalSlots {
|
|
2499
|
+
default(props: {
|
|
2500
|
+
close(result?: unknown): Promise<void>;
|
|
2501
|
+
}): unknown;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
1901
2504
|
export declare function numberInput(defaultValue?: number, options?: {
|
|
1902
2505
|
rules?: string;
|
|
1903
2506
|
}): FormFieldDefinition<typeof FormFieldTypes.Number>;
|
|
1904
2507
|
|
|
1905
|
-
export declare function numberProp(): OptionalProp<number | null>;
|
|
1906
|
-
|
|
1907
|
-
export declare function numberProp(defaultValue: number): OptionalProp<number>;
|
|
1908
|
-
|
|
1909
|
-
export declare function objectProp<T = Object>(): OptionalProp<T | null>;
|
|
1910
|
-
|
|
1911
|
-
export declare function objectProp<T>(defaultValue: () => T): OptionalProp<T>;
|
|
1912
|
-
|
|
1913
2508
|
export declare function onCleanMounted(operation: () => Function): void;
|
|
1914
2509
|
|
|
1915
2510
|
export declare function onFormFocus(input: {
|
|
1916
|
-
name: string
|
|
2511
|
+
name: Nullable<string>;
|
|
1917
2512
|
}, listener: () => unknown): void;
|
|
1918
2513
|
|
|
1919
|
-
declare
|
|
1920
|
-
|
|
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;
|
|
1921
2518
|
};
|
|
1922
2519
|
|
|
1923
2520
|
declare interface Plugin_2 {
|
|
@@ -1926,147 +2523,114 @@ declare interface Plugin_2 {
|
|
|
1926
2523
|
}
|
|
1927
2524
|
export { Plugin_2 as Plugin }
|
|
1928
2525
|
|
|
1929
|
-
export declare const
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
message: {
|
|
1937
|
-
type?: PropType<string> | undefined;
|
|
1938
|
-
validator?(value: unknown): boolean;
|
|
1939
|
-
} & {
|
|
1940
|
-
required: true;
|
|
1941
|
-
};
|
|
1942
|
-
label: {
|
|
1943
|
-
type?: PropType<string | null> | undefined;
|
|
1944
|
-
validator?(value: unknown): boolean;
|
|
1945
|
-
} & {
|
|
1946
|
-
default: string | (() => string | null) | null;
|
|
1947
|
-
};
|
|
1948
|
-
defaultValue: {
|
|
1949
|
-
type?: PropType<string | null> | undefined;
|
|
1950
|
-
validator?(value: unknown): boolean;
|
|
1951
|
-
} & {
|
|
1952
|
-
default: string | (() => string | null) | null;
|
|
1953
|
-
};
|
|
1954
|
-
placeholder: {
|
|
1955
|
-
type?: PropType<string | null> | undefined;
|
|
1956
|
-
validator?(value: unknown): boolean;
|
|
1957
|
-
} & {
|
|
1958
|
-
default: string | (() => string | null) | null;
|
|
1959
|
-
};
|
|
1960
|
-
acceptText: {
|
|
1961
|
-
type?: PropType<string | null> | undefined;
|
|
1962
|
-
validator?(value: unknown): boolean;
|
|
1963
|
-
} & {
|
|
1964
|
-
default: string | (() => string | null) | null;
|
|
1965
|
-
};
|
|
1966
|
-
acceptColor: {
|
|
1967
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1968
|
-
validator?(value: unknown): boolean;
|
|
1969
|
-
} & {
|
|
1970
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1971
|
-
};
|
|
1972
|
-
cancelText: {
|
|
1973
|
-
type?: PropType<string | null> | undefined;
|
|
1974
|
-
validator?(value: unknown): boolean;
|
|
1975
|
-
} & {
|
|
1976
|
-
default: string | (() => string | null) | null;
|
|
1977
|
-
};
|
|
1978
|
-
cancelColor: {
|
|
1979
|
-
type?: PropType<"primary" | "secondary" | "danger" | "clear"> | undefined;
|
|
1980
|
-
validator?(value: unknown): boolean;
|
|
1981
|
-
} & {
|
|
1982
|
-
default: "primary" | "secondary" | "danger" | "clear" | (() => "primary" | "secondary" | "danger" | "clear") | null;
|
|
1983
|
-
};
|
|
1984
|
-
};
|
|
1985
|
-
|
|
1986
|
-
export declare interface PromptOptions {
|
|
2526
|
+
export declare const ProgressBar: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2527
|
+
|
|
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;
|
|
1987
2533
|
label?: string;
|
|
1988
2534
|
defaultValue?: string;
|
|
1989
2535
|
placeholder?: string;
|
|
1990
2536
|
acceptText?: string;
|
|
1991
|
-
|
|
2537
|
+
acceptVariant?: ButtonVariant;
|
|
1992
2538
|
cancelText?: string;
|
|
1993
|
-
|
|
1994
|
-
trim?: boolean;
|
|
2539
|
+
cancelVariant?: ButtonVariant;
|
|
1995
2540
|
}
|
|
1996
2541
|
|
|
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
|
+
};
|
|
2556
|
+
|
|
2557
|
+
export declare type RefUnion<T> = T extends infer R ? Ref<R> : never;
|
|
2558
|
+
|
|
1997
2559
|
export declare function registerErrorHandler(handler: ErrorHandler_2): void;
|
|
1998
2560
|
|
|
1999
|
-
export declare function
|
|
2561
|
+
export declare function renderMarkdown(markdown: string): string;
|
|
2000
2562
|
|
|
2001
|
-
export declare function
|
|
2563
|
+
export declare function renderVNode(node: VNode | string): string;
|
|
2002
2564
|
|
|
2003
|
-
export declare
|
|
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];
|
|
2567
|
+
};
|
|
2004
2568
|
|
|
2005
|
-
export declare function
|
|
2569
|
+
export declare function replaceExisting<TOriginal extends Record<string, unknown>, TReplacements extends Partial<Record<keyof TOriginal, unknown>>>(original: TOriginal, replacements: TReplacements): Replace<TOriginal, TReplacements>;
|
|
2006
2570
|
|
|
2007
|
-
export declare function
|
|
2571
|
+
export declare function requiredBooleanInput(defaultValue?: boolean): FormFieldDefinition<typeof FormFieldTypes.Boolean, 'required'>;
|
|
2008
2572
|
|
|
2009
|
-
export declare function
|
|
2573
|
+
export declare function requiredDateInput(defaultValue?: Date): FormFieldDefinition<typeof FormFieldTypes.Date>;
|
|
2010
2574
|
|
|
2011
2575
|
export declare function requiredNumberInput(defaultValue?: number): FormFieldDefinition<typeof FormFieldTypes.Number, 'required'>;
|
|
2012
2576
|
|
|
2013
|
-
export declare function
|
|
2577
|
+
export declare function requiredStringInput(defaultValue?: string): FormFieldDefinition<typeof FormFieldTypes.String, 'required'>;
|
|
2014
2578
|
|
|
2015
|
-
export declare function
|
|
2579
|
+
export declare function resetPiniaStore(): Pinia;
|
|
2016
2580
|
|
|
2017
|
-
declare
|
|
2018
|
-
required: true;
|
|
2019
|
-
};
|
|
2581
|
+
export declare function safeHtml(html: string): string;
|
|
2020
2582
|
|
|
2021
|
-
export declare
|
|
2583
|
+
export declare const Select: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
|
|
2022
2584
|
|
|
2023
|
-
export declare
|
|
2585
|
+
export declare interface SelectEmits extends InputEmits {
|
|
2586
|
+
}
|
|
2024
2587
|
|
|
2025
|
-
export declare
|
|
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
|
+
}
|
|
2026
2597
|
|
|
2027
|
-
export declare const
|
|
2598
|
+
export declare const SelectLabel: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
|
|
2028
2599
|
|
|
2029
|
-
export declare const
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
};
|
|
2036
|
-
label: {
|
|
2037
|
-
type?: PropType<string | null> | undefined;
|
|
2038
|
-
validator?(value: unknown): boolean;
|
|
2039
|
-
} & {
|
|
2040
|
-
default: string | (() => string | null) | null;
|
|
2041
|
-
};
|
|
2042
|
-
options: {
|
|
2043
|
-
type?: PropType<FormFieldValue[]> | undefined;
|
|
2044
|
-
validator?(value: unknown): boolean;
|
|
2045
|
-
} & {
|
|
2046
|
-
required: true;
|
|
2047
|
-
};
|
|
2048
|
-
noSelectionText: {
|
|
2049
|
-
type?: PropType<string | null> | undefined;
|
|
2050
|
-
validator?(value: unknown): boolean;
|
|
2051
|
-
} & {
|
|
2052
|
-
default: string | (() => string | null) | null;
|
|
2053
|
-
};
|
|
2054
|
-
optionsText: {
|
|
2055
|
-
type?: PropType<string | ((option: FormFieldValue) => string) | null> | undefined;
|
|
2056
|
-
validator?(value: unknown): boolean;
|
|
2057
|
-
} & {
|
|
2058
|
-
default: string | ((option: FormFieldValue) => string) | (() => string | ((option: FormFieldValue) => string) | null) | null;
|
|
2059
|
-
};
|
|
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;
|
|
2060
2606
|
};
|
|
2061
2607
|
|
|
2062
|
-
export declare
|
|
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 {
|
|
2063
2624
|
static persist: string[];
|
|
2064
2625
|
protected _name: string;
|
|
2065
2626
|
private _booted;
|
|
2066
2627
|
private _computedStateKeys;
|
|
2628
|
+
private _watchers;
|
|
2067
2629
|
private _store;
|
|
2068
2630
|
constructor();
|
|
2069
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];
|
|
2070
2634
|
launch(): Promise<void>;
|
|
2071
2635
|
hasPersistedState(): boolean;
|
|
2072
2636
|
hasState<P extends keyof State>(property: P): boolean;
|
|
@@ -2074,108 +2638,98 @@ export declare class Service<State extends ServiceState = DefaultServiceState, C
|
|
|
2074
2638
|
getState<P extends keyof State>(property: P): State[P];
|
|
2075
2639
|
setState<P extends keyof State>(property: P, value: State[P]): void;
|
|
2076
2640
|
setState(state: Partial<State>): void;
|
|
2641
|
+
updatePersistedState<T extends keyof State>(key: T): void;
|
|
2642
|
+
updatePersistedState<T extends keyof State>(keys: T[]): void;
|
|
2077
2643
|
protected __get(property: string): unknown;
|
|
2078
2644
|
protected __set(property: string, value: unknown): void;
|
|
2079
|
-
protected onStateUpdated(
|
|
2645
|
+
protected onStateUpdated(update: Partial<State>, old: Partial<State>): void;
|
|
2646
|
+
protected onPersistentStateUpdated(persisted: Partial<State>): void;
|
|
2080
2647
|
protected usesStore(): boolean;
|
|
2081
2648
|
protected getName(): string | null;
|
|
2082
2649
|
protected getInitialState(): State;
|
|
2083
2650
|
protected getComputedStateDefinition(): ComputedStateDefinition<State, ComputedState>;
|
|
2084
|
-
protected
|
|
2651
|
+
protected getStateWatchers(): StateWatchers<Service, State>;
|
|
2652
|
+
protected serializePersistedState(state: Partial<State>): ServiceStorage;
|
|
2653
|
+
protected deserializePersistedState(state: ServiceStorage): Partial<State>;
|
|
2085
2654
|
protected frameworkBoot(): Promise<void>;
|
|
2086
2655
|
protected boot(): Promise<void>;
|
|
2087
|
-
protected
|
|
2656
|
+
protected restorePersistedState(): void;
|
|
2088
2657
|
protected requireStore(): Store<string, State, ComputedState, {}>;
|
|
2089
2658
|
}
|
|
2090
2659
|
|
|
2660
|
+
export declare class ServiceBootError extends JSError {
|
|
2661
|
+
constructor(serviceNamespace: string, cause: unknown);
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2091
2664
|
export declare type ServiceConstructor<T extends Service = Service> = Constructor<T> & typeof Service;
|
|
2092
2665
|
|
|
2093
2666
|
export declare interface Services extends DefaultServices {
|
|
2094
2667
|
}
|
|
2095
2668
|
|
|
2096
2669
|
declare const services: {
|
|
2097
|
-
$errors: Facade<ErrorsService
|
|
2670
|
+
$errors: Facade<ErrorsService>;
|
|
2098
2671
|
};
|
|
2099
2672
|
|
|
2100
2673
|
declare const services_2: {
|
|
2101
|
-
$lang: Facade<LangService
|
|
2674
|
+
$lang: Facade<LangService>;
|
|
2102
2675
|
};
|
|
2103
2676
|
|
|
2104
2677
|
declare const services_3: {
|
|
2105
|
-
$ui: Facade<UIService
|
|
2678
|
+
$ui: Facade<UIService>;
|
|
2106
2679
|
};
|
|
2107
2680
|
|
|
2108
2681
|
export declare type ServiceState = Record<string, any>;
|
|
2109
2682
|
|
|
2110
|
-
export declare
|
|
2111
|
-
component?: Component;
|
|
2112
|
-
color?: SnackbarColor;
|
|
2113
|
-
actions?: SnackbarAction[];
|
|
2114
|
-
}
|
|
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>>>;
|
|
2115
2684
|
|
|
2116
|
-
declare
|
|
2117
|
-
id: string;
|
|
2118
|
-
component: Component;
|
|
2119
|
-
properties: Record<string, unknown>;
|
|
2120
|
-
}
|
|
2685
|
+
export declare const SettingsModal: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2121
2686
|
|
|
2122
|
-
export declare
|
|
2123
|
-
text: string;
|
|
2124
|
-
dismiss?: boolean;
|
|
2125
|
-
handler?(): unknown;
|
|
2126
|
-
}
|
|
2687
|
+
export declare const StartupCrash: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2127
2688
|
|
|
2128
|
-
export declare type
|
|
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
|
+
};
|
|
2129
2692
|
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
readonly Secondary: "secondary";
|
|
2133
|
-
readonly Danger: "danger";
|
|
2134
|
-
readonly Clear: "clear";
|
|
2135
|
-
}, "Primary" | "Clear">;
|
|
2693
|
+
declare const Storage_2: Facade<StorageService>;
|
|
2694
|
+
export { Storage_2 as Storage }
|
|
2136
2695
|
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
validator?(value: unknown): boolean;
|
|
2141
|
-
} & {
|
|
2142
|
-
required: true;
|
|
2143
|
-
};
|
|
2144
|
-
message: {
|
|
2145
|
-
type?: PropType<string> | undefined;
|
|
2146
|
-
validator?(value: unknown): boolean;
|
|
2147
|
-
} & {
|
|
2148
|
-
required: true;
|
|
2149
|
-
};
|
|
2150
|
-
actions: {
|
|
2151
|
-
type?: PropType<SnackbarAction[]> | undefined;
|
|
2152
|
-
validator?(value: unknown): boolean;
|
|
2153
|
-
} & {
|
|
2154
|
-
default: SnackbarAction[] | (() => SnackbarAction[]) | null;
|
|
2155
|
-
};
|
|
2156
|
-
color: {
|
|
2157
|
-
type?: PropType<"secondary" | "danger"> | undefined;
|
|
2158
|
-
validator?(value: unknown): boolean;
|
|
2159
|
-
} & {
|
|
2160
|
-
default: "secondary" | "danger" | (() => "secondary" | "danger") | null;
|
|
2161
|
-
};
|
|
2162
|
-
};
|
|
2696
|
+
declare class StorageService extends Service {
|
|
2697
|
+
purge(): Promise<void>;
|
|
2698
|
+
}
|
|
2163
2699
|
|
|
2164
2700
|
export declare function stringInput(defaultValue?: string, options?: {
|
|
2165
2701
|
rules?: string;
|
|
2166
2702
|
}): FormFieldDefinition<typeof FormFieldTypes.String>;
|
|
2167
2703
|
|
|
2168
|
-
export declare
|
|
2704
|
+
export declare type SubmitFormListener = () => unknown;
|
|
2169
2705
|
|
|
2170
|
-
export declare
|
|
2706
|
+
export declare const Toast: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2171
2707
|
|
|
2172
|
-
export declare
|
|
2708
|
+
export declare interface ToastAction {
|
|
2709
|
+
label: string;
|
|
2710
|
+
dismiss?: boolean;
|
|
2711
|
+
click?(): unknown;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
export declare interface ToastOptions {
|
|
2715
|
+
component?: Component;
|
|
2716
|
+
variant?: ToastVariant;
|
|
2717
|
+
actions?: ToastAction[];
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
export declare interface ToastProps {
|
|
2721
|
+
message?: string;
|
|
2722
|
+
actions?: ToastAction[];
|
|
2723
|
+
variant?: ToastVariant;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
export declare type ToastVariant = 'secondary' | 'danger';
|
|
2173
2727
|
|
|
2174
|
-
export declare const translate: (key: string, parameters?:
|
|
2728
|
+
export declare const translate: (key: string, parameters?: Record<string, unknown> | number) => string;
|
|
2175
2729
|
|
|
2176
|
-
export declare const translateWithDefault: (key: string, defaultMessage: string, parameters?:
|
|
2730
|
+
export declare const translateWithDefault: (key: string, defaultMessage: string, parameters?: Record<string, unknown> | number) => string;
|
|
2177
2731
|
|
|
2178
|
-
export declare const UI: Facade<UIService
|
|
2732
|
+
export declare const UI: Facade<UIService>;
|
|
2179
2733
|
|
|
2180
2734
|
export declare type UIComponent = ObjectValues<typeof UIComponents>;
|
|
2181
2735
|
|
|
@@ -2185,28 +2739,42 @@ export declare const UIComponents: {
|
|
|
2185
2739
|
readonly ErrorReportModal: "error-report-modal";
|
|
2186
2740
|
readonly LoadingModal: "loading-modal";
|
|
2187
2741
|
readonly PromptModal: "prompt-modal";
|
|
2188
|
-
readonly
|
|
2742
|
+
readonly Toast: "toast";
|
|
2189
2743
|
readonly StartupCrash: "startup-crash";
|
|
2744
|
+
readonly RouterLink: "router-link";
|
|
2190
2745
|
};
|
|
2191
2746
|
|
|
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
|
+
|
|
2192
2755
|
export declare class UIService extends _default_4 {
|
|
2193
2756
|
private modalCallbacks;
|
|
2194
2757
|
private components;
|
|
2758
|
+
resolveComponent(name: UIComponent): Component | null;
|
|
2195
2759
|
requireComponent(name: UIComponent): Component;
|
|
2196
2760
|
alert(message: string): void;
|
|
2197
2761
|
alert(title: string, message: string): void;
|
|
2198
2762
|
confirm(message: string, options?: ConfirmOptions): Promise<boolean>;
|
|
2199
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>]>;
|
|
2200
2766
|
prompt(message: string, options?: PromptOptions): Promise<string | null>;
|
|
2201
2767
|
prompt(title: string, message: string, options?: PromptOptions): Promise<string | null>;
|
|
2202
2768
|
loading<T>(operation: Promise<T> | (() => T)): Promise<T>;
|
|
2203
2769
|
loading<T>(message: string, operation: Promise<T> | (() => T)): Promise<T>;
|
|
2204
|
-
|
|
2205
|
-
|
|
2770
|
+
loading<T>(options: LoadingOptions, operation: Promise<T> | (() => T)): Promise<T>;
|
|
2771
|
+
toast(message: string, options?: ToastOptions): void;
|
|
2206
2772
|
registerComponent(name: UIComponent, component: Component): void;
|
|
2207
|
-
openModal<TModalComponent extends ModalComponent>(component: TModalComponent, properties?: ModalProperties<TModalComponent>): Promise<
|
|
2773
|
+
openModal<TModalComponent extends ModalComponent>(component: TModalComponent, properties?: ModalProperties<TModalComponent>): Promise<UIModal<ModalResult<TModalComponent>>>;
|
|
2208
2774
|
closeModal(id: string, result?: unknown): Promise<void>;
|
|
2775
|
+
closeAllModals(): Promise<void>;
|
|
2209
2776
|
protected boot(): Promise<void>;
|
|
2777
|
+
private removeModal;
|
|
2210
2778
|
private watchModalEvents;
|
|
2211
2779
|
private watchMountedEvent;
|
|
2212
2780
|
private watchViewportBreakpoints;
|
|
@@ -2214,31 +2782,44 @@ export declare class UIService extends _default_4 {
|
|
|
2214
2782
|
|
|
2215
2783
|
export declare type UIServices = typeof services_3;
|
|
2216
2784
|
|
|
2785
|
+
declare interface UIToast {
|
|
2786
|
+
id: string;
|
|
2787
|
+
component: Component;
|
|
2788
|
+
properties: Record<string, unknown>;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2217
2791
|
export declare type UnknownEvent<T> = T extends keyof EventsPayload ? never : T;
|
|
2218
2792
|
|
|
2219
|
-
export declare type
|
|
2220
|
-
[K in keyof
|
|
2793
|
+
export declare type Unref<T> = {
|
|
2794
|
+
[K in keyof T]: T[K] extends MaybeRef<infer Value> ? Value : T[K];
|
|
2221
2795
|
};
|
|
2222
2796
|
|
|
2223
|
-
export declare function
|
|
2224
|
-
|
|
2225
|
-
|
|
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
|
+
}>;
|
|
2226
2811
|
renderedAcceptText: ComputedRef<string>;
|
|
2227
2812
|
renderedCancelText: ComputedRef<string>;
|
|
2228
2813
|
};
|
|
2229
2814
|
|
|
2230
|
-
export declare function
|
|
2231
|
-
|
|
2232
|
-
export declare function useErrorReportModal(props: ExtractPropTypes<typeof errorReportModalProps>): {
|
|
2233
|
-
activeReportIndex: Ref<number>;
|
|
2815
|
+
export declare function useErrorReportModal(props: ErrorReportModalProps): {
|
|
2816
|
+
activeReportIndex: Ref<number, number>;
|
|
2234
2817
|
details: ComputedRef<string>;
|
|
2235
2818
|
nextReportText: string;
|
|
2236
2819
|
previousReportText: string;
|
|
2237
2820
|
report: ComputedRef<ErrorReport>;
|
|
2238
2821
|
};
|
|
2239
2822
|
|
|
2240
|
-
export declare function useErrorReportModalProps(): typeof errorReportModalProps;
|
|
2241
|
-
|
|
2242
2823
|
export declare function useEvent<Event extends EventWithoutPayload>(event: Event, listener: () => unknown): void;
|
|
2243
2824
|
|
|
2244
2825
|
export declare function useEvent<Event extends EventWithPayload>(event: Event, listener: EventListener_2<EventsPayload[Event]>): void;
|
|
@@ -2247,102 +2828,168 @@ export declare function useEvent<Payload>(event: string, listener: (payload: Pay
|
|
|
2247
2828
|
|
|
2248
2829
|
export declare function useEvent<Event extends string>(event: UnknownEvent<Event>, listener: EventListener_2): void;
|
|
2249
2830
|
|
|
2250
|
-
export declare function useForm<const T extends FormFieldDefinitions>(fields: T):
|
|
2251
|
-
|
|
2252
|
-
export declare function useInputAttrs(): [ComputedRef<{}>, ComputedRef<unknown>];
|
|
2831
|
+
export declare function useForm<const T extends FormFieldDefinitions>(fields: T): FormController<T> & FormData_2<T>;
|
|
2253
2832
|
|
|
2254
|
-
export declare function
|
|
2833
|
+
export declare function useInputAttrs(): [ComputedRef<{}>, ComputedRef<ClassValue>];
|
|
2255
2834
|
|
|
2256
|
-
export declare function useLoadingModal(props:
|
|
2835
|
+
export declare function useLoadingModal(props: LoadingModalProps): {
|
|
2836
|
+
renderedTitle: ComputedRef<string>;
|
|
2257
2837
|
renderedMessage: ComputedRef<string>;
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
export declare function
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
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>;
|
|
2267
2850
|
renderedAcceptText: ComputedRef<string>;
|
|
2268
2851
|
renderedCancelText: ComputedRef<string>;
|
|
2269
2852
|
};
|
|
2270
2853
|
|
|
2271
|
-
export declare function usePromptModalProps(): typeof promptModalProps;
|
|
2272
|
-
|
|
2273
|
-
export declare function useSelectEmits(): Writable<typeof selectEmits>;
|
|
2274
|
-
|
|
2275
|
-
export declare function useSelectProps(): typeof selectProps;
|
|
2276
|
-
|
|
2277
|
-
export declare function useSnackbar(props: ExtractPropTypes<typeof snackbarProps>): {
|
|
2278
|
-
activate: (action: SnackbarAction) => void;
|
|
2279
|
-
};
|
|
2280
|
-
|
|
2281
|
-
export declare function useSnackbarProps(): typeof snackbarProps;
|
|
2282
|
-
|
|
2283
2854
|
export declare function validate(value: unknown, rule: string): string[];
|
|
2284
2855
|
|
|
2285
2856
|
export declare const validators: Record<string, FormFieldValidator>;
|
|
2286
2857
|
|
|
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
|
+
}>;
|
|
2866
|
+
|
|
2287
2867
|
export { }
|
|
2288
2868
|
|
|
2289
|
-
|
|
2869
|
+
|
|
2870
|
+
declare module '@aerogel/core' {
|
|
2871
|
+
interface EventsPayload {
|
|
2290
2872
|
'application-ready': void;
|
|
2291
2873
|
'application-mounted': void;
|
|
2292
2874
|
}
|
|
2875
|
+
}
|
|
2293
2876
|
|
|
2294
|
-
|
|
2877
|
+
|
|
2878
|
+
declare module '@aerogel/core' {
|
|
2879
|
+
interface AerogelOptions {
|
|
2295
2880
|
directives?: Record<string, Directive>;
|
|
2296
2881
|
}
|
|
2882
|
+
}
|
|
2297
2883
|
|
|
2298
|
-
|
|
2299
|
-
|
|
2884
|
+
|
|
2885
|
+
declare module 'vue' {
|
|
2886
|
+
interface ComponentCustomDirectives {
|
|
2887
|
+
measure: Directive<string, string>;
|
|
2300
2888
|
}
|
|
2889
|
+
}
|
|
2301
2890
|
|
|
2302
|
-
|
|
2891
|
+
|
|
2892
|
+
declare module '@aerogel/core' {
|
|
2893
|
+
interface AerogelOptions {
|
|
2303
2894
|
handleError?(error: ErrorSource): boolean;
|
|
2304
2895
|
}
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
|
|
2899
|
+
declare module '@aerogel/core' {
|
|
2900
|
+
interface Services extends ErrorsServices {
|
|
2901
|
+
}
|
|
2902
|
+
}
|
|
2305
2903
|
|
|
2306
|
-
export interface Services extends ErrorsServices {}
|
|
2307
2904
|
|
|
2308
|
-
|
|
2905
|
+
declare module '@aerogel/core' {
|
|
2906
|
+
interface Services extends LangServices {
|
|
2907
|
+
}
|
|
2908
|
+
}
|
|
2309
2909
|
|
|
2310
|
-
|
|
2910
|
+
|
|
2911
|
+
declare module 'vue' {
|
|
2311
2912
|
interface ComponentCustomProperties {
|
|
2312
2913
|
$td: typeof translateWithDefault;
|
|
2313
2914
|
}
|
|
2314
2915
|
}
|
|
2315
2916
|
|
|
2917
|
+
|
|
2316
2918
|
declare global {
|
|
2317
|
-
|
|
2318
|
-
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2919
|
+
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2319
2920
|
}
|
|
2320
2921
|
|
|
2321
|
-
|
|
2922
|
+
|
|
2923
|
+
declare module '@aerogel/core' {
|
|
2924
|
+
interface AerogelOptions {
|
|
2322
2925
|
services?: Record<string, Service>;
|
|
2926
|
+
settings?: AppSetting[];
|
|
2927
|
+
}
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
|
|
2931
|
+
declare module 'vue' {
|
|
2932
|
+
interface ComponentCustomProperties extends Services {
|
|
2933
|
+
}
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
|
|
2937
|
+
declare module '@aerogel/core' {
|
|
2938
|
+
interface AerogelOptions {
|
|
2939
|
+
components?: Partial<Record<UIComponent, Component>>;
|
|
2323
2940
|
}
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2324
2943
|
|
|
2325
|
-
declare module '@
|
|
2326
|
-
interface
|
|
2944
|
+
declare module '@aerogel/core' {
|
|
2945
|
+
interface Services extends UIServices {
|
|
2946
|
+
}
|
|
2327
2947
|
}
|
|
2328
2948
|
|
|
2949
|
+
|
|
2329
2950
|
declare global {
|
|
2330
|
-
|
|
2331
|
-
|
|
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
|
+
}
|
|
2332
2962
|
}
|
|
2333
2963
|
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
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
|
+
};
|
|
2337
2974
|
'hide-overlays-backdrop': void;
|
|
2338
|
-
'modal-closed': {
|
|
2339
|
-
|
|
2340
|
-
|
|
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
|
+
};
|
|
2341
2986
|
'show-overlays-backdrop': void;
|
|
2342
2987
|
}
|
|
2988
|
+
}
|
|
2343
2989
|
|
|
2344
|
-
export interface AerogelOptions {
|
|
2345
|
-
components?: Partial<Record<UIComponent, Component>>;
|
|
2346
|
-
}
|
|
2347
2990
|
|
|
2348
|
-
|
|
2991
|
+
declare module '@aerogel/core' {
|
|
2992
|
+
interface EventsPayload {
|
|
2993
|
+
'purge-storage': void;
|
|
2994
|
+
}
|
|
2995
|
+
}
|