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