@cnamts/synapse 0.0.14-alpha → 0.0.16-alpha
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/CookiesSelection/CookiesSelection.d.ts +26 -26
- package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +2 -2
- package/dist/components/Customs/SySelect/SySelect.d.ts +24 -12
- package/dist/components/Customs/SySelect/locales.d.ts +3 -0
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +1393 -3
- package/dist/components/DatePicker/DatePicker.d.ts +3532 -22
- package/dist/components/DatePicker/DateTextInput.d.ts +1408 -11
- package/dist/components/DialogBox/config.d.ts +1 -1
- package/dist/components/DownloadBtn/DownloadBtn.d.ts +2 -0
- package/dist/components/LangBtn/LangBtn.d.ts +467 -1
- package/dist/components/LangBtn/config.d.ts +1 -3
- package/dist/components/NirField/NirField.d.ts +2805 -15
- package/dist/components/PasswordField/PasswordField.d.ts +2 -2
- package/dist/components/PeriodField/PeriodField.d.ts +7345 -325
- package/dist/components/PhoneField/PhoneField.d.ts +3 -3
- package/dist/components/SelectBtnField/SelectBtnField.d.ts +1 -1
- package/dist/components/SkipLink/SkipLink.d.ts +3 -2
- package/dist/components/SyAlert/SyAlert.d.ts +72 -1
- package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +26 -26
- package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/composables/date/useDateFormat.d.ts +2 -2
- package/dist/composables/date/useDateFormatDayjs.d.ts +23 -0
- package/dist/composables/date/useDateInitializationDayjs.d.ts +18 -0
- package/dist/design-system-v3.js +4314 -3987
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/vuetifyConfig.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/BackBtn/Accessibilite.stories.ts +4 -0
- package/src/components/BackBtn/BackBtn.vue +2 -1
- package/src/components/BackToTopBtn/Accessibilite.stories.ts +4 -0
- package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +78 -21
- package/src/components/BackToTopBtn/BackToTopBtn.vue +15 -0
- package/src/components/BackToTopBtn/config.ts +2 -2
- package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +4 -4
- package/src/components/CopyBtn/Accessibilite.stories.ts +4 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +2 -2
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +0 -1
- package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -3
- package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -4
- package/src/components/Customs/SySelect/SySelect.stories.ts +4 -0
- package/src/components/Customs/SySelect/SySelect.vue +75 -10
- package/src/components/Customs/SySelect/locales.ts +3 -0
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +24 -2
- package/src/components/Customs/SyTextField/Accessibilite.stories.ts +7 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +14 -1
- package/src/components/Customs/SyTextField/SyTextField.vue +85 -20
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +795 -0
- package/src/components/DatePicker/DatePicker.stories.ts +432 -1
- package/src/components/DatePicker/DatePicker.vue +143 -76
- package/src/components/DatePicker/DatePickerValidation.mdx +338 -0
- package/src/components/DatePicker/DatePickerValidation.stories.ts +30 -0
- package/src/components/DatePicker/DateTextInput.vue +87 -135
- package/src/components/DatePicker/docExamples/DatePickerBidirectionalValidation.vue +282 -0
- package/src/components/DatePicker/docExamples/DatePickerValidationExamples.vue +535 -0
- package/src/components/DatePicker/tests/DatePicker.spec.ts +33 -32
- package/src/components/DatePicker/tests/DateTextInput.spec.ts +83 -35
- package/src/components/DialogBox/DialogBox.stories.ts +5 -2
- package/src/components/DialogBox/DialogBox.vue +1 -1
- package/src/components/DialogBox/config.ts +1 -1
- package/src/components/DownloadBtn/Accessibilite.stories.ts +4 -0
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +17 -8
- package/src/components/DownloadBtn/DownloadBtn.vue +13 -6
- package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +0 -2
- package/src/components/FranceConnectBtn/Accessibilite.stories.ts +4 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +3 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +3 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/menu.scss +19 -0
- package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +12 -2
- package/src/components/LangBtn/Accessibilite.stories.ts +4 -0
- package/src/components/LangBtn/LangBtn.stories.ts +1 -4
- package/src/components/LangBtn/LangBtn.vue +68 -9
- package/src/components/LangBtn/config.ts +0 -1
- package/src/components/LangBtn/tests/LangBtn.spec.ts +30 -2
- package/src/components/PageContainer/Accessibilite.stories.ts +36 -23
- package/src/components/PaginatedTable/PaginatedTable.stories.ts +144 -18
- package/src/components/PasswordField/PasswordField.stories.ts +6 -6
- package/src/components/PasswordField/PasswordField.vue +3 -3
- package/src/components/PeriodField/PeriodField.vue +4 -4
- package/src/components/PhoneField/PhoneField.stories.ts +216 -24
- package/src/components/PhoneField/PhoneField.vue +32 -2
- package/src/components/PhoneField/tests/PhoneField.spec.ts +161 -14
- package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -1
- package/src/components/RatingPicker/RatingPicker.stories.ts +1 -1
- package/src/components/SkipLink/Accessibilite.stories.ts +8 -0
- package/src/components/SkipLink/SkipLink.vue +11 -9
- package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +7 -4
- package/src/components/SkipLink/tests/skipLink.spec.ts +120 -6
- package/src/components/SyAlert/Accessibilite.stories.ts +4 -0
- package/src/components/SyAlert/SyAlert.mdx +3 -7
- package/src/components/SyAlert/SyAlert.stories.ts +19 -12
- package/src/components/SyAlert/SyAlert.vue +88 -51
- package/src/components/SyAlert/tests/SyAlert.spec.ts +20 -2
- package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +83 -75
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +56 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +4 -2
- package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +41 -0
- package/src/components/index.ts +2 -0
- package/src/composables/date/useDateFormat.ts +17 -1
- package/src/composables/date/useDateFormatDayjs.ts +84 -0
- package/src/composables/date/useDateInitializationDayjs.ts +133 -0
- package/src/composables/rules/useFieldValidation.ts +26 -3
- package/src/stories/Accessibilite/Avancement/Avancement.mdx +12 -0
- package/src/stories/Accessibilite/Avancement/Avancement.stories.ts +134 -0
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
- package/src/stories/GuideDuDev/LesBreackingChanges.mdx +31 -2
- package/src/components/LangBtn/tests/Config.spec.ts +0 -24
|
@@ -88,6 +88,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
88
88
|
outlined: boolean;
|
|
89
89
|
modelValue: string | null;
|
|
90
90
|
label: string;
|
|
91
|
+
readonly: boolean;
|
|
91
92
|
bgColor: string;
|
|
92
93
|
counter: string | number | boolean;
|
|
93
94
|
density: "default" | "comfortable" | "compact";
|
|
@@ -98,7 +99,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
98
99
|
displayAsterisk: boolean;
|
|
99
100
|
showSuccessMessages: boolean;
|
|
100
101
|
disableErrorHandling: boolean;
|
|
101
|
-
readonly: boolean;
|
|
102
102
|
hideSpinButtons: boolean;
|
|
103
103
|
persistentHint: boolean;
|
|
104
104
|
hideDetails: boolean | "auto";
|
|
@@ -138,7 +138,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
138
138
|
readonly errorMessages?: string[] | null | undefined;
|
|
139
139
|
readonly warningMessages?: string[] | null | undefined;
|
|
140
140
|
readonly successMessages?: string[] | null | undefined;
|
|
141
|
-
readonly
|
|
141
|
+
readonly readonly?: boolean | undefined;
|
|
142
142
|
readonly isActive?: boolean | undefined;
|
|
143
143
|
readonly baseColor?: string | undefined;
|
|
144
144
|
readonly bgColor?: string | undefined;
|
|
@@ -185,6 +185,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
185
185
|
readonly showSuccessMessages?: boolean | undefined;
|
|
186
186
|
readonly isValidateOnBlur?: boolean | undefined;
|
|
187
187
|
readonly disableErrorHandling?: boolean | undefined;
|
|
188
|
+
readonly disableClickButton?: boolean | undefined;
|
|
189
|
+
readonly autocomplete?: string | undefined;
|
|
188
190
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
189
191
|
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
190
192
|
readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -195,6 +197,1391 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
195
197
|
};
|
|
196
198
|
$refs: {
|
|
197
199
|
[x: string]: unknown;
|
|
200
|
+
} & {
|
|
201
|
+
syTextFieldRef: import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
202
|
+
flat: boolean;
|
|
203
|
+
reverse: boolean;
|
|
204
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
205
|
+
type: string;
|
|
206
|
+
error: boolean;
|
|
207
|
+
active: boolean;
|
|
208
|
+
direction: "horizontal" | "vertical";
|
|
209
|
+
style: import('vue').StyleValue;
|
|
210
|
+
autofocus: boolean;
|
|
211
|
+
disabled: boolean;
|
|
212
|
+
readonly: boolean | null;
|
|
213
|
+
messages: string | readonly string[];
|
|
214
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
215
|
+
focused: boolean;
|
|
216
|
+
errorMessages: string | readonly string[] | null;
|
|
217
|
+
maxErrors: string | number;
|
|
218
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
219
|
+
tile: boolean;
|
|
220
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
221
|
+
glow: boolean;
|
|
222
|
+
hideSpinButtons: boolean;
|
|
223
|
+
persistentHint: boolean;
|
|
224
|
+
clearable: boolean;
|
|
225
|
+
dirty: boolean;
|
|
226
|
+
persistentClear: boolean;
|
|
227
|
+
singleLine: boolean;
|
|
228
|
+
persistentPlaceholder: boolean;
|
|
229
|
+
persistentCounter: boolean;
|
|
230
|
+
} & {
|
|
231
|
+
name?: string | undefined;
|
|
232
|
+
id?: string | undefined;
|
|
233
|
+
width?: string | number | undefined;
|
|
234
|
+
color?: string | undefined;
|
|
235
|
+
maxWidth?: string | number | undefined;
|
|
236
|
+
minWidth?: string | number | undefined;
|
|
237
|
+
loading?: string | boolean | undefined;
|
|
238
|
+
label?: string | undefined;
|
|
239
|
+
prefix?: string | undefined;
|
|
240
|
+
role?: string | undefined;
|
|
241
|
+
class?: any;
|
|
242
|
+
theme?: string | undefined;
|
|
243
|
+
placeholder?: string | undefined;
|
|
244
|
+
counter?: string | number | boolean | undefined;
|
|
245
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
246
|
+
modelValue?: any;
|
|
247
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
248
|
+
validationValue?: any;
|
|
249
|
+
rounded?: string | number | boolean | undefined;
|
|
250
|
+
baseColor?: string | undefined;
|
|
251
|
+
bgColor?: string | undefined;
|
|
252
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
253
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
254
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
255
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
256
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
257
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
258
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
259
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
260
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
261
|
+
centerAffix?: boolean | undefined;
|
|
262
|
+
iconColor?: string | boolean | undefined;
|
|
263
|
+
hint?: string | undefined;
|
|
264
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
265
|
+
suffix?: string | undefined;
|
|
266
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
267
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
268
|
+
} & {
|
|
269
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
270
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
271
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
272
|
+
props: Record<string, any>;
|
|
273
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
274
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
275
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
276
|
+
label: string | undefined;
|
|
277
|
+
props: Record<string, any>;
|
|
278
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
279
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
280
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
281
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
282
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
283
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
284
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
285
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
286
|
+
};
|
|
287
|
+
'v-slots'?: {
|
|
288
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
289
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
290
|
+
props: Record<string, any>;
|
|
291
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
292
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
293
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
294
|
+
label: string | undefined;
|
|
295
|
+
props: Record<string, any>;
|
|
296
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
297
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
298
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
299
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
300
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
301
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
302
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
303
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
304
|
+
} | undefined;
|
|
305
|
+
} & {
|
|
306
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
307
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
308
|
+
props: Record<string, any>;
|
|
309
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
310
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
311
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
312
|
+
label: string | undefined;
|
|
313
|
+
props: Record<string, any>;
|
|
314
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
315
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
316
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
317
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
318
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
319
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
320
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
321
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
322
|
+
} & {
|
|
323
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
324
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
325
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
326
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
327
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
328
|
+
$: import('vue').ComponentInternalInstance;
|
|
329
|
+
$data: {};
|
|
330
|
+
$props: Partial<{
|
|
331
|
+
error: boolean;
|
|
332
|
+
direction: "horizontal" | "vertical";
|
|
333
|
+
style: import('vue').StyleValue;
|
|
334
|
+
disabled: boolean | null;
|
|
335
|
+
readonly: boolean | null;
|
|
336
|
+
messages: string | readonly string[];
|
|
337
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
338
|
+
focused: boolean;
|
|
339
|
+
errorMessages: string | readonly string[] | null;
|
|
340
|
+
maxErrors: string | number;
|
|
341
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
342
|
+
centerAffix: boolean;
|
|
343
|
+
glow: boolean;
|
|
344
|
+
hideSpinButtons: boolean;
|
|
345
|
+
persistentHint: boolean;
|
|
346
|
+
}> & Omit<{
|
|
347
|
+
error: boolean;
|
|
348
|
+
direction: "horizontal" | "vertical";
|
|
349
|
+
style: import('vue').StyleValue;
|
|
350
|
+
disabled: boolean | null;
|
|
351
|
+
readonly: boolean | null;
|
|
352
|
+
messages: string | readonly string[];
|
|
353
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
354
|
+
focused: boolean;
|
|
355
|
+
errorMessages: string | readonly string[] | null;
|
|
356
|
+
maxErrors: string | number;
|
|
357
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
358
|
+
centerAffix: boolean;
|
|
359
|
+
glow: boolean;
|
|
360
|
+
hideSpinButtons: boolean;
|
|
361
|
+
persistentHint: boolean;
|
|
362
|
+
name?: string | undefined;
|
|
363
|
+
id?: string | undefined;
|
|
364
|
+
width?: string | number | undefined;
|
|
365
|
+
color?: string | undefined;
|
|
366
|
+
maxWidth?: string | number | undefined;
|
|
367
|
+
minWidth?: string | number | undefined;
|
|
368
|
+
label?: string | undefined;
|
|
369
|
+
class?: any;
|
|
370
|
+
theme?: string | undefined;
|
|
371
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
372
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
373
|
+
validationValue?: any;
|
|
374
|
+
baseColor?: string | undefined;
|
|
375
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
376
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
377
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
378
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
379
|
+
iconColor?: string | boolean | undefined;
|
|
380
|
+
hint?: string | undefined;
|
|
381
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
382
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
383
|
+
$attrs: {
|
|
384
|
+
[x: string]: unknown;
|
|
385
|
+
};
|
|
386
|
+
$refs: {
|
|
387
|
+
[x: string]: unknown;
|
|
388
|
+
};
|
|
389
|
+
$slots: Readonly<{
|
|
390
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
391
|
+
[key: string]: any;
|
|
392
|
+
}>[]) | undefined;
|
|
393
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
394
|
+
[key: string]: any;
|
|
395
|
+
}>[]) | undefined;
|
|
396
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
397
|
+
[key: string]: any;
|
|
398
|
+
}>[]) | undefined;
|
|
399
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
400
|
+
[key: string]: any;
|
|
401
|
+
}>[]) | undefined;
|
|
402
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
}>[]) | undefined;
|
|
405
|
+
}>;
|
|
406
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
407
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
408
|
+
$host: Element | null;
|
|
409
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
410
|
+
$el: any;
|
|
411
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
412
|
+
error: boolean;
|
|
413
|
+
direction: "horizontal" | "vertical";
|
|
414
|
+
style: import('vue').StyleValue;
|
|
415
|
+
disabled: boolean | null;
|
|
416
|
+
readonly: boolean | null;
|
|
417
|
+
messages: string | readonly string[];
|
|
418
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
419
|
+
focused: boolean;
|
|
420
|
+
errorMessages: string | readonly string[] | null;
|
|
421
|
+
maxErrors: string | number;
|
|
422
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
423
|
+
centerAffix: boolean;
|
|
424
|
+
glow: boolean;
|
|
425
|
+
hideSpinButtons: boolean;
|
|
426
|
+
persistentHint: boolean;
|
|
427
|
+
} & {
|
|
428
|
+
name?: string | undefined;
|
|
429
|
+
id?: string | undefined;
|
|
430
|
+
width?: string | number | undefined;
|
|
431
|
+
color?: string | undefined;
|
|
432
|
+
maxWidth?: string | number | undefined;
|
|
433
|
+
minWidth?: string | number | undefined;
|
|
434
|
+
label?: string | undefined;
|
|
435
|
+
class?: any;
|
|
436
|
+
theme?: string | undefined;
|
|
437
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
438
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
439
|
+
validationValue?: any;
|
|
440
|
+
baseColor?: string | undefined;
|
|
441
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
442
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
443
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
444
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
445
|
+
iconColor?: string | boolean | undefined;
|
|
446
|
+
hint?: string | undefined;
|
|
447
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
448
|
+
}, {
|
|
449
|
+
reset: () => Promise<void>;
|
|
450
|
+
resetValidation: () => Promise<void>;
|
|
451
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
452
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
453
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
454
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
455
|
+
'update:modelValue': (value: any) => true;
|
|
456
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
457
|
+
error: boolean;
|
|
458
|
+
direction: "horizontal" | "vertical";
|
|
459
|
+
style: import('vue').StyleValue;
|
|
460
|
+
disabled: boolean | null;
|
|
461
|
+
readonly: boolean | null;
|
|
462
|
+
messages: string | readonly string[];
|
|
463
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
464
|
+
focused: boolean;
|
|
465
|
+
errorMessages: string | readonly string[] | null;
|
|
466
|
+
maxErrors: string | number;
|
|
467
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
468
|
+
centerAffix: boolean;
|
|
469
|
+
glow: boolean;
|
|
470
|
+
hideSpinButtons: boolean;
|
|
471
|
+
persistentHint: boolean;
|
|
472
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
473
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
474
|
+
[key: string]: any;
|
|
475
|
+
}>[];
|
|
476
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
477
|
+
[key: string]: any;
|
|
478
|
+
}>[];
|
|
479
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
480
|
+
[key: string]: any;
|
|
481
|
+
}>[];
|
|
482
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
483
|
+
[key: string]: any;
|
|
484
|
+
}>[];
|
|
485
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
486
|
+
[key: string]: any;
|
|
487
|
+
}>[];
|
|
488
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
489
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
490
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
491
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
492
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
493
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
494
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
495
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
496
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
497
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
498
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
499
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
500
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
501
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
502
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
503
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
504
|
+
};
|
|
505
|
+
$forceUpdate: () => void;
|
|
506
|
+
$nextTick: typeof nextTick;
|
|
507
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
508
|
+
} & Readonly<{
|
|
509
|
+
error: boolean;
|
|
510
|
+
direction: "horizontal" | "vertical";
|
|
511
|
+
style: import('vue').StyleValue;
|
|
512
|
+
disabled: boolean | null;
|
|
513
|
+
readonly: boolean | null;
|
|
514
|
+
messages: string | readonly string[];
|
|
515
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
516
|
+
focused: boolean;
|
|
517
|
+
errorMessages: string | readonly string[] | null;
|
|
518
|
+
maxErrors: string | number;
|
|
519
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
520
|
+
centerAffix: boolean;
|
|
521
|
+
glow: boolean;
|
|
522
|
+
hideSpinButtons: boolean;
|
|
523
|
+
persistentHint: boolean;
|
|
524
|
+
}> & Omit<{
|
|
525
|
+
error: boolean;
|
|
526
|
+
direction: "horizontal" | "vertical";
|
|
527
|
+
style: import('vue').StyleValue;
|
|
528
|
+
disabled: boolean | null;
|
|
529
|
+
readonly: boolean | null;
|
|
530
|
+
messages: string | readonly string[];
|
|
531
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
532
|
+
focused: boolean;
|
|
533
|
+
errorMessages: string | readonly string[] | null;
|
|
534
|
+
maxErrors: string | number;
|
|
535
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
536
|
+
centerAffix: boolean;
|
|
537
|
+
glow: boolean;
|
|
538
|
+
hideSpinButtons: boolean;
|
|
539
|
+
persistentHint: boolean;
|
|
540
|
+
} & {
|
|
541
|
+
name?: string | undefined;
|
|
542
|
+
id?: string | undefined;
|
|
543
|
+
width?: string | number | undefined;
|
|
544
|
+
color?: string | undefined;
|
|
545
|
+
maxWidth?: string | number | undefined;
|
|
546
|
+
minWidth?: string | number | undefined;
|
|
547
|
+
label?: string | undefined;
|
|
548
|
+
class?: any;
|
|
549
|
+
theme?: string | undefined;
|
|
550
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
551
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
552
|
+
validationValue?: any;
|
|
553
|
+
baseColor?: string | undefined;
|
|
554
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
555
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
556
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
557
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
558
|
+
iconColor?: string | boolean | undefined;
|
|
559
|
+
hint?: string | undefined;
|
|
560
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
561
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
562
|
+
reset: () => Promise<void>;
|
|
563
|
+
resetValidation: () => Promise<void>;
|
|
564
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
565
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
566
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
567
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
568
|
+
modelValue?: unknown;
|
|
569
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
570
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
571
|
+
$: import('vue').ComponentInternalInstance;
|
|
572
|
+
$data: {};
|
|
573
|
+
$props: Partial<{
|
|
574
|
+
flat: boolean;
|
|
575
|
+
reverse: boolean;
|
|
576
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
577
|
+
error: boolean;
|
|
578
|
+
active: boolean;
|
|
579
|
+
style: import('vue').StyleValue;
|
|
580
|
+
disabled: boolean;
|
|
581
|
+
focused: boolean;
|
|
582
|
+
rounded: string | number | boolean;
|
|
583
|
+
tile: boolean;
|
|
584
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
585
|
+
centerAffix: boolean;
|
|
586
|
+
glow: boolean;
|
|
587
|
+
clearable: boolean;
|
|
588
|
+
dirty: boolean;
|
|
589
|
+
persistentClear: boolean;
|
|
590
|
+
singleLine: boolean;
|
|
591
|
+
}> & Omit<{
|
|
592
|
+
flat: boolean;
|
|
593
|
+
reverse: boolean;
|
|
594
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
595
|
+
error: boolean;
|
|
596
|
+
active: boolean;
|
|
597
|
+
style: import('vue').StyleValue;
|
|
598
|
+
disabled: boolean;
|
|
599
|
+
focused: boolean;
|
|
600
|
+
tile: boolean;
|
|
601
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
602
|
+
glow: boolean;
|
|
603
|
+
clearable: boolean;
|
|
604
|
+
dirty: boolean;
|
|
605
|
+
persistentClear: boolean;
|
|
606
|
+
singleLine: boolean;
|
|
607
|
+
id?: string | undefined;
|
|
608
|
+
color?: string | undefined;
|
|
609
|
+
loading?: string | boolean | undefined;
|
|
610
|
+
label?: string | undefined;
|
|
611
|
+
class?: any;
|
|
612
|
+
theme?: string | undefined;
|
|
613
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
614
|
+
rounded?: string | number | boolean | undefined;
|
|
615
|
+
baseColor?: string | undefined;
|
|
616
|
+
bgColor?: string | undefined;
|
|
617
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
618
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
619
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
620
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
621
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
622
|
+
centerAffix?: boolean | undefined;
|
|
623
|
+
iconColor?: string | boolean | undefined;
|
|
624
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
625
|
+
$attrs: {
|
|
626
|
+
[x: string]: unknown;
|
|
627
|
+
};
|
|
628
|
+
$refs: {
|
|
629
|
+
[x: string]: unknown;
|
|
630
|
+
};
|
|
631
|
+
$slots: Readonly<{
|
|
632
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
633
|
+
props: Record<string, any>;
|
|
634
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
635
|
+
[key: string]: any;
|
|
636
|
+
}>[]) | undefined;
|
|
637
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
638
|
+
[key: string]: any;
|
|
639
|
+
}>[]) | undefined;
|
|
640
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
641
|
+
[key: string]: any;
|
|
642
|
+
}>[]) | undefined;
|
|
643
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
644
|
+
label: string | undefined;
|
|
645
|
+
props: Record<string, any>;
|
|
646
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
647
|
+
[key: string]: any;
|
|
648
|
+
}>[]) | undefined;
|
|
649
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
650
|
+
[key: string]: any;
|
|
651
|
+
}>[]) | undefined;
|
|
652
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
653
|
+
[key: string]: any;
|
|
654
|
+
}>[]) | undefined;
|
|
655
|
+
}>;
|
|
656
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
657
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
658
|
+
$host: Element | null;
|
|
659
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
660
|
+
$el: any;
|
|
661
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
662
|
+
flat: boolean;
|
|
663
|
+
reverse: boolean;
|
|
664
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
665
|
+
error: boolean;
|
|
666
|
+
active: boolean;
|
|
667
|
+
style: import('vue').StyleValue;
|
|
668
|
+
disabled: boolean;
|
|
669
|
+
focused: boolean;
|
|
670
|
+
tile: boolean;
|
|
671
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
672
|
+
glow: boolean;
|
|
673
|
+
clearable: boolean;
|
|
674
|
+
dirty: boolean;
|
|
675
|
+
persistentClear: boolean;
|
|
676
|
+
singleLine: boolean;
|
|
677
|
+
} & {
|
|
678
|
+
id?: string | undefined;
|
|
679
|
+
color?: string | undefined;
|
|
680
|
+
loading?: string | boolean | undefined;
|
|
681
|
+
label?: string | undefined;
|
|
682
|
+
class?: any;
|
|
683
|
+
theme?: string | undefined;
|
|
684
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
685
|
+
rounded?: string | number | boolean | undefined;
|
|
686
|
+
baseColor?: string | undefined;
|
|
687
|
+
bgColor?: string | undefined;
|
|
688
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
689
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
690
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
691
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
692
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
693
|
+
centerAffix?: boolean | undefined;
|
|
694
|
+
iconColor?: string | boolean | undefined;
|
|
695
|
+
} & {
|
|
696
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
697
|
+
}, {
|
|
698
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
699
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
700
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
701
|
+
'update:focused': (focused: boolean) => true;
|
|
702
|
+
'update:modelValue': (value: any) => true;
|
|
703
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
704
|
+
flat: boolean;
|
|
705
|
+
reverse: boolean;
|
|
706
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
707
|
+
error: boolean;
|
|
708
|
+
active: boolean;
|
|
709
|
+
style: import('vue').StyleValue;
|
|
710
|
+
disabled: boolean;
|
|
711
|
+
focused: boolean;
|
|
712
|
+
rounded: string | number | boolean;
|
|
713
|
+
tile: boolean;
|
|
714
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
715
|
+
centerAffix: boolean;
|
|
716
|
+
glow: boolean;
|
|
717
|
+
clearable: boolean;
|
|
718
|
+
dirty: boolean;
|
|
719
|
+
persistentClear: boolean;
|
|
720
|
+
singleLine: boolean;
|
|
721
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
722
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
723
|
+
props: Record<string, any>;
|
|
724
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
725
|
+
[key: string]: any;
|
|
726
|
+
}>[];
|
|
727
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
728
|
+
[key: string]: any;
|
|
729
|
+
}>[];
|
|
730
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
731
|
+
[key: string]: any;
|
|
732
|
+
}>[];
|
|
733
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
734
|
+
label: string | undefined;
|
|
735
|
+
props: Record<string, any>;
|
|
736
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
737
|
+
[key: string]: any;
|
|
738
|
+
}>[];
|
|
739
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
740
|
+
[key: string]: any;
|
|
741
|
+
}>[];
|
|
742
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
743
|
+
[key: string]: any;
|
|
744
|
+
}>[];
|
|
745
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
746
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
747
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
748
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
749
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
750
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
751
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
752
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
753
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
754
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
755
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
756
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
757
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
758
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
759
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
760
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
761
|
+
};
|
|
762
|
+
$forceUpdate: () => void;
|
|
763
|
+
$nextTick: typeof nextTick;
|
|
764
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
765
|
+
} & Readonly<{
|
|
766
|
+
flat: boolean;
|
|
767
|
+
reverse: boolean;
|
|
768
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
769
|
+
error: boolean;
|
|
770
|
+
active: boolean;
|
|
771
|
+
style: import('vue').StyleValue;
|
|
772
|
+
disabled: boolean;
|
|
773
|
+
focused: boolean;
|
|
774
|
+
rounded: string | number | boolean;
|
|
775
|
+
tile: boolean;
|
|
776
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
777
|
+
centerAffix: boolean;
|
|
778
|
+
glow: boolean;
|
|
779
|
+
clearable: boolean;
|
|
780
|
+
dirty: boolean;
|
|
781
|
+
persistentClear: boolean;
|
|
782
|
+
singleLine: boolean;
|
|
783
|
+
}> & Omit<{
|
|
784
|
+
flat: boolean;
|
|
785
|
+
reverse: boolean;
|
|
786
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
787
|
+
error: boolean;
|
|
788
|
+
active: boolean;
|
|
789
|
+
style: import('vue').StyleValue;
|
|
790
|
+
disabled: boolean;
|
|
791
|
+
focused: boolean;
|
|
792
|
+
tile: boolean;
|
|
793
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
794
|
+
glow: boolean;
|
|
795
|
+
clearable: boolean;
|
|
796
|
+
dirty: boolean;
|
|
797
|
+
persistentClear: boolean;
|
|
798
|
+
singleLine: boolean;
|
|
799
|
+
} & {
|
|
800
|
+
id?: string | undefined;
|
|
801
|
+
color?: string | undefined;
|
|
802
|
+
loading?: string | boolean | undefined;
|
|
803
|
+
label?: string | undefined;
|
|
804
|
+
class?: any;
|
|
805
|
+
theme?: string | undefined;
|
|
806
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
807
|
+
rounded?: string | number | boolean | undefined;
|
|
808
|
+
baseColor?: string | undefined;
|
|
809
|
+
bgColor?: string | undefined;
|
|
810
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
811
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
812
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
813
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
814
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
815
|
+
centerAffix?: boolean | undefined;
|
|
816
|
+
iconColor?: string | boolean | undefined;
|
|
817
|
+
} & {
|
|
818
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
819
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
820
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
821
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
822
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
823
|
+
modelValue?: unknown;
|
|
824
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
825
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
826
|
+
_allExposed: {} | {
|
|
827
|
+
reset: () => Promise<void>;
|
|
828
|
+
resetValidation: () => Promise<void>;
|
|
829
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
830
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
831
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
832
|
+
} | {
|
|
833
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
834
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
835
|
+
};
|
|
836
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
837
|
+
'click:control': (e: MouseEvent) => true;
|
|
838
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
839
|
+
'update:focused': (focused: boolean) => true;
|
|
840
|
+
'update:modelValue': (val: string) => true;
|
|
841
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
842
|
+
flat: boolean;
|
|
843
|
+
reverse: boolean;
|
|
844
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
845
|
+
type: string;
|
|
846
|
+
error: boolean;
|
|
847
|
+
active: boolean;
|
|
848
|
+
direction: "horizontal" | "vertical";
|
|
849
|
+
style: import('vue').StyleValue;
|
|
850
|
+
autofocus: boolean;
|
|
851
|
+
disabled: boolean;
|
|
852
|
+
readonly: boolean | null;
|
|
853
|
+
messages: string | readonly string[];
|
|
854
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
855
|
+
focused: boolean;
|
|
856
|
+
errorMessages: string | readonly string[] | null;
|
|
857
|
+
maxErrors: string | number;
|
|
858
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
859
|
+
rounded: string | number | boolean;
|
|
860
|
+
tile: boolean;
|
|
861
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
862
|
+
centerAffix: boolean;
|
|
863
|
+
glow: boolean;
|
|
864
|
+
hideSpinButtons: boolean;
|
|
865
|
+
persistentHint: boolean;
|
|
866
|
+
clearable: boolean;
|
|
867
|
+
dirty: boolean;
|
|
868
|
+
persistentClear: boolean;
|
|
869
|
+
singleLine: boolean;
|
|
870
|
+
persistentPlaceholder: boolean;
|
|
871
|
+
persistentCounter: boolean;
|
|
872
|
+
}, true, {}, import('vue').SlotsType<Partial<{
|
|
873
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
874
|
+
[key: string]: any;
|
|
875
|
+
}>[];
|
|
876
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
877
|
+
props: Record<string, any>;
|
|
878
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
879
|
+
[key: string]: any;
|
|
880
|
+
}>[];
|
|
881
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
882
|
+
[key: string]: any;
|
|
883
|
+
}>[];
|
|
884
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
885
|
+
label: string | undefined;
|
|
886
|
+
props: Record<string, any>;
|
|
887
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
888
|
+
[key: string]: any;
|
|
889
|
+
}>[];
|
|
890
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
891
|
+
[key: string]: any;
|
|
892
|
+
}>[];
|
|
893
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
894
|
+
[key: string]: any;
|
|
895
|
+
}>[];
|
|
896
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
897
|
+
[key: string]: any;
|
|
898
|
+
}>[];
|
|
899
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
900
|
+
[key: string]: any;
|
|
901
|
+
}>[];
|
|
902
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
903
|
+
[key: string]: any;
|
|
904
|
+
}>[];
|
|
905
|
+
default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
906
|
+
[key: string]: any;
|
|
907
|
+
}>[];
|
|
908
|
+
counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
909
|
+
[key: string]: any;
|
|
910
|
+
}>[];
|
|
911
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
912
|
+
P: {};
|
|
913
|
+
B: {};
|
|
914
|
+
D: {};
|
|
915
|
+
C: {};
|
|
916
|
+
M: {};
|
|
917
|
+
Defaults: {};
|
|
918
|
+
}, {
|
|
919
|
+
flat: boolean;
|
|
920
|
+
reverse: boolean;
|
|
921
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
922
|
+
type: string;
|
|
923
|
+
error: boolean;
|
|
924
|
+
active: boolean;
|
|
925
|
+
direction: "horizontal" | "vertical";
|
|
926
|
+
style: import('vue').StyleValue;
|
|
927
|
+
autofocus: boolean;
|
|
928
|
+
disabled: boolean;
|
|
929
|
+
readonly: boolean | null;
|
|
930
|
+
messages: string | readonly string[];
|
|
931
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
932
|
+
focused: boolean;
|
|
933
|
+
errorMessages: string | readonly string[] | null;
|
|
934
|
+
maxErrors: string | number;
|
|
935
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
936
|
+
tile: boolean;
|
|
937
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
938
|
+
glow: boolean;
|
|
939
|
+
hideSpinButtons: boolean;
|
|
940
|
+
persistentHint: boolean;
|
|
941
|
+
clearable: boolean;
|
|
942
|
+
dirty: boolean;
|
|
943
|
+
persistentClear: boolean;
|
|
944
|
+
singleLine: boolean;
|
|
945
|
+
persistentPlaceholder: boolean;
|
|
946
|
+
persistentCounter: boolean;
|
|
947
|
+
} & {
|
|
948
|
+
name?: string | undefined;
|
|
949
|
+
id?: string | undefined;
|
|
950
|
+
width?: string | number | undefined;
|
|
951
|
+
color?: string | undefined;
|
|
952
|
+
maxWidth?: string | number | undefined;
|
|
953
|
+
minWidth?: string | number | undefined;
|
|
954
|
+
loading?: string | boolean | undefined;
|
|
955
|
+
label?: string | undefined;
|
|
956
|
+
prefix?: string | undefined;
|
|
957
|
+
role?: string | undefined;
|
|
958
|
+
class?: any;
|
|
959
|
+
theme?: string | undefined;
|
|
960
|
+
placeholder?: string | undefined;
|
|
961
|
+
counter?: string | number | boolean | undefined;
|
|
962
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
963
|
+
modelValue?: any;
|
|
964
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
965
|
+
validationValue?: any;
|
|
966
|
+
rounded?: string | number | boolean | undefined;
|
|
967
|
+
baseColor?: string | undefined;
|
|
968
|
+
bgColor?: string | undefined;
|
|
969
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
970
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
971
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
972
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
973
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
974
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
975
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
976
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
977
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
978
|
+
centerAffix?: boolean | undefined;
|
|
979
|
+
iconColor?: string | boolean | undefined;
|
|
980
|
+
hint?: string | undefined;
|
|
981
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
982
|
+
suffix?: string | undefined;
|
|
983
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
984
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
985
|
+
} & {
|
|
986
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
987
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
988
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
989
|
+
props: Record<string, any>;
|
|
990
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
991
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
992
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
993
|
+
label: string | undefined;
|
|
994
|
+
props: Record<string, any>;
|
|
995
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
996
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
997
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
998
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
999
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1000
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1001
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
1002
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
1003
|
+
};
|
|
1004
|
+
'v-slots'?: {
|
|
1005
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
1006
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1007
|
+
props: Record<string, any>;
|
|
1008
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
1009
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1010
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1011
|
+
label: string | undefined;
|
|
1012
|
+
props: Record<string, any>;
|
|
1013
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
1014
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1015
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1016
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
1017
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1018
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1019
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
1020
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
1021
|
+
} | undefined;
|
|
1022
|
+
} & {
|
|
1023
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
1024
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1025
|
+
props: Record<string, any>;
|
|
1026
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
1027
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1028
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1029
|
+
label: string | undefined;
|
|
1030
|
+
props: Record<string, any>;
|
|
1031
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
1032
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1033
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1034
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
1035
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1036
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
1037
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
1038
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
1039
|
+
} & {
|
|
1040
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1041
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
1042
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1043
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1044
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
1045
|
+
$: import('vue').ComponentInternalInstance;
|
|
1046
|
+
$data: {};
|
|
1047
|
+
$props: Partial<{
|
|
1048
|
+
error: boolean;
|
|
1049
|
+
direction: "horizontal" | "vertical";
|
|
1050
|
+
style: import('vue').StyleValue;
|
|
1051
|
+
disabled: boolean | null;
|
|
1052
|
+
readonly: boolean | null;
|
|
1053
|
+
messages: string | readonly string[];
|
|
1054
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1055
|
+
focused: boolean;
|
|
1056
|
+
errorMessages: string | readonly string[] | null;
|
|
1057
|
+
maxErrors: string | number;
|
|
1058
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1059
|
+
centerAffix: boolean;
|
|
1060
|
+
glow: boolean;
|
|
1061
|
+
hideSpinButtons: boolean;
|
|
1062
|
+
persistentHint: boolean;
|
|
1063
|
+
}> & Omit<{
|
|
1064
|
+
error: boolean;
|
|
1065
|
+
direction: "horizontal" | "vertical";
|
|
1066
|
+
style: import('vue').StyleValue;
|
|
1067
|
+
disabled: boolean | null;
|
|
1068
|
+
readonly: boolean | null;
|
|
1069
|
+
messages: string | readonly string[];
|
|
1070
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1071
|
+
focused: boolean;
|
|
1072
|
+
errorMessages: string | readonly string[] | null;
|
|
1073
|
+
maxErrors: string | number;
|
|
1074
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1075
|
+
centerAffix: boolean;
|
|
1076
|
+
glow: boolean;
|
|
1077
|
+
hideSpinButtons: boolean;
|
|
1078
|
+
persistentHint: boolean;
|
|
1079
|
+
name?: string | undefined;
|
|
1080
|
+
id?: string | undefined;
|
|
1081
|
+
width?: string | number | undefined;
|
|
1082
|
+
color?: string | undefined;
|
|
1083
|
+
maxWidth?: string | number | undefined;
|
|
1084
|
+
minWidth?: string | number | undefined;
|
|
1085
|
+
label?: string | undefined;
|
|
1086
|
+
class?: any;
|
|
1087
|
+
theme?: string | undefined;
|
|
1088
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
1089
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
1090
|
+
validationValue?: any;
|
|
1091
|
+
baseColor?: string | undefined;
|
|
1092
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1093
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1094
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1095
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1096
|
+
iconColor?: string | boolean | undefined;
|
|
1097
|
+
hint?: string | undefined;
|
|
1098
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
1099
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
1100
|
+
$attrs: {
|
|
1101
|
+
[x: string]: unknown;
|
|
1102
|
+
};
|
|
1103
|
+
$refs: {
|
|
1104
|
+
[x: string]: unknown;
|
|
1105
|
+
};
|
|
1106
|
+
$slots: Readonly<{
|
|
1107
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1108
|
+
[key: string]: any;
|
|
1109
|
+
}>[]) | undefined;
|
|
1110
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1111
|
+
[key: string]: any;
|
|
1112
|
+
}>[]) | undefined;
|
|
1113
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1114
|
+
[key: string]: any;
|
|
1115
|
+
}>[]) | undefined;
|
|
1116
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1117
|
+
[key: string]: any;
|
|
1118
|
+
}>[]) | undefined;
|
|
1119
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1120
|
+
[key: string]: any;
|
|
1121
|
+
}>[]) | undefined;
|
|
1122
|
+
}>;
|
|
1123
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
1124
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
1125
|
+
$host: Element | null;
|
|
1126
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1127
|
+
$el: any;
|
|
1128
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
1129
|
+
error: boolean;
|
|
1130
|
+
direction: "horizontal" | "vertical";
|
|
1131
|
+
style: import('vue').StyleValue;
|
|
1132
|
+
disabled: boolean | null;
|
|
1133
|
+
readonly: boolean | null;
|
|
1134
|
+
messages: string | readonly string[];
|
|
1135
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1136
|
+
focused: boolean;
|
|
1137
|
+
errorMessages: string | readonly string[] | null;
|
|
1138
|
+
maxErrors: string | number;
|
|
1139
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1140
|
+
centerAffix: boolean;
|
|
1141
|
+
glow: boolean;
|
|
1142
|
+
hideSpinButtons: boolean;
|
|
1143
|
+
persistentHint: boolean;
|
|
1144
|
+
} & {
|
|
1145
|
+
name?: string | undefined;
|
|
1146
|
+
id?: string | undefined;
|
|
1147
|
+
width?: string | number | undefined;
|
|
1148
|
+
color?: string | undefined;
|
|
1149
|
+
maxWidth?: string | number | undefined;
|
|
1150
|
+
minWidth?: string | number | undefined;
|
|
1151
|
+
label?: string | undefined;
|
|
1152
|
+
class?: any;
|
|
1153
|
+
theme?: string | undefined;
|
|
1154
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
1155
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
1156
|
+
validationValue?: any;
|
|
1157
|
+
baseColor?: string | undefined;
|
|
1158
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1159
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1160
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1161
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1162
|
+
iconColor?: string | boolean | undefined;
|
|
1163
|
+
hint?: string | undefined;
|
|
1164
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
1165
|
+
}, {
|
|
1166
|
+
reset: () => Promise<void>;
|
|
1167
|
+
resetValidation: () => Promise<void>;
|
|
1168
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
1169
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
1170
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
1171
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
1172
|
+
'update:modelValue': (value: any) => true;
|
|
1173
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
1174
|
+
error: boolean;
|
|
1175
|
+
direction: "horizontal" | "vertical";
|
|
1176
|
+
style: import('vue').StyleValue;
|
|
1177
|
+
disabled: boolean | null;
|
|
1178
|
+
readonly: boolean | null;
|
|
1179
|
+
messages: string | readonly string[];
|
|
1180
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1181
|
+
focused: boolean;
|
|
1182
|
+
errorMessages: string | readonly string[] | null;
|
|
1183
|
+
maxErrors: string | number;
|
|
1184
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1185
|
+
centerAffix: boolean;
|
|
1186
|
+
glow: boolean;
|
|
1187
|
+
hideSpinButtons: boolean;
|
|
1188
|
+
persistentHint: boolean;
|
|
1189
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
1190
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1191
|
+
[key: string]: any;
|
|
1192
|
+
}>[];
|
|
1193
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1194
|
+
[key: string]: any;
|
|
1195
|
+
}>[];
|
|
1196
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1197
|
+
[key: string]: any;
|
|
1198
|
+
}>[];
|
|
1199
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1200
|
+
[key: string]: any;
|
|
1201
|
+
}>[];
|
|
1202
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1203
|
+
[key: string]: any;
|
|
1204
|
+
}>[];
|
|
1205
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1206
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
1207
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
1208
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
1209
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
1210
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
1211
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
1212
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
1213
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
1214
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
1215
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
1216
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
1217
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
1218
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1219
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1220
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
1221
|
+
};
|
|
1222
|
+
$forceUpdate: () => void;
|
|
1223
|
+
$nextTick: typeof nextTick;
|
|
1224
|
+
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
1225
|
+
} & Readonly<{
|
|
1226
|
+
error: boolean;
|
|
1227
|
+
direction: "horizontal" | "vertical";
|
|
1228
|
+
style: import('vue').StyleValue;
|
|
1229
|
+
disabled: boolean | null;
|
|
1230
|
+
readonly: boolean | null;
|
|
1231
|
+
messages: string | readonly string[];
|
|
1232
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1233
|
+
focused: boolean;
|
|
1234
|
+
errorMessages: string | readonly string[] | null;
|
|
1235
|
+
maxErrors: string | number;
|
|
1236
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1237
|
+
centerAffix: boolean;
|
|
1238
|
+
glow: boolean;
|
|
1239
|
+
hideSpinButtons: boolean;
|
|
1240
|
+
persistentHint: boolean;
|
|
1241
|
+
}> & Omit<{
|
|
1242
|
+
error: boolean;
|
|
1243
|
+
direction: "horizontal" | "vertical";
|
|
1244
|
+
style: import('vue').StyleValue;
|
|
1245
|
+
disabled: boolean | null;
|
|
1246
|
+
readonly: boolean | null;
|
|
1247
|
+
messages: string | readonly string[];
|
|
1248
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1249
|
+
focused: boolean;
|
|
1250
|
+
errorMessages: string | readonly string[] | null;
|
|
1251
|
+
maxErrors: string | number;
|
|
1252
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1253
|
+
centerAffix: boolean;
|
|
1254
|
+
glow: boolean;
|
|
1255
|
+
hideSpinButtons: boolean;
|
|
1256
|
+
persistentHint: boolean;
|
|
1257
|
+
} & {
|
|
1258
|
+
name?: string | undefined;
|
|
1259
|
+
id?: string | undefined;
|
|
1260
|
+
width?: string | number | undefined;
|
|
1261
|
+
color?: string | undefined;
|
|
1262
|
+
maxWidth?: string | number | undefined;
|
|
1263
|
+
minWidth?: string | number | undefined;
|
|
1264
|
+
label?: string | undefined;
|
|
1265
|
+
class?: any;
|
|
1266
|
+
theme?: string | undefined;
|
|
1267
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
1268
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
1269
|
+
validationValue?: any;
|
|
1270
|
+
baseColor?: string | undefined;
|
|
1271
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1272
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1273
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1274
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1275
|
+
iconColor?: string | boolean | undefined;
|
|
1276
|
+
hint?: string | undefined;
|
|
1277
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
1278
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
1279
|
+
reset: () => Promise<void>;
|
|
1280
|
+
resetValidation: () => Promise<void>;
|
|
1281
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
1282
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
1283
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
1284
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
1285
|
+
modelValue?: unknown;
|
|
1286
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
1287
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
1288
|
+
$: import('vue').ComponentInternalInstance;
|
|
1289
|
+
$data: {};
|
|
1290
|
+
$props: Partial<{
|
|
1291
|
+
flat: boolean;
|
|
1292
|
+
reverse: boolean;
|
|
1293
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1294
|
+
error: boolean;
|
|
1295
|
+
active: boolean;
|
|
1296
|
+
style: import('vue').StyleValue;
|
|
1297
|
+
disabled: boolean;
|
|
1298
|
+
focused: boolean;
|
|
1299
|
+
rounded: string | number | boolean;
|
|
1300
|
+
tile: boolean;
|
|
1301
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1302
|
+
centerAffix: boolean;
|
|
1303
|
+
glow: boolean;
|
|
1304
|
+
clearable: boolean;
|
|
1305
|
+
dirty: boolean;
|
|
1306
|
+
persistentClear: boolean;
|
|
1307
|
+
singleLine: boolean;
|
|
1308
|
+
}> & Omit<{
|
|
1309
|
+
flat: boolean;
|
|
1310
|
+
reverse: boolean;
|
|
1311
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1312
|
+
error: boolean;
|
|
1313
|
+
active: boolean;
|
|
1314
|
+
style: import('vue').StyleValue;
|
|
1315
|
+
disabled: boolean;
|
|
1316
|
+
focused: boolean;
|
|
1317
|
+
tile: boolean;
|
|
1318
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1319
|
+
glow: boolean;
|
|
1320
|
+
clearable: boolean;
|
|
1321
|
+
dirty: boolean;
|
|
1322
|
+
persistentClear: boolean;
|
|
1323
|
+
singleLine: boolean;
|
|
1324
|
+
id?: string | undefined;
|
|
1325
|
+
color?: string | undefined;
|
|
1326
|
+
loading?: string | boolean | undefined;
|
|
1327
|
+
label?: string | undefined;
|
|
1328
|
+
class?: any;
|
|
1329
|
+
theme?: string | undefined;
|
|
1330
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
1331
|
+
rounded?: string | number | boolean | undefined;
|
|
1332
|
+
baseColor?: string | undefined;
|
|
1333
|
+
bgColor?: string | undefined;
|
|
1334
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1335
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1336
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1337
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1338
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1339
|
+
centerAffix?: boolean | undefined;
|
|
1340
|
+
iconColor?: string | boolean | undefined;
|
|
1341
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1342
|
+
$attrs: {
|
|
1343
|
+
[x: string]: unknown;
|
|
1344
|
+
};
|
|
1345
|
+
$refs: {
|
|
1346
|
+
[x: string]: unknown;
|
|
1347
|
+
};
|
|
1348
|
+
$slots: Readonly<{
|
|
1349
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1350
|
+
props: Record<string, any>;
|
|
1351
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1352
|
+
[key: string]: any;
|
|
1353
|
+
}>[]) | undefined;
|
|
1354
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1355
|
+
[key: string]: any;
|
|
1356
|
+
}>[]) | undefined;
|
|
1357
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1358
|
+
[key: string]: any;
|
|
1359
|
+
}>[]) | undefined;
|
|
1360
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1361
|
+
label: string | undefined;
|
|
1362
|
+
props: Record<string, any>;
|
|
1363
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1364
|
+
[key: string]: any;
|
|
1365
|
+
}>[]) | undefined;
|
|
1366
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1367
|
+
[key: string]: any;
|
|
1368
|
+
}>[]) | undefined;
|
|
1369
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1370
|
+
[key: string]: any;
|
|
1371
|
+
}>[]) | undefined;
|
|
1372
|
+
}>;
|
|
1373
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
1374
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
1375
|
+
$host: Element | null;
|
|
1376
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
1377
|
+
$el: any;
|
|
1378
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
1379
|
+
flat: boolean;
|
|
1380
|
+
reverse: boolean;
|
|
1381
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1382
|
+
error: boolean;
|
|
1383
|
+
active: boolean;
|
|
1384
|
+
style: import('vue').StyleValue;
|
|
1385
|
+
disabled: boolean;
|
|
1386
|
+
focused: boolean;
|
|
1387
|
+
tile: boolean;
|
|
1388
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1389
|
+
glow: boolean;
|
|
1390
|
+
clearable: boolean;
|
|
1391
|
+
dirty: boolean;
|
|
1392
|
+
persistentClear: boolean;
|
|
1393
|
+
singleLine: boolean;
|
|
1394
|
+
} & {
|
|
1395
|
+
id?: string | undefined;
|
|
1396
|
+
color?: string | undefined;
|
|
1397
|
+
loading?: string | boolean | undefined;
|
|
1398
|
+
label?: string | undefined;
|
|
1399
|
+
class?: any;
|
|
1400
|
+
theme?: string | undefined;
|
|
1401
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
1402
|
+
rounded?: string | number | boolean | undefined;
|
|
1403
|
+
baseColor?: string | undefined;
|
|
1404
|
+
bgColor?: string | undefined;
|
|
1405
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1406
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1407
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1408
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1409
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1410
|
+
centerAffix?: boolean | undefined;
|
|
1411
|
+
iconColor?: string | boolean | undefined;
|
|
1412
|
+
} & {
|
|
1413
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1414
|
+
}, {
|
|
1415
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1416
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
1417
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
1418
|
+
'update:focused': (focused: boolean) => true;
|
|
1419
|
+
'update:modelValue': (value: any) => true;
|
|
1420
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
1421
|
+
flat: boolean;
|
|
1422
|
+
reverse: boolean;
|
|
1423
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1424
|
+
error: boolean;
|
|
1425
|
+
active: boolean;
|
|
1426
|
+
style: import('vue').StyleValue;
|
|
1427
|
+
disabled: boolean;
|
|
1428
|
+
focused: boolean;
|
|
1429
|
+
rounded: string | number | boolean;
|
|
1430
|
+
tile: boolean;
|
|
1431
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1432
|
+
centerAffix: boolean;
|
|
1433
|
+
glow: boolean;
|
|
1434
|
+
clearable: boolean;
|
|
1435
|
+
dirty: boolean;
|
|
1436
|
+
persistentClear: boolean;
|
|
1437
|
+
singleLine: boolean;
|
|
1438
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
1439
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1440
|
+
props: Record<string, any>;
|
|
1441
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1442
|
+
[key: string]: any;
|
|
1443
|
+
}>[];
|
|
1444
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1445
|
+
[key: string]: any;
|
|
1446
|
+
}>[];
|
|
1447
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1448
|
+
[key: string]: any;
|
|
1449
|
+
}>[];
|
|
1450
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
1451
|
+
label: string | undefined;
|
|
1452
|
+
props: Record<string, any>;
|
|
1453
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1454
|
+
[key: string]: any;
|
|
1455
|
+
}>[];
|
|
1456
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1457
|
+
[key: string]: any;
|
|
1458
|
+
}>[];
|
|
1459
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1460
|
+
[key: string]: any;
|
|
1461
|
+
}>[];
|
|
1462
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1463
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
1464
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
1465
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
1466
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
1467
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
1468
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
1469
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
1470
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
1471
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
1472
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
1473
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
1474
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
1475
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1476
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1477
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
1478
|
+
};
|
|
1479
|
+
$forceUpdate: () => void;
|
|
1480
|
+
$nextTick: typeof nextTick;
|
|
1481
|
+
$watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
1482
|
+
} & Readonly<{
|
|
1483
|
+
flat: boolean;
|
|
1484
|
+
reverse: boolean;
|
|
1485
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1486
|
+
error: boolean;
|
|
1487
|
+
active: boolean;
|
|
1488
|
+
style: import('vue').StyleValue;
|
|
1489
|
+
disabled: boolean;
|
|
1490
|
+
focused: boolean;
|
|
1491
|
+
rounded: string | number | boolean;
|
|
1492
|
+
tile: boolean;
|
|
1493
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1494
|
+
centerAffix: boolean;
|
|
1495
|
+
glow: boolean;
|
|
1496
|
+
clearable: boolean;
|
|
1497
|
+
dirty: boolean;
|
|
1498
|
+
persistentClear: boolean;
|
|
1499
|
+
singleLine: boolean;
|
|
1500
|
+
}> & Omit<{
|
|
1501
|
+
flat: boolean;
|
|
1502
|
+
reverse: boolean;
|
|
1503
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1504
|
+
error: boolean;
|
|
1505
|
+
active: boolean;
|
|
1506
|
+
style: import('vue').StyleValue;
|
|
1507
|
+
disabled: boolean;
|
|
1508
|
+
focused: boolean;
|
|
1509
|
+
tile: boolean;
|
|
1510
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1511
|
+
glow: boolean;
|
|
1512
|
+
clearable: boolean;
|
|
1513
|
+
dirty: boolean;
|
|
1514
|
+
persistentClear: boolean;
|
|
1515
|
+
singleLine: boolean;
|
|
1516
|
+
} & {
|
|
1517
|
+
id?: string | undefined;
|
|
1518
|
+
color?: string | undefined;
|
|
1519
|
+
loading?: string | boolean | undefined;
|
|
1520
|
+
label?: string | undefined;
|
|
1521
|
+
class?: any;
|
|
1522
|
+
theme?: string | undefined;
|
|
1523
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
1524
|
+
rounded?: string | number | boolean | undefined;
|
|
1525
|
+
baseColor?: string | undefined;
|
|
1526
|
+
bgColor?: string | undefined;
|
|
1527
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1528
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
1529
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1530
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1531
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
1532
|
+
centerAffix?: boolean | undefined;
|
|
1533
|
+
iconColor?: string | boolean | undefined;
|
|
1534
|
+
} & {
|
|
1535
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1536
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
1537
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1538
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
1539
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
1540
|
+
modelValue?: unknown;
|
|
1541
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
1542
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
1543
|
+
_allExposed: {} | {
|
|
1544
|
+
reset: () => Promise<void>;
|
|
1545
|
+
resetValidation: () => Promise<void>;
|
|
1546
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
1547
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
1548
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
1549
|
+
} | {
|
|
1550
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1551
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
1552
|
+
};
|
|
1553
|
+
}, {}, {}, {}, {
|
|
1554
|
+
flat: boolean;
|
|
1555
|
+
reverse: boolean;
|
|
1556
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1557
|
+
type: string;
|
|
1558
|
+
error: boolean;
|
|
1559
|
+
active: boolean;
|
|
1560
|
+
direction: "horizontal" | "vertical";
|
|
1561
|
+
style: import('vue').StyleValue;
|
|
1562
|
+
autofocus: boolean;
|
|
1563
|
+
disabled: boolean;
|
|
1564
|
+
readonly: boolean | null;
|
|
1565
|
+
messages: string | readonly string[];
|
|
1566
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
1567
|
+
focused: boolean;
|
|
1568
|
+
errorMessages: string | readonly string[] | null;
|
|
1569
|
+
maxErrors: string | number;
|
|
1570
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
1571
|
+
rounded: string | number | boolean;
|
|
1572
|
+
tile: boolean;
|
|
1573
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
1574
|
+
centerAffix: boolean;
|
|
1575
|
+
glow: boolean;
|
|
1576
|
+
hideSpinButtons: boolean;
|
|
1577
|
+
persistentHint: boolean;
|
|
1578
|
+
clearable: boolean;
|
|
1579
|
+
dirty: boolean;
|
|
1580
|
+
persistentClear: boolean;
|
|
1581
|
+
singleLine: boolean;
|
|
1582
|
+
persistentPlaceholder: boolean;
|
|
1583
|
+
persistentCounter: boolean;
|
|
1584
|
+
}> | null;
|
|
198
1585
|
};
|
|
199
1586
|
$slots: Readonly<{
|
|
200
1587
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -222,7 +1609,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
222
1609
|
errorMessages?: string[] | null | undefined;
|
|
223
1610
|
warningMessages?: string[] | null | undefined;
|
|
224
1611
|
successMessages?: string[] | null | undefined;
|
|
225
|
-
|
|
1612
|
+
readonly?: boolean | undefined;
|
|
226
1613
|
isActive?: boolean | undefined;
|
|
227
1614
|
baseColor?: string | undefined;
|
|
228
1615
|
bgColor?: string | undefined;
|
|
@@ -269,6 +1656,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
269
1656
|
showSuccessMessages?: boolean | undefined;
|
|
270
1657
|
isValidateOnBlur?: boolean | undefined;
|
|
271
1658
|
disableErrorHandling?: boolean | undefined;
|
|
1659
|
+
disableClickButton?: boolean | undefined;
|
|
1660
|
+
autocomplete?: string | undefined;
|
|
272
1661
|
}> & Readonly<{
|
|
273
1662
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
274
1663
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
@@ -309,7 +1698,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
309
1698
|
errorMessages: string[] | null;
|
|
310
1699
|
warningMessages: string[] | null;
|
|
311
1700
|
successMessages: string[] | null;
|
|
312
|
-
|
|
1701
|
+
readonly: boolean;
|
|
313
1702
|
isActive: boolean;
|
|
314
1703
|
baseColor: string;
|
|
315
1704
|
bgColor: string;
|
|
@@ -356,6 +1745,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
356
1745
|
showSuccessMessages: boolean;
|
|
357
1746
|
isValidateOnBlur: boolean;
|
|
358
1747
|
disableErrorHandling: boolean;
|
|
1748
|
+
disableClickButton: boolean;
|
|
1749
|
+
autocomplete: string;
|
|
359
1750
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
360
1751
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
361
1752
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -375,7 +1766,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
375
1766
|
};
|
|
376
1767
|
$forceUpdate: () => void;
|
|
377
1768
|
$nextTick: typeof nextTick;
|
|
378
|
-
$watch<
|
|
1769
|
+
$watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
379
1770
|
} & Readonly<{
|
|
380
1771
|
modelValue: string | number | null;
|
|
381
1772
|
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
@@ -392,7 +1783,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
392
1783
|
errorMessages: string[] | null;
|
|
393
1784
|
warningMessages: string[] | null;
|
|
394
1785
|
successMessages: string[] | null;
|
|
395
|
-
|
|
1786
|
+
readonly: boolean;
|
|
396
1787
|
isActive: boolean;
|
|
397
1788
|
baseColor: string;
|
|
398
1789
|
bgColor: string;
|
|
@@ -439,6 +1830,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
439
1830
|
showSuccessMessages: boolean;
|
|
440
1831
|
isValidateOnBlur: boolean;
|
|
441
1832
|
disableErrorHandling: boolean;
|
|
1833
|
+
disableClickButton: boolean;
|
|
1834
|
+
autocomplete: string;
|
|
442
1835
|
}> & Omit<Readonly<{
|
|
443
1836
|
modelValue?: string | number | null | undefined;
|
|
444
1837
|
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
@@ -457,7 +1850,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
457
1850
|
errorMessages?: string[] | null | undefined;
|
|
458
1851
|
warningMessages?: string[] | null | undefined;
|
|
459
1852
|
successMessages?: string[] | null | undefined;
|
|
460
|
-
|
|
1853
|
+
readonly?: boolean | undefined;
|
|
461
1854
|
isActive?: boolean | undefined;
|
|
462
1855
|
baseColor?: string | undefined;
|
|
463
1856
|
bgColor?: string | undefined;
|
|
@@ -504,12 +1897,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
504
1897
|
showSuccessMessages?: boolean | undefined;
|
|
505
1898
|
isValidateOnBlur?: boolean | undefined;
|
|
506
1899
|
disableErrorHandling?: boolean | undefined;
|
|
1900
|
+
disableClickButton?: boolean | undefined;
|
|
1901
|
+
autocomplete?: string | undefined;
|
|
507
1902
|
}> & Readonly<{
|
|
508
1903
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
509
1904
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
510
1905
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
511
1906
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
512
|
-
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "
|
|
1907
|
+
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
|
|
513
1908
|
validation: {
|
|
514
1909
|
errors: import('vue').Ref<string[], string[]>;
|
|
515
1910
|
warnings: import('vue').Ref<string[], string[]>;
|
|
@@ -553,7 +1948,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
553
1948
|
readonly errorMessages?: string[] | null | undefined;
|
|
554
1949
|
readonly warningMessages?: string[] | null | undefined;
|
|
555
1950
|
readonly successMessages?: string[] | null | undefined;
|
|
556
|
-
readonly
|
|
1951
|
+
readonly readonly?: boolean | undefined;
|
|
557
1952
|
readonly isActive?: boolean | undefined;
|
|
558
1953
|
readonly baseColor?: string | undefined;
|
|
559
1954
|
readonly bgColor?: string | undefined;
|
|
@@ -600,6 +1995,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
600
1995
|
readonly showSuccessMessages?: boolean | undefined;
|
|
601
1996
|
readonly isValidateOnBlur?: boolean | undefined;
|
|
602
1997
|
readonly disableErrorHandling?: boolean | undefined;
|
|
1998
|
+
readonly disableClickButton?: boolean | undefined;
|
|
1999
|
+
readonly autocomplete?: string | undefined;
|
|
603
2000
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
604
2001
|
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
605
2002
|
readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -610,6 +2007,1391 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
610
2007
|
};
|
|
611
2008
|
$refs: {
|
|
612
2009
|
[x: string]: unknown;
|
|
2010
|
+
} & {
|
|
2011
|
+
syTextFieldRef: import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
2012
|
+
flat: boolean;
|
|
2013
|
+
reverse: boolean;
|
|
2014
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2015
|
+
type: string;
|
|
2016
|
+
error: boolean;
|
|
2017
|
+
active: boolean;
|
|
2018
|
+
direction: "horizontal" | "vertical";
|
|
2019
|
+
style: import('vue').StyleValue;
|
|
2020
|
+
autofocus: boolean;
|
|
2021
|
+
disabled: boolean;
|
|
2022
|
+
readonly: boolean | null;
|
|
2023
|
+
messages: string | readonly string[];
|
|
2024
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2025
|
+
focused: boolean;
|
|
2026
|
+
errorMessages: string | readonly string[] | null;
|
|
2027
|
+
maxErrors: string | number;
|
|
2028
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2029
|
+
tile: boolean;
|
|
2030
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2031
|
+
glow: boolean;
|
|
2032
|
+
hideSpinButtons: boolean;
|
|
2033
|
+
persistentHint: boolean;
|
|
2034
|
+
clearable: boolean;
|
|
2035
|
+
dirty: boolean;
|
|
2036
|
+
persistentClear: boolean;
|
|
2037
|
+
singleLine: boolean;
|
|
2038
|
+
persistentPlaceholder: boolean;
|
|
2039
|
+
persistentCounter: boolean;
|
|
2040
|
+
} & {
|
|
2041
|
+
name?: string | undefined;
|
|
2042
|
+
id?: string | undefined;
|
|
2043
|
+
width?: string | number | undefined;
|
|
2044
|
+
color?: string | undefined;
|
|
2045
|
+
maxWidth?: string | number | undefined;
|
|
2046
|
+
minWidth?: string | number | undefined;
|
|
2047
|
+
loading?: string | boolean | undefined;
|
|
2048
|
+
label?: string | undefined;
|
|
2049
|
+
prefix?: string | undefined;
|
|
2050
|
+
role?: string | undefined;
|
|
2051
|
+
class?: any;
|
|
2052
|
+
theme?: string | undefined;
|
|
2053
|
+
placeholder?: string | undefined;
|
|
2054
|
+
counter?: string | number | boolean | undefined;
|
|
2055
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2056
|
+
modelValue?: any;
|
|
2057
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2058
|
+
validationValue?: any;
|
|
2059
|
+
rounded?: string | number | boolean | undefined;
|
|
2060
|
+
baseColor?: string | undefined;
|
|
2061
|
+
bgColor?: string | undefined;
|
|
2062
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2063
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2064
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2065
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2066
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2067
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2068
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2069
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2070
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2071
|
+
centerAffix?: boolean | undefined;
|
|
2072
|
+
iconColor?: string | boolean | undefined;
|
|
2073
|
+
hint?: string | undefined;
|
|
2074
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2075
|
+
suffix?: string | undefined;
|
|
2076
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
2077
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
2078
|
+
} & {
|
|
2079
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2080
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2081
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2082
|
+
props: Record<string, any>;
|
|
2083
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2084
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2085
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2086
|
+
label: string | undefined;
|
|
2087
|
+
props: Record<string, any>;
|
|
2088
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2089
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2090
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2091
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2092
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2093
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2094
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2095
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2096
|
+
};
|
|
2097
|
+
'v-slots'?: {
|
|
2098
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2099
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2100
|
+
props: Record<string, any>;
|
|
2101
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2102
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2103
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2104
|
+
label: string | undefined;
|
|
2105
|
+
props: Record<string, any>;
|
|
2106
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2107
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2108
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2109
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2110
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2111
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2112
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2113
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2114
|
+
} | undefined;
|
|
2115
|
+
} & {
|
|
2116
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2117
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2118
|
+
props: Record<string, any>;
|
|
2119
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2120
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2121
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2122
|
+
label: string | undefined;
|
|
2123
|
+
props: Record<string, any>;
|
|
2124
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2125
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2126
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2127
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2128
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2129
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2130
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2131
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2132
|
+
} & {
|
|
2133
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2134
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
2135
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2136
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2137
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
2138
|
+
$: import('vue').ComponentInternalInstance;
|
|
2139
|
+
$data: {};
|
|
2140
|
+
$props: Partial<{
|
|
2141
|
+
error: boolean;
|
|
2142
|
+
direction: "horizontal" | "vertical";
|
|
2143
|
+
style: import('vue').StyleValue;
|
|
2144
|
+
disabled: boolean | null;
|
|
2145
|
+
readonly: boolean | null;
|
|
2146
|
+
messages: string | readonly string[];
|
|
2147
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2148
|
+
focused: boolean;
|
|
2149
|
+
errorMessages: string | readonly string[] | null;
|
|
2150
|
+
maxErrors: string | number;
|
|
2151
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2152
|
+
centerAffix: boolean;
|
|
2153
|
+
glow: boolean;
|
|
2154
|
+
hideSpinButtons: boolean;
|
|
2155
|
+
persistentHint: boolean;
|
|
2156
|
+
}> & Omit<{
|
|
2157
|
+
error: boolean;
|
|
2158
|
+
direction: "horizontal" | "vertical";
|
|
2159
|
+
style: import('vue').StyleValue;
|
|
2160
|
+
disabled: boolean | null;
|
|
2161
|
+
readonly: boolean | null;
|
|
2162
|
+
messages: string | readonly string[];
|
|
2163
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2164
|
+
focused: boolean;
|
|
2165
|
+
errorMessages: string | readonly string[] | null;
|
|
2166
|
+
maxErrors: string | number;
|
|
2167
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2168
|
+
centerAffix: boolean;
|
|
2169
|
+
glow: boolean;
|
|
2170
|
+
hideSpinButtons: boolean;
|
|
2171
|
+
persistentHint: boolean;
|
|
2172
|
+
name?: string | undefined;
|
|
2173
|
+
id?: string | undefined;
|
|
2174
|
+
width?: string | number | undefined;
|
|
2175
|
+
color?: string | undefined;
|
|
2176
|
+
maxWidth?: string | number | undefined;
|
|
2177
|
+
minWidth?: string | number | undefined;
|
|
2178
|
+
label?: string | undefined;
|
|
2179
|
+
class?: any;
|
|
2180
|
+
theme?: string | undefined;
|
|
2181
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2182
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2183
|
+
validationValue?: any;
|
|
2184
|
+
baseColor?: string | undefined;
|
|
2185
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2186
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2187
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2188
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2189
|
+
iconColor?: string | boolean | undefined;
|
|
2190
|
+
hint?: string | undefined;
|
|
2191
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2192
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
2193
|
+
$attrs: {
|
|
2194
|
+
[x: string]: unknown;
|
|
2195
|
+
};
|
|
2196
|
+
$refs: {
|
|
2197
|
+
[x: string]: unknown;
|
|
2198
|
+
};
|
|
2199
|
+
$slots: Readonly<{
|
|
2200
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2201
|
+
[key: string]: any;
|
|
2202
|
+
}>[]) | undefined;
|
|
2203
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2204
|
+
[key: string]: any;
|
|
2205
|
+
}>[]) | undefined;
|
|
2206
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2207
|
+
[key: string]: any;
|
|
2208
|
+
}>[]) | undefined;
|
|
2209
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2210
|
+
[key: string]: any;
|
|
2211
|
+
}>[]) | undefined;
|
|
2212
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2213
|
+
[key: string]: any;
|
|
2214
|
+
}>[]) | undefined;
|
|
2215
|
+
}>;
|
|
2216
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2217
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2218
|
+
$host: Element | null;
|
|
2219
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
2220
|
+
$el: any;
|
|
2221
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
2222
|
+
error: boolean;
|
|
2223
|
+
direction: "horizontal" | "vertical";
|
|
2224
|
+
style: import('vue').StyleValue;
|
|
2225
|
+
disabled: boolean | null;
|
|
2226
|
+
readonly: boolean | null;
|
|
2227
|
+
messages: string | readonly string[];
|
|
2228
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2229
|
+
focused: boolean;
|
|
2230
|
+
errorMessages: string | readonly string[] | null;
|
|
2231
|
+
maxErrors: string | number;
|
|
2232
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2233
|
+
centerAffix: boolean;
|
|
2234
|
+
glow: boolean;
|
|
2235
|
+
hideSpinButtons: boolean;
|
|
2236
|
+
persistentHint: boolean;
|
|
2237
|
+
} & {
|
|
2238
|
+
name?: string | undefined;
|
|
2239
|
+
id?: string | undefined;
|
|
2240
|
+
width?: string | number | undefined;
|
|
2241
|
+
color?: string | undefined;
|
|
2242
|
+
maxWidth?: string | number | undefined;
|
|
2243
|
+
minWidth?: string | number | undefined;
|
|
2244
|
+
label?: string | undefined;
|
|
2245
|
+
class?: any;
|
|
2246
|
+
theme?: string | undefined;
|
|
2247
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2248
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2249
|
+
validationValue?: any;
|
|
2250
|
+
baseColor?: string | undefined;
|
|
2251
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2252
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2253
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2254
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2255
|
+
iconColor?: string | boolean | undefined;
|
|
2256
|
+
hint?: string | undefined;
|
|
2257
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2258
|
+
}, {
|
|
2259
|
+
reset: () => Promise<void>;
|
|
2260
|
+
resetValidation: () => Promise<void>;
|
|
2261
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2262
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2263
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2264
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
2265
|
+
'update:modelValue': (value: any) => true;
|
|
2266
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
2267
|
+
error: boolean;
|
|
2268
|
+
direction: "horizontal" | "vertical";
|
|
2269
|
+
style: import('vue').StyleValue;
|
|
2270
|
+
disabled: boolean | null;
|
|
2271
|
+
readonly: boolean | null;
|
|
2272
|
+
messages: string | readonly string[];
|
|
2273
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2274
|
+
focused: boolean;
|
|
2275
|
+
errorMessages: string | readonly string[] | null;
|
|
2276
|
+
maxErrors: string | number;
|
|
2277
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2278
|
+
centerAffix: boolean;
|
|
2279
|
+
glow: boolean;
|
|
2280
|
+
hideSpinButtons: boolean;
|
|
2281
|
+
persistentHint: boolean;
|
|
2282
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
2283
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2284
|
+
[key: string]: any;
|
|
2285
|
+
}>[];
|
|
2286
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2287
|
+
[key: string]: any;
|
|
2288
|
+
}>[];
|
|
2289
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2290
|
+
[key: string]: any;
|
|
2291
|
+
}>[];
|
|
2292
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2293
|
+
[key: string]: any;
|
|
2294
|
+
}>[];
|
|
2295
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2296
|
+
[key: string]: any;
|
|
2297
|
+
}>[];
|
|
2298
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2299
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2300
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
2301
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
2302
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
2303
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
2304
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
2305
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
2306
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
2307
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
2308
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
2309
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
2310
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
2311
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2312
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2313
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
2314
|
+
};
|
|
2315
|
+
$forceUpdate: () => void;
|
|
2316
|
+
$nextTick: typeof nextTick;
|
|
2317
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
2318
|
+
} & Readonly<{
|
|
2319
|
+
error: boolean;
|
|
2320
|
+
direction: "horizontal" | "vertical";
|
|
2321
|
+
style: import('vue').StyleValue;
|
|
2322
|
+
disabled: boolean | null;
|
|
2323
|
+
readonly: boolean | null;
|
|
2324
|
+
messages: string | readonly string[];
|
|
2325
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2326
|
+
focused: boolean;
|
|
2327
|
+
errorMessages: string | readonly string[] | null;
|
|
2328
|
+
maxErrors: string | number;
|
|
2329
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2330
|
+
centerAffix: boolean;
|
|
2331
|
+
glow: boolean;
|
|
2332
|
+
hideSpinButtons: boolean;
|
|
2333
|
+
persistentHint: boolean;
|
|
2334
|
+
}> & Omit<{
|
|
2335
|
+
error: boolean;
|
|
2336
|
+
direction: "horizontal" | "vertical";
|
|
2337
|
+
style: import('vue').StyleValue;
|
|
2338
|
+
disabled: boolean | null;
|
|
2339
|
+
readonly: boolean | null;
|
|
2340
|
+
messages: string | readonly string[];
|
|
2341
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2342
|
+
focused: boolean;
|
|
2343
|
+
errorMessages: string | readonly string[] | null;
|
|
2344
|
+
maxErrors: string | number;
|
|
2345
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2346
|
+
centerAffix: boolean;
|
|
2347
|
+
glow: boolean;
|
|
2348
|
+
hideSpinButtons: boolean;
|
|
2349
|
+
persistentHint: boolean;
|
|
2350
|
+
} & {
|
|
2351
|
+
name?: string | undefined;
|
|
2352
|
+
id?: string | undefined;
|
|
2353
|
+
width?: string | number | undefined;
|
|
2354
|
+
color?: string | undefined;
|
|
2355
|
+
maxWidth?: string | number | undefined;
|
|
2356
|
+
minWidth?: string | number | undefined;
|
|
2357
|
+
label?: string | undefined;
|
|
2358
|
+
class?: any;
|
|
2359
|
+
theme?: string | undefined;
|
|
2360
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2361
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2362
|
+
validationValue?: any;
|
|
2363
|
+
baseColor?: string | undefined;
|
|
2364
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2365
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2366
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2367
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2368
|
+
iconColor?: string | boolean | undefined;
|
|
2369
|
+
hint?: string | undefined;
|
|
2370
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2371
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
2372
|
+
reset: () => Promise<void>;
|
|
2373
|
+
resetValidation: () => Promise<void>;
|
|
2374
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2375
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2376
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2377
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2378
|
+
modelValue?: unknown;
|
|
2379
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2380
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
2381
|
+
$: import('vue').ComponentInternalInstance;
|
|
2382
|
+
$data: {};
|
|
2383
|
+
$props: Partial<{
|
|
2384
|
+
flat: boolean;
|
|
2385
|
+
reverse: boolean;
|
|
2386
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2387
|
+
error: boolean;
|
|
2388
|
+
active: boolean;
|
|
2389
|
+
style: import('vue').StyleValue;
|
|
2390
|
+
disabled: boolean;
|
|
2391
|
+
focused: boolean;
|
|
2392
|
+
rounded: string | number | boolean;
|
|
2393
|
+
tile: boolean;
|
|
2394
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2395
|
+
centerAffix: boolean;
|
|
2396
|
+
glow: boolean;
|
|
2397
|
+
clearable: boolean;
|
|
2398
|
+
dirty: boolean;
|
|
2399
|
+
persistentClear: boolean;
|
|
2400
|
+
singleLine: boolean;
|
|
2401
|
+
}> & Omit<{
|
|
2402
|
+
flat: boolean;
|
|
2403
|
+
reverse: boolean;
|
|
2404
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2405
|
+
error: boolean;
|
|
2406
|
+
active: boolean;
|
|
2407
|
+
style: import('vue').StyleValue;
|
|
2408
|
+
disabled: boolean;
|
|
2409
|
+
focused: boolean;
|
|
2410
|
+
tile: boolean;
|
|
2411
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2412
|
+
glow: boolean;
|
|
2413
|
+
clearable: boolean;
|
|
2414
|
+
dirty: boolean;
|
|
2415
|
+
persistentClear: boolean;
|
|
2416
|
+
singleLine: boolean;
|
|
2417
|
+
id?: string | undefined;
|
|
2418
|
+
color?: string | undefined;
|
|
2419
|
+
loading?: string | boolean | undefined;
|
|
2420
|
+
label?: string | undefined;
|
|
2421
|
+
class?: any;
|
|
2422
|
+
theme?: string | undefined;
|
|
2423
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
2424
|
+
rounded?: string | number | boolean | undefined;
|
|
2425
|
+
baseColor?: string | undefined;
|
|
2426
|
+
bgColor?: string | undefined;
|
|
2427
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2428
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2429
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2430
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2431
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2432
|
+
centerAffix?: boolean | undefined;
|
|
2433
|
+
iconColor?: string | boolean | undefined;
|
|
2434
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
2435
|
+
$attrs: {
|
|
2436
|
+
[x: string]: unknown;
|
|
2437
|
+
};
|
|
2438
|
+
$refs: {
|
|
2439
|
+
[x: string]: unknown;
|
|
2440
|
+
};
|
|
2441
|
+
$slots: Readonly<{
|
|
2442
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2443
|
+
props: Record<string, any>;
|
|
2444
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2445
|
+
[key: string]: any;
|
|
2446
|
+
}>[]) | undefined;
|
|
2447
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2448
|
+
[key: string]: any;
|
|
2449
|
+
}>[]) | undefined;
|
|
2450
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2451
|
+
[key: string]: any;
|
|
2452
|
+
}>[]) | undefined;
|
|
2453
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2454
|
+
label: string | undefined;
|
|
2455
|
+
props: Record<string, any>;
|
|
2456
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2457
|
+
[key: string]: any;
|
|
2458
|
+
}>[]) | undefined;
|
|
2459
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2460
|
+
[key: string]: any;
|
|
2461
|
+
}>[]) | undefined;
|
|
2462
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2463
|
+
[key: string]: any;
|
|
2464
|
+
}>[]) | undefined;
|
|
2465
|
+
}>;
|
|
2466
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2467
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2468
|
+
$host: Element | null;
|
|
2469
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
2470
|
+
$el: any;
|
|
2471
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
2472
|
+
flat: boolean;
|
|
2473
|
+
reverse: boolean;
|
|
2474
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2475
|
+
error: boolean;
|
|
2476
|
+
active: boolean;
|
|
2477
|
+
style: import('vue').StyleValue;
|
|
2478
|
+
disabled: boolean;
|
|
2479
|
+
focused: boolean;
|
|
2480
|
+
tile: boolean;
|
|
2481
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2482
|
+
glow: boolean;
|
|
2483
|
+
clearable: boolean;
|
|
2484
|
+
dirty: boolean;
|
|
2485
|
+
persistentClear: boolean;
|
|
2486
|
+
singleLine: boolean;
|
|
2487
|
+
} & {
|
|
2488
|
+
id?: string | undefined;
|
|
2489
|
+
color?: string | undefined;
|
|
2490
|
+
loading?: string | boolean | undefined;
|
|
2491
|
+
label?: string | undefined;
|
|
2492
|
+
class?: any;
|
|
2493
|
+
theme?: string | undefined;
|
|
2494
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2495
|
+
rounded?: string | number | boolean | undefined;
|
|
2496
|
+
baseColor?: string | undefined;
|
|
2497
|
+
bgColor?: string | undefined;
|
|
2498
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2499
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2500
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2501
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2502
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2503
|
+
centerAffix?: boolean | undefined;
|
|
2504
|
+
iconColor?: string | boolean | undefined;
|
|
2505
|
+
} & {
|
|
2506
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2507
|
+
}, {
|
|
2508
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2509
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2510
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
2511
|
+
'update:focused': (focused: boolean) => true;
|
|
2512
|
+
'update:modelValue': (value: any) => true;
|
|
2513
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
2514
|
+
flat: boolean;
|
|
2515
|
+
reverse: boolean;
|
|
2516
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2517
|
+
error: boolean;
|
|
2518
|
+
active: boolean;
|
|
2519
|
+
style: import('vue').StyleValue;
|
|
2520
|
+
disabled: boolean;
|
|
2521
|
+
focused: boolean;
|
|
2522
|
+
rounded: string | number | boolean;
|
|
2523
|
+
tile: boolean;
|
|
2524
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2525
|
+
centerAffix: boolean;
|
|
2526
|
+
glow: boolean;
|
|
2527
|
+
clearable: boolean;
|
|
2528
|
+
dirty: boolean;
|
|
2529
|
+
persistentClear: boolean;
|
|
2530
|
+
singleLine: boolean;
|
|
2531
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
2532
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2533
|
+
props: Record<string, any>;
|
|
2534
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2535
|
+
[key: string]: any;
|
|
2536
|
+
}>[];
|
|
2537
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2538
|
+
[key: string]: any;
|
|
2539
|
+
}>[];
|
|
2540
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2541
|
+
[key: string]: any;
|
|
2542
|
+
}>[];
|
|
2543
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2544
|
+
label: string | undefined;
|
|
2545
|
+
props: Record<string, any>;
|
|
2546
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2547
|
+
[key: string]: any;
|
|
2548
|
+
}>[];
|
|
2549
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2550
|
+
[key: string]: any;
|
|
2551
|
+
}>[];
|
|
2552
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2553
|
+
[key: string]: any;
|
|
2554
|
+
}>[];
|
|
2555
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2556
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2557
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
2558
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
2559
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
2560
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
2561
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
2562
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
2563
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
2564
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
2565
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
2566
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
2567
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
2568
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2569
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2570
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
2571
|
+
};
|
|
2572
|
+
$forceUpdate: () => void;
|
|
2573
|
+
$nextTick: typeof nextTick;
|
|
2574
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
2575
|
+
} & Readonly<{
|
|
2576
|
+
flat: boolean;
|
|
2577
|
+
reverse: boolean;
|
|
2578
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2579
|
+
error: boolean;
|
|
2580
|
+
active: boolean;
|
|
2581
|
+
style: import('vue').StyleValue;
|
|
2582
|
+
disabled: boolean;
|
|
2583
|
+
focused: boolean;
|
|
2584
|
+
rounded: string | number | boolean;
|
|
2585
|
+
tile: boolean;
|
|
2586
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2587
|
+
centerAffix: boolean;
|
|
2588
|
+
glow: boolean;
|
|
2589
|
+
clearable: boolean;
|
|
2590
|
+
dirty: boolean;
|
|
2591
|
+
persistentClear: boolean;
|
|
2592
|
+
singleLine: boolean;
|
|
2593
|
+
}> & Omit<{
|
|
2594
|
+
flat: boolean;
|
|
2595
|
+
reverse: boolean;
|
|
2596
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2597
|
+
error: boolean;
|
|
2598
|
+
active: boolean;
|
|
2599
|
+
style: import('vue').StyleValue;
|
|
2600
|
+
disabled: boolean;
|
|
2601
|
+
focused: boolean;
|
|
2602
|
+
tile: boolean;
|
|
2603
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2604
|
+
glow: boolean;
|
|
2605
|
+
clearable: boolean;
|
|
2606
|
+
dirty: boolean;
|
|
2607
|
+
persistentClear: boolean;
|
|
2608
|
+
singleLine: boolean;
|
|
2609
|
+
} & {
|
|
2610
|
+
id?: string | undefined;
|
|
2611
|
+
color?: string | undefined;
|
|
2612
|
+
loading?: string | boolean | undefined;
|
|
2613
|
+
label?: string | undefined;
|
|
2614
|
+
class?: any;
|
|
2615
|
+
theme?: string | undefined;
|
|
2616
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2617
|
+
rounded?: string | number | boolean | undefined;
|
|
2618
|
+
baseColor?: string | undefined;
|
|
2619
|
+
bgColor?: string | undefined;
|
|
2620
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2621
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2622
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2623
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2624
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2625
|
+
centerAffix?: boolean | undefined;
|
|
2626
|
+
iconColor?: string | boolean | undefined;
|
|
2627
|
+
} & {
|
|
2628
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2629
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
2630
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2631
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2632
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2633
|
+
modelValue?: unknown;
|
|
2634
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2635
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
2636
|
+
_allExposed: {} | {
|
|
2637
|
+
reset: () => Promise<void>;
|
|
2638
|
+
resetValidation: () => Promise<void>;
|
|
2639
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2640
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2641
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2642
|
+
} | {
|
|
2643
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2644
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2645
|
+
};
|
|
2646
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2647
|
+
'click:control': (e: MouseEvent) => true;
|
|
2648
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
2649
|
+
'update:focused': (focused: boolean) => true;
|
|
2650
|
+
'update:modelValue': (val: string) => true;
|
|
2651
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
2652
|
+
flat: boolean;
|
|
2653
|
+
reverse: boolean;
|
|
2654
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2655
|
+
type: string;
|
|
2656
|
+
error: boolean;
|
|
2657
|
+
active: boolean;
|
|
2658
|
+
direction: "horizontal" | "vertical";
|
|
2659
|
+
style: import('vue').StyleValue;
|
|
2660
|
+
autofocus: boolean;
|
|
2661
|
+
disabled: boolean;
|
|
2662
|
+
readonly: boolean | null;
|
|
2663
|
+
messages: string | readonly string[];
|
|
2664
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2665
|
+
focused: boolean;
|
|
2666
|
+
errorMessages: string | readonly string[] | null;
|
|
2667
|
+
maxErrors: string | number;
|
|
2668
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2669
|
+
rounded: string | number | boolean;
|
|
2670
|
+
tile: boolean;
|
|
2671
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2672
|
+
centerAffix: boolean;
|
|
2673
|
+
glow: boolean;
|
|
2674
|
+
hideSpinButtons: boolean;
|
|
2675
|
+
persistentHint: boolean;
|
|
2676
|
+
clearable: boolean;
|
|
2677
|
+
dirty: boolean;
|
|
2678
|
+
persistentClear: boolean;
|
|
2679
|
+
singleLine: boolean;
|
|
2680
|
+
persistentPlaceholder: boolean;
|
|
2681
|
+
persistentCounter: boolean;
|
|
2682
|
+
}, true, {}, import('vue').SlotsType<Partial<{
|
|
2683
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2684
|
+
[key: string]: any;
|
|
2685
|
+
}>[];
|
|
2686
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2687
|
+
props: Record<string, any>;
|
|
2688
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2689
|
+
[key: string]: any;
|
|
2690
|
+
}>[];
|
|
2691
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2692
|
+
[key: string]: any;
|
|
2693
|
+
}>[];
|
|
2694
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2695
|
+
label: string | undefined;
|
|
2696
|
+
props: Record<string, any>;
|
|
2697
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2698
|
+
[key: string]: any;
|
|
2699
|
+
}>[];
|
|
2700
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2701
|
+
[key: string]: any;
|
|
2702
|
+
}>[];
|
|
2703
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2704
|
+
[key: string]: any;
|
|
2705
|
+
}>[];
|
|
2706
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2707
|
+
[key: string]: any;
|
|
2708
|
+
}>[];
|
|
2709
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2710
|
+
[key: string]: any;
|
|
2711
|
+
}>[];
|
|
2712
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2713
|
+
[key: string]: any;
|
|
2714
|
+
}>[];
|
|
2715
|
+
default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2716
|
+
[key: string]: any;
|
|
2717
|
+
}>[];
|
|
2718
|
+
counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2719
|
+
[key: string]: any;
|
|
2720
|
+
}>[];
|
|
2721
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2722
|
+
P: {};
|
|
2723
|
+
B: {};
|
|
2724
|
+
D: {};
|
|
2725
|
+
C: {};
|
|
2726
|
+
M: {};
|
|
2727
|
+
Defaults: {};
|
|
2728
|
+
}, {
|
|
2729
|
+
flat: boolean;
|
|
2730
|
+
reverse: boolean;
|
|
2731
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2732
|
+
type: string;
|
|
2733
|
+
error: boolean;
|
|
2734
|
+
active: boolean;
|
|
2735
|
+
direction: "horizontal" | "vertical";
|
|
2736
|
+
style: import('vue').StyleValue;
|
|
2737
|
+
autofocus: boolean;
|
|
2738
|
+
disabled: boolean;
|
|
2739
|
+
readonly: boolean | null;
|
|
2740
|
+
messages: string | readonly string[];
|
|
2741
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2742
|
+
focused: boolean;
|
|
2743
|
+
errorMessages: string | readonly string[] | null;
|
|
2744
|
+
maxErrors: string | number;
|
|
2745
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2746
|
+
tile: boolean;
|
|
2747
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2748
|
+
glow: boolean;
|
|
2749
|
+
hideSpinButtons: boolean;
|
|
2750
|
+
persistentHint: boolean;
|
|
2751
|
+
clearable: boolean;
|
|
2752
|
+
dirty: boolean;
|
|
2753
|
+
persistentClear: boolean;
|
|
2754
|
+
singleLine: boolean;
|
|
2755
|
+
persistentPlaceholder: boolean;
|
|
2756
|
+
persistentCounter: boolean;
|
|
2757
|
+
} & {
|
|
2758
|
+
name?: string | undefined;
|
|
2759
|
+
id?: string | undefined;
|
|
2760
|
+
width?: string | number | undefined;
|
|
2761
|
+
color?: string | undefined;
|
|
2762
|
+
maxWidth?: string | number | undefined;
|
|
2763
|
+
minWidth?: string | number | undefined;
|
|
2764
|
+
loading?: string | boolean | undefined;
|
|
2765
|
+
label?: string | undefined;
|
|
2766
|
+
prefix?: string | undefined;
|
|
2767
|
+
role?: string | undefined;
|
|
2768
|
+
class?: any;
|
|
2769
|
+
theme?: string | undefined;
|
|
2770
|
+
placeholder?: string | undefined;
|
|
2771
|
+
counter?: string | number | boolean | undefined;
|
|
2772
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2773
|
+
modelValue?: any;
|
|
2774
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2775
|
+
validationValue?: any;
|
|
2776
|
+
rounded?: string | number | boolean | undefined;
|
|
2777
|
+
baseColor?: string | undefined;
|
|
2778
|
+
bgColor?: string | undefined;
|
|
2779
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2780
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2781
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2782
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2783
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2784
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2785
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2786
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2787
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2788
|
+
centerAffix?: boolean | undefined;
|
|
2789
|
+
iconColor?: string | boolean | undefined;
|
|
2790
|
+
hint?: string | undefined;
|
|
2791
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2792
|
+
suffix?: string | undefined;
|
|
2793
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
2794
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
2795
|
+
} & {
|
|
2796
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2797
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2798
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2799
|
+
props: Record<string, any>;
|
|
2800
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2801
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2802
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2803
|
+
label: string | undefined;
|
|
2804
|
+
props: Record<string, any>;
|
|
2805
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2806
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2807
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2808
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2809
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2810
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2811
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2812
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2813
|
+
};
|
|
2814
|
+
'v-slots'?: {
|
|
2815
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2816
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2817
|
+
props: Record<string, any>;
|
|
2818
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2819
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2820
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2821
|
+
label: string | undefined;
|
|
2822
|
+
props: Record<string, any>;
|
|
2823
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2824
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2825
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2826
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2827
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2828
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2829
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2830
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2831
|
+
} | undefined;
|
|
2832
|
+
} & {
|
|
2833
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2834
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2835
|
+
props: Record<string, any>;
|
|
2836
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2837
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2838
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2839
|
+
label: string | undefined;
|
|
2840
|
+
props: Record<string, any>;
|
|
2841
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2842
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2843
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2844
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2845
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2846
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2847
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2848
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2849
|
+
} & {
|
|
2850
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2851
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
2852
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2853
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2854
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
2855
|
+
$: import('vue').ComponentInternalInstance;
|
|
2856
|
+
$data: {};
|
|
2857
|
+
$props: Partial<{
|
|
2858
|
+
error: boolean;
|
|
2859
|
+
direction: "horizontal" | "vertical";
|
|
2860
|
+
style: import('vue').StyleValue;
|
|
2861
|
+
disabled: boolean | null;
|
|
2862
|
+
readonly: boolean | null;
|
|
2863
|
+
messages: string | readonly string[];
|
|
2864
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2865
|
+
focused: boolean;
|
|
2866
|
+
errorMessages: string | readonly string[] | null;
|
|
2867
|
+
maxErrors: string | number;
|
|
2868
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2869
|
+
centerAffix: boolean;
|
|
2870
|
+
glow: boolean;
|
|
2871
|
+
hideSpinButtons: boolean;
|
|
2872
|
+
persistentHint: boolean;
|
|
2873
|
+
}> & Omit<{
|
|
2874
|
+
error: boolean;
|
|
2875
|
+
direction: "horizontal" | "vertical";
|
|
2876
|
+
style: import('vue').StyleValue;
|
|
2877
|
+
disabled: boolean | null;
|
|
2878
|
+
readonly: boolean | null;
|
|
2879
|
+
messages: string | readonly string[];
|
|
2880
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2881
|
+
focused: boolean;
|
|
2882
|
+
errorMessages: string | readonly string[] | null;
|
|
2883
|
+
maxErrors: string | number;
|
|
2884
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2885
|
+
centerAffix: boolean;
|
|
2886
|
+
glow: boolean;
|
|
2887
|
+
hideSpinButtons: boolean;
|
|
2888
|
+
persistentHint: boolean;
|
|
2889
|
+
name?: string | undefined;
|
|
2890
|
+
id?: string | undefined;
|
|
2891
|
+
width?: string | number | undefined;
|
|
2892
|
+
color?: string | undefined;
|
|
2893
|
+
maxWidth?: string | number | undefined;
|
|
2894
|
+
minWidth?: string | number | undefined;
|
|
2895
|
+
label?: string | undefined;
|
|
2896
|
+
class?: any;
|
|
2897
|
+
theme?: string | undefined;
|
|
2898
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2899
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2900
|
+
validationValue?: any;
|
|
2901
|
+
baseColor?: string | undefined;
|
|
2902
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2903
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2904
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2905
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2906
|
+
iconColor?: string | boolean | undefined;
|
|
2907
|
+
hint?: string | undefined;
|
|
2908
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2909
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
2910
|
+
$attrs: {
|
|
2911
|
+
[x: string]: unknown;
|
|
2912
|
+
};
|
|
2913
|
+
$refs: {
|
|
2914
|
+
[x: string]: unknown;
|
|
2915
|
+
};
|
|
2916
|
+
$slots: Readonly<{
|
|
2917
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2918
|
+
[key: string]: any;
|
|
2919
|
+
}>[]) | undefined;
|
|
2920
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2921
|
+
[key: string]: any;
|
|
2922
|
+
}>[]) | undefined;
|
|
2923
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2924
|
+
[key: string]: any;
|
|
2925
|
+
}>[]) | undefined;
|
|
2926
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2927
|
+
[key: string]: any;
|
|
2928
|
+
}>[]) | undefined;
|
|
2929
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2930
|
+
[key: string]: any;
|
|
2931
|
+
}>[]) | undefined;
|
|
2932
|
+
}>;
|
|
2933
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2934
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2935
|
+
$host: Element | null;
|
|
2936
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
2937
|
+
$el: any;
|
|
2938
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
2939
|
+
error: boolean;
|
|
2940
|
+
direction: "horizontal" | "vertical";
|
|
2941
|
+
style: import('vue').StyleValue;
|
|
2942
|
+
disabled: boolean | null;
|
|
2943
|
+
readonly: boolean | null;
|
|
2944
|
+
messages: string | readonly string[];
|
|
2945
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2946
|
+
focused: boolean;
|
|
2947
|
+
errorMessages: string | readonly string[] | null;
|
|
2948
|
+
maxErrors: string | number;
|
|
2949
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2950
|
+
centerAffix: boolean;
|
|
2951
|
+
glow: boolean;
|
|
2952
|
+
hideSpinButtons: boolean;
|
|
2953
|
+
persistentHint: boolean;
|
|
2954
|
+
} & {
|
|
2955
|
+
name?: string | undefined;
|
|
2956
|
+
id?: string | undefined;
|
|
2957
|
+
width?: string | number | undefined;
|
|
2958
|
+
color?: string | undefined;
|
|
2959
|
+
maxWidth?: string | number | undefined;
|
|
2960
|
+
minWidth?: string | number | undefined;
|
|
2961
|
+
label?: string | undefined;
|
|
2962
|
+
class?: any;
|
|
2963
|
+
theme?: string | undefined;
|
|
2964
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2965
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2966
|
+
validationValue?: any;
|
|
2967
|
+
baseColor?: string | undefined;
|
|
2968
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2969
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2970
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2971
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2972
|
+
iconColor?: string | boolean | undefined;
|
|
2973
|
+
hint?: string | undefined;
|
|
2974
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2975
|
+
}, {
|
|
2976
|
+
reset: () => Promise<void>;
|
|
2977
|
+
resetValidation: () => Promise<void>;
|
|
2978
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2979
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2980
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2981
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
2982
|
+
'update:modelValue': (value: any) => true;
|
|
2983
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
2984
|
+
error: boolean;
|
|
2985
|
+
direction: "horizontal" | "vertical";
|
|
2986
|
+
style: import('vue').StyleValue;
|
|
2987
|
+
disabled: boolean | null;
|
|
2988
|
+
readonly: boolean | null;
|
|
2989
|
+
messages: string | readonly string[];
|
|
2990
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
2991
|
+
focused: boolean;
|
|
2992
|
+
errorMessages: string | readonly string[] | null;
|
|
2993
|
+
maxErrors: string | number;
|
|
2994
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2995
|
+
centerAffix: boolean;
|
|
2996
|
+
glow: boolean;
|
|
2997
|
+
hideSpinButtons: boolean;
|
|
2998
|
+
persistentHint: boolean;
|
|
2999
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
3000
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3001
|
+
[key: string]: any;
|
|
3002
|
+
}>[];
|
|
3003
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3004
|
+
[key: string]: any;
|
|
3005
|
+
}>[];
|
|
3006
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3007
|
+
[key: string]: any;
|
|
3008
|
+
}>[];
|
|
3009
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3010
|
+
[key: string]: any;
|
|
3011
|
+
}>[];
|
|
3012
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3013
|
+
[key: string]: any;
|
|
3014
|
+
}>[];
|
|
3015
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3016
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3017
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
3018
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3019
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3020
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3021
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
3022
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
3023
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3024
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3025
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3026
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3027
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3028
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3029
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3030
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3031
|
+
};
|
|
3032
|
+
$forceUpdate: () => void;
|
|
3033
|
+
$nextTick: typeof nextTick;
|
|
3034
|
+
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3035
|
+
} & Readonly<{
|
|
3036
|
+
error: boolean;
|
|
3037
|
+
direction: "horizontal" | "vertical";
|
|
3038
|
+
style: import('vue').StyleValue;
|
|
3039
|
+
disabled: boolean | null;
|
|
3040
|
+
readonly: boolean | null;
|
|
3041
|
+
messages: string | readonly string[];
|
|
3042
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
3043
|
+
focused: boolean;
|
|
3044
|
+
errorMessages: string | readonly string[] | null;
|
|
3045
|
+
maxErrors: string | number;
|
|
3046
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3047
|
+
centerAffix: boolean;
|
|
3048
|
+
glow: boolean;
|
|
3049
|
+
hideSpinButtons: boolean;
|
|
3050
|
+
persistentHint: boolean;
|
|
3051
|
+
}> & Omit<{
|
|
3052
|
+
error: boolean;
|
|
3053
|
+
direction: "horizontal" | "vertical";
|
|
3054
|
+
style: import('vue').StyleValue;
|
|
3055
|
+
disabled: boolean | null;
|
|
3056
|
+
readonly: boolean | null;
|
|
3057
|
+
messages: string | readonly string[];
|
|
3058
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
3059
|
+
focused: boolean;
|
|
3060
|
+
errorMessages: string | readonly string[] | null;
|
|
3061
|
+
maxErrors: string | number;
|
|
3062
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3063
|
+
centerAffix: boolean;
|
|
3064
|
+
glow: boolean;
|
|
3065
|
+
hideSpinButtons: boolean;
|
|
3066
|
+
persistentHint: boolean;
|
|
3067
|
+
} & {
|
|
3068
|
+
name?: string | undefined;
|
|
3069
|
+
id?: string | undefined;
|
|
3070
|
+
width?: string | number | undefined;
|
|
3071
|
+
color?: string | undefined;
|
|
3072
|
+
maxWidth?: string | number | undefined;
|
|
3073
|
+
minWidth?: string | number | undefined;
|
|
3074
|
+
label?: string | undefined;
|
|
3075
|
+
class?: any;
|
|
3076
|
+
theme?: string | undefined;
|
|
3077
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3078
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3079
|
+
validationValue?: any;
|
|
3080
|
+
baseColor?: string | undefined;
|
|
3081
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3082
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3083
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3084
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3085
|
+
iconColor?: string | boolean | undefined;
|
|
3086
|
+
hint?: string | undefined;
|
|
3087
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
3088
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
3089
|
+
reset: () => Promise<void>;
|
|
3090
|
+
resetValidation: () => Promise<void>;
|
|
3091
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3092
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3093
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3094
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3095
|
+
modelValue?: unknown;
|
|
3096
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
3097
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
3098
|
+
$: import('vue').ComponentInternalInstance;
|
|
3099
|
+
$data: {};
|
|
3100
|
+
$props: Partial<{
|
|
3101
|
+
flat: boolean;
|
|
3102
|
+
reverse: boolean;
|
|
3103
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3104
|
+
error: boolean;
|
|
3105
|
+
active: boolean;
|
|
3106
|
+
style: import('vue').StyleValue;
|
|
3107
|
+
disabled: boolean;
|
|
3108
|
+
focused: boolean;
|
|
3109
|
+
rounded: string | number | boolean;
|
|
3110
|
+
tile: boolean;
|
|
3111
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3112
|
+
centerAffix: boolean;
|
|
3113
|
+
glow: boolean;
|
|
3114
|
+
clearable: boolean;
|
|
3115
|
+
dirty: boolean;
|
|
3116
|
+
persistentClear: boolean;
|
|
3117
|
+
singleLine: boolean;
|
|
3118
|
+
}> & Omit<{
|
|
3119
|
+
flat: boolean;
|
|
3120
|
+
reverse: boolean;
|
|
3121
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3122
|
+
error: boolean;
|
|
3123
|
+
active: boolean;
|
|
3124
|
+
style: import('vue').StyleValue;
|
|
3125
|
+
disabled: boolean;
|
|
3126
|
+
focused: boolean;
|
|
3127
|
+
tile: boolean;
|
|
3128
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3129
|
+
glow: boolean;
|
|
3130
|
+
clearable: boolean;
|
|
3131
|
+
dirty: boolean;
|
|
3132
|
+
persistentClear: boolean;
|
|
3133
|
+
singleLine: boolean;
|
|
3134
|
+
id?: string | undefined;
|
|
3135
|
+
color?: string | undefined;
|
|
3136
|
+
loading?: string | boolean | undefined;
|
|
3137
|
+
label?: string | undefined;
|
|
3138
|
+
class?: any;
|
|
3139
|
+
theme?: string | undefined;
|
|
3140
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
3141
|
+
rounded?: string | number | boolean | undefined;
|
|
3142
|
+
baseColor?: string | undefined;
|
|
3143
|
+
bgColor?: string | undefined;
|
|
3144
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3145
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3146
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3147
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3148
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3149
|
+
centerAffix?: boolean | undefined;
|
|
3150
|
+
iconColor?: string | boolean | undefined;
|
|
3151
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
3152
|
+
$attrs: {
|
|
3153
|
+
[x: string]: unknown;
|
|
3154
|
+
};
|
|
3155
|
+
$refs: {
|
|
3156
|
+
[x: string]: unknown;
|
|
3157
|
+
};
|
|
3158
|
+
$slots: Readonly<{
|
|
3159
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3160
|
+
props: Record<string, any>;
|
|
3161
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3162
|
+
[key: string]: any;
|
|
3163
|
+
}>[]) | undefined;
|
|
3164
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3165
|
+
[key: string]: any;
|
|
3166
|
+
}>[]) | undefined;
|
|
3167
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3168
|
+
[key: string]: any;
|
|
3169
|
+
}>[]) | undefined;
|
|
3170
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3171
|
+
label: string | undefined;
|
|
3172
|
+
props: Record<string, any>;
|
|
3173
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3174
|
+
[key: string]: any;
|
|
3175
|
+
}>[]) | undefined;
|
|
3176
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3177
|
+
[key: string]: any;
|
|
3178
|
+
}>[]) | undefined;
|
|
3179
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3180
|
+
[key: string]: any;
|
|
3181
|
+
}>[]) | undefined;
|
|
3182
|
+
}>;
|
|
3183
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3184
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3185
|
+
$host: Element | null;
|
|
3186
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
3187
|
+
$el: any;
|
|
3188
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
3189
|
+
flat: boolean;
|
|
3190
|
+
reverse: boolean;
|
|
3191
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3192
|
+
error: boolean;
|
|
3193
|
+
active: boolean;
|
|
3194
|
+
style: import('vue').StyleValue;
|
|
3195
|
+
disabled: boolean;
|
|
3196
|
+
focused: boolean;
|
|
3197
|
+
tile: boolean;
|
|
3198
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3199
|
+
glow: boolean;
|
|
3200
|
+
clearable: boolean;
|
|
3201
|
+
dirty: boolean;
|
|
3202
|
+
persistentClear: boolean;
|
|
3203
|
+
singleLine: boolean;
|
|
3204
|
+
} & {
|
|
3205
|
+
id?: string | undefined;
|
|
3206
|
+
color?: string | undefined;
|
|
3207
|
+
loading?: string | boolean | undefined;
|
|
3208
|
+
label?: string | undefined;
|
|
3209
|
+
class?: any;
|
|
3210
|
+
theme?: string | undefined;
|
|
3211
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3212
|
+
rounded?: string | number | boolean | undefined;
|
|
3213
|
+
baseColor?: string | undefined;
|
|
3214
|
+
bgColor?: string | undefined;
|
|
3215
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3216
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3217
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3218
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3219
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3220
|
+
centerAffix?: boolean | undefined;
|
|
3221
|
+
iconColor?: string | boolean | undefined;
|
|
3222
|
+
} & {
|
|
3223
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3224
|
+
}, {
|
|
3225
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3226
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3227
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
3228
|
+
'update:focused': (focused: boolean) => true;
|
|
3229
|
+
'update:modelValue': (value: any) => true;
|
|
3230
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
3231
|
+
flat: boolean;
|
|
3232
|
+
reverse: boolean;
|
|
3233
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3234
|
+
error: boolean;
|
|
3235
|
+
active: boolean;
|
|
3236
|
+
style: import('vue').StyleValue;
|
|
3237
|
+
disabled: boolean;
|
|
3238
|
+
focused: boolean;
|
|
3239
|
+
rounded: string | number | boolean;
|
|
3240
|
+
tile: boolean;
|
|
3241
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3242
|
+
centerAffix: boolean;
|
|
3243
|
+
glow: boolean;
|
|
3244
|
+
clearable: boolean;
|
|
3245
|
+
dirty: boolean;
|
|
3246
|
+
persistentClear: boolean;
|
|
3247
|
+
singleLine: boolean;
|
|
3248
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
3249
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3250
|
+
props: Record<string, any>;
|
|
3251
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3252
|
+
[key: string]: any;
|
|
3253
|
+
}>[];
|
|
3254
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3255
|
+
[key: string]: any;
|
|
3256
|
+
}>[];
|
|
3257
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3258
|
+
[key: string]: any;
|
|
3259
|
+
}>[];
|
|
3260
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3261
|
+
label: string | undefined;
|
|
3262
|
+
props: Record<string, any>;
|
|
3263
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3264
|
+
[key: string]: any;
|
|
3265
|
+
}>[];
|
|
3266
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3267
|
+
[key: string]: any;
|
|
3268
|
+
}>[];
|
|
3269
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3270
|
+
[key: string]: any;
|
|
3271
|
+
}>[];
|
|
3272
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3273
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3274
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
3275
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3276
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3277
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3278
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
3279
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
3280
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3281
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3282
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3283
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3284
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3285
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3286
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3287
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3288
|
+
};
|
|
3289
|
+
$forceUpdate: () => void;
|
|
3290
|
+
$nextTick: typeof nextTick;
|
|
3291
|
+
$watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3292
|
+
} & Readonly<{
|
|
3293
|
+
flat: boolean;
|
|
3294
|
+
reverse: boolean;
|
|
3295
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3296
|
+
error: boolean;
|
|
3297
|
+
active: boolean;
|
|
3298
|
+
style: import('vue').StyleValue;
|
|
3299
|
+
disabled: boolean;
|
|
3300
|
+
focused: boolean;
|
|
3301
|
+
rounded: string | number | boolean;
|
|
3302
|
+
tile: boolean;
|
|
3303
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3304
|
+
centerAffix: boolean;
|
|
3305
|
+
glow: boolean;
|
|
3306
|
+
clearable: boolean;
|
|
3307
|
+
dirty: boolean;
|
|
3308
|
+
persistentClear: boolean;
|
|
3309
|
+
singleLine: boolean;
|
|
3310
|
+
}> & Omit<{
|
|
3311
|
+
flat: boolean;
|
|
3312
|
+
reverse: boolean;
|
|
3313
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3314
|
+
error: boolean;
|
|
3315
|
+
active: boolean;
|
|
3316
|
+
style: import('vue').StyleValue;
|
|
3317
|
+
disabled: boolean;
|
|
3318
|
+
focused: boolean;
|
|
3319
|
+
tile: boolean;
|
|
3320
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3321
|
+
glow: boolean;
|
|
3322
|
+
clearable: boolean;
|
|
3323
|
+
dirty: boolean;
|
|
3324
|
+
persistentClear: boolean;
|
|
3325
|
+
singleLine: boolean;
|
|
3326
|
+
} & {
|
|
3327
|
+
id?: string | undefined;
|
|
3328
|
+
color?: string | undefined;
|
|
3329
|
+
loading?: string | boolean | undefined;
|
|
3330
|
+
label?: string | undefined;
|
|
3331
|
+
class?: any;
|
|
3332
|
+
theme?: string | undefined;
|
|
3333
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3334
|
+
rounded?: string | number | boolean | undefined;
|
|
3335
|
+
baseColor?: string | undefined;
|
|
3336
|
+
bgColor?: string | undefined;
|
|
3337
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3338
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3339
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3340
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3341
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3342
|
+
centerAffix?: boolean | undefined;
|
|
3343
|
+
iconColor?: string | boolean | undefined;
|
|
3344
|
+
} & {
|
|
3345
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3346
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
3347
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3348
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3349
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3350
|
+
modelValue?: unknown;
|
|
3351
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
3352
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
3353
|
+
_allExposed: {} | {
|
|
3354
|
+
reset: () => Promise<void>;
|
|
3355
|
+
resetValidation: () => Promise<void>;
|
|
3356
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3357
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3358
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3359
|
+
} | {
|
|
3360
|
+
controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3361
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3362
|
+
};
|
|
3363
|
+
}, {}, {}, {}, {
|
|
3364
|
+
flat: boolean;
|
|
3365
|
+
reverse: boolean;
|
|
3366
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3367
|
+
type: string;
|
|
3368
|
+
error: boolean;
|
|
3369
|
+
active: boolean;
|
|
3370
|
+
direction: "horizontal" | "vertical";
|
|
3371
|
+
style: import('vue').StyleValue;
|
|
3372
|
+
autofocus: boolean;
|
|
3373
|
+
disabled: boolean;
|
|
3374
|
+
readonly: boolean | null;
|
|
3375
|
+
messages: string | readonly string[];
|
|
3376
|
+
rules: readonly import('vuetify/lib/types.mjs').ValidationRule[];
|
|
3377
|
+
focused: boolean;
|
|
3378
|
+
errorMessages: string | readonly string[] | null;
|
|
3379
|
+
maxErrors: string | number;
|
|
3380
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3381
|
+
rounded: string | number | boolean;
|
|
3382
|
+
tile: boolean;
|
|
3383
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3384
|
+
centerAffix: boolean;
|
|
3385
|
+
glow: boolean;
|
|
3386
|
+
hideSpinButtons: boolean;
|
|
3387
|
+
persistentHint: boolean;
|
|
3388
|
+
clearable: boolean;
|
|
3389
|
+
dirty: boolean;
|
|
3390
|
+
persistentClear: boolean;
|
|
3391
|
+
singleLine: boolean;
|
|
3392
|
+
persistentPlaceholder: boolean;
|
|
3393
|
+
persistentCounter: boolean;
|
|
3394
|
+
}> | null;
|
|
613
3395
|
};
|
|
614
3396
|
$slots: Readonly<{
|
|
615
3397
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -637,7 +3419,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
637
3419
|
errorMessages?: string[] | null | undefined;
|
|
638
3420
|
warningMessages?: string[] | null | undefined;
|
|
639
3421
|
successMessages?: string[] | null | undefined;
|
|
640
|
-
|
|
3422
|
+
readonly?: boolean | undefined;
|
|
641
3423
|
isActive?: boolean | undefined;
|
|
642
3424
|
baseColor?: string | undefined;
|
|
643
3425
|
bgColor?: string | undefined;
|
|
@@ -684,6 +3466,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
684
3466
|
showSuccessMessages?: boolean | undefined;
|
|
685
3467
|
isValidateOnBlur?: boolean | undefined;
|
|
686
3468
|
disableErrorHandling?: boolean | undefined;
|
|
3469
|
+
disableClickButton?: boolean | undefined;
|
|
3470
|
+
autocomplete?: string | undefined;
|
|
687
3471
|
}> & Readonly<{
|
|
688
3472
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
689
3473
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
@@ -724,7 +3508,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
724
3508
|
errorMessages: string[] | null;
|
|
725
3509
|
warningMessages: string[] | null;
|
|
726
3510
|
successMessages: string[] | null;
|
|
727
|
-
|
|
3511
|
+
readonly: boolean;
|
|
728
3512
|
isActive: boolean;
|
|
729
3513
|
baseColor: string;
|
|
730
3514
|
bgColor: string;
|
|
@@ -771,6 +3555,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
771
3555
|
showSuccessMessages: boolean;
|
|
772
3556
|
isValidateOnBlur: boolean;
|
|
773
3557
|
disableErrorHandling: boolean;
|
|
3558
|
+
disableClickButton: boolean;
|
|
3559
|
+
autocomplete: string;
|
|
774
3560
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
775
3561
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
776
3562
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -790,7 +3576,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
790
3576
|
};
|
|
791
3577
|
$forceUpdate: () => void;
|
|
792
3578
|
$nextTick: typeof nextTick;
|
|
793
|
-
$watch<
|
|
3579
|
+
$watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
794
3580
|
} & Readonly<{
|
|
795
3581
|
modelValue: string | number | null;
|
|
796
3582
|
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
@@ -807,7 +3593,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
807
3593
|
errorMessages: string[] | null;
|
|
808
3594
|
warningMessages: string[] | null;
|
|
809
3595
|
successMessages: string[] | null;
|
|
810
|
-
|
|
3596
|
+
readonly: boolean;
|
|
811
3597
|
isActive: boolean;
|
|
812
3598
|
baseColor: string;
|
|
813
3599
|
bgColor: string;
|
|
@@ -854,6 +3640,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
854
3640
|
showSuccessMessages: boolean;
|
|
855
3641
|
isValidateOnBlur: boolean;
|
|
856
3642
|
disableErrorHandling: boolean;
|
|
3643
|
+
disableClickButton: boolean;
|
|
3644
|
+
autocomplete: string;
|
|
857
3645
|
}> & Omit<Readonly<{
|
|
858
3646
|
modelValue?: string | number | null | undefined;
|
|
859
3647
|
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
@@ -872,7 +3660,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
872
3660
|
errorMessages?: string[] | null | undefined;
|
|
873
3661
|
warningMessages?: string[] | null | undefined;
|
|
874
3662
|
successMessages?: string[] | null | undefined;
|
|
875
|
-
|
|
3663
|
+
readonly?: boolean | undefined;
|
|
876
3664
|
isActive?: boolean | undefined;
|
|
877
3665
|
baseColor?: string | undefined;
|
|
878
3666
|
bgColor?: string | undefined;
|
|
@@ -919,12 +3707,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
919
3707
|
showSuccessMessages?: boolean | undefined;
|
|
920
3708
|
isValidateOnBlur?: boolean | undefined;
|
|
921
3709
|
disableErrorHandling?: boolean | undefined;
|
|
3710
|
+
disableClickButton?: boolean | undefined;
|
|
3711
|
+
autocomplete?: string | undefined;
|
|
922
3712
|
}> & Readonly<{
|
|
923
3713
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
924
3714
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
925
3715
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
926
3716
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
927
|
-
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "
|
|
3717
|
+
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
|
|
928
3718
|
validation: {
|
|
929
3719
|
errors: import('vue').Ref<string[], string[]>;
|
|
930
3720
|
warnings: import('vue').Ref<string[], string[]>;
|