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