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