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