@cnamts/synapse 0.0.15-alpha → 1.0.0

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