@cnamts/synapse 1.0.20 → 1.0.21

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 (135) hide show
  1. package/dist/{DateFilter-XURUmpMl.js → DateFilter-uN8OURoP.js} +1 -1
  2. package/dist/{NumberFilter-BZc0O8wV.js → NumberFilter-sm1dQNQi.js} +1 -1
  3. package/dist/{PeriodFilter-ZNdXcl3p.js → PeriodFilter-Cklsxnh9.js} +1 -1
  4. package/dist/{SelectFilter-DshYU5OK.js → SelectFilter-CWefj27Z.js} +1 -1
  5. package/dist/{TextFilter-D_c5dRPl.js → TextFilter-Ddyj885L.js} +1 -1
  6. package/dist/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.d.ts +160 -0
  7. package/dist/components/Customs/SyCheckBoxGroup/locales.d.ts +3 -0
  8. package/dist/components/Customs/SyCheckBoxGroup/types.d.ts +10 -0
  9. package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +1545 -2
  10. package/dist/components/Customs/SyRadioGroup/SyRadioGroup.d.ts +1495 -2
  11. package/dist/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.d.ts +60 -0
  12. package/dist/components/ErrorPage/ErrorPage.d.ts +1 -12
  13. package/dist/components/ErrorPage/locales.d.ts +18 -3
  14. package/dist/components/FileUpload/FileUpload.d.ts +2 -0
  15. package/dist/components/MaintenancePage/locales.d.ts +18 -2
  16. package/dist/components/NotFoundPage/locales.d.ts +20 -4
  17. package/dist/components/StatusPage/StatusPage.d.ts +39 -0
  18. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +13 -3
  19. package/dist/components/index.d.ts +3 -0
  20. package/dist/design-system-v3.js +126 -123
  21. package/dist/design-system-v3.umd.cjs +163 -163
  22. package/dist/{main-CuI6xaPq.js → main-CWniLr0s.js} +15191 -14668
  23. package/dist/style.css +1 -1
  24. package/dist/utils/theme/index.d.ts +6 -0
  25. package/package.json +7 -4
  26. package/src/components/ContextualMenu/ContextualMenu.stories.ts +0 -3
  27. package/src/components/ContextualMenu/accessibilite/Accessibility.mdx +67 -11
  28. package/src/components/CookieBanner/CookieBanner.stories.ts +11 -20
  29. package/src/components/CookieBanner/CookieBanner.vue +20 -5
  30. package/src/components/CookieBanner/accessibilite/Accessibility.mdx +67 -11
  31. package/src/components/CookieBanner/tests/CookieBanner.spec.ts +48 -4
  32. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.mdx +32 -0
  33. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.stories.ts +856 -0
  34. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.vue +334 -0
  35. package/src/components/Customs/SyCheckBoxGroup/accessibilite/Accessibility.mdx +243 -0
  36. package/src/components/Customs/SyCheckBoxGroup/locales.ts +3 -0
  37. package/src/components/Customs/SyCheckBoxGroup/tests/SyCheckBoxGroup.a11y.spec.ts +30 -0
  38. package/src/components/Customs/SyCheckBoxGroup/tests/SyCheckBoxGroup.spec.ts +152 -0
  39. package/src/components/Customs/SyCheckBoxGroup/types.ts +10 -0
  40. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +16 -27
  41. package/src/components/Customs/SyCheckbox/accessibilite/Accessibility.mdx +1 -1
  42. package/src/components/Customs/SyForm/SyForm.a11y.spec.ts +1 -1
  43. package/src/components/Customs/SyRadioGroup/SyRadioGroup.vue +16 -43
  44. package/src/components/DatePicker/CalendarMode/DatePicker.vue +35 -11
  45. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +43 -2
  46. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +48 -21
  47. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +98 -0
  48. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.mdx +83 -0
  49. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.stories.ts +502 -0
  50. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.vue +428 -0
  51. package/src/components/DeclarationAccessibilityPage/accessibilite/Accessibility.mdx +75 -0
  52. package/src/components/DeclarationAccessibilityPage/tests/DeclarationAccessibilityPage.a11y.spec.ts +53 -0
  53. package/src/components/DeclarationAccessibilityPage/tests/DeclarationAccessibilityPage.spec.ts +59 -0
  54. package/src/components/DiacriticPicker/DiacriticPicker.vue +20 -1
  55. package/src/components/ErrorPage/ErrorPage.mdx +6 -16
  56. package/src/components/ErrorPage/ErrorPage.stories.ts +16 -87
  57. package/src/components/ErrorPage/ErrorPage.vue +38 -125
  58. package/src/components/ErrorPage/accessibilite/Accessibility.mdx +68 -6
  59. package/src/components/ErrorPage/assets/error-ap.svg +1774 -0
  60. package/src/components/ErrorPage/locales.ts +21 -3
  61. package/src/components/ErrorPage/tests/ErrorPage.a11y.spec.ts +5 -13
  62. package/src/components/ErrorPage/tests/ErrorPage.spec.ts +2 -41
  63. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +8 -266
  64. package/src/components/FileUpload/FileUpload.vue +5 -0
  65. package/src/components/FooterBar/FooterBar.stories.ts +18 -14
  66. package/src/components/FooterBar/defaultSocialMediaLinks.ts +6 -4
  67. package/src/components/MaintenancePage/MaintenancePage.mdx +1 -1
  68. package/src/components/MaintenancePage/MaintenancePage.vue +15 -7
  69. package/src/components/MaintenancePage/accessibilite/Accessibility.mdx +61 -6
  70. package/src/components/MaintenancePage/assets/maintenance-ap.svg +1718 -0
  71. package/src/components/MaintenancePage/locales.ts +24 -3
  72. package/src/components/MaintenancePage/tests/MaintenancePage.a11y.spec.ts +75 -3
  73. package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +42 -2
  74. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -2
  75. package/src/components/NotFoundPage/NotFoundPage.mdx +1 -1
  76. package/src/components/NotFoundPage/NotFoundPage.stories.ts +3 -3
  77. package/src/components/NotFoundPage/NotFoundPage.vue +16 -11
  78. package/src/components/NotFoundPage/accessibilite/Accessibility.mdx +78 -6
  79. package/src/components/NotFoundPage/assets/not-found-ap.svg +2061 -0
  80. package/src/components/NotFoundPage/locales.ts +24 -4
  81. package/src/components/NotFoundPage/tests/NotFoundPage.a11y.spec.ts +168 -4
  82. package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +100 -12
  83. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +2 -2
  84. package/src/components/NotificationBar/NotificationBar.mdx +2 -2
  85. package/src/components/NotificationBar/accessibilite/Accessibility.mdx +68 -8
  86. package/src/components/PageContainer/tests/PageContainer.a11y.spec.ts +14 -7
  87. package/src/components/PhoneField/PhoneField.stories.ts +46 -38
  88. package/src/components/SocialMediaLinks/DefaultSocialMediaLinks.ts +6 -4
  89. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +7 -5
  90. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +17 -13
  91. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +9 -1
  92. package/src/components/SocialMediaLinks/accessibilite/Accessibility.mdx +63 -11
  93. package/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.ts +5 -5
  94. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.a11y.spec.ts +59 -0
  95. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +9 -7
  96. package/src/components/StatusPage/StatusPage.mdx +22 -0
  97. package/src/components/StatusPage/StatusPage.stories.ts +193 -0
  98. package/src/components/StatusPage/StatusPage.vue +145 -0
  99. package/src/components/StatusPage/accessibilite/Accessibility.mdx +81 -0
  100. package/src/components/StatusPage/tests/StatusPage.a11y.spec.ts +29 -0
  101. package/src/components/StatusPage/tests/StatusPage.spec.ts +50 -0
  102. package/src/components/StatusPage/tests/__snapshots__/StatusPage.spec.ts.snap +270 -0
  103. package/src/components/TableToolbar/TableToolbar.stories.ts +6 -6
  104. package/src/components/TableToolbar/TableToolbar.vue +1 -1
  105. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +0 -5
  106. package/src/components/UploadWorkflow/UploadWorkflow.mdx +11 -1
  107. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +107 -3
  108. package/src/components/UploadWorkflow/UploadWorkflow.vue +35 -24
  109. package/src/components/UploadWorkflow/tests/UploadWorkflow.spec.ts +48 -0
  110. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +9 -5
  111. package/src/components/UploadWorkflow/useFileList.ts +7 -0
  112. package/src/components/index.ts +3 -0
  113. package/src/composables/rules/tests/useFieldValidation.spec.ts +39 -3
  114. package/src/composables/rules/useFieldValidation.ts +24 -9
  115. package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +7 -0
  116. package/src/utils/theme/index.ts +19 -0
  117. package/src/utils/theme/tests/useThemeLocales.spec.ts +245 -0
  118. package/dist/components/MaintenancePage/index.d.ts +0 -2
  119. package/src/components/Customs/SyPagination/tests/SyPagination.a11y.spec.ts +0 -27
  120. package/src/components/Customs/SyTabs/tests/SyTabs.a11y.spec.ts +0 -51
  121. package/src/components/DataListItem/tests/DataListItem.a11y.spec.ts +0 -31
  122. package/src/components/DatePicker/CalendarMode/tests/DatePicker.a11y.spec.ts +0 -27
  123. package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.a11y.spec.ts +0 -26
  124. package/src/components/DatePicker/DateTextInput/tests/DateTextInput.a11y.spec.ts +0 -27
  125. package/src/components/DownloadBtn/tests/DownloadBtn.a11y.spec.ts +0 -26
  126. package/src/components/ExternalLinks/tests/ExternalLinks.a11y.spec.ts +0 -39
  127. package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.a11y.spec.ts +0 -45
  128. package/src/components/HeaderToolbar/tests/HeaderToolbar.a11y.spec.ts +0 -25
  129. package/src/components/LunarCalendar/tests/LunarCalendar.a11y.spec.ts +0 -31
  130. package/src/components/MaintenancePage/index.ts +0 -3
  131. package/src/components/PageContainer/Accessibilite/AccessibilityGuide.mdx +0 -0
  132. package/src/components/PaginatedTable/tests/PaginatedTable.a11y.spec.ts +0 -43
  133. package/src/components/PhoneField/tests/PhoneField.a11y.spec.ts +0 -34
  134. /package/src/components/NotFoundPage/assets/{not-found.svg → not-found-cnam.svg} +0 -0
  135. /package/src/components/PageContainer/{Accessibilite → accessibilite}/Accessibility.mdx +0 -0
