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