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