@rotki/ui-library 1.12.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +2 -403
- package/dist/components/alerts/RuiAlert.vue.d.ts +2 -473
- package/dist/components/buttons/button/RuiButton.vue.d.ts +5 -3
- package/dist/components/calendar/RuiCalendar.vue.d.ts +30 -0
- package/dist/components/calendar/RuiCalendarGrid.vue.d.ts +13 -0
- package/dist/components/calendar/RuiCalendarHeader.vue.d.ts +16 -0
- package/dist/components/calendar/RuiCalendarMenu.vue.d.ts +17 -0
- package/dist/components/calendar/state.d.ts +17 -0
- package/dist/components/cards/RuiCard.vue.d.ts +2 -438
- package/dist/components/cards/RuiCardHeader.vue.d.ts +2 -390
- package/dist/components/chips/RuiChip.vue.d.ts +2 -479
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +28 -17
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +2 -466
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +1 -1
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +3 -37
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +22 -15
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +2 -512
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +2 -834
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +9 -671
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.es.js +4212 -3534
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +3 -465
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +2 -10
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +3 -462
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +4 -485
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +2 -449
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +2 -20
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +4 -422
- package/dist/components/steppers/RuiStepper.vue.d.ts +2 -455
- package/dist/components/tables/RuiExpandButton.vue.d.ts +2 -375
- package/dist/components/tables/RuiTableHead.vue.d.ts +6 -5
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +2 -2
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +2 -373
- package/dist/components/time-picker/RuiTimePicker.vue.d.ts +18 -0
- package/dist/composables/dropdown-menu.d.ts +2 -2
- package/dist/composables/{index-DKotjeCA.js → index-DOuH9rdn.js} +12 -12
- package/dist/composables/index.es.js +1 -1
- package/dist/consts/time-accuracy-BnKA5GyT.js +8 -0
- package/dist/consts/time-accuracy.d.ts +6 -0
- package/dist/icons/icons_1.d.ts +500 -500
- package/dist/icons/icons_1.es.js +1884 -1884
- package/dist/icons/icons_2.d.ts +500 -500
- package/dist/icons/icons_2.es.js +1868 -1868
- package/dist/icons/icons_3.d.ts +500 -500
- package/dist/icons/icons_3.es.js +1862 -1862
- package/dist/icons/icons_4.d.ts +137 -500
- package/dist/icons/icons_4.es.js +497 -1949
- package/dist/icons/index.d.ts +1 -7
- package/dist/icons/index.es.js +1644 -4665
- package/dist/index.es.js +1703 -4722
- package/dist/style.css +1 -1
- package/dist/utils/{index-Bi6PqW7j.js → index-CxHG7aHQ.js} +1 -1
- package/dist/{vendor-ClNuDbHx.js → vendor-BeEprDAU.js} +1288 -1288
- package/dist/web-types.json +355 -40
- package/package.json +43 -42
- package/dist/icons/icons_10.d.ts +0 -153
- package/dist/icons/icons_10.es.js +0 -611
- package/dist/icons/icons_5.d.ts +0 -501
- package/dist/icons/icons_5.es.js +0 -2003
- package/dist/icons/icons_6.d.ts +0 -501
- package/dist/icons/icons_6.es.js +0 -2003
- package/dist/icons/icons_7.d.ts +0 -501
- package/dist/icons/icons_7.es.js +0 -2003
- package/dist/icons/icons_8.d.ts +0 -501
- package/dist/icons/icons_8.es.js +0 -2003
- package/dist/icons/icons_9.d.ts +0 -501
- package/dist/icons/icons_9.es.js +0 -2003
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import type { ContextColorsType } from '../../../consts/colors';
|
|
2
2
|
import type { RuiIcons } from '../../../icons';
|
|
3
|
-
import RuiButton from '../../../components/buttons/button/RuiButton.vue';
|
|
4
|
-
import RuiFormTextDetail from '../../../components/helpers/RuiFormTextDetail.vue';
|
|
5
|
-
import RuiIcon from '../../../components/icons/RuiIcon.vue';
|
|
6
3
|
export interface Props {
|
|
7
4
|
label?: string;
|
|
8
5
|
placeholder?: string;
|
|
@@ -25,845 +22,16 @@ export interface Props {
|
|
|
25
22
|
rowHeight?: number | string;
|
|
26
23
|
autoGrow?: boolean;
|
|
27
24
|
}
|
|
28
|
-
declare const modelValue: import("vue").ModelRef<string, string, string, string>;
|
|
29
25
|
type __VLS_Props = Props;
|
|
30
|
-
declare const label: globalThis.Ref<string, string>, autoGrow: globalThis.Ref<boolean, boolean>, disabled: globalThis.Ref<boolean, boolean>, readonly: globalThis.Ref<boolean, boolean>, noResize: globalThis.Ref<boolean, boolean>, errorMessages: globalThis.Ref<string | string[], string | string[]>, successMessages: globalThis.Ref<string | string[], string | string[]>;
|
|
31
|
-
declare const prepend: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
32
|
-
declare const append: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
33
|
-
declare const textarea: globalThis.Ref<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
34
|
-
declare const textareaSizer: globalThis.Ref<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
35
|
-
declare const css: __VLS_StyleModules["$style"];
|
|
36
|
-
declare const labelWithQuote: globalThis.ComputedRef<string>;
|
|
37
|
-
declare const fieldStyles: globalThis.ComputedRef<{
|
|
38
|
-
minHeight: string;
|
|
39
|
-
maxHeight?: string;
|
|
40
|
-
}>;
|
|
41
|
-
declare const prependWidth: globalThis.Ref<string, string>;
|
|
42
|
-
declare const appendWidth: globalThis.Ref<string, string>;
|
|
43
|
-
declare const colorClass: globalThis.ComputedRef<string | undefined>;
|
|
44
|
-
declare const showClearIcon: globalThis.ComputedRef<boolean>;
|
|
45
|
-
declare const hasError: globalThis.ComputedRef<boolean>, hasSuccess: globalThis.ComputedRef<boolean>, hasMessages: globalThis.ComputedRef<boolean>;
|
|
46
|
-
declare function clearIconClicked(): void;
|
|
47
|
-
declare const focusedDebounced: Readonly<globalThis.Ref<boolean, boolean>>;
|
|
48
26
|
type __VLS_PublicProps = __VLS_Props & {
|
|
49
27
|
modelValue: string;
|
|
50
28
|
};
|
|
51
|
-
declare const __VLS_ctx: {
|
|
52
|
-
$style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
|
|
53
|
-
"dark": string;
|
|
54
|
-
} & {
|
|
55
|
-
"wrapper": string;
|
|
56
|
-
} & {
|
|
57
|
-
"label": string;
|
|
58
|
-
} & {
|
|
59
|
-
"icon": string;
|
|
60
|
-
} & {
|
|
61
|
-
"label": string;
|
|
62
|
-
} & {
|
|
63
|
-
"filled": string;
|
|
64
|
-
} & {
|
|
65
|
-
"textarea": string;
|
|
66
|
-
} & {
|
|
67
|
-
"label": string;
|
|
68
|
-
} & {
|
|
69
|
-
"label": string;
|
|
70
|
-
} & {
|
|
71
|
-
"outlined": string;
|
|
72
|
-
} & {
|
|
73
|
-
"fieldset": string;
|
|
74
|
-
} & {
|
|
75
|
-
"disabled": string;
|
|
76
|
-
} & {
|
|
77
|
-
"textarea": string;
|
|
78
|
-
} & {
|
|
79
|
-
"fieldset": string;
|
|
80
|
-
} & {
|
|
81
|
-
"wrapper": string;
|
|
82
|
-
} & {
|
|
83
|
-
"inner_wrapper": string;
|
|
84
|
-
} & {
|
|
85
|
-
"append": string;
|
|
86
|
-
} & {
|
|
87
|
-
"textarea": string;
|
|
88
|
-
} & {
|
|
89
|
-
"label": string;
|
|
90
|
-
} & {
|
|
91
|
-
"label": string;
|
|
92
|
-
} & {
|
|
93
|
-
"label": string;
|
|
94
|
-
} & {
|
|
95
|
-
"fieldset": string;
|
|
96
|
-
} & {
|
|
97
|
-
"label": string;
|
|
98
|
-
} & {
|
|
99
|
-
"label": string;
|
|
100
|
-
} & {
|
|
101
|
-
"icon": string;
|
|
102
|
-
} & {
|
|
103
|
-
"prepend": string;
|
|
104
|
-
} & {
|
|
105
|
-
"append": string;
|
|
106
|
-
} & {
|
|
107
|
-
"textarea": string;
|
|
108
|
-
} & {
|
|
109
|
-
"textarea": string;
|
|
110
|
-
} & {
|
|
111
|
-
"label": string;
|
|
112
|
-
} & {
|
|
113
|
-
"label": string;
|
|
114
|
-
} & {
|
|
115
|
-
"outlined": string;
|
|
116
|
-
} & {
|
|
117
|
-
"disabled": string;
|
|
118
|
-
} & {
|
|
119
|
-
"textarea": string;
|
|
120
|
-
} & {
|
|
121
|
-
"fieldset": string;
|
|
122
|
-
} & {
|
|
123
|
-
"text_": string;
|
|
124
|
-
} & {
|
|
125
|
-
"with-": string;
|
|
126
|
-
} & {
|
|
127
|
-
"prepend": string;
|
|
128
|
-
} & {
|
|
129
|
-
"append": string;
|
|
130
|
-
} & {
|
|
131
|
-
"textarea": string;
|
|
132
|
-
} & {
|
|
133
|
-
"disabled": string;
|
|
134
|
-
} & {
|
|
135
|
-
"prepend": string;
|
|
136
|
-
} & {
|
|
137
|
-
"disabled": string;
|
|
138
|
-
} & {
|
|
139
|
-
"append": string;
|
|
140
|
-
} & {
|
|
141
|
-
"with-": string;
|
|
142
|
-
} & {
|
|
143
|
-
"textarea": string;
|
|
144
|
-
} & {
|
|
145
|
-
"label": string;
|
|
146
|
-
} & {
|
|
147
|
-
"fieldset": string;
|
|
148
|
-
} & {
|
|
149
|
-
"dense": string;
|
|
150
|
-
} & {
|
|
151
|
-
"inner_wrapper": string;
|
|
152
|
-
} & {
|
|
153
|
-
"textarea": string;
|
|
154
|
-
} & {
|
|
155
|
-
"filled": string;
|
|
156
|
-
} & {
|
|
157
|
-
"outlined": string;
|
|
158
|
-
} & {
|
|
159
|
-
"textarea": string;
|
|
160
|
-
} & {
|
|
161
|
-
"prepend": string;
|
|
162
|
-
} & {
|
|
163
|
-
"inner_wrapper": string;
|
|
164
|
-
} & {
|
|
165
|
-
"textarea": string;
|
|
166
|
-
} & {
|
|
167
|
-
"label": string;
|
|
168
|
-
} & {
|
|
169
|
-
"append": string;
|
|
170
|
-
} & {
|
|
171
|
-
"prepend": string;
|
|
172
|
-
} & {
|
|
173
|
-
"append": string;
|
|
174
|
-
} & {
|
|
175
|
-
"inner_wrapper": string;
|
|
176
|
-
} & {
|
|
177
|
-
"label": string;
|
|
178
|
-
} & {
|
|
179
|
-
"label": string;
|
|
180
|
-
} & {
|
|
181
|
-
"filled": string;
|
|
182
|
-
} & {
|
|
183
|
-
"label": string;
|
|
184
|
-
} & {
|
|
185
|
-
"no-label": string;
|
|
186
|
-
} & {
|
|
187
|
-
"textarea": string;
|
|
188
|
-
} & {
|
|
189
|
-
"dense": string;
|
|
190
|
-
} & {
|
|
191
|
-
"textarea": string;
|
|
192
|
-
} & {
|
|
193
|
-
"outlined": string;
|
|
194
|
-
} & {
|
|
195
|
-
"textarea": string;
|
|
196
|
-
} & {
|
|
197
|
-
"label": string;
|
|
198
|
-
} & {
|
|
199
|
-
"fieldset": string;
|
|
200
|
-
} & {
|
|
201
|
-
"fieldset": string;
|
|
202
|
-
} & {
|
|
203
|
-
"disabled": string;
|
|
204
|
-
} & {
|
|
205
|
-
"textarea": string;
|
|
206
|
-
} & {
|
|
207
|
-
"fieldset": string;
|
|
208
|
-
} & {
|
|
209
|
-
"fieldset": string;
|
|
210
|
-
} & {
|
|
211
|
-
"label": string;
|
|
212
|
-
} & {
|
|
213
|
-
"dense": string;
|
|
214
|
-
} & {
|
|
215
|
-
"label": string;
|
|
216
|
-
}>;
|
|
217
|
-
$: import("vue").ComponentInternalInstance;
|
|
218
|
-
$data: {};
|
|
219
|
-
$props: {
|
|
220
|
-
readonly label?: string | undefined;
|
|
221
|
-
readonly placeholder?: string | undefined;
|
|
222
|
-
readonly disabled?: boolean | undefined;
|
|
223
|
-
readonly variant?: "default" | "filled" | "outlined" | undefined;
|
|
224
|
-
readonly color?: ContextColorsType | undefined;
|
|
225
|
-
readonly textColor?: ContextColorsType | undefined;
|
|
226
|
-
readonly dense?: boolean | undefined;
|
|
227
|
-
readonly hint?: string | undefined;
|
|
228
|
-
readonly errorMessages?: string | string[] | undefined;
|
|
229
|
-
readonly successMessages?: string | string[] | undefined;
|
|
230
|
-
readonly hideDetails?: boolean | undefined;
|
|
231
|
-
readonly prependIcon?: RuiIcons | undefined;
|
|
232
|
-
readonly appendIcon?: RuiIcons | undefined;
|
|
233
|
-
readonly readonly?: boolean | undefined;
|
|
234
|
-
readonly clearable?: boolean | undefined;
|
|
235
|
-
readonly noResize?: boolean | undefined;
|
|
236
|
-
readonly minRows?: number | string | undefined;
|
|
237
|
-
readonly maxRows?: number | string | undefined;
|
|
238
|
-
readonly rowHeight?: number | string | undefined;
|
|
239
|
-
readonly autoGrow?: boolean | undefined;
|
|
240
|
-
readonly modelValue: string;
|
|
241
|
-
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
242
|
-
readonly "onClick:clear"?: (() => any) | undefined;
|
|
243
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
244
|
-
$attrs: {
|
|
245
|
-
[x: string]: unknown;
|
|
246
|
-
};
|
|
247
|
-
$refs: {
|
|
248
|
-
[x: string]: unknown;
|
|
249
|
-
};
|
|
250
|
-
$slots: Readonly<{
|
|
251
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
252
|
-
}>;
|
|
253
|
-
$root: ComponentPublicInstance | null;
|
|
254
|
-
$parent: ComponentPublicInstance | null;
|
|
255
|
-
$host: Element | null;
|
|
256
|
-
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:clear") => void);
|
|
257
|
-
$el: any;
|
|
258
|
-
$options: import("vue").ComponentOptionsBase<Readonly<__VLS_PublicProps> & Readonly<{
|
|
259
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
260
|
-
"onClick:clear"?: (() => any) | undefined;
|
|
261
|
-
}>, {
|
|
262
|
-
RuiButton: typeof RuiButton;
|
|
263
|
-
RuiFormTextDetail: typeof RuiFormTextDetail;
|
|
264
|
-
RuiIcon: typeof RuiIcon;
|
|
265
|
-
modelValue: typeof modelValue;
|
|
266
|
-
label: typeof label;
|
|
267
|
-
autoGrow: typeof autoGrow;
|
|
268
|
-
disabled: typeof disabled;
|
|
269
|
-
readonly: typeof readonly;
|
|
270
|
-
noResize: typeof noResize;
|
|
271
|
-
errorMessages: typeof errorMessages;
|
|
272
|
-
successMessages: typeof successMessages;
|
|
273
|
-
prepend: typeof prepend;
|
|
274
|
-
append: typeof append;
|
|
275
|
-
textarea: typeof textarea;
|
|
276
|
-
textareaSizer: typeof textareaSizer;
|
|
277
|
-
css: typeof css;
|
|
278
|
-
labelWithQuote: typeof labelWithQuote;
|
|
279
|
-
fieldStyles: typeof fieldStyles;
|
|
280
|
-
prependWidth: typeof prependWidth;
|
|
281
|
-
appendWidth: typeof appendWidth;
|
|
282
|
-
colorClass: typeof colorClass;
|
|
283
|
-
showClearIcon: typeof showClearIcon;
|
|
284
|
-
hasError: typeof hasError;
|
|
285
|
-
hasSuccess: typeof hasSuccess;
|
|
286
|
-
hasMessages: typeof hasMessages;
|
|
287
|
-
clearIconClicked: typeof clearIconClicked;
|
|
288
|
-
focusedDebounced: typeof focusedDebounced;
|
|
289
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
290
|
-
"update:modelValue": (value: string) => any;
|
|
291
|
-
} & {
|
|
292
|
-
"click:clear": () => any;
|
|
293
|
-
}, string, {
|
|
294
|
-
readonly: boolean;
|
|
295
|
-
variant: "default" | "filled" | "outlined";
|
|
296
|
-
color: ContextColorsType;
|
|
297
|
-
label: string;
|
|
298
|
-
disabled: boolean;
|
|
299
|
-
errorMessages: string | string[];
|
|
300
|
-
successMessages: string | string[];
|
|
301
|
-
hint: string;
|
|
302
|
-
hideDetails: boolean;
|
|
303
|
-
placeholder: string;
|
|
304
|
-
dense: boolean;
|
|
305
|
-
textColor: ContextColorsType;
|
|
306
|
-
prependIcon: RuiIcons;
|
|
307
|
-
appendIcon: RuiIcons;
|
|
308
|
-
clearable: boolean;
|
|
309
|
-
noResize: boolean;
|
|
310
|
-
minRows: number | string;
|
|
311
|
-
maxRows: number | string;
|
|
312
|
-
rowHeight: number | string;
|
|
313
|
-
autoGrow: boolean;
|
|
314
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
315
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
316
|
-
created?: (() => void) | (() => void)[];
|
|
317
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
318
|
-
mounted?: (() => void) | (() => void)[];
|
|
319
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
320
|
-
updated?: (() => void) | (() => void)[];
|
|
321
|
-
activated?: (() => void) | (() => void)[];
|
|
322
|
-
deactivated?: (() => void) | (() => void)[];
|
|
323
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
324
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
325
|
-
destroyed?: (() => void) | (() => void)[];
|
|
326
|
-
unmounted?: (() => void) | (() => void)[];
|
|
327
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
328
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
329
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
330
|
-
};
|
|
331
|
-
$forceUpdate: () => void;
|
|
332
|
-
$nextTick: typeof import("vue").nextTick;
|
|
333
|
-
$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;
|
|
334
|
-
readonly: boolean & typeof import("vue").readonly;
|
|
335
|
-
variant: "default" | "filled" | "outlined";
|
|
336
|
-
color: ContextColorsType;
|
|
337
|
-
label: string;
|
|
338
|
-
disabled: boolean;
|
|
339
|
-
errorMessages: string | string[];
|
|
340
|
-
successMessages: string | string[];
|
|
341
|
-
hint: string;
|
|
342
|
-
hideDetails: boolean;
|
|
343
|
-
placeholder: string;
|
|
344
|
-
dense: boolean;
|
|
345
|
-
textColor: ContextColorsType;
|
|
346
|
-
prependIcon: RuiIcons;
|
|
347
|
-
appendIcon: RuiIcons;
|
|
348
|
-
clearable: boolean;
|
|
349
|
-
noResize: boolean;
|
|
350
|
-
minRows: number | string;
|
|
351
|
-
maxRows: number | string;
|
|
352
|
-
rowHeight: number | string;
|
|
353
|
-
autoGrow: boolean;
|
|
354
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
355
|
-
"onClick:clear"?: (() => any) | undefined;
|
|
356
|
-
RuiButton: typeof RuiButton;
|
|
357
|
-
RuiFormTextDetail: typeof RuiFormTextDetail;
|
|
358
|
-
RuiIcon: typeof RuiIcon;
|
|
359
|
-
modelValue: string;
|
|
360
|
-
prepend: HTMLDivElement | undefined;
|
|
361
|
-
append: HTMLDivElement | undefined;
|
|
362
|
-
textarea: HTMLTextAreaElement | undefined;
|
|
363
|
-
textareaSizer: HTMLTextAreaElement | undefined;
|
|
364
|
-
css: typeof css;
|
|
365
|
-
labelWithQuote: string;
|
|
366
|
-
fieldStyles: {
|
|
367
|
-
minHeight: string;
|
|
368
|
-
maxHeight?: string;
|
|
369
|
-
};
|
|
370
|
-
prependWidth: string;
|
|
371
|
-
appendWidth: string;
|
|
372
|
-
colorClass: string | undefined;
|
|
373
|
-
showClearIcon: boolean;
|
|
374
|
-
hasError: boolean;
|
|
375
|
-
hasSuccess: boolean;
|
|
376
|
-
hasMessages: boolean;
|
|
377
|
-
clearIconClicked: typeof clearIconClicked;
|
|
378
|
-
focusedDebounced: boolean;
|
|
379
|
-
$route: import("vue-router").TypesConfig extends Record<"$route", infer T> ? T : import("vue-router").RouteLocationNormalizedLoaded;
|
|
380
|
-
$router: import("vue-router").TypesConfig extends Record<"$router", infer T> ? T : import("vue-router").Router;
|
|
381
|
-
DEFAULT_POPPER_OPTIONS: import("vue").UnwrapRef<typeof import("../../../composables/popper")["DEFAULT_POPPER_OPTIONS"]>;
|
|
382
|
-
EffectScope: import("vue").UnwrapRef<typeof import("vue")["EffectScope"]>;
|
|
383
|
-
TableSymbol: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["TableSymbol"]>;
|
|
384
|
-
assert: import("vue").UnwrapRef<typeof import("../../../utils/assert")["assert"]>;
|
|
385
|
-
asyncComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["asyncComputed"]>;
|
|
386
|
-
autoResetRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["autoResetRef"]>;
|
|
387
|
-
computed: import("vue").UnwrapRef<typeof import("vue")["computed"]>;
|
|
388
|
-
computedAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedAsync"]>;
|
|
389
|
-
computedEager: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedEager"]>;
|
|
390
|
-
computedInject: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedInject"]>;
|
|
391
|
-
computedWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedWithControl"]>;
|
|
392
|
-
controlledComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledComputed"]>;
|
|
393
|
-
controlledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledRef"]>;
|
|
394
|
-
createApp: import("vue").UnwrapRef<typeof import("vue")["createApp"]>;
|
|
395
|
-
createEventHook: import("vue").UnwrapRef<typeof import("@vueuse/core")["createEventHook"]>;
|
|
396
|
-
createGlobalState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createGlobalState"]>;
|
|
397
|
-
createInjectionState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createInjectionState"]>;
|
|
398
|
-
createPopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["createPopper"]>;
|
|
399
|
-
createReactiveFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReactiveFn"]>;
|
|
400
|
-
createRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["createRef"]>;
|
|
401
|
-
createReusableTemplate: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReusableTemplate"]>;
|
|
402
|
-
createSharedComposable: import("vue").UnwrapRef<typeof import("@vueuse/core")["createSharedComposable"]>;
|
|
403
|
-
createTableDefaults: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["createTableDefaults"]>;
|
|
404
|
-
createTemplatePromise: import("vue").UnwrapRef<typeof import("@vueuse/core")["createTemplatePromise"]>;
|
|
405
|
-
createUnrefFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createUnrefFn"]>;
|
|
406
|
-
customRef: import("vue").UnwrapRef<typeof import("vue")["customRef"]>;
|
|
407
|
-
debouncedRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedRef"]>;
|
|
408
|
-
debouncedWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedWatch"]>;
|
|
409
|
-
defineAsyncComponent: import("vue").UnwrapRef<typeof import("vue")["defineAsyncComponent"]>;
|
|
410
|
-
defineComponent: import("vue").UnwrapRef<typeof import("vue")["defineComponent"]>;
|
|
411
|
-
eagerComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["eagerComputed"]>;
|
|
412
|
-
effectScope: import("vue").UnwrapRef<typeof import("vue")["effectScope"]>;
|
|
413
|
-
extendRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["extendRef"]>;
|
|
414
|
-
formatCurrency: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatCurrency"]>;
|
|
415
|
-
formatInteger: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatInteger"]>;
|
|
416
|
-
formatNumber: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatNumber"]>;
|
|
417
|
-
generateId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["generateId"]>;
|
|
418
|
-
get: import("vue").UnwrapRef<typeof import("@vueuse/shared")["get"]>;
|
|
419
|
-
getCurrentInstance: import("vue").UnwrapRef<typeof import("vue")["getCurrentInstance"]>;
|
|
420
|
-
getCurrentScope: import("vue").UnwrapRef<typeof import("vue")["getCurrentScope"]>;
|
|
421
|
-
getNonRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getNonRootAttrs"]>;
|
|
422
|
-
getRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootAttrs"]>;
|
|
423
|
-
getRootKeys: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootKeys"]>;
|
|
424
|
-
getStringValue: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getStringValue"]>;
|
|
425
|
-
getText: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getText"]>;
|
|
426
|
-
getTextToken: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getTextToken"]>;
|
|
427
|
-
h: import("vue").UnwrapRef<typeof import("vue")["h"]>;
|
|
428
|
-
ignorableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["ignorableWatch"]>;
|
|
429
|
-
inject: import("vue").UnwrapRef<typeof import("vue")["inject"]>;
|
|
430
|
-
injectLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["injectLocal"]>;
|
|
431
|
-
isDefined: import("vue").UnwrapRef<typeof import("@vueuse/core")["isDefined"]>;
|
|
432
|
-
isEqual: import("vue").UnwrapRef<typeof import("../../../utils/is-equal")["isEqual"]>;
|
|
433
|
-
isProxy: import("vue").UnwrapRef<typeof import("vue")["isProxy"]>;
|
|
434
|
-
isReactive: import("vue").UnwrapRef<typeof import("vue")["isReactive"]>;
|
|
435
|
-
isReadonly: import("vue").UnwrapRef<typeof import("vue")["isReadonly"]>;
|
|
436
|
-
isRef: import("vue").UnwrapRef<typeof import("vue")["isRef"]>;
|
|
437
|
-
makeDestructurable: import("vue").UnwrapRef<typeof import("@vueuse/core")["makeDestructurable"]>;
|
|
438
|
-
markRaw: import("vue").UnwrapRef<typeof import("vue")["markRaw"]>;
|
|
439
|
-
nextTick: import("vue").UnwrapRef<typeof import("vue")["nextTick"]>;
|
|
440
|
-
onActivated: import("vue").UnwrapRef<typeof import("vue")["onActivated"]>;
|
|
441
|
-
onBeforeMount: import("vue").UnwrapRef<typeof import("vue")["onBeforeMount"]>;
|
|
442
|
-
onBeforeUnmount: import("vue").UnwrapRef<typeof import("vue")["onBeforeUnmount"]>;
|
|
443
|
-
onBeforeUpdate: import("vue").UnwrapRef<typeof import("vue")["onBeforeUpdate"]>;
|
|
444
|
-
onClickOutside: import("vue").UnwrapRef<typeof import("@vueuse/core")["onClickOutside"]>;
|
|
445
|
-
onDeactivated: import("vue").UnwrapRef<typeof import("vue")["onDeactivated"]>;
|
|
446
|
-
onElementRemoval: import("vue").UnwrapRef<typeof import("@vueuse/core")["onElementRemoval"]>;
|
|
447
|
-
onErrorCaptured: import("vue").UnwrapRef<typeof import("vue")["onErrorCaptured"]>;
|
|
448
|
-
onKeyStroke: import("vue").UnwrapRef<typeof import("@vueuse/core")["onKeyStroke"]>;
|
|
449
|
-
onLongPress: import("vue").UnwrapRef<typeof import("@vueuse/core")["onLongPress"]>;
|
|
450
|
-
onMounted: import("vue").UnwrapRef<typeof import("vue")["onMounted"]>;
|
|
451
|
-
onRenderTracked: import("vue").UnwrapRef<typeof import("vue")["onRenderTracked"]>;
|
|
452
|
-
onRenderTriggered: import("vue").UnwrapRef<typeof import("vue")["onRenderTriggered"]>;
|
|
453
|
-
onScopeDispose: import("vue").UnwrapRef<typeof import("vue")["onScopeDispose"]>;
|
|
454
|
-
onServerPrefetch: import("vue").UnwrapRef<typeof import("vue")["onServerPrefetch"]>;
|
|
455
|
-
onStartTyping: import("vue").UnwrapRef<typeof import("@vueuse/core")["onStartTyping"]>;
|
|
456
|
-
onUnmounted: import("vue").UnwrapRef<typeof import("vue")["onUnmounted"]>;
|
|
457
|
-
onUpdated: import("vue").UnwrapRef<typeof import("vue")["onUpdated"]>;
|
|
458
|
-
onWatcherCleanup: import("vue").UnwrapRef<typeof import("vue")["onWatcherCleanup"]>;
|
|
459
|
-
pausableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["pausableWatch"]>;
|
|
460
|
-
provide: import("vue").UnwrapRef<typeof import("vue")["provide"]>;
|
|
461
|
-
provideLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["provideLocal"]>;
|
|
462
|
-
reactify: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactify"]>;
|
|
463
|
-
reactifyObject: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactifyObject"]>;
|
|
464
|
-
reactive: import("vue").UnwrapRef<typeof import("vue")["reactive"]>;
|
|
465
|
-
reactiveComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveComputed"]>;
|
|
466
|
-
reactiveOmit: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveOmit"]>;
|
|
467
|
-
reactivePick: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactivePick"]>;
|
|
468
|
-
ref: import("vue").UnwrapRef<typeof import("vue")["ref"]>;
|
|
469
|
-
refAutoReset: import("vue").UnwrapRef<typeof import("@vueuse/core")["refAutoReset"]>;
|
|
470
|
-
refDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDebounced"]>;
|
|
471
|
-
refDefault: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDefault"]>;
|
|
472
|
-
refThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["refThrottled"]>;
|
|
473
|
-
refWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["refWithControl"]>;
|
|
474
|
-
resolveComponent: import("vue").UnwrapRef<typeof import("vue")["resolveComponent"]>;
|
|
475
|
-
resolveRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveRef"]>;
|
|
476
|
-
resolveUnref: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveUnref"]>;
|
|
477
|
-
set: import("vue").UnwrapRef<typeof import("@vueuse/shared")["set"]>;
|
|
478
|
-
shallowReactive: import("vue").UnwrapRef<typeof import("vue")["shallowReactive"]>;
|
|
479
|
-
shallowReadonly: import("vue").UnwrapRef<typeof import("vue")["shallowReadonly"]>;
|
|
480
|
-
shallowRef: import("vue").UnwrapRef<typeof import("vue")["shallowRef"]>;
|
|
481
|
-
syncRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRef"]>;
|
|
482
|
-
syncRefs: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRefs"]>;
|
|
483
|
-
templateRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["templateRef"]>;
|
|
484
|
-
throttledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledRef"]>;
|
|
485
|
-
throttledWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledWatch"]>;
|
|
486
|
-
toRaw: import("vue").UnwrapRef<typeof import("vue")["toRaw"]>;
|
|
487
|
-
toReactive: import("vue").UnwrapRef<typeof import("@vueuse/core")["toReactive"]>;
|
|
488
|
-
toRef: import("vue").UnwrapRef<typeof import("vue")["toRef"]>;
|
|
489
|
-
toRefs: import("vue").UnwrapRef<typeof import("vue")["toRefs"]>;
|
|
490
|
-
toValue: import("vue").UnwrapRef<typeof import("vue")["toValue"]>;
|
|
491
|
-
transformCase: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformCase"]>;
|
|
492
|
-
transformPropsUnit: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformPropsUnit"]>;
|
|
493
|
-
triggerRef: import("vue").UnwrapRef<typeof import("vue")["triggerRef"]>;
|
|
494
|
-
tryOnBeforeMount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeMount"]>;
|
|
495
|
-
tryOnBeforeUnmount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeUnmount"]>;
|
|
496
|
-
tryOnMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnMounted"]>;
|
|
497
|
-
tryOnScopeDispose: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnScopeDispose"]>;
|
|
498
|
-
tryOnUnmounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnUnmounted"]>;
|
|
499
|
-
unref: import("vue").UnwrapRef<typeof import("vue")["unref"]>;
|
|
500
|
-
unrefElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["unrefElement"]>;
|
|
501
|
-
until: import("vue").UnwrapRef<typeof import("@vueuse/core")["until"]>;
|
|
502
|
-
useActiveElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useActiveElement"]>;
|
|
503
|
-
useAnimate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAnimate"]>;
|
|
504
|
-
useArrayDifference: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayDifference"]>;
|
|
505
|
-
useArrayEvery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayEvery"]>;
|
|
506
|
-
useArrayFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFilter"]>;
|
|
507
|
-
useArrayFind: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFind"]>;
|
|
508
|
-
useArrayFindIndex: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindIndex"]>;
|
|
509
|
-
useArrayFindLast: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindLast"]>;
|
|
510
|
-
useArrayIncludes: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayIncludes"]>;
|
|
511
|
-
useArrayJoin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayJoin"]>;
|
|
512
|
-
useArrayMap: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayMap"]>;
|
|
513
|
-
useArrayReduce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayReduce"]>;
|
|
514
|
-
useArraySome: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArraySome"]>;
|
|
515
|
-
useArrayUnique: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayUnique"]>;
|
|
516
|
-
useAsyncQueue: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncQueue"]>;
|
|
517
|
-
useAsyncState: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncState"]>;
|
|
518
|
-
useAttrs: import("vue").UnwrapRef<typeof import("vue")["useAttrs"]>;
|
|
519
|
-
useAutoCompleteProps: import("vue").UnwrapRef<typeof import("../../../composables/forms/auto-complete")["useAutoCompleteProps"]>;
|
|
520
|
-
useBase64: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBase64"]>;
|
|
521
|
-
useBattery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBattery"]>;
|
|
522
|
-
useBluetooth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBluetooth"]>;
|
|
523
|
-
useBreakpoint: import("vue").UnwrapRef<typeof import("../../../composables")["useBreakpoint"]>;
|
|
524
|
-
useBreakpoints: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBreakpoints"]>;
|
|
525
|
-
useBroadcastChannel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBroadcastChannel"]>;
|
|
526
|
-
useBrowserLocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBrowserLocation"]>;
|
|
527
|
-
useCached: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCached"]>;
|
|
528
|
-
useClipboard: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboard"]>;
|
|
529
|
-
useClipboardItems: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboardItems"]>;
|
|
530
|
-
useCloned: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCloned"]>;
|
|
531
|
-
useColorMode: import("vue").UnwrapRef<typeof import("@vueuse/core")["useColorMode"]>;
|
|
532
|
-
useConfirmDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useConfirmDialog"]>;
|
|
533
|
-
useCountdown: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCountdown"]>;
|
|
534
|
-
useCounter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCounter"]>;
|
|
535
|
-
useCssModule: import("vue").UnwrapRef<typeof import("vue")["useCssModule"]>;
|
|
536
|
-
useCssVar: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCssVar"]>;
|
|
537
|
-
useCssVars: import("vue").UnwrapRef<typeof import("vue")["useCssVars"]>;
|
|
538
|
-
useCurrentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCurrentElement"]>;
|
|
539
|
-
useCycleList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCycleList"]>;
|
|
540
|
-
useDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDark"]>;
|
|
541
|
-
useDateFormat: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDateFormat"]>;
|
|
542
|
-
useDebounce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounce"]>;
|
|
543
|
-
useDebounceFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounceFn"]>;
|
|
544
|
-
useDebouncedRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebouncedRefHistory"]>;
|
|
545
|
-
useDeviceMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceMotion"]>;
|
|
546
|
-
useDeviceOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceOrientation"]>;
|
|
547
|
-
useDevicePixelRatio: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicePixelRatio"]>;
|
|
548
|
-
useDevicesList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicesList"]>;
|
|
549
|
-
useDisplayMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDisplayMedia"]>;
|
|
550
|
-
useDocumentVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDocumentVisibility"]>;
|
|
551
|
-
useDraggable: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDraggable"]>;
|
|
552
|
-
useDropZone: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDropZone"]>;
|
|
553
|
-
useDropdownMenu: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownMenu"]>;
|
|
554
|
-
useDropdownOptionProperty: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownOptionProperty"]>;
|
|
555
|
-
useElementBounding: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementBounding"]>;
|
|
556
|
-
useElementByPoint: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementByPoint"]>;
|
|
557
|
-
useElementHover: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementHover"]>;
|
|
558
|
-
useElementSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementSize"]>;
|
|
559
|
-
useElementVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementVisibility"]>;
|
|
560
|
-
useEventBus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventBus"]>;
|
|
561
|
-
useEventListener: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventListener"]>;
|
|
562
|
-
useEventSource: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventSource"]>;
|
|
563
|
-
useEyeDropper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEyeDropper"]>;
|
|
564
|
-
useFavicon: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFavicon"]>;
|
|
565
|
-
useFetch: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFetch"]>;
|
|
566
|
-
useFileDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileDialog"]>;
|
|
567
|
-
useFileSystemAccess: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileSystemAccess"]>;
|
|
568
|
-
useFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocus"]>;
|
|
569
|
-
useFocusWithin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocusWithin"]>;
|
|
570
|
-
useFormTextDetail: import("vue").UnwrapRef<typeof import("../../../utils/form-text-detail")["useFormTextDetail"]>;
|
|
571
|
-
useFps: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFps"]>;
|
|
572
|
-
useFullscreen: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFullscreen"]>;
|
|
573
|
-
useGamepad: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGamepad"]>;
|
|
574
|
-
useGeolocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGeolocation"]>;
|
|
575
|
-
useGlobalId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["useGlobalId"]>;
|
|
576
|
-
useIcons: import("vue").UnwrapRef<typeof import("../../../composables")["useIcons"]>;
|
|
577
|
-
useId: import("vue").UnwrapRef<typeof import("vue")["useId"]>;
|
|
578
|
-
useIdle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIdle"]>;
|
|
579
|
-
useImage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useImage"]>;
|
|
580
|
-
useInfiniteScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInfiniteScroll"]>;
|
|
581
|
-
useIntersectionObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntersectionObserver"]>;
|
|
582
|
-
useInterval: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInterval"]>;
|
|
583
|
-
useIntervalFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntervalFn"]>;
|
|
584
|
-
useKeyModifier: import("vue").UnwrapRef<typeof import("@vueuse/core")["useKeyModifier"]>;
|
|
585
|
-
useLastChanged: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLastChanged"]>;
|
|
586
|
-
useLocalStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLocalStorage"]>;
|
|
587
|
-
useMagicKeys: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMagicKeys"]>;
|
|
588
|
-
useManualRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useManualRefHistory"]>;
|
|
589
|
-
useMediaControls: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaControls"]>;
|
|
590
|
-
useMediaQuery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaQuery"]>;
|
|
591
|
-
useMemoize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemoize"]>;
|
|
592
|
-
useMemory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemory"]>;
|
|
593
|
-
useModel: import("vue").UnwrapRef<typeof import("vue")["useModel"]>;
|
|
594
|
-
useMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMounted"]>;
|
|
595
|
-
useMouse: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouse"]>;
|
|
596
|
-
useMouseInElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouseInElement"]>;
|
|
597
|
-
useMousePressed: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMousePressed"]>;
|
|
598
|
-
useMutationObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMutationObserver"]>;
|
|
599
|
-
useNavigatorLanguage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNavigatorLanguage"]>;
|
|
600
|
-
useNetwork: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNetwork"]>;
|
|
601
|
-
useNow: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNow"]>;
|
|
602
|
-
useObjectUrl: import("vue").UnwrapRef<typeof import("@vueuse/core")["useObjectUrl"]>;
|
|
603
|
-
useOffsetPagination: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOffsetPagination"]>;
|
|
604
|
-
useOnline: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOnline"]>;
|
|
605
|
-
usePageLeave: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePageLeave"]>;
|
|
606
|
-
useParallax: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParallax"]>;
|
|
607
|
-
useParentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParentElement"]>;
|
|
608
|
-
usePerformanceObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePerformanceObserver"]>;
|
|
609
|
-
usePermission: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePermission"]>;
|
|
610
|
-
usePointer: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointer"]>;
|
|
611
|
-
usePointerLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerLock"]>;
|
|
612
|
-
usePointerSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerSwipe"]>;
|
|
613
|
-
usePopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["usePopper"]>;
|
|
614
|
-
usePreferredColorScheme: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredColorScheme"]>;
|
|
615
|
-
usePreferredContrast: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredContrast"]>;
|
|
616
|
-
usePreferredDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredDark"]>;
|
|
617
|
-
usePreferredLanguages: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredLanguages"]>;
|
|
618
|
-
usePreferredReducedMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedMotion"]>;
|
|
619
|
-
usePreferredReducedTransparency: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedTransparency"]>;
|
|
620
|
-
usePrevious: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePrevious"]>;
|
|
621
|
-
useRafFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRafFn"]>;
|
|
622
|
-
useRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRefHistory"]>;
|
|
623
|
-
useResizeObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useResizeObserver"]>;
|
|
624
|
-
useRotkiTheme: import("vue").UnwrapRef<typeof import("../../../composables")["useRotkiTheme"]>;
|
|
625
|
-
useSSRWidth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSSRWidth"]>;
|
|
626
|
-
useScreenOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenOrientation"]>;
|
|
627
|
-
useScreenSafeArea: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenSafeArea"]>;
|
|
628
|
-
useScriptTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScriptTag"]>;
|
|
629
|
-
useScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScroll"]>;
|
|
630
|
-
useScrollLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScrollLock"]>;
|
|
631
|
-
useSessionStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSessionStorage"]>;
|
|
632
|
-
useShare: import("vue").UnwrapRef<typeof import("@vueuse/core")["useShare"]>;
|
|
633
|
-
useSlots: import("vue").UnwrapRef<typeof import("vue")["useSlots"]>;
|
|
634
|
-
useSorted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSorted"]>;
|
|
635
|
-
useSpeechRecognition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechRecognition"]>;
|
|
636
|
-
useSpeechSynthesis: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechSynthesis"]>;
|
|
637
|
-
useStepper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStepper"]>;
|
|
638
|
-
useStickyTableHeader: import("vue").UnwrapRef<typeof import("../../../composables/sticky-header")["useStickyTableHeader"]>;
|
|
639
|
-
useStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorage"]>;
|
|
640
|
-
useStorageAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorageAsync"]>;
|
|
641
|
-
useStyleTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStyleTag"]>;
|
|
642
|
-
useSupported: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSupported"]>;
|
|
643
|
-
useSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSwipe"]>;
|
|
644
|
-
useTable: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["useTable"]>;
|
|
645
|
-
useTemplateRef: import("vue").UnwrapRef<typeof import("vue")["useTemplateRef"]>;
|
|
646
|
-
useTemplateRefsList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTemplateRefsList"]>;
|
|
647
|
-
useTextDirection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextDirection"]>;
|
|
648
|
-
useTextSelection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextSelection"]>;
|
|
649
|
-
useTextareaAutosize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextareaAutosize"]>;
|
|
650
|
-
useThrottle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottle"]>;
|
|
651
|
-
useThrottleFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottleFn"]>;
|
|
652
|
-
useThrottledRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottledRefHistory"]>;
|
|
653
|
-
useTimeAgo: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeAgo"]>;
|
|
654
|
-
useTimeout: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeout"]>;
|
|
655
|
-
useTimeoutFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutFn"]>;
|
|
656
|
-
useTimeoutPoll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutPoll"]>;
|
|
657
|
-
useTimestamp: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimestamp"]>;
|
|
658
|
-
useTitle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTitle"]>;
|
|
659
|
-
useToNumber: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToNumber"]>;
|
|
660
|
-
useToString: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToString"]>;
|
|
661
|
-
useToggle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToggle"]>;
|
|
662
|
-
useTransition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTransition"]>;
|
|
663
|
-
useUrlSearchParams: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUrlSearchParams"]>;
|
|
664
|
-
useUserMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUserMedia"]>;
|
|
665
|
-
useVModel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModel"]>;
|
|
666
|
-
useVModels: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModels"]>;
|
|
667
|
-
useVibrate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVibrate"]>;
|
|
668
|
-
useVirtualList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVirtualList"]>;
|
|
669
|
-
useWakeLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWakeLock"]>;
|
|
670
|
-
useWebNotification: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebNotification"]>;
|
|
671
|
-
useWebSocket: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebSocket"]>;
|
|
672
|
-
useWebWorker: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorker"]>;
|
|
673
|
-
useWebWorkerFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorkerFn"]>;
|
|
674
|
-
useWindowFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowFocus"]>;
|
|
675
|
-
useWindowScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowScroll"]>;
|
|
676
|
-
useWindowSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowSize"]>;
|
|
677
|
-
watch: import("vue").UnwrapRef<typeof import("vue")["watch"]>;
|
|
678
|
-
watchArray: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchArray"]>;
|
|
679
|
-
watchAtMost: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchAtMost"]>;
|
|
680
|
-
watchDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDebounced"]>;
|
|
681
|
-
watchDeep: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDeep"]>;
|
|
682
|
-
watchEffect: import("vue").UnwrapRef<typeof import("vue")["watchEffect"]>;
|
|
683
|
-
watchIgnorable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchIgnorable"]>;
|
|
684
|
-
watchImmediate: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchImmediate"]>;
|
|
685
|
-
watchOnce: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchOnce"]>;
|
|
686
|
-
watchPausable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchPausable"]>;
|
|
687
|
-
watchPostEffect: import("vue").UnwrapRef<typeof import("vue")["watchPostEffect"]>;
|
|
688
|
-
watchSyncEffect: import("vue").UnwrapRef<typeof import("vue")["watchSyncEffect"]>;
|
|
689
|
-
watchThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchThrottled"]>;
|
|
690
|
-
watchTriggerable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchTriggerable"]>;
|
|
691
|
-
watchWithFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchWithFilter"]>;
|
|
692
|
-
whenever: import("vue").UnwrapRef<typeof import("@vueuse/core")["whenever"]>;
|
|
693
|
-
};
|
|
694
|
-
type __VLS_StyleModules = {
|
|
695
|
-
$style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
|
|
696
|
-
'dark': string;
|
|
697
|
-
} & {
|
|
698
|
-
'wrapper': string;
|
|
699
|
-
} & {
|
|
700
|
-
'label': string;
|
|
701
|
-
} & {
|
|
702
|
-
'icon': string;
|
|
703
|
-
} & {
|
|
704
|
-
'label': string;
|
|
705
|
-
} & {
|
|
706
|
-
'filled': string;
|
|
707
|
-
} & {
|
|
708
|
-
'textarea': string;
|
|
709
|
-
} & {
|
|
710
|
-
'label': string;
|
|
711
|
-
} & {
|
|
712
|
-
'label': string;
|
|
713
|
-
} & {
|
|
714
|
-
'outlined': string;
|
|
715
|
-
} & {
|
|
716
|
-
'fieldset': string;
|
|
717
|
-
} & {
|
|
718
|
-
'disabled': string;
|
|
719
|
-
} & {
|
|
720
|
-
'textarea': string;
|
|
721
|
-
} & {
|
|
722
|
-
'fieldset': string;
|
|
723
|
-
} & {
|
|
724
|
-
'wrapper': string;
|
|
725
|
-
} & {
|
|
726
|
-
'inner_wrapper': string;
|
|
727
|
-
} & {
|
|
728
|
-
'append': string;
|
|
729
|
-
} & {
|
|
730
|
-
'textarea': string;
|
|
731
|
-
} & {
|
|
732
|
-
'label': string;
|
|
733
|
-
} & {
|
|
734
|
-
'label': string;
|
|
735
|
-
} & {
|
|
736
|
-
'label': string;
|
|
737
|
-
} & {
|
|
738
|
-
'fieldset': string;
|
|
739
|
-
} & {
|
|
740
|
-
'label': string;
|
|
741
|
-
} & {
|
|
742
|
-
'label': string;
|
|
743
|
-
} & {
|
|
744
|
-
'icon': string;
|
|
745
|
-
} & {
|
|
746
|
-
'prepend': string;
|
|
747
|
-
} & {
|
|
748
|
-
'append': string;
|
|
749
|
-
} & {
|
|
750
|
-
'textarea': string;
|
|
751
|
-
} & {
|
|
752
|
-
'textarea': string;
|
|
753
|
-
} & {
|
|
754
|
-
'label': string;
|
|
755
|
-
} & {
|
|
756
|
-
'label': string;
|
|
757
|
-
} & {
|
|
758
|
-
'outlined': string;
|
|
759
|
-
} & {
|
|
760
|
-
'disabled': string;
|
|
761
|
-
} & {
|
|
762
|
-
'textarea': string;
|
|
763
|
-
} & {
|
|
764
|
-
'fieldset': string;
|
|
765
|
-
} & {
|
|
766
|
-
'text_': string;
|
|
767
|
-
} & {
|
|
768
|
-
'with-': string;
|
|
769
|
-
} & {
|
|
770
|
-
'prepend': string;
|
|
771
|
-
} & {
|
|
772
|
-
'append': string;
|
|
773
|
-
} & {
|
|
774
|
-
'textarea': string;
|
|
775
|
-
} & {
|
|
776
|
-
'disabled': string;
|
|
777
|
-
} & {
|
|
778
|
-
'prepend': string;
|
|
779
|
-
} & {
|
|
780
|
-
'disabled': string;
|
|
781
|
-
} & {
|
|
782
|
-
'append': string;
|
|
783
|
-
} & {
|
|
784
|
-
'with-': string;
|
|
785
|
-
} & {
|
|
786
|
-
'textarea': string;
|
|
787
|
-
} & {
|
|
788
|
-
'label': string;
|
|
789
|
-
} & {
|
|
790
|
-
'fieldset': string;
|
|
791
|
-
} & {
|
|
792
|
-
'dense': string;
|
|
793
|
-
} & {
|
|
794
|
-
'inner_wrapper': string;
|
|
795
|
-
} & {
|
|
796
|
-
'textarea': string;
|
|
797
|
-
} & {
|
|
798
|
-
'filled': string;
|
|
799
|
-
} & {
|
|
800
|
-
'outlined': string;
|
|
801
|
-
} & {
|
|
802
|
-
'textarea': string;
|
|
803
|
-
} & {
|
|
804
|
-
'prepend': string;
|
|
805
|
-
} & {
|
|
806
|
-
'inner_wrapper': string;
|
|
807
|
-
} & {
|
|
808
|
-
'textarea': string;
|
|
809
|
-
} & {
|
|
810
|
-
'label': string;
|
|
811
|
-
} & {
|
|
812
|
-
'append': string;
|
|
813
|
-
} & {
|
|
814
|
-
'prepend': string;
|
|
815
|
-
} & {
|
|
816
|
-
'append': string;
|
|
817
|
-
} & {
|
|
818
|
-
'inner_wrapper': string;
|
|
819
|
-
} & {
|
|
820
|
-
'label': string;
|
|
821
|
-
} & {
|
|
822
|
-
'label': string;
|
|
823
|
-
} & {
|
|
824
|
-
'filled': string;
|
|
825
|
-
} & {
|
|
826
|
-
'label': string;
|
|
827
|
-
} & {
|
|
828
|
-
'no-label': string;
|
|
829
|
-
} & {
|
|
830
|
-
'textarea': string;
|
|
831
|
-
} & {
|
|
832
|
-
'dense': string;
|
|
833
|
-
} & {
|
|
834
|
-
'textarea': string;
|
|
835
|
-
} & {
|
|
836
|
-
'outlined': string;
|
|
837
|
-
} & {
|
|
838
|
-
'textarea': string;
|
|
839
|
-
} & {
|
|
840
|
-
'label': string;
|
|
841
|
-
} & {
|
|
842
|
-
'fieldset': string;
|
|
843
|
-
} & {
|
|
844
|
-
'fieldset': string;
|
|
845
|
-
} & {
|
|
846
|
-
'disabled': string;
|
|
847
|
-
} & {
|
|
848
|
-
'textarea': string;
|
|
849
|
-
} & {
|
|
850
|
-
'fieldset': string;
|
|
851
|
-
} & {
|
|
852
|
-
'fieldset': string;
|
|
853
|
-
} & {
|
|
854
|
-
'label': string;
|
|
855
|
-
} & {
|
|
856
|
-
'dense': string;
|
|
857
|
-
} & {
|
|
858
|
-
'label': string;
|
|
859
|
-
}>;
|
|
860
|
-
};
|
|
861
29
|
declare var __VLS_1: {}, __VLS_16: {};
|
|
862
|
-
type __VLS_Slots =
|
|
30
|
+
type __VLS_Slots = {} & {
|
|
863
31
|
prepend?: (props: typeof __VLS_1) => any;
|
|
864
32
|
} & {
|
|
865
33
|
append?: (props: typeof __VLS_16) => any;
|
|
866
|
-
}
|
|
34
|
+
};
|
|
867
35
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
868
36
|
"update:modelValue": (value: string) => any;
|
|
869
37
|
} & {
|