@@ -1,3 +1,4 @@
1
+ import { nextTick } from 'vue';
1
2
  import { ValidationRule } from '../../../composables/validation/useValidation';
2
3
  type __VLS_Props = {
3
4
  modelValue?: boolean | null;
@@ -35,7 +36,778 @@ declare function __VLS_template(): {
35
36
  label?(_: {}): any;
36
37
  default?(_: {}): any;
37
38
  };
38
- refs: {};
39
+ refs: {
40
+ checkboxRef: ({
41
+ $: import('vue').ComponentInternalInstance;
42
+ $data: {};
43
+ $props: Partial<{
44
+ error: boolean;
45
+ direction: "horizontal" | "vertical";
46
+ style: import('vue').StyleValue;
47
+ disabled: boolean | null;
48
+ multiple: boolean | null;
49
+ readonly: boolean | null;
50
+ indeterminate: boolean;
51
+ messages: string | readonly string[];
52
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
53
+ focused: boolean;
54
+ errorMessages: string | readonly string[] | null;
55
+ maxErrors: string | number;
56
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
57
+ density: import('vuetify/lib/composables/density.mjs').Density;
58
+ ripple: boolean | {
59
+ class?: string;
60
+ keys?: string[];
61
+ } | undefined;
62
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
63
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
65
+ centerAffix: boolean;
66
+ glow: boolean;
67
+ hideSpinButtons: boolean;
68
+ persistentHint: boolean;
69
+ }> & Omit<{
70
+ error: boolean;
71
+ direction: "horizontal" | "vertical";
72
+ style: import('vue').StyleValue;
73
+ disabled: boolean | null;
74
+ multiple: boolean | null;
75
+ readonly: boolean | null;
76
+ indeterminate: boolean;
77
+ messages: string | readonly string[];
78
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
79
+ focused: boolean;
80
+ errorMessages: string | readonly string[] | null;
81
+ maxErrors: string | number;
82
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
83
+ density: import('vuetify/lib/composables/density.mjs').Density;
84
+ ripple: boolean | {
85
+ class?: string;
86
+ keys?: string[];
87
+ } | undefined;
88
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
89
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
90
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
91
+ centerAffix: boolean;
92
+ glow: boolean;
93
+ hideSpinButtons: boolean;
94
+ persistentHint: boolean;
95
+ name?: string | undefined | undefined;
96
+ type?: string | undefined | undefined;
97
+ id?: string | undefined | undefined;
98
+ width?: string | number | undefined | undefined;
99
+ color?: string | undefined | undefined;
100
+ maxWidth?: string | number | undefined | undefined;
101
+ minWidth?: string | number | undefined | undefined;
102
+ value?: any;
103
+ label?: string | undefined | undefined;
104
+ class?: any;
105
+ theme?: string | undefined | undefined;
106
+ "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
107
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined | undefined;
108
+ validationValue?: any;
109
+ baseColor?: string | undefined | undefined;
110
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
111
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
112
+ iconColor?: string | boolean | undefined | undefined;
113
+ defaultsTarget?: string | undefined | undefined;
114
+ trueValue?: any;
115
+ falseValue?: any;
116
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined | undefined;
117
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined | undefined;
118
+ hint?: string | undefined | undefined;
119
+ hideDetails?: boolean | "auto" | undefined | undefined;
120
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "density" | "readonly" | "ripple" | "error" | "valueComparator" | "multiple" | "indeterminate" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "falseIcon" | "trueIcon" | "indeterminateIcon">;
121
+ $attrs: {
122
+ [x: string]: unknown;
123
+ };
124
+ $refs: {
125
+ [x: string]: unknown;
126
+ };
127
+ $slots: Readonly<{
128
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
129
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
130
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
131
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
132
+ default?: ((arg: {
133
+ backgroundColorClasses: import('vue').Ref<string[]>;
134
+ backgroundColorStyles: import('vue').Ref<import('vue').CSSProperties>;
135
+ }) => import('vue').VNode[]) | undefined;
136
+ label?: ((arg: {
137
+ label: string | undefined;
138
+ props: Record<string, unknown>;
139
+ }) => import('vue').VNode[]) | undefined;
140
+ input?: ((arg: import('vuetify/lib/components/VSelectionControl/VSelectionControl.mjs').SelectionControlSlot) => import('vue').VNode[]) | undefined;
141
+ }>;
142
+ $root: import('vue').ComponentPublicInstance | null;
143
+ $parent: import('vue').ComponentPublicInstance | null;
144
+ $host: Element | null;
145
+ $emit: (event: "update:focused", focused: boolean) => void;
146
+ $el: any;
147
+ $options: import('vue').ComponentOptionsBase<{
148
+ error: boolean;
149
+ direction: "horizontal" | "vertical";
150
+ style: import('vue').StyleValue;
151
+ disabled: boolean | null;
152
+ multiple: boolean | null;
153
+ readonly: boolean | null;
154
+ indeterminate: boolean;
155
+ messages: string | readonly string[];
156
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
157
+ focused: boolean;
158
+ errorMessages: string | readonly string[] | null;
159
+ maxErrors: string | number;
160
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
161
+ density: import('vuetify/lib/composables/density.mjs').Density;
162
+ ripple: boolean | {
163
+ class?: string;
164
+ keys?: string[];
165
+ } | undefined;
166
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
167
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
168
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
169
+ centerAffix: boolean;
170
+ glow: boolean;
171
+ hideSpinButtons: boolean;
172
+ persistentHint: boolean;
173
+ } & {
174
+ name?: string | undefined;
175
+ type?: string | undefined;
176
+ id?: string | undefined;
177
+ width?: string | number | undefined;
178
+ color?: string | undefined;
179
+ maxWidth?: string | number | undefined;
180
+ minWidth?: string | number | undefined;
181
+ value?: any;
182
+ label?: string | undefined;
183
+ class?: any;
184
+ theme?: string | undefined;
185
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
186
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
187
+ validationValue?: any;
188
+ baseColor?: string | undefined;
189
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
190
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
191
+ iconColor?: string | boolean | undefined;
192
+ defaultsTarget?: string | undefined;
193
+ trueValue?: any;
194
+ falseValue?: any;
195
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
196
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
197
+ hint?: string | undefined;
198
+ hideDetails?: boolean | "auto" | undefined;
199
+ } & {
200
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
201
+ }, Omit<Omit<{
202
+ $: import('vue').ComponentInternalInstance;
203
+ $data: {};
204
+ $props: Partial<{
205
+ error: boolean;
206
+ direction: "horizontal" | "vertical";
207
+ style: import('vue').StyleValue;
208
+ disabled: boolean | null;
209
+ readonly: boolean | null;
210
+ messages: string | readonly string[];
211
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
212
+ focused: boolean;
213
+ errorMessages: string | readonly string[] | null;
214
+ maxErrors: string | number;
215
+ density: import('vuetify/lib/composables/density.mjs').Density;
216
+ centerAffix: boolean;
217
+ glow: boolean;
218
+ hideSpinButtons: boolean;
219
+ persistentHint: boolean;
220
+ }> & Omit<{
221
+ error: boolean;
222
+ direction: "horizontal" | "vertical";
223
+ style: import('vue').StyleValue;
224
+ disabled: boolean | null;
225
+ readonly: boolean | null;
226
+ messages: string | readonly string[];
227
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
228
+ focused: boolean;
229
+ errorMessages: string | readonly string[] | null;
230
+ maxErrors: string | number;
231
+ density: import('vuetify/lib/composables/density.mjs').Density;
232
+ centerAffix: boolean;
233
+ glow: boolean;
234
+ hideSpinButtons: boolean;
235
+ persistentHint: boolean;
236
+ name?: string | undefined;
237
+ id?: string | undefined;
238
+ width?: string | number | undefined;
239
+ color?: string | undefined;
240
+ maxWidth?: string | number | undefined;
241
+ minWidth?: string | number | undefined;
242
+ label?: string | undefined;
243
+ class?: any;
244
+ theme?: string | undefined;
245
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
246
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
247
+ validationValue?: any;
248
+ baseColor?: string | undefined;
249
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
250
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
251
+ iconColor?: string | boolean | undefined;
252
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
253
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
254
+ hint?: string | undefined;
255
+ hideDetails?: boolean | "auto" | undefined;
256
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
257
+ $attrs: {
258
+ [x: string]: unknown;
259
+ };
260
+ $refs: {
261
+ [x: string]: unknown;
262
+ };
263
+ $slots: Readonly<{
264
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
265
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
266
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
267
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
268
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
269
+ }>;
270
+ $root: import('vue').ComponentPublicInstance | null;
271
+ $parent: import('vue').ComponentPublicInstance | null;
272
+ $host: Element | null;
273
+ $emit: (event: string, ...args: any[]) => void;
274
+ $el: any;
275
+ $options: import('vue').ComponentOptionsBase<{
276
+ error: boolean;
277
+ direction: "horizontal" | "vertical";
278
+ style: import('vue').StyleValue;
279
+ disabled: boolean | null;
280
+ readonly: boolean | null;
281
+ messages: string | readonly string[];
282
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
283
+ focused: boolean;
284
+ errorMessages: string | readonly string[] | null;
285
+ maxErrors: string | number;
286
+ density: import('vuetify/lib/composables/density.mjs').Density;
287
+ centerAffix: boolean;
288
+ glow: boolean;
289
+ hideSpinButtons: boolean;
290
+ persistentHint: boolean;
291
+ } & {
292
+ name?: string | undefined;
293
+ id?: string | undefined;
294
+ width?: string | number | undefined;
295
+ color?: string | undefined;
296
+ maxWidth?: string | number | undefined;
297
+ minWidth?: string | number | undefined;
298
+ label?: string | undefined;
299
+ class?: any;
300
+ theme?: string | undefined;
301
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
302
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
303
+ validationValue?: any;
304
+ baseColor?: string | undefined;
305
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
306
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
307
+ iconColor?: string | boolean | undefined;
308
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
309
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
310
+ hint?: string | undefined;
311
+ hideDetails?: boolean | "auto" | undefined;
312
+ } & {}, {
313
+ reset: () => Promise<void>;
314
+ resetValidation: () => Promise<void>;
315
+ validate: (silent?: boolean) => Promise<string[]>;
316
+ isValid: import('vue').ComputedRef<boolean | null>;
317
+ errorMessages: import('vue').ComputedRef<string[]>;
318
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
319
+ "update:modelValue": (value: any) => true;
320
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
321
+ error: boolean;
322
+ direction: "horizontal" | "vertical";
323
+ style: import('vue').StyleValue;
324
+ disabled: boolean | null;
325
+ readonly: boolean | null;
326
+ messages: string | readonly string[];
327
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
328
+ focused: boolean;
329
+ errorMessages: string | readonly string[] | null;
330
+ maxErrors: string | number;
331
+ density: import('vuetify/lib/composables/density.mjs').Density;
332
+ centerAffix: boolean;
333
+ glow: boolean;
334
+ hideSpinButtons: boolean;
335
+ persistentHint: boolean;
336
+ }, {}, string, import('vue').SlotsType<Partial<{
337
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
338
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
339
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
340
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
341
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
342
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
343
+ beforeCreate?: (() => void) | (() => void)[];
344
+ created?: (() => void) | (() => void)[];
345
+ beforeMount?: (() => void) | (() => void)[];
346
+ mounted?: (() => void) | (() => void)[];
347
+ beforeUpdate?: (() => void) | (() => void)[];
348
+ updated?: (() => void) | (() => void)[];
349
+ activated?: (() => void) | (() => void)[];
350
+ deactivated?: (() => void) | (() => void)[];
351
+ beforeDestroy?: (() => void) | (() => void)[];
352
+ beforeUnmount?: (() => void) | (() => void)[];
353
+ destroyed?: (() => void) | (() => void)[];
354
+ unmounted?: (() => void) | (() => void)[];
355
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
356
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
357
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
358
+ };
359
+ $forceUpdate: () => void;
360
+ $nextTick: typeof import('vue').nextTick;
361
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
362
+ } & Readonly<{
363
+ error: boolean;
364
+ direction: "horizontal" | "vertical";
365
+ style: import('vue').StyleValue;
366
+ disabled: boolean | null;
367
+ readonly: boolean | null;
368
+ messages: string | readonly string[];
369
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
370
+ focused: boolean;
371
+ errorMessages: string | readonly string[] | null;
372
+ maxErrors: string | number;
373
+ density: import('vuetify/lib/composables/density.mjs').Density;
374
+ centerAffix: boolean;
375
+ glow: boolean;
376
+ hideSpinButtons: boolean;
377
+ persistentHint: boolean;
378
+ }> & Omit<{
379
+ error: boolean;
380
+ direction: "horizontal" | "vertical";
381
+ style: import('vue').StyleValue;
382
+ disabled: boolean | null;
383
+ readonly: boolean | null;
384
+ messages: string | readonly string[];
385
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
386
+ focused: boolean;
387
+ errorMessages: string | readonly string[] | null;
388
+ maxErrors: string | number;
389
+ density: import('vuetify/lib/composables/density.mjs').Density;
390
+ centerAffix: boolean;
391
+ glow: boolean;
392
+ hideSpinButtons: boolean;
393
+ persistentHint: boolean;
394
+ } & {
395
+ name?: string | undefined;
396
+ id?: string | undefined;
397
+ width?: string | number | undefined;
398
+ color?: string | undefined;
399
+ maxWidth?: string | number | undefined;
400
+ minWidth?: string | number | undefined;
401
+ label?: string | undefined;
402
+ class?: any;
403
+ theme?: string | undefined;
404
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
405
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
406
+ validationValue?: any;
407
+ baseColor?: string | undefined;
408
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
409
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
410
+ iconColor?: string | boolean | undefined;
411
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
412
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
413
+ hint?: string | undefined;
414
+ hideDetails?: boolean | "auto" | undefined;
415
+ }, "style" | "disabled" | "density" | "readonly" | "error" | "reset" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
416
+ reset: () => Promise<void>;
417
+ resetValidation: () => Promise<void>;
418
+ validate: (silent?: boolean) => Promise<string[]>;
419
+ isValid: import('vue').ComputedRef<boolean | null>;
420
+ errorMessages: import('vue').ComputedRef<string[]>;
421
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
422
+ modelValue?: unknown;
423
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
424
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "maxWidth" | "minWidth" | "density" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:prepend" | "v-slot:append" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "centerAffix" | "direction" | "hint" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "hideDetails" | "v-slot:message" | "v-slot:details">, `$${any}`> & {
425
+ _allExposed: {
426
+ reset: () => Promise<void>;
427
+ resetValidation: () => Promise<void>;
428
+ validate: (silent?: boolean) => Promise<string[]>;
429
+ isValid: import('vue').ComputedRef<boolean | null>;
430
+ errorMessages: import('vue').ComputedRef<string[]>;
431
+ } | {};
432
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
433
+ 'update:modelValue': (value: any) => true;
434
+ 'update:focused': (focused: boolean) => true;
435
+ }, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:input">, string, {
436
+ error: boolean;
437
+ direction: "horizontal" | "vertical";
438
+ style: import('vue').StyleValue;
439
+ disabled: boolean | null;
440
+ multiple: boolean | null;
441
+ readonly: boolean | null;
442
+ indeterminate: boolean;
443
+ messages: string | readonly string[];
444
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
445
+ focused: boolean;
446
+ errorMessages: string | readonly string[] | null;
447
+ maxErrors: string | number;
448
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
449
+ density: import('vuetify/lib/composables/density.mjs').Density;
450
+ ripple: boolean | {
451
+ class?: string;
452
+ keys?: string[];
453
+ } | undefined;
454
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
455
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
456
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
457
+ centerAffix: boolean;
458
+ glow: boolean;
459
+ hideSpinButtons: boolean;
460
+ persistentHint: boolean;
461
+ }, {}, string, import('vue').SlotsType<Partial<{
462
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
463
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
464
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
465
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
466
+ default: (arg: {
467
+ backgroundColorClasses: import('vue').Ref<string[]>;
468
+ backgroundColorStyles: import('vue').Ref<import('vue').CSSProperties>;
469
+ }) => import('vue').VNode[];
470
+ label: (arg: {
471
+ label: string | undefined;
472
+ props: Record<string, unknown>;
473
+ }) => import('vue').VNode[];
474
+ input: (arg: import('vuetify/lib/components/VSelectionControl/VSelectionControl.mjs').SelectionControlSlot) => import('vue').VNode[];
475
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
476
+ beforeCreate?: (() => void) | (() => void)[];
477
+ created?: (() => void) | (() => void)[];
478
+ beforeMount?: (() => void) | (() => void)[];
479
+ mounted?: (() => void) | (() => void)[];
480
+ beforeUpdate?: (() => void) | (() => void)[];
481
+ updated?: (() => void) | (() => void)[];
482
+ activated?: (() => void) | (() => void)[];
483
+ deactivated?: (() => void) | (() => void)[];
484
+ beforeDestroy?: (() => void) | (() => void)[];
485
+ beforeUnmount?: (() => void) | (() => void)[];
486
+ destroyed?: (() => void) | (() => void)[];
487
+ unmounted?: (() => void) | (() => void)[];
488
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
489
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
490
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
491
+ };
492
+ $forceUpdate: () => void;
493
+ $nextTick: typeof nextTick;
494
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
495
+ } & Readonly<{
496
+ error: boolean;
497
+ direction: "horizontal" | "vertical";
498
+ style: import('vue').StyleValue;
499
+ disabled: boolean | null;
500
+ multiple: boolean | null;
501
+ readonly: boolean | null;
502
+ indeterminate: boolean;
503
+ messages: string | readonly string[];
504
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
505
+ focused: boolean;
506
+ errorMessages: string | readonly string[] | null;
507
+ maxErrors: string | number;
508
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
509
+ density: import('vuetify/lib/composables/density.mjs').Density;
510
+ ripple: boolean | {
511
+ class?: string;
512
+ keys?: string[];
513
+ } | undefined;
514
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
515
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
516
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
517
+ centerAffix: boolean;
518
+ glow: boolean;
519
+ hideSpinButtons: boolean;
520
+ persistentHint: boolean;
521
+ }> & Omit<{
522
+ error: boolean;
523
+ direction: "horizontal" | "vertical";
524
+ style: import('vue').StyleValue;
525
+ disabled: boolean | null;
526
+ multiple: boolean | null;
527
+ readonly: boolean | null;
528
+ indeterminate: boolean;
529
+ messages: string | readonly string[];
530
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
531
+ focused: boolean;
532
+ errorMessages: string | readonly string[] | null;
533
+ maxErrors: string | number;
534
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
535
+ density: import('vuetify/lib/composables/density.mjs').Density;
536
+ ripple: boolean | {
537
+ class?: string;
538
+ keys?: string[];
539
+ } | undefined;
540
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
541
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
542
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
543
+ centerAffix: boolean;
544
+ glow: boolean;
545
+ hideSpinButtons: boolean;
546
+ persistentHint: boolean;
547
+ } & {
548
+ name?: string | undefined;
549
+ type?: string | undefined;
550
+ id?: string | undefined;
551
+ width?: string | number | undefined;
552
+ color?: string | undefined;
553
+ maxWidth?: string | number | undefined;
554
+ minWidth?: string | number | undefined;
555
+ value?: any;
556
+ label?: string | undefined;
557
+ class?: any;
558
+ theme?: string | undefined;
559
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
560
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
561
+ validationValue?: any;
562
+ baseColor?: string | undefined;
563
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
564
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
565
+ iconColor?: string | boolean | undefined;
566
+ defaultsTarget?: string | undefined;
567
+ trueValue?: any;
568
+ falseValue?: any;
569
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
570
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
571
+ hint?: string | undefined;
572
+ hideDetails?: boolean | "auto" | undefined;
573
+ } & {
574
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
575
+ }, "style" | "disabled" | "density" | "readonly" | "ripple" | "error" | "reset" | "valueComparator" | "multiple" | "_allExposed" | "indeterminate" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "falseIcon" | "trueIcon" | "indeterminateIcon"> & import('vue').ShallowUnwrapRef<Omit<Omit<{
576
+ $: import('vue').ComponentInternalInstance;
577
+ $data: {};
578
+ $props: Partial<{
579
+ error: boolean;
580
+ direction: "horizontal" | "vertical";
581
+ style: import('vue').StyleValue;
582
+ disabled: boolean | null;
583
+ readonly: boolean | null;
584
+ messages: string | readonly string[];
585
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
586
+ focused: boolean;
587
+ errorMessages: string | readonly string[] | null;
588
+ maxErrors: string | number;
589
+ density: import('vuetify/lib/composables/density.mjs').Density;
590
+ centerAffix: boolean;
591
+ glow: boolean;
592
+ hideSpinButtons: boolean;
593
+ persistentHint: boolean;
594
+ }> & Omit<{
595
+ error: boolean;
596
+ direction: "horizontal" | "vertical";
597
+ style: import('vue').StyleValue;
598
+ disabled: boolean | null;
599
+ readonly: boolean | null;
600
+ messages: string | readonly string[];
601
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
602
+ focused: boolean;
603
+ errorMessages: string | readonly string[] | null;
604
+ maxErrors: string | number;
605
+ density: import('vuetify/lib/composables/density.mjs').Density;
606
+ centerAffix: boolean;
607
+ glow: boolean;
608
+ hideSpinButtons: boolean;
609
+ persistentHint: boolean;
610
+ name?: string | undefined;
611
+ id?: string | undefined;
612
+ width?: string | number | undefined;
613
+ color?: string | undefined;
614
+ maxWidth?: string | number | undefined;
615
+ minWidth?: string | number | undefined;
616
+ label?: string | undefined;
617
+ class?: any;
618
+ theme?: string | undefined;
619
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
620
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
621
+ validationValue?: any;
622
+ baseColor?: string | undefined;
623
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
624
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
625
+ iconColor?: string | boolean | undefined;
626
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
627
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
628
+ hint?: string | undefined;
629
+ hideDetails?: boolean | "auto" | undefined;
630
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
631
+ $attrs: {
632
+ [x: string]: unknown;
633
+ };
634
+ $refs: {
635
+ [x: string]: unknown;
636
+ };
637
+ $slots: Readonly<{
638
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
639
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
640
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
641
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
642
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
643
+ }>;
644
+ $root: import('vue').ComponentPublicInstance | null;
645
+ $parent: import('vue').ComponentPublicInstance | null;
646
+ $host: Element | null;
647
+ $emit: (event: string, ...args: any[]) => void;
648
+ $el: any;
649
+ $options: import('vue').ComponentOptionsBase<{
650
+ error: boolean;
651
+ direction: "horizontal" | "vertical";
652
+ style: import('vue').StyleValue;
653
+ disabled: boolean | null;
654
+ readonly: boolean | null;
655
+ messages: string | readonly string[];
656
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
657
+ focused: boolean;
658
+ errorMessages: string | readonly string[] | null;
659
+ maxErrors: string | number;
660
+ density: import('vuetify/lib/composables/density.mjs').Density;
661
+ centerAffix: boolean;
662
+ glow: boolean;
663
+ hideSpinButtons: boolean;
664
+ persistentHint: boolean;
665
+ } & {
666
+ name?: string | undefined;
667
+ id?: string | undefined;
668
+ width?: string | number | undefined;
669
+ color?: string | undefined;
670
+ maxWidth?: string | number | undefined;
671
+ minWidth?: string | number | undefined;
672
+ label?: string | undefined;
673
+ class?: any;
674
+ theme?: string | undefined;
675
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
676
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
677
+ validationValue?: any;
678
+ baseColor?: string | undefined;
679
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
680
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
681
+ iconColor?: string | boolean | undefined;
682
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
683
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
684
+ hint?: string | undefined;
685
+ hideDetails?: boolean | "auto" | undefined;
686
+ } & {}, {
687
+ reset: () => Promise<void>;
688
+ resetValidation: () => Promise<void>;
689
+ validate: (silent?: boolean) => Promise<string[]>;
690
+ isValid: import('vue').ComputedRef<boolean | null>;
691
+ errorMessages: import('vue').ComputedRef<string[]>;
692
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
693
+ "update:modelValue": (value: any) => true;
694
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
695
+ error: boolean;
696
+ direction: "horizontal" | "vertical";
697
+ style: import('vue').StyleValue;
698
+ disabled: boolean | null;
699
+ readonly: boolean | null;
700
+ messages: string | readonly string[];
701
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
702
+ focused: boolean;
703
+ errorMessages: string | readonly string[] | null;
704
+ maxErrors: string | number;
705
+ density: import('vuetify/lib/composables/density.mjs').Density;
706
+ centerAffix: boolean;
707
+ glow: boolean;
708
+ hideSpinButtons: boolean;
709
+ persistentHint: boolean;
710
+ }, {}, string, import('vue').SlotsType<Partial<{
711
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
712
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
713
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
714
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
715
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
716
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
717
+ beforeCreate?: (() => void) | (() => void)[];
718
+ created?: (() => void) | (() => void)[];
719
+ beforeMount?: (() => void) | (() => void)[];
720
+ mounted?: (() => void) | (() => void)[];
721
+ beforeUpdate?: (() => void) | (() => void)[];
722
+ updated?: (() => void) | (() => void)[];
723
+ activated?: (() => void) | (() => void)[];
724
+ deactivated?: (() => void) | (() => void)[];
725
+ beforeDestroy?: (() => void) | (() => void)[];
726
+ beforeUnmount?: (() => void) | (() => void)[];
727
+ destroyed?: (() => void) | (() => void)[];
728
+ unmounted?: (() => void) | (() => void)[];
729
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
730
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
731
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
732
+ };
733
+ $forceUpdate: () => void;
734
+ $nextTick: typeof import('vue').nextTick;
735
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
736
+ } & Readonly<{
737
+ error: boolean;
738
+ direction: "horizontal" | "vertical";
739
+ style: import('vue').StyleValue;
740
+ disabled: boolean | null;
741
+ readonly: boolean | null;
742
+ messages: string | readonly string[];
743
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
744
+ focused: boolean;
745
+ errorMessages: string | readonly string[] | null;
746
+ maxErrors: string | number;
747
+ density: import('vuetify/lib/composables/density.mjs').Density;
748
+ centerAffix: boolean;
749
+ glow: boolean;
750
+ hideSpinButtons: boolean;
751
+ persistentHint: boolean;
752
+ }> & Omit<{
753
+ error: boolean;
754
+ direction: "horizontal" | "vertical";
755
+ style: import('vue').StyleValue;
756
+ disabled: boolean | null;
757
+ readonly: boolean | null;
758
+ messages: string | readonly string[];
759
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
760
+ focused: boolean;
761
+ errorMessages: string | readonly string[] | null;
762
+ maxErrors: string | number;
763
+ density: import('vuetify/lib/composables/density.mjs').Density;
764
+ centerAffix: boolean;
765
+ glow: boolean;
766
+ hideSpinButtons: boolean;
767
+ persistentHint: boolean;
768
+ } & {
769
+ name?: string | undefined;
770
+ id?: string | undefined;
771
+ width?: string | number | undefined;
772
+ color?: string | undefined;
773
+ maxWidth?: string | number | undefined;
774
+ minWidth?: string | number | undefined;
775
+ label?: string | undefined;
776
+ class?: any;
777
+ theme?: string | undefined;
778
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
779
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
780
+ validationValue?: any;
781
+ baseColor?: string | undefined;
782
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
783
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
784
+ iconColor?: string | boolean | undefined;
785
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
786
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
787
+ hint?: string | undefined;
788
+ hideDetails?: boolean | "auto" | undefined;
789
+ }, "style" | "disabled" | "density" | "readonly" | "error" | "reset" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
790
+ reset: () => Promise<void>;
791
+ resetValidation: () => Promise<void>;
792
+ validate: (silent?: boolean) => Promise<string[]>;
793
+ isValid: import('vue').ComputedRef<boolean | null>;
794
+ errorMessages: import('vue').ComputedRef<string[]>;
795
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
796
+ modelValue?: unknown;
797
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
798
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "maxWidth" | "minWidth" | "density" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:prepend" | "v-slot:append" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "centerAffix" | "direction" | "hint" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "hideDetails" | "v-slot:message" | "v-slot:details">, `$${any}`> & {
799
+ _allExposed: {
800
+ reset: () => Promise<void>;
801
+ resetValidation: () => Promise<void>;
802
+ validate: (silent?: boolean) => Promise<string[]>;
803
+ isValid: import('vue').ComputedRef<boolean | null>;
804
+ errorMessages: import('vue').ComputedRef<string[]>;
805
+ } | {};
806
+ }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
807
+ modelValue?: boolean | null | undefined;
808
+ "onUpdate:modelValue"?: ((value: boolean | null) => void) | undefined;
809
+ }, import('vuetify/lib/components/VCheckbox/VCheckbox.mjs').VCheckboxSlots>) | null;
810
+ };
39
811
  rootEl: HTMLDivElement;
