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