@rotki/ui-library 1.12.3 → 2.0.0
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 +2 -403
- package/dist/components/alerts/RuiAlert.vue.d.ts +2 -473
- package/dist/components/buttons/button/RuiButton.vue.d.ts +5 -3
- package/dist/components/calendar/RuiCalendar.vue.d.ts +30 -0
- package/dist/components/calendar/RuiCalendarGrid.vue.d.ts +13 -0
- package/dist/components/calendar/RuiCalendarHeader.vue.d.ts +16 -0
- package/dist/components/calendar/RuiCalendarMenu.vue.d.ts +17 -0
- package/dist/components/calendar/state.d.ts +17 -0
- package/dist/components/cards/RuiCard.vue.d.ts +2 -438
- package/dist/components/cards/RuiCardHeader.vue.d.ts +2 -390
- package/dist/components/chips/RuiChip.vue.d.ts +2 -479
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +28 -17
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +2 -466
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +1 -1
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +3 -37
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +22 -15
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +2 -512
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +2 -834
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +9 -671
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.es.js +4212 -3534
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +3 -465
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +2 -10
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +3 -462
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +4 -485
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +2 -449
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +2 -20
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +4 -422
- package/dist/components/steppers/RuiStepper.vue.d.ts +2 -455
- package/dist/components/tables/RuiExpandButton.vue.d.ts +2 -375
- package/dist/components/tables/RuiTableHead.vue.d.ts +6 -5
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +2 -2
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +2 -373
- package/dist/components/time-picker/RuiTimePicker.vue.d.ts +18 -0
- package/dist/composables/dropdown-menu.d.ts +2 -2
- package/dist/composables/{index-DKotjeCA.js → index-DOuH9rdn.js} +12 -12
- package/dist/composables/index.es.js +1 -1
- package/dist/consts/time-accuracy-BnKA5GyT.js +8 -0
- package/dist/consts/time-accuracy.d.ts +6 -0
- package/dist/icons/icons_1.d.ts +500 -500
- package/dist/icons/icons_1.es.js +1884 -1884
- package/dist/icons/icons_2.d.ts +500 -500
- package/dist/icons/icons_2.es.js +1868 -1868
- package/dist/icons/icons_3.d.ts +500 -500
- package/dist/icons/icons_3.es.js +1862 -1862
- package/dist/icons/icons_4.d.ts +137 -500
- package/dist/icons/icons_4.es.js +497 -1949
- package/dist/icons/index.d.ts +1 -7
- package/dist/icons/index.es.js +1644 -4665
- package/dist/index.es.js +1703 -4722
- package/dist/style.css +1 -1
- package/dist/utils/{index-Bi6PqW7j.js → index-CxHG7aHQ.js} +1 -1
- package/dist/{vendor-ClNuDbHx.js → vendor-BeEprDAU.js} +1288 -1288
- package/dist/web-types.json +355 -40
- package/package.json +43 -42
- package/dist/icons/icons_10.d.ts +0 -153
- package/dist/icons/icons_10.es.js +0 -611
- package/dist/icons/icons_5.d.ts +0 -501
- package/dist/icons/icons_5.es.js +0 -2003
- package/dist/icons/icons_6.d.ts +0 -501
- package/dist/icons/icons_6.es.js +0 -2003
- package/dist/icons/icons_7.d.ts +0 -501
- package/dist/icons/icons_7.es.js +0 -2003
- package/dist/icons/icons_8.d.ts +0 -501
- package/dist/icons/icons_8.es.js +0 -2003
- package/dist/icons/icons_9.d.ts +0 -501
- package/dist/icons/icons_9.es.js +0 -2003
|
@@ -1,8 +1,5 @@
|
|
|
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';
|
|
6
3
|
export interface Props {
|
|
7
4
|
tile?: boolean;
|
|
8
5
|
clickable?: boolean;
|
|
@@ -15,486 +12,12 @@ export interface Props {
|
|
|
15
12
|
bgColor?: string;
|
|
16
13
|
textColor?: string;
|
|
17
14
|
}
|
|
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)[];
|
|
155
|
-
};
|
|
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"]>;
|
|
491
|
-
};
|
|
492
15
|
declare var __VLS_1: {}, __VLS_3: {};
|
|
493
|
-
type __VLS_Slots =
|
|
16
|
+
type __VLS_Slots = {} & {
|
|
494
17
|
prepend?: (props: typeof __VLS_1) => any;
|
|
495
18
|
} & {
|
|
496
19
|
default?: (props: typeof __VLS_3) => any;
|
|
497
|
-
}
|
|
20
|
+
};
|
|
498
21
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
499
22
|
click: (e: any) => any;
|
|
500
23
|
"click:close": () => any;
|
|
@@ -48,7 +48,7 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
48
48
|
}>): void;
|
|
49
49
|
attrs: any;
|
|
50
50
|
slots: {
|
|
51
|
-
activator?: (
|
|
51
|
+
activator?: (props: {
|
|
52
52
|
disabled: boolean & import("@vue/reactivity").DistributeRef<[(Readonly<{
|
|
53
53
|
labelClass: string;
|
|
54
54
|
menuClass: string;
|
|
@@ -309,21 +309,28 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
309
309
|
open: boolean;
|
|
310
310
|
hasError: boolean;
|
|
311
311
|
hasSuccess: boolean;
|
|
312
|
-
}) => any
|
|
313
|
-
|
|
312
|
+
}) => any;
|
|
313
|
+
} & {
|
|
314
|
+
'activator.label'?: (props: {
|
|
314
315
|
value: TItem[];
|
|
315
|
-
}) => any
|
|
316
|
-
|
|
316
|
+
}) => any;
|
|
317
|
+
} & {
|
|
318
|
+
'selection.prepend'?: (props: {
|
|
317
319
|
item: TItem;
|
|
318
320
|
index: number;
|
|
319
|
-
}) => any
|
|
321
|
+
}) => any;
|
|
322
|
+
} & {
|
|
323
|
+
selection?: (props: {
|
|
320
324
|
item: TItem;
|
|
321
325
|
index: number;
|
|
322
|
-
}) => any
|
|
323
|
-
|
|
326
|
+
}) => any;
|
|
327
|
+
} & {
|
|
328
|
+
'selection.prepend'?: (props: {
|
|
324
329
|
item: TItem;
|
|
325
330
|
index: number;
|
|
326
|
-
}) => any
|
|
331
|
+
}) => any;
|
|
332
|
+
} & {
|
|
333
|
+
selection?: (props: {
|
|
327
334
|
item: TItem;
|
|
328
335
|
chipAttrs: {
|
|
329
336
|
'data-index': number;
|
|
@@ -333,8 +340,9 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
333
340
|
'onClick:close': () => void;
|
|
334
341
|
};
|
|
335
342
|
index: number;
|
|
336
|
-
}) => any
|
|
337
|
-
|
|
343
|
+
}) => any;
|
|
344
|
+
} & {
|
|
345
|
+
'item.prepend'?: (props: {
|
|
338
346
|
disabled: boolean & import("@vue/reactivity").DistributeRef<[(Readonly<{
|
|
339
347
|
labelClass: string;
|
|
340
348
|
menuClass: string;
|
|
@@ -582,8 +590,9 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
582
590
|
}[K] extends undefined ? boolean | undefined : boolean : boolean; } : never))["disabled"]>>;
|
|
583
591
|
item: TItem;
|
|
584
592
|
active: boolean;
|
|
585
|
-
}) => any
|
|
586
|
-
|
|
593
|
+
}) => any;
|
|
594
|
+
} & {
|
|
595
|
+
item?: (props: {
|
|
587
596
|
disabled: boolean & import("@vue/reactivity").DistributeRef<[(Readonly<{
|
|
588
597
|
labelClass: string;
|
|
589
598
|
menuClass: string;
|
|
@@ -831,8 +840,9 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
831
840
|
}[K] extends undefined ? boolean | undefined : boolean : boolean; } : never))["disabled"]>>;
|
|
832
841
|
item: TItem;
|
|
833
842
|
active: boolean;
|
|
834
|
-
}) => any
|
|
835
|
-
|
|
843
|
+
}) => any;
|
|
844
|
+
} & {
|
|
845
|
+
'item.append'?: (props: {
|
|
836
846
|
disabled: boolean & import("@vue/reactivity").DistributeRef<[(Readonly<{
|
|
837
847
|
labelClass: string;
|
|
838
848
|
menuClass: string;
|
|
@@ -1080,8 +1090,9 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
1080
1090
|
}[K] extends undefined ? boolean | undefined : boolean : boolean; } : never))["disabled"]>>;
|
|
1081
1091
|
item: TItem;
|
|
1082
1092
|
active: boolean;
|
|
1083
|
-
}) => any
|
|
1084
|
-
|
|
1093
|
+
}) => any;
|
|
1094
|
+
} & {
|
|
1095
|
+
'no-data'?: (props: {}) => any;
|
|
1085
1096
|
};
|
|
1086
1097
|
emit: ((evt: "update:modelValue", value: AutoCompleteModelValue<TValue>) => void) & ((evt: "update:searchInput", value: string | undefined) => void);
|
|
1087
1098
|
}>) => import("vue").VNode & {
|