@rotki/ui-library 1.12.1 → 1.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +409 -14
- package/dist/components/alerts/RuiAlert.vue.d.ts +478 -11
- package/dist/components/buttons/button/RuiButton.vue.d.ts +5 -7
- package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +2 -4
- package/dist/components/cards/RuiCard.vue.d.ts +452 -15
- package/dist/components/cards/RuiCardHeader.vue.d.ts +396 -11
- package/dist/components/chips/RuiChip.vue.d.ts +484 -11
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +39 -43
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +468 -11
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +6 -8
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +5 -7
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +48 -19
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +19 -21
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +514 -9
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +843 -20
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +676 -21
- package/dist/components/icons/RuiIcon.vue.d.ts +2 -2
- package/dist/components/index.d.ts +30 -30
- package/dist/components/index.es.js +5463 -5454
- package/dist/components/loaders/RuiSkeletonBase.vue.d.ts +1 -1
- package/dist/components/logos/RuiLogo.vue.d.ts +1 -1
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +472 -13
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +14 -9
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +476 -23
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +505 -31
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +466 -25
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +24 -11
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +429 -18
- package/dist/components/progress/RuiProgress.vue.d.ts +2 -2
- package/dist/components/steppers/RuiFooterStepper.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepper.vue.d.ts +461 -15
- package/dist/components/steppers/RuiStepperCustomIcon.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepperIcon.vue.d.ts +1 -1
- package/dist/components/tables/RuiDataTable.vue.d.ts +4 -36
- package/dist/components/tables/RuiExpandButton.vue.d.ts +377 -9
- package/dist/components/tables/RuiTableHead.vue.d.ts +17 -14
- package/dist/components/tables/RuiTablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +9 -19
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +378 -11
- package/dist/components/tabs/tab-items/RuiTabItems.vue.d.ts +3 -5
- package/dist/components/tabs/tabs/RuiTabs.vue.d.ts +1 -1
- package/dist/composables/defaults/table.d.ts +1 -1
- package/dist/composables/{index-BWYjmHnW.js → index-DKotjeCA.js} +94 -95
- package/dist/composables/index.d.ts +1 -1
- package/dist/composables/index.es.js +1 -1
- package/dist/composables/popper.d.ts +2 -2
- package/dist/consts/forms/auto-complete/index.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.es.js +52 -52
- package/dist/style.css +1 -1
- package/dist/types/{index-DSBIGM2a.js → index-CN6Ip1GL.js} +1 -2
- package/dist/types/theme.d.ts +1 -1
- package/dist/utils/{index-Cps3W0wA.js → index-Bi6PqW7j.js} +38 -38
- package/dist/{vendor-BRFX1hnB.js → vendor-ClNuDbHx.js} +1385 -1387
- package/dist/web-types.json +91 -91
- package/package.json +45 -45
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import RuiFormTextDetail from '../../../components/helpers/RuiFormTextDetail.vue';
|
|
1
2
|
import { type PopperOptions } from '../../../composables/popper';
|
|
2
3
|
export interface MenuProps {
|
|
3
4
|
modelValue?: boolean;
|
|
@@ -18,36 +19,509 @@ export interface MenuProps {
|
|
|
18
19
|
dense?: boolean;
|
|
19
20
|
persistent?: boolean;
|
|
20
21
|
}
|
|
22
|
+
declare const popper: globalThis.Ref<PopperOptions, PopperOptions>, disabled: globalThis.Ref<boolean, boolean>, closeOnContentClick: globalThis.Ref<boolean, boolean>, errorMessages: globalThis.Ref<string | string[], string | string[]>, successMessages: globalThis.Ref<string | string[], string | string[]>;
|
|
23
|
+
declare const activator: globalThis.Ref<import("@vueuse/core").MaybeElement, import("@vueuse/core").MaybeElement>, menu: globalThis.Ref<import("@vueuse/core").MaybeElement, import("@vueuse/core").MaybeElement>, open: globalThis.Ref<boolean, boolean>, popperEnter: globalThis.Ref<boolean, boolean>, leavePending: globalThis.Ref<boolean, boolean>, onLeavePending: () => void, onPopperLeave: () => void, updatePopper: () => void;
|
|
24
|
+
declare const width: import("vue").ShallowRef<number, number>;
|
|
25
|
+
declare function onLeave(event?: KeyboardEvent): void;
|
|
21
26
|
declare function checkClick(): void;
|
|
22
|
-
declare
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
declare const menuAttrs: globalThis.ComputedRef<{
|
|
28
|
+
onMouseover?: undefined;
|
|
29
|
+
onMouseleave?: undefined;
|
|
30
|
+
onClick?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
onMouseover: () => void;
|
|
33
|
+
onMouseleave: () => void;
|
|
34
|
+
onClick: typeof checkClick;
|
|
35
|
+
}>;
|
|
36
|
+
declare const hasError: globalThis.ComputedRef<boolean>, hasSuccess: globalThis.ComputedRef<boolean>;
|
|
37
|
+
declare const __VLS_ctx: {
|
|
38
|
+
$style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
|
|
39
|
+
"wrapper": string;
|
|
40
|
+
} & {
|
|
41
|
+
"menu": string;
|
|
42
|
+
} & {
|
|
43
|
+
"base": string;
|
|
44
|
+
} & {
|
|
45
|
+
"dark": string;
|
|
46
|
+
} & {
|
|
47
|
+
"menu": string;
|
|
48
|
+
} & {
|
|
49
|
+
"base": string;
|
|
50
|
+
}>;
|
|
51
|
+
$: import("vue").ComponentInternalInstance;
|
|
52
|
+
$data: {};
|
|
53
|
+
$props: {
|
|
54
|
+
readonly modelValue?: boolean | undefined;
|
|
55
|
+
readonly openOnHover?: boolean | undefined;
|
|
56
|
+
readonly fullWidth?: boolean | undefined;
|
|
57
|
+
readonly disabled?: boolean | undefined;
|
|
58
|
+
readonly openDelay?: number | undefined;
|
|
59
|
+
readonly closeDelay?: number | undefined;
|
|
60
|
+
readonly popper?: PopperOptions | undefined;
|
|
61
|
+
readonly wrapperClass?: string | object | string[] | undefined;
|
|
62
|
+
readonly menuClass?: string | object | string[] | undefined;
|
|
63
|
+
readonly closeOnContentClick?: boolean | undefined;
|
|
64
|
+
readonly persistOnActivatorClick?: boolean | undefined;
|
|
65
|
+
readonly hint?: string | undefined;
|
|
66
|
+
readonly errorMessages?: string | string[] | undefined;
|
|
67
|
+
readonly successMessages?: string | string[] | undefined;
|
|
68
|
+
readonly showDetails?: boolean | undefined;
|
|
69
|
+
readonly dense?: boolean | undefined;
|
|
70
|
+
readonly persistent?: boolean | undefined;
|
|
71
|
+
readonly "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
|
|
72
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
73
|
+
$attrs: {
|
|
74
|
+
[x: string]: unknown;
|
|
43
75
|
};
|
|
44
|
-
refs: {
|
|
45
|
-
|
|
46
|
-
menu: HTMLDivElement;
|
|
76
|
+
$refs: {
|
|
77
|
+
[x: string]: unknown;
|
|
47
78
|
};
|
|
48
|
-
|
|
79
|
+
$slots: Readonly<{
|
|
80
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
81
|
+
}>;
|
|
82
|
+
$root: ComponentPublicInstance | null;
|
|
83
|
+
$parent: ComponentPublicInstance | null;
|
|
84
|
+
$host: Element | null;
|
|
85
|
+
$emit: (event: "update:model-value", value: boolean) => void;
|
|
86
|
+
$el: any;
|
|
87
|
+
$options: import("vue").ComponentOptionsBase<Readonly<MenuProps> & Readonly<{
|
|
88
|
+
"onUpdate:model-value"?: ((value: boolean) => any) | undefined;
|
|
89
|
+
}>, {
|
|
90
|
+
RuiFormTextDetail: typeof RuiFormTextDetail;
|
|
91
|
+
popper: typeof popper;
|
|
92
|
+
disabled: typeof disabled;
|
|
93
|
+
closeOnContentClick: typeof closeOnContentClick;
|
|
94
|
+
errorMessages: typeof errorMessages;
|
|
95
|
+
successMessages: typeof successMessages;
|
|
96
|
+
activator: typeof activator;
|
|
97
|
+
menu: typeof menu;
|
|
98
|
+
open: typeof open;
|
|
99
|
+
popperEnter: typeof popperEnter;
|
|
100
|
+
leavePending: typeof leavePending;
|
|
101
|
+
onLeavePending: typeof onLeavePending;
|
|
102
|
+
onPopperLeave: typeof onPopperLeave;
|
|
103
|
+
updatePopper: typeof updatePopper;
|
|
104
|
+
width: typeof width;
|
|
105
|
+
onLeave: typeof onLeave;
|
|
106
|
+
menuAttrs: typeof menuAttrs;
|
|
107
|
+
hasError: typeof hasError;
|
|
108
|
+
hasSuccess: typeof hasSuccess;
|
|
109
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
110
|
+
"update:model-value": (value: boolean) => any;
|
|
111
|
+
}, string, {
|
|
112
|
+
disabled: boolean;
|
|
113
|
+
modelValue: boolean;
|
|
114
|
+
errorMessages: string | string[];
|
|
115
|
+
successMessages: string | string[];
|
|
116
|
+
hint: string;
|
|
117
|
+
openDelay: number;
|
|
118
|
+
closeDelay: number;
|
|
119
|
+
popper: PopperOptions;
|
|
120
|
+
openOnHover: boolean;
|
|
121
|
+
fullWidth: boolean;
|
|
122
|
+
wrapperClass: string | object | string[];
|
|
123
|
+
menuClass: string | object | string[];
|
|
124
|
+
closeOnContentClick: boolean;
|
|
125
|
+
persistOnActivatorClick: boolean;
|
|
126
|
+
persistent: boolean;
|
|
127
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
128
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
129
|
+
created?: (() => void) | (() => void)[];
|
|
130
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
131
|
+
mounted?: (() => void) | (() => void)[];
|
|
132
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
133
|
+
updated?: (() => void) | (() => void)[];
|
|
134
|
+
activated?: (() => void) | (() => void)[];
|
|
135
|
+
deactivated?: (() => void) | (() => void)[];
|
|
136
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
137
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
138
|
+
destroyed?: (() => void) | (() => void)[];
|
|
139
|
+
unmounted?: (() => void) | (() => void)[];
|
|
140
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
141
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
142
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
143
|
+
};
|
|
144
|
+
$forceUpdate: () => void;
|
|
145
|
+
$nextTick: typeof import("vue").nextTick;
|
|
146
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
147
|
+
disabled: boolean;
|
|
148
|
+
modelValue: boolean;
|
|
149
|
+
errorMessages: string | string[];
|
|
150
|
+
successMessages: string | string[];
|
|
151
|
+
hint: string;
|
|
152
|
+
openDelay: number;
|
|
153
|
+
closeDelay: number;
|
|
154
|
+
popper: PopperOptions;
|
|
155
|
+
openOnHover: boolean;
|
|
156
|
+
fullWidth: boolean;
|
|
157
|
+
wrapperClass: string | object | string[];
|
|
158
|
+
menuClass: string | object | string[];
|
|
159
|
+
closeOnContentClick: boolean;
|
|
160
|
+
persistOnActivatorClick: boolean;
|
|
161
|
+
persistent: boolean;
|
|
162
|
+
"onUpdate:model-value"?: ((value: boolean) => any) | undefined;
|
|
163
|
+
dense?: boolean;
|
|
164
|
+
showDetails?: boolean;
|
|
165
|
+
RuiFormTextDetail: typeof RuiFormTextDetail;
|
|
166
|
+
activator: import("@vueuse/core").MaybeElement;
|
|
167
|
+
menu: import("@vueuse/core").MaybeElement;
|
|
168
|
+
open: boolean;
|
|
169
|
+
popperEnter: boolean;
|
|
170
|
+
leavePending: boolean;
|
|
171
|
+
onLeavePending: typeof onLeavePending;
|
|
172
|
+
onPopperLeave: typeof onPopperLeave;
|
|
173
|
+
updatePopper: typeof updatePopper;
|
|
174
|
+
width: number;
|
|
175
|
+
onLeave: typeof onLeave;
|
|
176
|
+
menuAttrs: {
|
|
177
|
+
onMouseover?: undefined;
|
|
178
|
+
onMouseleave?: undefined;
|
|
179
|
+
onClick?: undefined;
|
|
180
|
+
} | {
|
|
181
|
+
onMouseover: () => void;
|
|
182
|
+
onMouseleave: () => void;
|
|
183
|
+
onClick: typeof checkClick;
|
|
184
|
+
};
|
|
185
|
+
hasError: boolean;
|
|
186
|
+
hasSuccess: boolean;
|
|
187
|
+
$route: import("vue-router").TypesConfig extends Record<"$route", infer T> ? T : import("vue-router").RouteLocationNormalizedLoaded;
|
|
188
|
+
$router: import("vue-router").TypesConfig extends Record<"$router", infer T> ? T : import("vue-router").Router;
|
|
189
|
+
DEFAULT_POPPER_OPTIONS: import("vue").UnwrapRef<typeof import("../../../composables/popper")["DEFAULT_POPPER_OPTIONS"]>;
|
|
190
|
+
EffectScope: import("vue").UnwrapRef<typeof import("vue")["EffectScope"]>;
|
|
191
|
+
TableSymbol: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["TableSymbol"]>;
|
|
192
|
+
assert: import("vue").UnwrapRef<typeof import("../../../utils/assert")["assert"]>;
|
|
193
|
+
asyncComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["asyncComputed"]>;
|
|
194
|
+
autoResetRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["autoResetRef"]>;
|
|
195
|
+
computed: import("vue").UnwrapRef<typeof import("vue")["computed"]>;
|
|
196
|
+
computedAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedAsync"]>;
|
|
197
|
+
computedEager: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedEager"]>;
|
|
198
|
+
computedInject: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedInject"]>;
|
|
199
|
+
computedWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedWithControl"]>;
|
|
200
|
+
controlledComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledComputed"]>;
|
|
201
|
+
controlledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledRef"]>;
|
|
202
|
+
createApp: import("vue").UnwrapRef<typeof import("vue")["createApp"]>;
|
|
203
|
+
createEventHook: import("vue").UnwrapRef<typeof import("@vueuse/core")["createEventHook"]>;
|
|
204
|
+
createGlobalState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createGlobalState"]>;
|
|
205
|
+
createInjectionState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createInjectionState"]>;
|
|
206
|
+
createPopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["createPopper"]>;
|
|
207
|
+
createReactiveFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReactiveFn"]>;
|
|
208
|
+
createRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["createRef"]>;
|
|
209
|
+
createReusableTemplate: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReusableTemplate"]>;
|
|
210
|
+
createSharedComposable: import("vue").UnwrapRef<typeof import("@vueuse/core")["createSharedComposable"]>;
|
|
211
|
+
createTableDefaults: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["createTableDefaults"]>;
|
|
212
|
+
createTemplatePromise: import("vue").UnwrapRef<typeof import("@vueuse/core")["createTemplatePromise"]>;
|
|
213
|
+
createUnrefFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createUnrefFn"]>;
|
|
214
|
+
customRef: import("vue").UnwrapRef<typeof import("vue")["customRef"]>;
|
|
215
|
+
debouncedRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedRef"]>;
|
|
216
|
+
debouncedWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedWatch"]>;
|
|
217
|
+
defineAsyncComponent: import("vue").UnwrapRef<typeof import("vue")["defineAsyncComponent"]>;
|
|
218
|
+
defineComponent: import("vue").UnwrapRef<typeof import("vue")["defineComponent"]>;
|
|
219
|
+
eagerComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["eagerComputed"]>;
|
|
220
|
+
effectScope: import("vue").UnwrapRef<typeof import("vue")["effectScope"]>;
|
|
221
|
+
extendRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["extendRef"]>;
|
|
222
|
+
formatCurrency: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatCurrency"]>;
|
|
223
|
+
formatInteger: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatInteger"]>;
|
|
224
|
+
formatNumber: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatNumber"]>;
|
|
225
|
+
generateId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["generateId"]>;
|
|
226
|
+
get: import("vue").UnwrapRef<typeof import("@vueuse/shared")["get"]>;
|
|
227
|
+
getCurrentInstance: import("vue").UnwrapRef<typeof import("vue")["getCurrentInstance"]>;
|
|
228
|
+
getCurrentScope: import("vue").UnwrapRef<typeof import("vue")["getCurrentScope"]>;
|
|
229
|
+
getNonRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getNonRootAttrs"]>;
|
|
230
|
+
getRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootAttrs"]>;
|
|
231
|
+
getRootKeys: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootKeys"]>;
|
|
232
|
+
getStringValue: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getStringValue"]>;
|
|
233
|
+
getText: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getText"]>;
|
|
234
|
+
getTextToken: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getTextToken"]>;
|
|
235
|
+
h: import("vue").UnwrapRef<typeof import("vue")["h"]>;
|
|
236
|
+
ignorableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["ignorableWatch"]>;
|
|
237
|
+
inject: import("vue").UnwrapRef<typeof import("vue")["inject"]>;
|
|
238
|
+
injectLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["injectLocal"]>;
|
|
239
|
+
isDefined: import("vue").UnwrapRef<typeof import("@vueuse/core")["isDefined"]>;
|
|
240
|
+
isEqual: import("vue").UnwrapRef<typeof import("../../../utils/is-equal")["isEqual"]>;
|
|
241
|
+
isProxy: import("vue").UnwrapRef<typeof import("vue")["isProxy"]>;
|
|
242
|
+
isReactive: import("vue").UnwrapRef<typeof import("vue")["isReactive"]>;
|
|
243
|
+
isReadonly: import("vue").UnwrapRef<typeof import("vue")["isReadonly"]>;
|
|
244
|
+
isRef: import("vue").UnwrapRef<typeof import("vue")["isRef"]>;
|
|
245
|
+
makeDestructurable: import("vue").UnwrapRef<typeof import("@vueuse/core")["makeDestructurable"]>;
|
|
246
|
+
markRaw: import("vue").UnwrapRef<typeof import("vue")["markRaw"]>;
|
|
247
|
+
nextTick: import("vue").UnwrapRef<typeof import("vue")["nextTick"]>;
|
|
248
|
+
onActivated: import("vue").UnwrapRef<typeof import("vue")["onActivated"]>;
|
|
249
|
+
onBeforeMount: import("vue").UnwrapRef<typeof import("vue")["onBeforeMount"]>;
|
|
250
|
+
onBeforeUnmount: import("vue").UnwrapRef<typeof import("vue")["onBeforeUnmount"]>;
|
|
251
|
+
onBeforeUpdate: import("vue").UnwrapRef<typeof import("vue")["onBeforeUpdate"]>;
|
|
252
|
+
onClickOutside: import("vue").UnwrapRef<typeof import("@vueuse/core")["onClickOutside"]>;
|
|
253
|
+
onDeactivated: import("vue").UnwrapRef<typeof import("vue")["onDeactivated"]>;
|
|
254
|
+
onElementRemoval: import("vue").UnwrapRef<typeof import("@vueuse/core")["onElementRemoval"]>;
|
|
255
|
+
onErrorCaptured: import("vue").UnwrapRef<typeof import("vue")["onErrorCaptured"]>;
|
|
256
|
+
onKeyStroke: import("vue").UnwrapRef<typeof import("@vueuse/core")["onKeyStroke"]>;
|
|
257
|
+
onLongPress: import("vue").UnwrapRef<typeof import("@vueuse/core")["onLongPress"]>;
|
|
258
|
+
onMounted: import("vue").UnwrapRef<typeof import("vue")["onMounted"]>;
|
|
259
|
+
onRenderTracked: import("vue").UnwrapRef<typeof import("vue")["onRenderTracked"]>;
|
|
260
|
+
onRenderTriggered: import("vue").UnwrapRef<typeof import("vue")["onRenderTriggered"]>;
|
|
261
|
+
onScopeDispose: import("vue").UnwrapRef<typeof import("vue")["onScopeDispose"]>;
|
|
262
|
+
onServerPrefetch: import("vue").UnwrapRef<typeof import("vue")["onServerPrefetch"]>;
|
|
263
|
+
onStartTyping: import("vue").UnwrapRef<typeof import("@vueuse/core")["onStartTyping"]>;
|
|
264
|
+
onUnmounted: import("vue").UnwrapRef<typeof import("vue")["onUnmounted"]>;
|
|
265
|
+
onUpdated: import("vue").UnwrapRef<typeof import("vue")["onUpdated"]>;
|
|
266
|
+
onWatcherCleanup: import("vue").UnwrapRef<typeof import("vue")["onWatcherCleanup"]>;
|
|
267
|
+
pausableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["pausableWatch"]>;
|
|
268
|
+
provide: import("vue").UnwrapRef<typeof import("vue")["provide"]>;
|
|
269
|
+
provideLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["provideLocal"]>;
|
|
270
|
+
reactify: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactify"]>;
|
|
271
|
+
reactifyObject: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactifyObject"]>;
|
|
272
|
+
reactive: import("vue").UnwrapRef<typeof import("vue")["reactive"]>;
|
|
273
|
+
reactiveComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveComputed"]>;
|
|
274
|
+
reactiveOmit: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveOmit"]>;
|
|
275
|
+
reactivePick: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactivePick"]>;
|
|
276
|
+
readonly: import("vue").UnwrapRef<typeof import("vue")["readonly"]>;
|
|
277
|
+
ref: import("vue").UnwrapRef<typeof import("vue")["ref"]>;
|
|
278
|
+
refAutoReset: import("vue").UnwrapRef<typeof import("@vueuse/core")["refAutoReset"]>;
|
|
279
|
+
refDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDebounced"]>;
|
|
280
|
+
refDefault: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDefault"]>;
|
|
281
|
+
refThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["refThrottled"]>;
|
|
282
|
+
refWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["refWithControl"]>;
|
|
283
|
+
resolveComponent: import("vue").UnwrapRef<typeof import("vue")["resolveComponent"]>;
|
|
284
|
+
resolveRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveRef"]>;
|
|
285
|
+
resolveUnref: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveUnref"]>;
|
|
286
|
+
set: import("vue").UnwrapRef<typeof import("@vueuse/shared")["set"]>;
|
|
287
|
+
shallowReactive: import("vue").UnwrapRef<typeof import("vue")["shallowReactive"]>;
|
|
288
|
+
shallowReadonly: import("vue").UnwrapRef<typeof import("vue")["shallowReadonly"]>;
|
|
289
|
+
shallowRef: import("vue").UnwrapRef<typeof import("vue")["shallowRef"]>;
|
|
290
|
+
syncRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRef"]>;
|
|
291
|
+
syncRefs: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRefs"]>;
|
|
292
|
+
templateRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["templateRef"]>;
|
|
293
|
+
throttledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledRef"]>;
|
|
294
|
+
throttledWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledWatch"]>;
|
|
295
|
+
toRaw: import("vue").UnwrapRef<typeof import("vue")["toRaw"]>;
|
|
296
|
+
toReactive: import("vue").UnwrapRef<typeof import("@vueuse/core")["toReactive"]>;
|
|
297
|
+
toRef: import("vue").UnwrapRef<typeof import("vue")["toRef"]>;
|
|
298
|
+
toRefs: import("vue").UnwrapRef<typeof import("vue")["toRefs"]>;
|
|
299
|
+
toValue: import("vue").UnwrapRef<typeof import("vue")["toValue"]>;
|
|
300
|
+
transformCase: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformCase"]>;
|
|
301
|
+
transformPropsUnit: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformPropsUnit"]>;
|
|
302
|
+
triggerRef: import("vue").UnwrapRef<typeof import("vue")["triggerRef"]>;
|
|
303
|
+
tryOnBeforeMount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeMount"]>;
|
|
304
|
+
tryOnBeforeUnmount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeUnmount"]>;
|
|
305
|
+
tryOnMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnMounted"]>;
|
|
306
|
+
tryOnScopeDispose: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnScopeDispose"]>;
|
|
307
|
+
tryOnUnmounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnUnmounted"]>;
|
|
308
|
+
unref: import("vue").UnwrapRef<typeof import("vue")["unref"]>;
|
|
309
|
+
unrefElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["unrefElement"]>;
|
|
310
|
+
until: import("vue").UnwrapRef<typeof import("@vueuse/core")["until"]>;
|
|
311
|
+
useActiveElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useActiveElement"]>;
|
|
312
|
+
useAnimate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAnimate"]>;
|
|
313
|
+
useArrayDifference: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayDifference"]>;
|
|
314
|
+
useArrayEvery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayEvery"]>;
|
|
315
|
+
useArrayFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFilter"]>;
|
|
316
|
+
useArrayFind: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFind"]>;
|
|
317
|
+
useArrayFindIndex: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindIndex"]>;
|
|
318
|
+
useArrayFindLast: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindLast"]>;
|
|
319
|
+
useArrayIncludes: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayIncludes"]>;
|
|
320
|
+
useArrayJoin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayJoin"]>;
|
|
321
|
+
useArrayMap: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayMap"]>;
|
|
322
|
+
useArrayReduce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayReduce"]>;
|
|
323
|
+
useArraySome: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArraySome"]>;
|
|
324
|
+
useArrayUnique: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayUnique"]>;
|
|
325
|
+
useAsyncQueue: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncQueue"]>;
|
|
326
|
+
useAsyncState: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncState"]>;
|
|
327
|
+
useAttrs: import("vue").UnwrapRef<typeof import("vue")["useAttrs"]>;
|
|
328
|
+
useAutoCompleteProps: import("vue").UnwrapRef<typeof import("../../../composables/forms/auto-complete")["useAutoCompleteProps"]>;
|
|
329
|
+
useBase64: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBase64"]>;
|
|
330
|
+
useBattery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBattery"]>;
|
|
331
|
+
useBluetooth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBluetooth"]>;
|
|
332
|
+
useBreakpoint: import("vue").UnwrapRef<typeof import("../../../composables")["useBreakpoint"]>;
|
|
333
|
+
useBreakpoints: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBreakpoints"]>;
|
|
334
|
+
useBroadcastChannel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBroadcastChannel"]>;
|
|
335
|
+
useBrowserLocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBrowserLocation"]>;
|
|
336
|
+
useCached: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCached"]>;
|
|
337
|
+
useClipboard: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboard"]>;
|
|
338
|
+
useClipboardItems: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboardItems"]>;
|
|
339
|
+
useCloned: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCloned"]>;
|
|
340
|
+
useColorMode: import("vue").UnwrapRef<typeof import("@vueuse/core")["useColorMode"]>;
|
|
341
|
+
useConfirmDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useConfirmDialog"]>;
|
|
342
|
+
useCountdown: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCountdown"]>;
|
|
343
|
+
useCounter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCounter"]>;
|
|
344
|
+
useCssModule: import("vue").UnwrapRef<typeof import("vue")["useCssModule"]>;
|
|
345
|
+
useCssVar: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCssVar"]>;
|
|
346
|
+
useCssVars: import("vue").UnwrapRef<typeof import("vue")["useCssVars"]>;
|
|
347
|
+
useCurrentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCurrentElement"]>;
|
|
348
|
+
useCycleList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCycleList"]>;
|
|
349
|
+
useDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDark"]>;
|
|
350
|
+
useDateFormat: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDateFormat"]>;
|
|
351
|
+
useDebounce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounce"]>;
|
|
352
|
+
useDebounceFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounceFn"]>;
|
|
353
|
+
useDebouncedRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebouncedRefHistory"]>;
|
|
354
|
+
useDeviceMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceMotion"]>;
|
|
355
|
+
useDeviceOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceOrientation"]>;
|
|
356
|
+
useDevicePixelRatio: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicePixelRatio"]>;
|
|
357
|
+
useDevicesList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicesList"]>;
|
|
358
|
+
useDisplayMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDisplayMedia"]>;
|
|
359
|
+
useDocumentVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDocumentVisibility"]>;
|
|
360
|
+
useDraggable: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDraggable"]>;
|
|
361
|
+
useDropZone: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDropZone"]>;
|
|
362
|
+
useDropdownMenu: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownMenu"]>;
|
|
363
|
+
useDropdownOptionProperty: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownOptionProperty"]>;
|
|
364
|
+
useElementBounding: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementBounding"]>;
|
|
365
|
+
useElementByPoint: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementByPoint"]>;
|
|
366
|
+
useElementHover: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementHover"]>;
|
|
367
|
+
useElementSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementSize"]>;
|
|
368
|
+
useElementVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementVisibility"]>;
|
|
369
|
+
useEventBus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventBus"]>;
|
|
370
|
+
useEventListener: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventListener"]>;
|
|
371
|
+
useEventSource: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventSource"]>;
|
|
372
|
+
useEyeDropper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEyeDropper"]>;
|
|
373
|
+
useFavicon: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFavicon"]>;
|
|
374
|
+
useFetch: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFetch"]>;
|
|
375
|
+
useFileDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileDialog"]>;
|
|
376
|
+
useFileSystemAccess: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileSystemAccess"]>;
|
|
377
|
+
useFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocus"]>;
|
|
378
|
+
useFocusWithin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocusWithin"]>;
|
|
379
|
+
useFormTextDetail: import("vue").UnwrapRef<typeof import("../../../utils/form-text-detail")["useFormTextDetail"]>;
|
|
380
|
+
useFps: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFps"]>;
|
|
381
|
+
useFullscreen: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFullscreen"]>;
|
|
382
|
+
useGamepad: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGamepad"]>;
|
|
383
|
+
useGeolocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGeolocation"]>;
|
|
384
|
+
useGlobalId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["useGlobalId"]>;
|
|
385
|
+
useIcons: import("vue").UnwrapRef<typeof import("../../../composables")["useIcons"]>;
|
|
386
|
+
useId: import("vue").UnwrapRef<typeof import("vue")["useId"]>;
|
|
387
|
+
useIdle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIdle"]>;
|
|
388
|
+
useImage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useImage"]>;
|
|
389
|
+
useInfiniteScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInfiniteScroll"]>;
|
|
390
|
+
useIntersectionObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntersectionObserver"]>;
|
|
391
|
+
useInterval: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInterval"]>;
|
|
392
|
+
useIntervalFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntervalFn"]>;
|
|
393
|
+
useKeyModifier: import("vue").UnwrapRef<typeof import("@vueuse/core")["useKeyModifier"]>;
|
|
394
|
+
useLastChanged: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLastChanged"]>;
|
|
395
|
+
useLocalStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLocalStorage"]>;
|
|
396
|
+
useMagicKeys: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMagicKeys"]>;
|
|
397
|
+
useManualRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useManualRefHistory"]>;
|
|
398
|
+
useMediaControls: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaControls"]>;
|
|
399
|
+
useMediaQuery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaQuery"]>;
|
|
400
|
+
useMemoize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemoize"]>;
|
|
401
|
+
useMemory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemory"]>;
|
|
402
|
+
useModel: import("vue").UnwrapRef<typeof import("vue")["useModel"]>;
|
|
403
|
+
useMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMounted"]>;
|
|
404
|
+
useMouse: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouse"]>;
|
|
405
|
+
useMouseInElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouseInElement"]>;
|
|
406
|
+
useMousePressed: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMousePressed"]>;
|
|
407
|
+
useMutationObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMutationObserver"]>;
|
|
408
|
+
useNavigatorLanguage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNavigatorLanguage"]>;
|
|
409
|
+
useNetwork: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNetwork"]>;
|
|
410
|
+
useNow: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNow"]>;
|
|
411
|
+
useObjectUrl: import("vue").UnwrapRef<typeof import("@vueuse/core")["useObjectUrl"]>;
|
|
412
|
+
useOffsetPagination: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOffsetPagination"]>;
|
|
413
|
+
useOnline: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOnline"]>;
|
|
414
|
+
usePageLeave: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePageLeave"]>;
|
|
415
|
+
useParallax: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParallax"]>;
|
|
416
|
+
useParentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParentElement"]>;
|
|
417
|
+
usePerformanceObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePerformanceObserver"]>;
|
|
418
|
+
usePermission: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePermission"]>;
|
|
419
|
+
usePointer: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointer"]>;
|
|
420
|
+
usePointerLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerLock"]>;
|
|
421
|
+
usePointerSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerSwipe"]>;
|
|
422
|
+
usePopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["usePopper"]>;
|
|
423
|
+
usePreferredColorScheme: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredColorScheme"]>;
|
|
424
|
+
usePreferredContrast: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredContrast"]>;
|
|
425
|
+
usePreferredDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredDark"]>;
|
|
426
|
+
usePreferredLanguages: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredLanguages"]>;
|
|
427
|
+
usePreferredReducedMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedMotion"]>;
|
|
428
|
+
usePreferredReducedTransparency: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedTransparency"]>;
|
|
429
|
+
usePrevious: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePrevious"]>;
|
|
430
|
+
useRafFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRafFn"]>;
|
|
431
|
+
useRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRefHistory"]>;
|
|
432
|
+
useResizeObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useResizeObserver"]>;
|
|
433
|
+
useRotkiTheme: import("vue").UnwrapRef<typeof import("../../../composables")["useRotkiTheme"]>;
|
|
434
|
+
useSSRWidth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSSRWidth"]>;
|
|
435
|
+
useScreenOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenOrientation"]>;
|
|
436
|
+
useScreenSafeArea: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenSafeArea"]>;
|
|
437
|
+
useScriptTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScriptTag"]>;
|
|
438
|
+
useScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScroll"]>;
|
|
439
|
+
useScrollLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScrollLock"]>;
|
|
440
|
+
useSessionStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSessionStorage"]>;
|
|
441
|
+
useShare: import("vue").UnwrapRef<typeof import("@vueuse/core")["useShare"]>;
|
|
442
|
+
useSlots: import("vue").UnwrapRef<typeof import("vue")["useSlots"]>;
|
|
443
|
+
useSorted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSorted"]>;
|
|
444
|
+
useSpeechRecognition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechRecognition"]>;
|
|
445
|
+
useSpeechSynthesis: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechSynthesis"]>;
|
|
446
|
+
useStepper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStepper"]>;
|
|
447
|
+
useStickyTableHeader: import("vue").UnwrapRef<typeof import("../../../composables/sticky-header")["useStickyTableHeader"]>;
|
|
448
|
+
useStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorage"]>;
|
|
449
|
+
useStorageAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorageAsync"]>;
|
|
450
|
+
useStyleTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStyleTag"]>;
|
|
451
|
+
useSupported: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSupported"]>;
|
|
452
|
+
useSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSwipe"]>;
|
|
453
|
+
useTable: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["useTable"]>;
|
|
454
|
+
useTemplateRef: import("vue").UnwrapRef<typeof import("vue")["useTemplateRef"]>;
|
|
455
|
+
useTemplateRefsList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTemplateRefsList"]>;
|
|
456
|
+
useTextDirection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextDirection"]>;
|
|
457
|
+
useTextSelection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextSelection"]>;
|
|
458
|
+
useTextareaAutosize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextareaAutosize"]>;
|
|
459
|
+
useThrottle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottle"]>;
|
|
460
|
+
useThrottleFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottleFn"]>;
|
|
461
|
+
useThrottledRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottledRefHistory"]>;
|
|
462
|
+
useTimeAgo: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeAgo"]>;
|
|
463
|
+
useTimeout: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeout"]>;
|
|
464
|
+
useTimeoutFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutFn"]>;
|
|
465
|
+
useTimeoutPoll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutPoll"]>;
|
|
466
|
+
useTimestamp: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimestamp"]>;
|
|
467
|
+
useTitle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTitle"]>;
|
|
468
|
+
useToNumber: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToNumber"]>;
|
|
469
|
+
useToString: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToString"]>;
|
|
470
|
+
useToggle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToggle"]>;
|
|
471
|
+
useTransition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTransition"]>;
|
|
472
|
+
useUrlSearchParams: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUrlSearchParams"]>;
|
|
473
|
+
useUserMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUserMedia"]>;
|
|
474
|
+
useVModel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModel"]>;
|
|
475
|
+
useVModels: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModels"]>;
|
|
476
|
+
useVibrate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVibrate"]>;
|
|
477
|
+
useVirtualList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVirtualList"]>;
|
|
478
|
+
useWakeLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWakeLock"]>;
|
|
479
|
+
useWebNotification: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebNotification"]>;
|
|
480
|
+
useWebSocket: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebSocket"]>;
|
|
481
|
+
useWebWorker: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorker"]>;
|
|
482
|
+
useWebWorkerFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorkerFn"]>;
|
|
483
|
+
useWindowFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowFocus"]>;
|
|
484
|
+
useWindowScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowScroll"]>;
|
|
485
|
+
useWindowSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowSize"]>;
|
|
486
|
+
watch: import("vue").UnwrapRef<typeof import("vue")["watch"]>;
|
|
487
|
+
watchArray: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchArray"]>;
|
|
488
|
+
watchAtMost: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchAtMost"]>;
|
|
489
|
+
watchDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDebounced"]>;
|
|
490
|
+
watchDeep: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDeep"]>;
|
|
491
|
+
watchEffect: import("vue").UnwrapRef<typeof import("vue")["watchEffect"]>;
|
|
492
|
+
watchIgnorable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchIgnorable"]>;
|
|
493
|
+
watchImmediate: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchImmediate"]>;
|
|
494
|
+
watchOnce: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchOnce"]>;
|
|
495
|
+
watchPausable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchPausable"]>;
|
|
496
|
+
watchPostEffect: import("vue").UnwrapRef<typeof import("vue")["watchPostEffect"]>;
|
|
497
|
+
watchSyncEffect: import("vue").UnwrapRef<typeof import("vue")["watchSyncEffect"]>;
|
|
498
|
+
watchThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchThrottled"]>;
|
|
499
|
+
watchTriggerable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchTriggerable"]>;
|
|
500
|
+
watchWithFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchWithFilter"]>;
|
|
501
|
+
whenever: import("vue").UnwrapRef<typeof import("@vueuse/core")["whenever"]>;
|
|
49
502
|
};
|
|
50
|
-
|
|
503
|
+
declare var __VLS_1: {
|
|
504
|
+
attrs: {
|
|
505
|
+
onMouseover?: undefined;
|
|
506
|
+
onMouseleave?: undefined;
|
|
507
|
+
onClick?: undefined;
|
|
508
|
+
} | {
|
|
509
|
+
onMouseover: () => void;
|
|
510
|
+
onMouseleave: () => void;
|
|
511
|
+
onClick: typeof checkClick;
|
|
512
|
+
};
|
|
513
|
+
open: boolean;
|
|
514
|
+
disabled: boolean;
|
|
515
|
+
hasError: boolean;
|
|
516
|
+
hasSuccess: boolean;
|
|
517
|
+
}, __VLS_17: {
|
|
518
|
+
width: number;
|
|
519
|
+
};
|
|
520
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
521
|
+
activator?: (props: typeof __VLS_1) => any;
|
|
522
|
+
} & {
|
|
523
|
+
default?: (props: typeof __VLS_17) => any;
|
|
524
|
+
}>;
|
|
51
525
|
declare const __VLS_component: import("vue").DefineComponent<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
52
526
|
"update:model-value": (value: boolean) => any;
|
|
53
527
|
}, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{
|
|
@@ -58,20 +532,20 @@ declare const __VLS_component: import("vue").DefineComponent<MenuProps, {}, {},
|
|
|
58
532
|
errorMessages: string | string[];
|
|
59
533
|
successMessages: string | string[];
|
|
60
534
|
hint: string;
|
|
61
|
-
openOnHover: boolean;
|
|
62
|
-
fullWidth: boolean;
|
|
63
535
|
openDelay: number;
|
|
64
536
|
closeDelay: number;
|
|
65
537
|
popper: PopperOptions;
|
|
538
|
+
openOnHover: boolean;
|
|
539
|
+
fullWidth: boolean;
|
|
66
540
|
wrapperClass: string | object | string[];
|
|
67
541
|
menuClass: string | object | string[];
|
|
68
542
|
closeOnContentClick: boolean;
|
|
69
543
|
persistOnActivatorClick: boolean;
|
|
70
544
|
persistent: boolean;
|
|
71
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
72
|
-
declare const _default:
|
|
545
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
546
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
73
547
|
export default _default;
|
|
74
|
-
type
|
|
548
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
75
549
|
new (): {
|
|
76
550
|
$slots: S;
|
|
77
551
|
};
|