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