@rotki/ui-library 1.12.1 → 1.12.3

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