40
812
  };
41
813
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
@@ -91,7 +863,778 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
91
863
  trueValue: true;
92
864
  falseValue: false;
93
865
  controlsIds: string[];
94
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
866
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
867
+ checkboxRef: ({
868
+ $: import('vue').ComponentInternalInstance;
869
+ $data: {};
870
+ $props: Partial<{
871
+ error: boolean;
872
+ direction: "horizontal" | "vertical";
873
+ style: import('vue').StyleValue;
874
+ disabled: boolean | null;
875
+ multiple: boolean | null;
876
+ readonly: boolean | null;
877
+ indeterminate: boolean;
878
+ messages: string | readonly string[];
879
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
880
+ focused: boolean;
881
+ errorMessages: string | readonly string[] | null;
882
+ maxErrors: string | number;
883
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
884
+ density: import('vuetify/lib/composables/density.mjs').Density;
885
+ ripple: boolean | {
886
+ class?: string;
887
+ keys?: string[];
888
+ } | undefined;
889
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
890
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
891
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
892
+ centerAffix: boolean;
893
+ glow: boolean;
894
+ hideSpinButtons: boolean;
895
+ persistentHint: boolean;
896
+ }> & Omit<{
897
+ error: boolean;
898
+ direction: "horizontal" | "vertical";
899
+ style: import('vue').StyleValue;
900
+ disabled: boolean | null;
901
+ multiple: boolean | null;
902
+ readonly: boolean | null;
903
+ indeterminate: boolean;
904
+ messages: string | readonly string[];
905
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
906
+ focused: boolean;
907
+ errorMessages: string | readonly string[] | null;
908
+ maxErrors: string | number;
909
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
910
+ density: import('vuetify/lib/composables/density.mjs').Density;
911
+ ripple: boolean | {
912
+ class?: string;
913
+ keys?: string[];
914
+ } | undefined;
915
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
916
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
917
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
918
+ centerAffix: boolean;
919
+ glow: boolean;
920
+ hideSpinButtons: boolean;
921
+ persistentHint: boolean;
922
+ name?: string | undefined | undefined;
923
+ type?: string | undefined | undefined;
924
+ id?: string | undefined | undefined;
925
+ width?: string | number | undefined | undefined;
926
+ color?: string | undefined | undefined;
927
+ maxWidth?: string | number | undefined | undefined;
928
+ minWidth?: string | number | undefined | undefined;
929
+ value?: any;
930
+ label?: string | undefined | undefined;
931
+ class?: any;
932
+ theme?: string | undefined | undefined;
933
+ "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
934
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined | undefined;
935
+ validationValue?: any;
936
+ baseColor?: string | undefined | undefined;
937
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
938
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
939
+ iconColor?: string | boolean | undefined | undefined;
940
+ defaultsTarget?: string | undefined | undefined;
941
+ trueValue?: any;
942
+ falseValue?: any;
943
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined | undefined;
944
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined | undefined;
945
+ hint?: string | undefined | undefined;
946
+ hideDetails?: boolean | "auto" | undefined | undefined;
947
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "density" | "readonly" | "ripple" | "error" | "valueComparator" | "multiple" | "indeterminate" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "falseIcon" | "trueIcon" | "indeterminateIcon">;
948
+ $attrs: {
949
+ [x: string]: unknown;
950
+ };
951
+ $refs: {
952
+ [x: string]: unknown;
953
+ };
954
+ $slots: Readonly<{
955
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
956
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
957
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
958
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
959
+ default?: ((arg: {
960
+ backgroundColorClasses: import('vue').Ref<string[]>;
961
+ backgroundColorStyles: import('vue').Ref<import('vue').CSSProperties>;
962
+ }) => import('vue').VNode[]) | undefined;
963
+ label?: ((arg: {
964
+ label: string | undefined;
965
+ props: Record<string, unknown>;
966
+ }) => import('vue').VNode[]) | undefined;
967
+ input?: ((arg: import('vuetify/lib/components/VSelectionControl/VSelectionControl.mjs').SelectionControlSlot) => import('vue').VNode[]) | undefined;
968
+ }>;
969
+ $root: import('vue').ComponentPublicInstance | null;
970
+ $parent: import('vue').ComponentPublicInstance | null;
971
+ $host: Element | null;
972
+ $emit: (event: "update:focused", focused: boolean) => void;
973
+ $el: any;
974
+ $options: import('vue').ComponentOptionsBase<{
975
+ error: boolean;
976
+ direction: "horizontal" | "vertical";
977
+ style: import('vue').StyleValue;
978
+ disabled: boolean | null;
979
+ multiple: boolean | null;
980
+ readonly: boolean | null;
981
+ indeterminate: boolean;
982
+ messages: string | readonly string[];
983
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
984
+ focused: boolean;
985
+ errorMessages: string | readonly string[] | null;
986
+ maxErrors: string | number;
987
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
988
+ density: import('vuetify/lib/composables/density.mjs').Density;
989
+ ripple: boolean | {
990
+ class?: string;
991
+ keys?: string[];
992
+ } | undefined;
993
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
994
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
995
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
996
+ centerAffix: boolean;
997
+ glow: boolean;
998
+ hideSpinButtons: boolean;
999
+ persistentHint: boolean;
1000
+ } & {
1001
+ name?: string | undefined;
1002
+ type?: string | undefined;
1003
+ id?: string | undefined;
1004
+ width?: string | number | undefined;
1005
+ color?: string | undefined;
1006
+ maxWidth?: string | number | undefined;
1007
+ minWidth?: string | number | undefined;
1008
+ value?: any;
1009
+ label?: string | undefined;
1010
+ class?: any;
1011
+ theme?: string | undefined;
1012
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1013
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1014
+ validationValue?: any;
1015
+ baseColor?: string | undefined;
1016
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1017
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1018
+ iconColor?: string | boolean | undefined;
1019
+ defaultsTarget?: string | undefined;
1020
+ trueValue?: any;
1021
+ falseValue?: any;
1022
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1023
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1024
+ hint?: string | undefined;
1025
+ hideDetails?: boolean | "auto" | undefined;
1026
+ } & {
1027
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1028
+ }, Omit<Omit<{
1029
+ $: import('vue').ComponentInternalInstance;
1030
+ $data: {};
1031
+ $props: Partial<{
1032
+ error: boolean;
1033
+ direction: "horizontal" | "vertical";
1034
+ style: import('vue').StyleValue;
1035
+ disabled: boolean | null;
1036
+ readonly: boolean | null;
1037
+ messages: string | readonly string[];
1038
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1039
+ focused: boolean;
1040
+ errorMessages: string | readonly string[] | null;
1041
+ maxErrors: string | number;
1042
+ density: import('vuetify/lib/composables/density.mjs').Density;
1043
+ centerAffix: boolean;
1044
+ glow: boolean;
1045
+ hideSpinButtons: boolean;
1046
+ persistentHint: boolean;
1047
+ }> & Omit<{
1048
+ error: boolean;
1049
+ direction: "horizontal" | "vertical";
1050
+ style: import('vue').StyleValue;
1051
+ disabled: boolean | null;
1052
+ readonly: boolean | null;
1053
+ messages: string | readonly string[];
1054
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1055
+ focused: boolean;
1056
+ errorMessages: string | readonly string[] | null;
1057
+ maxErrors: string | number;
1058
+ density: import('vuetify/lib/composables/density.mjs').Density;
1059
+ centerAffix: boolean;
1060
+ glow: boolean;
1061
+ hideSpinButtons: boolean;
1062
+ persistentHint: boolean;
1063
+ name?: string | undefined;
1064
+ id?: string | undefined;
1065
+ width?: string | number | undefined;
1066
+ color?: string | undefined;
1067
+ maxWidth?: string | number | undefined;
1068
+ minWidth?: string | number | undefined;
1069
+ label?: string | undefined;
1070
+ class?: any;
1071
+ theme?: string | undefined;
1072
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
1073
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1074
+ validationValue?: any;
1075
+ baseColor?: string | undefined;
1076
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1077
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1078
+ iconColor?: string | boolean | undefined;
1079
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
1080
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
1081
+ hint?: string | undefined;
1082
+ hideDetails?: boolean | "auto" | undefined;
1083
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
1084
+ $attrs: {
1085
+ [x: string]: unknown;
1086
+ };
1087
+ $refs: {
1088
+ [x: string]: unknown;
1089
+ };
1090
+ $slots: Readonly<{
1091
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1092
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1093
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1094
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1095
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
1096
+ }>;
1097
+ $root: import('vue').ComponentPublicInstance | null;
1098
+ $parent: import('vue').ComponentPublicInstance | null;
1099
+ $host: Element | null;
1100
+ $emit: (event: string, ...args: any[]) => void;
1101
+ $el: any;
1102
+ $options: import('vue').ComponentOptionsBase<{
1103
+ error: boolean;
1104
+ direction: "horizontal" | "vertical";
1105
+ style: import('vue').StyleValue;
1106
+ disabled: boolean | null;
1107
+ readonly: boolean | null;
1108
+ messages: string | readonly string[];
1109
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1110
+ focused: boolean;
1111
+ errorMessages: string | readonly string[] | null;
1112
+ maxErrors: string | number;
1113
+ density: import('vuetify/lib/composables/density.mjs').Density;
1114
+ centerAffix: boolean;
1115
+ glow: boolean;
1116
+ hideSpinButtons: boolean;
1117
+ persistentHint: boolean;
1118
+ } & {
1119
+ name?: string | undefined;
1120
+ id?: string | undefined;
1121
+ width?: string | number | undefined;
1122
+ color?: string | undefined;
1123
+ maxWidth?: string | number | undefined;
1124
+ minWidth?: string | number | undefined;
1125
+ label?: string | undefined;
1126
+ class?: any;
1127
+ theme?: string | undefined;
1128
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
1129
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1130
+ validationValue?: any;
1131
+ baseColor?: string | undefined;
1132
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1133
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1134
+ iconColor?: string | boolean | undefined;
1135
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
1136
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
1137
+ hint?: string | undefined;
1138
+ hideDetails?: boolean | "auto" | undefined;
1139
+ } & {}, {
1140
+ reset: () => Promise<void>;
1141
+ resetValidation: () => Promise<void>;
1142
+ validate: (silent?: boolean) => Promise<string[]>;
1143
+ isValid: import('vue').ComputedRef<boolean | null>;
1144
+ errorMessages: import('vue').ComputedRef<string[]>;
1145
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1146
+ "update:modelValue": (value: any) => true;
1147
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
1148
+ error: boolean;
1149
+ direction: "horizontal" | "vertical";
1150
+ style: import('vue').StyleValue;
1151
+ disabled: boolean | null;
1152
+ readonly: boolean | null;
1153
+ messages: string | readonly string[];
1154
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1155
+ focused: boolean;
1156
+ errorMessages: string | readonly string[] | null;
1157
+ maxErrors: string | number;
1158
+ density: import('vuetify/lib/composables/density.mjs').Density;
1159
+ centerAffix: boolean;
1160
+ glow: boolean;
1161
+ hideSpinButtons: boolean;
1162
+ persistentHint: boolean;
1163
+ }, {}, string, import('vue').SlotsType<Partial<{
1164
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1165
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1166
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1167
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1168
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
1169
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1170
+ beforeCreate?: (() => void) | (() => void)[];
1171
+ created?: (() => void) | (() => void)[];
1172
+ beforeMount?: (() => void) | (() => void)[];
1173
+ mounted?: (() => void) | (() => void)[];
1174
+ beforeUpdate?: (() => void) | (() => void)[];
1175
+ updated?: (() => void) | (() => void)[];
1176
+ activated?: (() => void) | (() => void)[];
1177
+ deactivated?: (() => void) | (() => void)[];
1178
+ beforeDestroy?: (() => void) | (() => void)[];
1179
+ beforeUnmount?: (() => void) | (() => void)[];
1180
+ destroyed?: (() => void) | (() => void)[];
1181
+ unmounted?: (() => void) | (() => void)[];
1182
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1183
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1184
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1185
+ };
1186
+ $forceUpdate: () => void;
1187
+ $nextTick: typeof import('vue').nextTick;
1188
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1189
+ } & Readonly<{
1190
+ error: boolean;
1191
+ direction: "horizontal" | "vertical";
1192
+ style: import('vue').StyleValue;
1193
+ disabled: boolean | null;
1194
+ readonly: boolean | null;
1195
+ messages: string | readonly string[];
1196
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1197
+ focused: boolean;
1198
+ errorMessages: string | readonly string[] | null;
1199
+ maxErrors: string | number;
1200
+ density: import('vuetify/lib/composables/density.mjs').Density;
1201
+ centerAffix: boolean;
1202
+ glow: boolean;
1203
+ hideSpinButtons: boolean;
1204
+ persistentHint: boolean;
1205
+ }> & Omit<{
1206
+ error: boolean;
1207
+ direction: "horizontal" | "vertical";
1208
+ style: import('vue').StyleValue;
1209
+ disabled: boolean | null;
1210
+ readonly: boolean | null;
1211
+ messages: string | readonly string[];
1212
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1213
+ focused: boolean;
1214
+ errorMessages: string | readonly string[] | null;
1215
+ maxErrors: string | number;
1216
+ density: import('vuetify/lib/composables/density.mjs').Density;
1217
+ centerAffix: boolean;
1218
+ glow: boolean;
1219
+ hideSpinButtons: boolean;
1220
+ persistentHint: boolean;
1221
+ } & {
1222
+ name?: string | undefined;
1223
+ id?: string | undefined;
1224
+ width?: string | number | undefined;
1225
+ color?: string | undefined;
1226
+ maxWidth?: string | number | undefined;
1227
+ minWidth?: string | number | undefined;
1228
+ label?: string | undefined;
1229
+ class?: any;
1230
+ theme?: string | undefined;
1231
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1232
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1233
+ validationValue?: any;
1234
+ baseColor?: string | undefined;
1235
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1236
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1237
+ iconColor?: string | boolean | undefined;
1238
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1239
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1240
+ hint?: string | undefined;
1241
+ hideDetails?: boolean | "auto" | undefined;
1242
+ }, "style" | "disabled" | "density" | "readonly" | "error" | "reset" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
1243
+ reset: () => Promise<void>;
1244
+ resetValidation: () => Promise<void>;
1245
+ validate: (silent?: boolean) => Promise<string[]>;
1246
+ isValid: import('vue').ComputedRef<boolean | null>;
1247
+ errorMessages: import('vue').ComputedRef<string[]>;
1248
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1249
+ modelValue?: unknown;
1250
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1251
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "maxWidth" | "minWidth" | "density" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:prepend" | "v-slot:append" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "centerAffix" | "direction" | "hint" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "hideDetails" | "v-slot:message" | "v-slot:details">, `$${any}`> & {
1252
+ _allExposed: {
1253
+ reset: () => Promise<void>;
1254
+ resetValidation: () => Promise<void>;
1255
+ validate: (silent?: boolean) => Promise<string[]>;
1256
+ isValid: import('vue').ComputedRef<boolean | null>;
1257
+ errorMessages: import('vue').ComputedRef<string[]>;
1258
+ } | {};
1259
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1260
+ 'update:modelValue': (value: any) => true;
1261
+ 'update:focused': (focused: boolean) => true;
1262
+ }, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:input">, string, {
1263
+ error: boolean;
1264
+ direction: "horizontal" | "vertical";
1265
+ style: import('vue').StyleValue;
1266
+ disabled: boolean | null;
1267
+ multiple: boolean | null;
1268
+ readonly: boolean | null;
1269
+ indeterminate: boolean;
1270
+ messages: string | readonly string[];
1271
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1272
+ focused: boolean;
1273
+ errorMessages: string | readonly string[] | null;
1274
+ maxErrors: string | number;
1275
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
1276
+ density: import('vuetify/lib/composables/density.mjs').Density;
1277
+ ripple: boolean | {
1278
+ class?: string;
1279
+ keys?: string[];
1280
+ } | undefined;
1281
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1282
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1283
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1284
+ centerAffix: boolean;
1285
+ glow: boolean;
1286
+ hideSpinButtons: boolean;
1287
+ persistentHint: boolean;
1288
+ }, {}, string, import('vue').SlotsType<Partial<{
1289
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
1290
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1291
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1292
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1293
+ default: (arg: {
1294
+ backgroundColorClasses: import('vue').Ref<string[]>;
1295
+ backgroundColorStyles: import('vue').Ref<import('vue').CSSProperties>;
1296
+ }) => import('vue').VNode[];
1297
+ label: (arg: {
1298
+ label: string | undefined;
1299
+ props: Record<string, unknown>;
1300
+ }) => import('vue').VNode[];
1301
+ input: (arg: import('vuetify/lib/components/VSelectionControl/VSelectionControl.mjs').SelectionControlSlot) => import('vue').VNode[];
1302
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1303
+ beforeCreate?: (() => void) | (() => void)[];
1304
+ created?: (() => void) | (() => void)[];
1305
+ beforeMount?: (() => void) | (() => void)[];
1306
+ mounted?: (() => void) | (() => void)[];
1307
+ beforeUpdate?: (() => void) | (() => void)[];
1308
+ updated?: (() => void) | (() => void)[];
1309
+ activated?: (() => void) | (() => void)[];
1310
+ deactivated?: (() => void) | (() => void)[];
1311
+ beforeDestroy?: (() => void) | (() => void)[];
1312
+ beforeUnmount?: (() => void) | (() => void)[];
1313
+ destroyed?: (() => void) | (() => void)[];
1314
+ unmounted?: (() => void) | (() => void)[];
1315
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1316
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1317
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1318
+ };
1319
+ $forceUpdate: () => void;
1320
+ $nextTick: typeof nextTick;
1321
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1322
+ } & Readonly<{
1323
+ error: boolean;
1324
+ direction: "horizontal" | "vertical";
1325
+ style: import('vue').StyleValue;
1326
+ disabled: boolean | null;
1327
+ multiple: boolean | null;
1328
+ readonly: boolean | null;
1329
+ indeterminate: boolean;
1330
+ messages: string | readonly string[];
1331
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1332
+ focused: boolean;
1333
+ errorMessages: string | readonly string[] | null;
1334
+ maxErrors: string | number;
1335
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
1336
+ density: import('vuetify/lib/composables/density.mjs').Density;
1337
+ ripple: boolean | {
1338
+ class?: string;
1339
+ keys?: string[];
1340
+ } | undefined;
1341
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1342
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1343
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1344
+ centerAffix: boolean;
1345
+ glow: boolean;
1346
+ hideSpinButtons: boolean;
1347
+ persistentHint: boolean;
1348
+ }> & Omit<{
1349
+ error: boolean;
1350
+ direction: "horizontal" | "vertical";
1351
+ style: import('vue').StyleValue;
1352
+ disabled: boolean | null;
1353
+ multiple: boolean | null;
1354
+ readonly: boolean | null;
1355
+ indeterminate: boolean;
1356
+ messages: string | readonly string[];
1357
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1358
+ focused: boolean;
1359
+ errorMessages: string | readonly string[] | null;
1360
+ maxErrors: string | number;
1361
+ valueComparator: typeof import('vuetify/lib/util/helpers.mjs').deepEqual;
1362
+ density: import('vuetify/lib/composables/density.mjs').Density;
1363
+ ripple: boolean | {
1364
+ class?: string;
1365
+ keys?: string[];
1366
+ } | undefined;
1367
+ falseIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1368
+ trueIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1369
+ indeterminateIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1370
+ centerAffix: boolean;
1371
+ glow: boolean;
1372
+ hideSpinButtons: boolean;
1373
+ persistentHint: boolean;
1374
+ } & {
1375
+ name?: string | undefined;
1376
+ type?: string | undefined;
1377
+ id?: string | undefined;
1378
+ width?: string | number | undefined;
1379
+ color?: string | undefined;
1380
+ maxWidth?: string | number | undefined;
1381
+ minWidth?: string | number | undefined;
1382
+ value?: any;
1383
+ label?: string | undefined;
1384
+ class?: any;
1385
+ theme?: string | undefined;
1386
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1387
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1388
+ validationValue?: any;
1389
+ baseColor?: string | undefined;
1390
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1391
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1392
+ iconColor?: string | boolean | undefined;
1393
+ defaultsTarget?: string | undefined;
1394
+ trueValue?: any;
1395
+ falseValue?: any;
1396
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1397
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1398
+ hint?: string | undefined;
1399
+ hideDetails?: boolean | "auto" | undefined;
1400
+ } & {
1401
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1402
+ }, "style" | "disabled" | "density" | "readonly" | "ripple" | "error" | "reset" | "valueComparator" | "multiple" | "_allExposed" | "indeterminate" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "falseIcon" | "trueIcon" | "indeterminateIcon"> & import('vue').ShallowUnwrapRef<Omit<Omit<{
1403
+ $: import('vue').ComponentInternalInstance;
1404
+ $data: {};
1405
+ $props: Partial<{
1406
+ error: boolean;
1407
+ direction: "horizontal" | "vertical";
1408
+ style: import('vue').StyleValue;
1409
+ disabled: boolean | null;
1410
+ readonly: boolean | null;
1411
+ messages: string | readonly string[];
1412
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1413
+ focused: boolean;
1414
+ errorMessages: string | readonly string[] | null;
1415
+ maxErrors: string | number;
1416
+ density: import('vuetify/lib/composables/density.mjs').Density;
1417
+ centerAffix: boolean;
1418
+ glow: boolean;
1419
+ hideSpinButtons: boolean;
1420
+ persistentHint: boolean;
1421
+ }> & Omit<{
1422
+ error: boolean;
1423
+ direction: "horizontal" | "vertical";
1424
+ style: import('vue').StyleValue;
1425
+ disabled: boolean | null;
1426
+ readonly: boolean | null;
1427
+ messages: string | readonly string[];
1428
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1429
+ focused: boolean;
1430
+ errorMessages: string | readonly string[] | null;
1431
+ maxErrors: string | number;
1432
+ density: import('vuetify/lib/composables/density.mjs').Density;
1433
+ centerAffix: boolean;
1434
+ glow: boolean;
1435
+ hideSpinButtons: boolean;
1436
+ persistentHint: boolean;
1437
+ name?: string | undefined;
1438
+ id?: string | undefined;
1439
+ width?: string | number | undefined;
1440
+ color?: string | undefined;
1441
+ maxWidth?: string | number | undefined;
1442
+ minWidth?: string | number | undefined;
1443
+ label?: string | undefined;
1444
+ class?: any;
1445
+ theme?: string | undefined;
1446
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
1447
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1448
+ validationValue?: any;
1449
+ baseColor?: string | undefined;
1450
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1451
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1452
+ iconColor?: string | boolean | undefined;
1453
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
1454
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
1455
+ hint?: string | undefined;
1456
+ hideDetails?: boolean | "auto" | undefined;
1457
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
1458
+ $attrs: {
1459
+ [x: string]: unknown;
1460
+ };
1461
+ $refs: {
1462
+ [x: string]: unknown;
1463
+ };
1464
+ $slots: Readonly<{
1465
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1466
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1467
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1468
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[]) | undefined;
1469
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[]) | undefined;
1470
+ }>;
1471
+ $root: import('vue').ComponentPublicInstance | null;
1472
+ $parent: import('vue').ComponentPublicInstance | null;
1473
+ $host: Element | null;
1474
+ $emit: (event: string, ...args: any[]) => void;
1475
+ $el: any;
1476
+ $options: import('vue').ComponentOptionsBase<{
1477
+ error: boolean;
1478
+ direction: "horizontal" | "vertical";
1479
+ style: import('vue').StyleValue;
1480
+ disabled: boolean | null;
1481
+ readonly: boolean | null;
1482
+ messages: string | readonly string[];
1483
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1484
+ focused: boolean;
1485
+ errorMessages: string | readonly string[] | null;
1486
+ maxErrors: string | number;
1487
+ density: import('vuetify/lib/composables/density.mjs').Density;
1488
+ centerAffix: boolean;
1489
+ glow: boolean;
1490
+ hideSpinButtons: boolean;
1491
+ persistentHint: boolean;
1492
+ } & {
1493
+ name?: string | undefined;
1494
+ id?: string | undefined;
1495
+ width?: string | number | undefined;
1496
+ color?: string | undefined;
1497
+ maxWidth?: string | number | undefined;
1498
+ minWidth?: string | number | undefined;
1499
+ label?: string | undefined;
1500
+ class?: any;
1501
+ theme?: string | undefined;
1502
+ "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
1503
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1504
+ validationValue?: any;
1505
+ baseColor?: string | undefined;
1506
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1507
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1508
+ iconColor?: string | boolean | undefined;
1509
+ "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
1510
+ "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
1511
+ hint?: string | undefined;
1512
+ hideDetails?: boolean | "auto" | undefined;
1513
+ } & {}, {
1514
+ reset: () => Promise<void>;
1515
+ resetValidation: () => Promise<void>;
1516
+ validate: (silent?: boolean) => Promise<string[]>;
1517
+ isValid: import('vue').ComputedRef<boolean | null>;
1518
+ errorMessages: import('vue').ComputedRef<string[]>;
1519
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1520
+ "update:modelValue": (value: any) => true;
1521
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
1522
+ error: boolean;
1523
+ direction: "horizontal" | "vertical";
1524
+ style: import('vue').StyleValue;
1525
+ disabled: boolean | null;
1526
+ readonly: boolean | null;
1527
+ messages: string | readonly string[];
1528
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1529
+ focused: boolean;
1530
+ errorMessages: string | readonly string[] | null;
1531
+ maxErrors: string | number;
1532
+ density: import('vuetify/lib/composables/density.mjs').Density;
1533
+ centerAffix: boolean;
1534
+ glow: boolean;
1535
+ hideSpinButtons: boolean;
1536
+ persistentHint: boolean;
1537
+ }, {}, string, import('vue').SlotsType<Partial<{
1538
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1539
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1540
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1541
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode[];
1542
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode[];
1543
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1544
+ beforeCreate?: (() => void) | (() => void)[];
1545
+ created?: (() => void) | (() => void)[];
1546
+ beforeMount?: (() => void) | (() => void)[];
1547
+ mounted?: (() => void) | (() => void)[];
1548
+ beforeUpdate?: (() => void) | (() => void)[];
1549
+ updated?: (() => void) | (() => void)[];
1550
+ activated?: (() => void) | (() => void)[];
1551
+ deactivated?: (() => void) | (() => void)[];
1552
+ beforeDestroy?: (() => void) | (() => void)[];
1553
+ beforeUnmount?: (() => void) | (() => void)[];
1554
+ destroyed?: (() => void) | (() => void)[];
1555
+ unmounted?: (() => void) | (() => void)[];
1556
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1557
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1558
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1559
+ };
1560
+ $forceUpdate: () => void;
1561
+ $nextTick: typeof import('vue').nextTick;
1562
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1563
+ } & Readonly<{
1564
+ error: boolean;
1565
+ direction: "horizontal" | "vertical";
1566
+ style: import('vue').StyleValue;
1567
+ disabled: boolean | null;
1568
+ readonly: boolean | null;
1569
+ messages: string | readonly string[];
1570
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1571
+ focused: boolean;
1572
+ errorMessages: string | readonly string[] | null;
1573
+ maxErrors: string | number;
1574
+ density: import('vuetify/lib/composables/density.mjs').Density;
1575
+ centerAffix: boolean;
1576
+ glow: boolean;
1577
+ hideSpinButtons: boolean;
1578
+ persistentHint: boolean;
1579
+ }> & Omit<{
1580
+ error: boolean;
1581
+ direction: "horizontal" | "vertical";
1582
+ style: import('vue').StyleValue;
1583
+ disabled: boolean | null;
1584
+ readonly: boolean | null;
1585
+ messages: string | readonly string[];
1586
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
1587
+ focused: boolean;
1588
+ errorMessages: string | readonly string[] | null;
1589
+ maxErrors: string | number;
1590
+ density: import('vuetify/lib/composables/density.mjs').Density;
1591
+ centerAffix: boolean;
1592
+ glow: boolean;
1593
+ hideSpinButtons: boolean;
1594
+ persistentHint: boolean;
1595
+ } & {
1596
+ name?: string | undefined;
1597
+ id?: string | undefined;
1598
+ width?: string | number | undefined;
1599
+ color?: string | undefined;
1600
+ maxWidth?: string | number | undefined;
1601
+ minWidth?: string | number | undefined;
1602
+ label?: string | undefined;
1603
+ class?: any;
1604
+ theme?: string | undefined;
1605
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1606
+ validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
1607
+ validationValue?: any;
1608
+ baseColor?: string | undefined;
1609
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1610
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1611
+ iconColor?: string | boolean | undefined;
1612
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1613
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1614
+ hint?: string | undefined;
1615
+ hideDetails?: boolean | "auto" | undefined;
1616
+ }, "style" | "disabled" | "density" | "readonly" | "error" | "reset" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
1617
+ reset: () => Promise<void>;
1618
+ resetValidation: () => Promise<void>;
1619
+ validate: (silent?: boolean) => Promise<string[]>;
1620
+ isValid: import('vue').ComputedRef<boolean | null>;
1621
+ errorMessages: import('vue').ComputedRef<string[]>;
1622
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1623
+ modelValue?: unknown;
1624
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1625
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "maxWidth" | "minWidth" | "density" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:prepend" | "v-slot:append" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "centerAffix" | "direction" | "hint" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "hideDetails" | "v-slot:message" | "v-slot:details">, `$${any}`> & {
1626
+ _allExposed: {
1627
+ reset: () => Promise<void>;
1628
+ resetValidation: () => Promise<void>;
1629
+ validate: (silent?: boolean) => Promise<string[]>;
1630
+ isValid: import('vue').ComputedRef<boolean | null>;
1631
+ errorMessages: import('vue').ComputedRef<string[]>;
1632
+ } | {};
1633
+ }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1634
+ modelValue?: boolean | null | undefined;
1635
+ "onUpdate:modelValue"?: ((value: boolean | null) => void) | undefined;
1636
+ }, import('vuetify/lib/components/VCheckbox/VCheckbox.mjs').VCheckboxSlots>) | null;
1637
+ }, HTMLDivElement>;
95
1638
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
96
1639
  export default _default;
97
1640
  type __VLS_WithTemplateSlots<T, S> = T & {