@cnamts/synapse 1.0.0 → 1.0.2

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 (533) hide show
  1. package/README.md +1 -1
  2. package/dist/DateFilter-YWOTbfeL.js +98 -0
  3. package/dist/NumberFilter-DMmMgALM.js +121 -0
  4. package/dist/PeriodFilter-Bok5BHcn.js +112 -0
  5. package/dist/SelectFilter-BKud2WhN.js +136 -0
  6. package/dist/TextFilter-DvMf2thH.js +114 -0
  7. package/dist/{components/BackBtn → common}/constants/ExpertiseLevelEnum.d.ts +3 -0
  8. package/dist/components/Accordion/Accordion.d.ts +2 -1
  9. package/dist/components/Accordion/composables/useAccordionGroupCommunication.d.ts +5 -0
  10. package/dist/components/Accordion/composables/useAccordionKeyboardNavigation.d.ts +12 -0
  11. package/dist/components/Accordion/composables/useAccordionState.d.ts +13 -0
  12. package/dist/components/BackBtn/AccessibiliteItems.d.ts +1 -1
  13. package/dist/components/BackToTopBtn/AccessibiliteItems.d.ts +1 -1
  14. package/dist/components/ChipList/AccessibiliteItems.d.ts +1 -1
  15. package/dist/components/CollapsibleList/AccessibiliteItems.d.ts +1 -1
  16. package/dist/components/ContextualMenu/AccessibiliteItems.d.ts +1 -1
  17. package/dist/components/CookieBanner/AccessibiliteItems.d.ts +1 -1
  18. package/dist/components/CopyBtn/AccessibiliteItems.d.ts +1 -1
  19. package/dist/components/Customs/SyBtnSelect/AccessibiliteItems.d.ts +1 -1
  20. package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +85 -0
  21. package/dist/components/Customs/SyInputSelect/AccessibiliteItems.d.ts +1 -1
  22. package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
  23. package/dist/components/Customs/SySelect/AccessibiliteItems.d.ts +1 -1
  24. package/dist/components/Customs/SySelect/SySelect.d.ts +33 -13
  25. package/dist/components/Customs/SyTextField/AccessibiliteItems.d.ts +1 -1
  26. package/dist/components/Customs/SyTextField/SyTextField.d.ts +2 -2
  27. package/dist/components/DataList/AccessibiliteItems.d.ts +1 -1
  28. package/dist/components/DataListGroup/AccessibiliteItems.d.ts +1 -1
  29. package/dist/components/DatePicker/AccessibiliteItems.d.ts +1 -1
  30. package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +4295 -0
  31. package/dist/components/DatePicker/{DatePicker.d.ts → DatePicker/DatePicker.d.ts} +158 -104
  32. package/dist/components/DatePicker/{DateTextInput.d.ts → DateTextInput/DateTextInput.d.ts} +35 -27
  33. package/dist/components/DatePicker/composables/index.d.ts +17 -0
  34. package/dist/components/DatePicker/composables/useAsteriskDisplay.d.ts +14 -0
  35. package/dist/components/DatePicker/composables/useDateAutoClamp.d.ts +16 -0
  36. package/dist/components/DatePicker/composables/useDateFormatValidation.d.ts +25 -0
  37. package/dist/components/DatePicker/composables/useDateInputEditing.d.ts +33 -0
  38. package/dist/components/DatePicker/composables/useDatePickerViewMode.d.ts +16 -0
  39. package/dist/components/DatePicker/composables/useDatePickerVisibility.d.ts +27 -0
  40. package/dist/components/DatePicker/composables/useDateRangeInput.d.ts +29 -0
  41. package/dist/components/DatePicker/composables/useDateRangeValidation.d.ts +11 -0
  42. package/dist/components/DatePicker/composables/useDateSelection.d.ts +10 -0
  43. package/dist/components/DatePicker/composables/useDateValidation.d.ts +35 -0
  44. package/dist/components/DatePicker/composables/useDisplayedDateString.d.ts +19 -0
  45. package/dist/components/DatePicker/composables/useIconState.d.ts +17 -0
  46. package/dist/components/DatePicker/composables/useInputBlurHandler.d.ts +31 -0
  47. package/dist/components/DatePicker/composables/useInputHandler.d.ts +32 -0
  48. package/dist/components/DatePicker/composables/useManualDateValidation.d.ts +33 -0
  49. package/dist/components/DatePicker/composables/useMonthButtonCustomization.d.ts +12 -0
  50. package/dist/components/DatePicker/composables/useTodayButton.d.ts +16 -0
  51. package/dist/components/DatePicker/composables/useWeekendDays.d.ts +11 -0
  52. package/dist/components/DatePicker/constants/messages.d.ts +29 -0
  53. package/dist/components/DatePicker/types.d.ts +13 -0
  54. package/dist/components/DialogBox/AccessibiliteItems.d.ts +1 -1
  55. package/dist/components/DownloadBtn/AccessibiliteItems.d.ts +1 -1
  56. package/dist/components/ErrorPage/AccessibiliteItems.d.ts +1 -1
  57. package/dist/components/ExternalLinks/AccessibiliteItems.d.ts +1 -1
  58. package/dist/components/FileList/AccessibiliteItems.d.ts +1 -1
  59. package/dist/components/FilePreview/AccessibiliteItems.d.ts +1 -1
  60. package/dist/components/FileUpload/AccessibiliteItems.d.ts +1 -1
  61. package/dist/components/FilterInline/AccessibiliteItems.d.ts +1 -1
  62. package/dist/components/FilterSideBar/AccessibiliteItems.d.ts +1 -1
  63. package/dist/components/FilterSideBar/FilterSideBar.d.ts +395 -1
  64. package/dist/components/FooterBar/AccessibiliteItems.d.ts +1 -1
  65. package/dist/components/FranceConnectBtn/AccessibiliteItems.d.ts +1 -1
  66. package/dist/components/HeaderBar/AccessibiliteItems.d.ts +1 -1
  67. package/dist/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +1 -1
  68. package/dist/components/HeaderLoading/AccessibiliteItems.d.ts +1 -1
  69. package/dist/components/HeaderToolbar/AccessibiliteItems.d.ts +1 -1
  70. package/dist/components/LangBtn/AccessibiliteItems.d.ts +1 -1
  71. package/dist/components/Logo/AccessibiliteItems.d.ts +1 -1
  72. package/dist/components/LogoBrandSection/AccessibiliteItems.d.ts +1 -1
  73. package/dist/components/MaintenancePage/AccessibiliteItems.d.ts +1 -1
  74. package/dist/components/NirField/AccessibiliteItems.d.ts +1 -1
  75. package/dist/components/NirField/NirField.d.ts +7 -3
  76. package/dist/components/NirField/nirValidation.d.ts +1 -1
  77. package/dist/components/NotFoundPage/AccessibiliteItems.d.ts +1 -1
  78. package/dist/components/NotificationBar/AccessibiliteItems.d.ts +1 -1
  79. package/dist/components/PageContainer/AccessibiliteItems.d.ts +1 -1
  80. package/dist/components/PaginatedTable/AccessibiliteItems.d.ts +1 -1
  81. package/dist/components/PasswordField/AccessibiliteItems.d.ts +1 -1
  82. package/dist/components/PasswordField/PasswordField.d.ts +2 -0
  83. package/dist/components/PeriodField/AccessibiliteItems.d.ts +1 -1
  84. package/dist/components/PeriodField/PeriodField.d.ts +219 -41
  85. package/dist/components/PhoneField/AccessibiliteItems.d.ts +1 -1
  86. package/dist/components/PhoneField/PhoneField.d.ts +2 -2
  87. package/dist/components/RangeField/AccessibiliteItems.d.ts +1 -1
  88. package/dist/components/RangeField/RangeField.d.ts +2 -0
  89. package/dist/components/RatingPicker/AccessibiliteItems.d.ts +1 -1
  90. package/dist/components/SearchListField/AccessibiliteItems.d.ts +1 -1
  91. package/dist/components/SearchListField/SearchListField.d.ts +9 -0
  92. package/dist/components/SelectBtnField/AccessibiliteItems.d.ts +1 -1
  93. package/dist/components/SkipLink/AccessibiliteItems.d.ts +1 -1
  94. package/dist/components/SocialMediaLinks/AccessibiliteItems.d.ts +1 -1
  95. package/dist/components/SubHeader/AccessibiliteItems.d.ts +1 -1
  96. package/dist/components/SyAlert/AccessibiliteItems.d.ts +1 -1
  97. package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
  98. package/dist/components/TableToolbar/AccessibiliteItems.d.ts +1 -1
  99. package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +652 -0
  100. package/dist/components/Tables/SyTable/SyTable.d.ts +671 -0
  101. package/dist/components/Tables/common/SyTableFilter.d.ts +126 -0
  102. package/dist/components/Tables/common/SyTablePagination.d.ts +1636 -0
  103. package/dist/components/Tables/common/TableHeader.d.ts +15 -0
  104. package/dist/components/Tables/common/constants/StateEnum.d.ts +6 -0
  105. package/dist/components/Tables/common/filters/DateFilter.d.ts +121 -0
  106. package/dist/components/Tables/common/filters/NumberFilter.d.ts +132 -0
  107. package/dist/components/Tables/common/filters/PeriodFilter.d.ts +135 -0
  108. package/dist/components/Tables/common/filters/SelectFilter.d.ts +120 -0
  109. package/dist/components/Tables/common/filters/TextFilter.d.ts +132 -0
  110. package/dist/components/Tables/common/filters/getFilterComponent.d.ts +1 -0
  111. package/dist/components/Tables/common/filters/locales.d.ts +4 -0
  112. package/dist/components/Tables/common/filters/logics/date.d.ts +1 -0
  113. package/dist/components/Tables/common/filters/logics/number.d.ts +1 -0
  114. package/dist/components/Tables/common/filters/logics/period.d.ts +1 -0
  115. package/dist/components/Tables/common/filters/logics/select.d.ts +1 -0
  116. package/dist/components/Tables/common/filters/logics/text.d.ts +1 -0
  117. package/dist/components/Tables/common/formatters.d.ts +17 -0
  118. package/dist/components/Tables/common/locales.d.ts +28 -0
  119. package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +267 -0
  120. package/dist/components/Tables/common/organizeColumns/sortHeaders.d.ts +2 -0
  121. package/dist/components/Tables/common/tableAccessibilityUtils.d.ts +8 -0
  122. package/dist/components/Tables/common/tableFilterUtils.d.ts +3 -0
  123. package/dist/components/Tables/common/tableStorageUtils.d.ts +69 -0
  124. package/dist/components/Tables/common/tableUtils.d.ts +79 -0
  125. package/dist/components/Tables/common/types.d.ts +91 -0
  126. package/dist/components/Tables/common/usePagination.d.ts +22 -0
  127. package/dist/components/Tables/common/useTableCheckbox.d.ts +20 -0
  128. package/dist/components/Tables/common/useTableFilter.d.ts +9 -0
  129. package/dist/components/Tables/common/useTableHeaders.d.ts +76 -0
  130. package/dist/components/Tables/common/useTableItems.d.ts +24 -0
  131. package/dist/components/Tables/common/useTableOptions.d.ts +18 -0
  132. package/dist/components/Tables/index.d.ts +2 -0
  133. package/dist/components/ToolbarContainer/ToolbarContainer.d.ts +11 -0
  134. package/dist/components/UploadWorkflow/AccessibiliteItems.d.ts +1 -1
  135. package/dist/components/UserMenuBtn/AccessibiliteItems.d.ts +1 -1
  136. package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +9 -2
  137. package/dist/components/index.d.ts +9 -5
  138. package/dist/design-system-v3.js +102 -11944
  139. package/dist/design-system-v3.umd.cjs +22 -4
  140. package/dist/designTokens/index.d.ts +3 -1
  141. package/dist/designTokens/tokens/cnam/cnamFonts.d.ts +140 -0
  142. package/dist/designTokens/tokens/pa/paFonts.d.ts +140 -0
  143. package/dist/designTokens/utils/createFontVariables.d.ts +39 -0
  144. package/dist/designTokens/utils/index.d.ts +2 -1
  145. package/dist/main-Cx8qG7YR.js +16344 -0
  146. package/dist/stories/Accessibilite/Vuetify/VuetifyItems.d.ts +14 -2
  147. package/dist/stories/DesignTokens/StylesTypographiques.stories.new.d.ts +8 -0
  148. package/dist/stories/DesignTokens/TypographyDisplay.d.ts +28 -0
  149. package/dist/stories/DesignTokens/vue-shims.d.ts +6 -0
  150. package/dist/style.css +1 -1
  151. package/dist/utils/rules/isRequired/index.d.ts +1 -1
  152. package/dist/vite-env.d.ts +12 -0
  153. package/package.json +3 -3
  154. package/src/assets/_spacers.scss +37 -1
  155. package/src/assets/_typography.scss +158 -0
  156. package/src/assets/settings.scss +7 -0
  157. package/src/common/constants/ExpertiseLevelEnum.ts +7 -0
  158. package/src/common/imgs/accessibility-svgrepo-com.svg +4 -0
  159. package/src/components/Accordion/Accessibilite/AccessibilityGuide.mdx +249 -0
  160. package/src/components/Accordion/Accordion.vue +48 -76
  161. package/src/components/Accordion/composables/__tests__/useAccordionGroupCommunication.spec.ts +146 -0
  162. package/src/components/Accordion/composables/__tests__/useAccordionKeyboardNavigation.spec.ts +209 -0
  163. package/src/components/Accordion/composables/__tests__/useAccordionState.spec.ts +144 -0
  164. package/src/components/Accordion/composables/useAccordionGroupCommunication.ts +52 -0
  165. package/src/components/Accordion/composables/useAccordionKeyboardNavigation.ts +111 -0
  166. package/src/components/Accordion/composables/useAccordionState.ts +59 -0
  167. package/src/components/Accordion/tests/__snapshots__/accordion.spec.ts.snap +3 -0
  168. package/src/components/BackBtn/AccessibiliteItems.ts +1 -1
  169. package/src/components/BackToTopBtn/AccessibiliteItems.ts +1 -1
  170. package/src/components/ChipList/AccessibiliteItems.ts +1 -1
  171. package/src/components/CollapsibleList/AccessibiliteItems.ts +1 -1
  172. package/src/components/ContextualMenu/AccessibiliteItems.ts +1 -1
  173. package/src/components/CookieBanner/AccessibiliteItems.ts +1 -1
  174. package/src/components/CopyBtn/AccessibiliteItems.ts +1 -1
  175. package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +1 -1
  176. package/src/components/Customs/SyCheckbox/Accessibilite.mdx +303 -0
  177. package/src/components/Customs/SyCheckbox/SyCheckbox.mdx +50 -0
  178. package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +630 -0
  179. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +326 -0
  180. package/src/components/Customs/SyCheckbox/tests/SyCheckbox.spec.ts +201 -0
  181. package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +1 -1
  182. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +1 -0
  183. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +8 -1
  184. package/src/components/Customs/SySelect/AccessibiliteItems.ts +1 -1
  185. package/src/components/Customs/SySelect/SySelect.stories.ts +160 -0
  186. package/src/components/Customs/SySelect/SySelect.vue +292 -39
  187. package/src/components/Customs/SySelect/tests/SySelect.spec.ts +234 -2
  188. package/src/components/Customs/SyTextField/AccessibiliteItems.ts +1 -1
  189. package/src/components/Customs/SyTextField/SyTextField.stories.ts +3 -2
  190. package/src/components/Customs/SyTextField/SyTextField.vue +19 -8
  191. package/src/components/DataList/AccessibiliteItems.ts +1 -1
  192. package/src/components/DataListGroup/AccessibiliteItems.ts +1 -1
  193. package/src/components/DatePicker/AccessibiliteItems.ts +1 -1
  194. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.mdx +212 -0
  195. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +1307 -0
  196. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +769 -204
  197. package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.events.spec.ts +161 -0
  198. package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +943 -0
  199. package/src/components/DatePicker/DatePicker/DatePicker.mdx +176 -0
  200. package/src/components/DatePicker/{DatePicker.stories.ts → DatePicker/DatePicker.stories.ts} +356 -519
  201. package/src/components/DatePicker/{DatePicker.vue → DatePicker/DatePicker.vue} +435 -89
  202. package/src/components/DatePicker/DatePicker/tests/DatePicker.events.spec.ts +189 -0
  203. package/src/components/DatePicker/{tests → DatePicker/tests}/DatePicker.spec.ts +0 -14
  204. package/src/components/DatePicker/DatePickerOverview.mdx +227 -0
  205. package/src/components/DatePicker/{DatePickerValidation.mdx → DatePickerValidationExample/DatePickerValidation.mdx} +3 -3
  206. package/src/components/DatePicker/{DatePickerValidation.stories.ts → DatePickerValidationExample/DatePickerValidation.stories.ts} +2 -2
  207. package/src/components/DatePicker/DateTextInput/DateRange.stories.ts +320 -0
  208. package/src/components/DatePicker/DateTextInput/DateTextInput.events.spec.ts +148 -0
  209. package/src/components/DatePicker/DateTextInput/DateTextInput.range.spec.ts +278 -0
  210. package/src/components/DatePicker/{tests → DateTextInput}/DateTextInput.spec.ts +10 -7
  211. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +1111 -0
  212. package/src/components/DatePicker/DateTextInput/NoCalendar.mdx +64 -0
  213. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +782 -0
  214. package/src/components/DatePicker/composables/index.ts +24 -0
  215. package/src/components/DatePicker/composables/tests/useDateAutoClamp.spec.ts +190 -0
  216. package/src/components/DatePicker/composables/tests/useDateFormatValidation.spec.ts +165 -0
  217. package/src/components/DatePicker/composables/tests/useDateInputEditing.spec.ts +359 -0
  218. package/src/components/DatePicker/composables/tests/useDatePickerViewMode.spec.ts +160 -0
  219. package/src/components/DatePicker/composables/tests/useDatePickerVisibility.spec.ts +339 -0
  220. package/src/components/DatePicker/composables/tests/useDateRangeInput.spec.ts +277 -0
  221. package/src/components/DatePicker/composables/tests/useDateRangeValidation.spec.ts +107 -0
  222. package/src/components/DatePicker/composables/tests/useDateSelection.spec.ts +171 -0
  223. package/src/components/DatePicker/composables/tests/useDateValidation.spec.ts +245 -0
  224. package/src/components/DatePicker/composables/tests/useDisplayedDateString.spec.ts +98 -0
  225. package/src/components/DatePicker/composables/tests/useIconState.spec.ts +130 -0
  226. package/src/components/DatePicker/composables/tests/useInputBlurHandler.spec.ts +456 -0
  227. package/src/components/DatePicker/composables/tests/useManualDateValidation.spec.ts +233 -0
  228. package/src/components/DatePicker/composables/tests/useMonthButtonCustomization.spec.ts +125 -0
  229. package/src/components/DatePicker/composables/tests/useTodayButton.spec.ts +97 -0
  230. package/src/components/DatePicker/composables/tests/useWeekendDays.spec.ts +28 -0
  231. package/src/components/DatePicker/composables/useAsteriskDisplay.ts +31 -0
  232. package/src/components/DatePicker/composables/useDateAutoClamp.ts +136 -0
  233. package/src/components/DatePicker/composables/useDateFormatValidation.ts +95 -0
  234. package/src/components/DatePicker/composables/useDateInputEditing.ts +326 -0
  235. package/src/components/DatePicker/composables/useDatePickerViewMode.ts +61 -0
  236. package/src/components/DatePicker/composables/useDatePickerVisibility.ts +146 -0
  237. package/src/components/DatePicker/composables/useDateRangeInput.ts +378 -0
  238. package/src/components/DatePicker/composables/useDateRangeValidation.ts +48 -0
  239. package/src/components/DatePicker/composables/useDateSelection.ts +121 -0
  240. package/src/components/DatePicker/composables/useDateValidation.ts +225 -0
  241. package/src/components/DatePicker/composables/useDisplayedDateString.ts +70 -0
  242. package/src/components/DatePicker/composables/useIconState.ts +53 -0
  243. package/src/components/DatePicker/composables/useInputBlurHandler.ts +165 -0
  244. package/src/components/DatePicker/composables/useInputHandler.ts +436 -0
  245. package/src/components/DatePicker/composables/useManualDateValidation.ts +161 -0
  246. package/src/components/DatePicker/composables/useMonthButtonCustomization.ts +187 -0
  247. package/src/components/DatePicker/composables/useTodayButton.ts +43 -0
  248. package/src/components/DatePicker/composables/useWeekendDays.ts +21 -0
  249. package/src/components/DatePicker/constants/messages.ts +50 -0
  250. package/src/components/DatePicker/docExamples/DatePickerBidirectionalValidation.vue +4 -4
  251. package/src/components/DatePicker/docExamples/DatePickerValidationExamples.vue +1 -1
  252. package/src/components/DatePicker/playground/ComplexDatePickerPlayground.vue +172 -0
  253. package/src/components/DatePicker/types.ts +15 -0
  254. package/src/components/DiacriticPicker/DiacriticPicker.stories.ts +10 -0
  255. package/src/components/DialogBox/AccessibiliteItems.ts +1 -1
  256. package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -1
  257. package/src/components/ErrorPage/Accessibilite.stories.ts +8 -0
  258. package/src/components/ErrorPage/AccessibiliteItems.ts +1 -1
  259. package/src/components/ErrorPage/ErrorPage.vue +12 -6
  260. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
  261. package/src/components/ExternalLinks/AccessibiliteItems.ts +1 -1
  262. package/src/components/FileList/AccessibiliteItems.ts +1 -1
  263. package/src/components/FilePreview/AccessibiliteItems.ts +1 -1
  264. package/src/components/FileUpload/AccessibiliteItems.ts +1 -1
  265. package/src/components/FilterInline/AccessibiliteItems.ts +1 -1
  266. package/src/components/FilterSideBar/AccessibiliteItems.ts +1 -1
  267. package/src/components/FilterSideBar/FilterSideBar.vue +108 -90
  268. package/src/components/FilterSideBar/tests/FilterSideBar.spec.ts +27 -0
  269. package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +114 -109
  270. package/src/components/FooterBar/AccessibiliteItems.ts +1 -1
  271. package/src/components/FooterBar/FooterBar.vue +2 -1
  272. package/src/components/FranceConnectBtn/AccessibiliteItems.ts +1 -1
  273. package/src/components/HeaderBar/AccessibiliteItems.ts +1 -1
  274. package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +1 -1
  275. package/src/components/HeaderLoading/AccessibiliteItems.ts +1 -1
  276. package/src/components/HeaderToolbar/AccessibiliteItems.ts +1 -1
  277. package/src/components/LangBtn/AccessibiliteItems.ts +1 -1
  278. package/src/components/Logo/Accessibilite.stories.ts +4 -0
  279. package/src/components/Logo/AccessibiliteItems.ts +1 -1
  280. package/src/components/LogoBrandSection/AccessibiliteItems.ts +1 -1
  281. package/src/components/MaintenancePage/AccessibiliteItems.ts +1 -1
  282. package/src/components/NirField/AccessibiliteItems.ts +1 -1
  283. package/src/components/NirField/NirField.mdx +22 -9
  284. package/src/components/NirField/NirField.stories.ts +26 -2
  285. package/src/components/NirField/NirField.vue +209 -22
  286. package/src/components/NirField/nirValidation.ts +17 -3
  287. package/src/components/NirField/tests/NirField.spec.ts +2 -2
  288. package/src/components/NotFoundPage/Accessibilite.stories.ts +8 -0
  289. package/src/components/NotFoundPage/AccessibiliteItems.ts +1 -1
  290. package/src/components/NotFoundPage/NotFoundPage.vue +2 -1
  291. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +8 -6
  292. package/src/components/NotificationBar/AccessibiliteItems.ts +1 -1
  293. package/src/components/PageContainer/AccessibiliteItems.ts +1 -1
  294. package/src/components/PaginatedTable/AccessibiliteItems.ts +1 -1
  295. package/src/components/PaginatedTable/PaginatedTable.mdx +2 -0
  296. package/src/components/PaginatedTable/PaginatedTable.stories.ts +19 -0
  297. package/src/components/PaginatedTable/PaginatedTable.vue +51 -13
  298. package/src/components/PaginatedTable/tests/PaginatedTable.spec.ts +0 -2
  299. package/src/components/PasswordField/AccessibiliteItems.ts +1 -1
  300. package/src/components/PasswordField/PasswordField.stories.ts +4 -0
  301. package/src/components/PasswordField/PasswordField.vue +3 -0
  302. package/src/components/PeriodField/AccessibiliteItems.ts +1 -1
  303. package/src/components/PeriodField/PeriodField.vue +15 -1
  304. package/src/components/PhoneField/AccessibiliteItems.ts +1 -1
  305. package/src/components/PhoneField/PhoneField.stories.ts +15 -15
  306. package/src/components/PhoneField/PhoneField.vue +1 -1
  307. package/src/components/RangeField/AccessibiliteItems.ts +1 -1
  308. package/src/components/RangeField/RangeField.stories.ts +9 -0
  309. package/src/components/RangeField/RangeField.vue +4 -0
  310. package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +12 -0
  311. package/src/components/RatingPicker/AccessibiliteItems.ts +1 -1
  312. package/src/components/SearchListField/AccessibiliteItems.ts +1 -1
  313. package/src/components/SearchListField/SearchListField.vue +5 -0
  314. package/src/components/SelectBtnField/AccessibiliteItems.ts +1 -1
  315. package/src/components/SkipLink/AccessibiliteItems.ts +1 -1
  316. package/src/components/SocialMediaLinks/AccessibiliteItems.ts +1 -1
  317. package/src/components/SubHeader/AccessibiliteItems.ts +1 -1
  318. package/src/components/SyAlert/AccessibiliteItems.ts +1 -1
  319. package/src/components/SyTextArea/SyTextArea.vue +3 -0
  320. package/src/components/SyTextArea/tests/SyTextArea.spec.ts +0 -1
  321. package/src/components/TableToolbar/AccessibiliteItems.ts +1 -1
  322. package/src/components/TableToolbar/TableToolbar.stories.ts +110 -56
  323. package/src/components/Tables/SyServerTable/FilterRules.stories.ts +700 -0
  324. package/src/components/Tables/SyServerTable/SyServerTable.mdx +170 -0
  325. package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +4354 -0
  326. package/src/components/Tables/SyServerTable/SyServerTable.vue +391 -0
  327. package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +702 -0
  328. package/src/components/Tables/SyTable/FilterRules.stories.ts +418 -0
  329. package/src/components/Tables/SyTable/SyTable.mdx +139 -0
  330. package/src/components/Tables/SyTable/SyTable.stories.ts +2754 -0
  331. package/src/components/Tables/SyTable/SyTable.vue +397 -0
  332. package/src/components/Tables/SyTable/tests/SyTable.spec.ts +707 -0
  333. package/src/components/Tables/common/SyTableFilter.vue +289 -0
  334. package/src/components/Tables/common/SyTablePagination.vue +375 -0
  335. package/src/components/Tables/common/TableHeader.vue +205 -0
  336. package/src/components/Tables/common/constants/StateEnum.ts +6 -0
  337. package/src/components/Tables/common/filters/DateFilter.vue +140 -0
  338. package/src/components/Tables/common/filters/NumberFilter.vue +234 -0
  339. package/src/components/Tables/common/filters/PeriodFilter.vue +147 -0
  340. package/src/components/Tables/common/filters/SelectFilter.vue +235 -0
  341. package/src/components/Tables/common/filters/TextFilter.vue +191 -0
  342. package/src/components/Tables/common/filters/getFilterComponent.ts +54 -0
  343. package/src/components/Tables/common/filters/locales.ts +4 -0
  344. package/src/components/Tables/common/filters/logics/date.ts +12 -0
  345. package/src/components/Tables/common/filters/logics/number.ts +48 -0
  346. package/src/components/Tables/common/filters/logics/period.ts +25 -0
  347. package/src/components/Tables/common/filters/logics/select.ts +27 -0
  348. package/src/components/Tables/common/filters/logics/tests/TextFilterLogic.spec.ts +177 -0
  349. package/src/components/Tables/common/filters/logics/text.ts +62 -0
  350. package/src/components/Tables/common/filters/tests/DateFilter.spec.ts +187 -0
  351. package/src/components/Tables/common/filters/tests/NumberFilter.spec.ts +280 -0
  352. package/src/components/Tables/common/filters/tests/PeriodFilter.spec.ts +192 -0
  353. package/src/components/Tables/common/filters/tests/SelectFilter.spec.ts +219 -0
  354. package/src/components/Tables/common/filters/tests/TextFilter.spec.ts +260 -0
  355. package/src/components/Tables/common/formatters.ts +72 -0
  356. package/src/components/Tables/common/locales.ts +31 -0
  357. package/src/components/Tables/common/organizeColumns/OrganizeColumns.vue +269 -0
  358. package/src/components/Tables/common/organizeColumns/sortHeaders.ts +9 -0
  359. package/src/components/Tables/common/tableAccessibilityUtils.ts +61 -0
  360. package/src/components/Tables/common/tableFilterUtils.ts +75 -0
  361. package/src/components/Tables/common/tableStorageUtils.ts +127 -0
  362. package/src/components/Tables/common/tableStyles.scss +80 -0
  363. package/src/components/Tables/common/tableUtils.ts +102 -0
  364. package/src/components/Tables/common/tests/SyTableFilter.spec.ts +312 -0
  365. package/src/components/Tables/common/tests/SyTablePagination.spec.ts +170 -0
  366. package/src/components/Tables/common/tests/filterByRange.spec.ts +215 -0
  367. package/src/components/Tables/common/tests/resize.spec.ts +161 -0
  368. package/src/components/Tables/common/tests/tableFilterUtils.spec.ts +92 -0
  369. package/src/components/Tables/common/tests/tableUtils.spec.ts +228 -0
  370. package/src/components/Tables/common/types.ts +92 -0
  371. package/src/components/Tables/common/usePagination.ts +83 -0
  372. package/src/components/Tables/common/useTableCheckbox.ts +58 -0
  373. package/src/components/Tables/common/useTableFilter.ts +19 -0
  374. package/src/components/Tables/common/useTableHeaders.ts +88 -0
  375. package/src/components/Tables/common/useTableItems.ts +87 -0
  376. package/src/components/Tables/common/useTableOptions.ts +93 -0
  377. package/src/components/Tables/index.ts +3 -0
  378. package/src/components/ToolbarContainer/ToolbarContainer.mdx +16 -0
  379. package/src/components/ToolbarContainer/ToolbarContainer.stories.ts +675 -0
  380. package/src/components/ToolbarContainer/ToolbarContainer.vue +128 -0
  381. package/src/components/ToolbarContainer/tests/ToolbarContainer.spec.ts +156 -0
  382. package/src/components/UploadWorkflow/AccessibiliteItems.ts +1 -1
  383. package/src/components/UserMenuBtn/AccessibiliteItems.ts +1 -1
  384. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +74 -0
  385. package/src/components/UserMenuBtn/UserMenuBtn.vue +19 -17
  386. package/src/components/index.ts +9 -5
  387. package/src/composables/date/useDateFormatDayjs.ts +8 -3
  388. package/src/composables/date/useDateInitializationDayjs.ts +28 -36
  389. package/src/composables/rules/useFieldValidation.ts +1 -2
  390. package/src/designTokens/index.ts +4 -0
  391. package/src/designTokens/tokens/cnam/cnamFonts.ts +140 -0
  392. package/src/designTokens/tokens/pa/paFonts.ts +140 -0
  393. package/src/designTokens/utils/createFontVariables.ts +143 -0
  394. package/src/designTokens/utils/index.ts +2 -1
  395. package/src/stories/Accessibilite/Aculturation/AuditDesignSystem.mdx +293 -20
  396. package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +448 -54
  397. package/src/stories/Accessibilite/Audit/RGAA.mdx +231 -23
  398. package/src/stories/Accessibilite/Avancement/Avancement.mdx +591 -7
  399. package/src/stories/Accessibilite/Avancement/Avancement.stories.ts +139 -38
  400. package/src/stories/Accessibilite/Introduction.mdx +258 -18
  401. package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +221 -31
  402. package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +204 -22
  403. package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +537 -24
  404. package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +577 -70
  405. package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +382 -31
  406. package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +419 -81
  407. package/src/stories/Accessibilite/Vuetify/Vuetify.mdx +132 -6
  408. package/src/stories/Accessibilite/Vuetify/Vuetify.stories.ts +370 -146
  409. package/src/stories/Accessibilite/Vuetify/VuetifyItems.ts +35 -57
  410. package/src/stories/Demarrer/Accueil.stories.ts +32 -8
  411. package/src/stories/DesignTokens/StylesTypographiques.mdx +10 -9
  412. package/src/stories/DesignTokens/StylesTypographiques.stories.new.ts +397 -0
  413. package/src/stories/DesignTokens/StylesTypographiques.stories.ts +397 -0
  414. package/src/stories/DesignTokens/TypographyDisplay.vue +155 -0
  415. package/src/stories/DesignTokens/vue-shims.d.ts +6 -0
  416. package/src/stories/GuideDuDev/LesBreackingChanges.mdx +0 -2
  417. package/src/stories/GuideDuDev/MigrationDepuisBridge.mdx +1 -1
  418. package/src/stories/GuideDuDev/MigrationDepuisVue2.mdx +1 -1
  419. package/src/stories/GuideDuDev/PortailAgent.mdx +10 -0
  420. package/src/stories/GuideDuDev/PortailAgent.stories.ts +506 -0
  421. package/src/stories/GuideDuDev/Theme.mdx +41 -0
  422. package/src/utils/rules/isHolidayDay/IsHolidayDay.stories.ts +1 -1
  423. package/src/utils/rules/isRequired/index.ts +2 -1
  424. package/src/vite-env.d.ts +12 -0
  425. package/src/vuetifyConfig.ts +10 -3
  426. package/dist/components/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  427. package/dist/components/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -4
  428. package/dist/components/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -4
  429. package/dist/components/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -4
  430. package/dist/components/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -4
  431. package/dist/components/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  432. package/dist/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -4
  433. package/dist/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -4
  434. package/dist/components/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -4
  435. package/dist/components/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -4
  436. package/dist/components/DataList/constants/ExpertiseLevelEnum.d.ts +0 -4
  437. package/dist/components/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -4
  438. package/dist/components/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -4
  439. package/dist/components/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -4
  440. package/dist/components/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  441. package/dist/components/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -4
  442. package/dist/components/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -4
  443. package/dist/components/FileList/constants/ExpertiseLevelEnum.d.ts +0 -4
  444. package/dist/components/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -4
  445. package/dist/components/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -4
  446. package/dist/components/FilterInline/constants/ExpertiseLevelEnum.d.ts +0 -4
  447. package/dist/components/FilterSideBar/constants/ExpertiseLevelEnum.d.ts +0 -4
  448. package/dist/components/FooterBar/constants/ExpertiseLevelEnum.d.ts +0 -4
  449. package/dist/components/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  450. package/dist/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +0 -4
  451. package/dist/components/HeaderBar/constants/ExpertiseLevelEnum.d.ts +0 -4
  452. package/dist/components/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +0 -4
  453. package/dist/components/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +0 -4
  454. package/dist/components/LangBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  455. package/dist/components/Logo/constants/ExpertiseLevelEnum.d.ts +0 -4
  456. package/dist/components/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +0 -4
  457. package/dist/components/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +0 -4
  458. package/dist/components/NirField/constants/ExpertiseLevelEnum.d.ts +0 -4
  459. package/dist/components/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +0 -4
  460. package/dist/components/NotificationBar/constants/ExpertiseLevelEnum.d.ts +0 -4
  461. package/dist/components/PageContainer/constants/ExpertiseLevelEnum.d.ts +0 -4
  462. package/dist/components/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +0 -4
  463. package/dist/components/PasswordField/constants/ExpertiseLevelEnum.d.ts +0 -4
  464. package/dist/components/PeriodField/constants/ExpertiseLevelEnum.d.ts +0 -4
  465. package/dist/components/PhoneField/constants/ExpertiseLevelEnum.d.ts +0 -4
  466. package/dist/components/RangeField/constants/ExpertiseLevelEnum.d.ts +0 -4
  467. package/dist/components/RatingPicker/constants/ExpertiseLevelEnum.d.ts +0 -4
  468. package/dist/components/SearchListField/constants/ExpertiseLevelEnum.d.ts +0 -4
  469. package/dist/components/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +0 -4
  470. package/dist/components/SkipLink/constants/ExpertiseLevelEnum.d.ts +0 -4
  471. package/dist/components/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +0 -4
  472. package/dist/components/SubHeader/constants/ExpertiseLevelEnum.d.ts +0 -4
  473. package/dist/components/SyAlert/constants/ExpertiseLevelEnum.d.ts +0 -4
  474. package/dist/components/TableToolbar/constants/ExpertiseLevelEnum.d.ts +0 -4
  475. package/dist/components/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +0 -4
  476. package/dist/components/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +0 -4
  477. package/src/components/BackBtn/constants/ExpertiseLevelEnum.ts +0 -4
  478. package/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.ts +0 -4
  479. package/src/components/ChipList/constants/ExpertiseLevelEnum.ts +0 -4
  480. package/src/components/CollapsibleList/constants/ExpertiseLevelEnum.ts +0 -4
  481. package/src/components/ContextualMenu/constants/ExpertiseLevelEnum.ts +0 -4
  482. package/src/components/CookieBanner/constants/ExpertiseLevelEnum.ts +0 -4
  483. package/src/components/CopyBtn/constants/ExpertiseLevelEnum.ts +0 -4
  484. package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +0 -4
  485. package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +0 -4
  486. package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +0 -4
  487. package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +0 -4
  488. package/src/components/DataList/constants/ExpertiseLevelEnum.ts +0 -4
  489. package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +0 -4
  490. package/src/components/DatePicker/DatePicker.mdx +0 -222
  491. package/src/components/DatePicker/DateTextInput.vue +0 -504
  492. package/src/components/DatePicker/constants/ExpertiseLevelEnum.ts +0 -4
  493. package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +0 -4
  494. package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +0 -4
  495. package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +0 -4
  496. package/src/components/ExternalLinks/constants/ExpertiseLevelEnum.ts +0 -4
  497. package/src/components/FileList/constants/ExpertiseLevelEnum.ts +0 -4
  498. package/src/components/FilePreview/constants/ExpertiseLevelEnum.ts +0 -4
  499. package/src/components/FileUpload/constants/ExpertiseLevelEnum.ts +0 -4
  500. package/src/components/FilterInline/constants/ExpertiseLevelEnum.ts +0 -4
  501. package/src/components/FilterSideBar/constants/ExpertiseLevelEnum.ts +0 -4
  502. package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +0 -4
  503. package/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.ts +0 -4
  504. package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +0 -4
  505. package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +0 -4
  506. package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +0 -4
  507. package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +0 -4
  508. package/src/components/LangBtn/constants/ExpertiseLevelEnum.ts +0 -4
  509. package/src/components/Logo/constants/ExpertiseLevelEnum.ts +0 -4
  510. package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +0 -4
  511. package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +0 -4
  512. package/src/components/NirField/constants/ExpertiseLevelEnum.ts +0 -4
  513. package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +0 -4
  514. package/src/components/NotificationBar/constants/ExpertiseLevelEnum.ts +0 -4
  515. package/src/components/PageContainer/constants/ExpertiseLevelEnum.ts +0 -4
  516. package/src/components/PaginatedTable/constants/ExpertiseLevelEnum.ts +0 -4
  517. package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +0 -886
  518. package/src/components/PasswordField/constants/ExpertiseLevelEnum.ts +0 -4
  519. package/src/components/PeriodField/constants/ExpertiseLevelEnum.ts +0 -4
  520. package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +0 -4
  521. package/src/components/RangeField/constants/ExpertiseLevelEnum.ts +0 -4
  522. package/src/components/RatingPicker/constants/ExpertiseLevelEnum.ts +0 -4
  523. package/src/components/SearchListField/constants/ExpertiseLevelEnum.ts +0 -4
  524. package/src/components/SelectBtnField/constants/ExpertiseLevelEnum.ts +0 -4
  525. package/src/components/SkipLink/constants/ExpertiseLevelEnum.ts +0 -4
  526. package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +0 -4
  527. package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +0 -4
  528. package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +0 -4
  529. package/src/components/TableToolbar/constants/ExpertiseLevelEnum.ts +0 -4
  530. package/src/components/UploadWorkflow/constants/ExpertiseLevelEnum.ts +0 -4
  531. package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +0 -4
  532. package/src/stories/DesignTokens/ThemePA.mdx +0 -35
  533. /package/src/components/DatePicker/{examples → playground}/DatePickerHolidayRule.vue +0 -0
@@ -0,0 +1,4295 @@
1
+ import { nextTick, ComponentPublicInstance, Ref } from 'vue';
2
+ import { DateInput, DateValue } from '../../../composables/date/useDateInitializationDayjs';
3
+ type __VLS_Props = {
4
+ modelValue?: DateInput;
5
+ label?: string;
6
+ placeholder?: string;
7
+ format?: string;
8
+ dateFormatReturn?: string;
9
+ isBirthDate?: boolean;
10
+ birthDate?: boolean;
11
+ showWeekNumber?: boolean;
12
+ required?: boolean;
13
+ displayRange?: boolean;
14
+ displayIcon?: boolean;
15
+ displayAppendIcon?: boolean;
16
+ displayPrependIcon?: boolean;
17
+ customRules?: {
18
+ type: string;
19
+ options: any;
20
+ }[];
21
+ customWarningRules?: {
22
+ type: string;
23
+ options: any;
24
+ }[];
25
+ disabled?: boolean;
26
+ noIcon?: boolean;
27
+ noCalendar?: boolean;
28
+ isOutlined?: boolean;
29
+ readonly?: boolean;
30
+ width?: string;
31
+ disableErrorHandling?: boolean;
32
+ showSuccessMessages?: boolean;
33
+ bgColor?: string;
34
+ textFieldActivator?: boolean;
35
+ displayTodayButton?: boolean;
36
+ displayWeekendDays?: boolean;
37
+ displayHolidayDays?: boolean;
38
+ displayAsterisk?: boolean;
39
+ period?: {
40
+ min?: string;
41
+ max?: string;
42
+ };
43
+ autoClamp?: boolean;
44
+ };
45
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
46
+ validateOnSubmit: () => import('../../../composables/validation/useValidation').ValidationResult;
47
+ isDatePickerVisible: Ref<boolean, boolean>;
48
+ selectedDates: Ref<Date | (Date | null)[] | null, Date | (Date | null)[] | null>;
49
+ errorMessages: import('vue').ComputedRef<string[]>;
50
+ handleClickOutside: (event: MouseEvent) => void;
51
+ initializeSelectedDates: (modelValue: DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
52
+ handleSelectToday: () => void;
53
+ updateAccessibility: () => Promise<void>;
54
+ openDatePicker: () => void;
55
+ updateDisplayFormattedDate: () => void;
56
+ currentMonth: Ref<string | null, string | null>;
57
+ currentMonthName: Ref<string | null, string | null>;
58
+ toggleDatePicker: () => void;
59
+ validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
60
+ clearValidation: () => void;
61
+ validateDates: (forceValidation?: boolean) => import('../../../composables/validation/useValidation').ValidationResult;
62
+ formatDateInput: (input: string, cursorPosition?: number | undefined) => {
63
+ formatted: string;
64
+ cursorPos: number;
65
+ };
66
+ emitBlur: () => void;
67
+ validateDateFormat: (dateStr: string) => {
68
+ isValid: boolean;
69
+ message: string;
70
+ };
71
+ displayFormattedDate: Ref<string, string>;
72
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
73
+ "update:modelValue": (value: DateValue) => any;
74
+ blur: () => any;
75
+ focus: () => any;
76
+ input: (value: string) => any;
77
+ "date-selected": (value: DateValue) => any;
78
+ closed: () => any;
79
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
80
+ "onUpdate:modelValue"?: ((value: DateValue) => any) | undefined;
81
+ onBlur?: (() => any) | undefined;
82
+ onFocus?: (() => any) | undefined;
83
+ onInput?: ((value: string) => any) | undefined;
84
+ "onDate-selected"?: ((value: DateValue) => any) | undefined;
85
+ onClosed?: (() => any) | undefined;
86
+ }>, {
87
+ required: boolean;
88
+ modelValue: DateInput;
89
+ label: string;
90
+ readonly: boolean;
91
+ bgColor: string;
92
+ disabled: boolean;
93
+ placeholder: string;
94
+ width: string;
95
+ displayAsterisk: boolean;
96
+ noIcon: boolean;
97
+ customRules: {
98
+ type: string;
99
+ options: any;
100
+ }[];
101
+ customWarningRules: {
102
+ type: string;
103
+ options: any;
104
+ }[];
105
+ showSuccessMessages: boolean;
106
+ disableErrorHandling: boolean;
107
+ format: string;
108
+ noCalendar: boolean;
109
+ displayRange: boolean;
110
+ dateFormatReturn: string;
111
+ textFieldActivator: boolean;
112
+ isOutlined: boolean;
113
+ displayIcon: boolean;
114
+ displayAppendIcon: boolean;
115
+ displayPrependIcon: boolean;
116
+ autoClamp: boolean;
117
+ isBirthDate: boolean;
118
+ birthDate: boolean;
119
+ showWeekNumber: boolean;
120
+ displayTodayButton: boolean;
121
+ displayWeekendDays: boolean;
122
+ displayHolidayDays: boolean;
123
+ period: {
124
+ min?: string | undefined;
125
+ max?: string | undefined;
126
+ };
127
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
128
+ accessibilityDescriptionRef: HTMLSpanElement;
129
+ dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
130
+ modelValue?: DateValue | undefined;
131
+ placeholder?: string | undefined;
132
+ format?: string | undefined;
133
+ dateFormatReturn?: string | undefined;
134
+ label?: string | undefined;
135
+ required?: boolean | undefined;
136
+ disabled?: boolean | undefined;
137
+ readonly?: boolean | undefined;
138
+ isOutlined?: boolean | undefined;
139
+ displayIcon?: boolean | undefined;
140
+ displayAppendIcon?: boolean | undefined;
141
+ noIcon?: boolean | undefined;
142
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
143
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
144
+ displayPrependIcon?: boolean | undefined;
145
+ disableErrorHandling?: boolean | undefined;
146
+ showSuccessMessages?: boolean | undefined;
147
+ bgColor?: string | undefined;
148
+ displayRange?: boolean | undefined;
149
+ autoClamp?: boolean | undefined;
150
+ }> & Readonly<{
151
+ onBlur?: (() => any) | undefined;
152
+ onFocus?: (() => any) | undefined;
153
+ onInput?: ((value: string) => any) | undefined;
154
+ "onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
155
+ "onDate-selected"?: ((value: DateValue) => any) | undefined;
156
+ }>, {
157
+ validateOnSubmit: () => Promise<boolean>;
158
+ focus(): void;
159
+ blur(): void;
160
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
161
+ blur: () => any;
162
+ focus: () => any;
163
+ input: (value: string) => any;
164
+ "update:model-value": (value: DateValue) => any;
165
+ "date-selected": (value: DateValue) => any;
166
+ }, import('vue').PublicProps, {
167
+ required: boolean;
168
+ modelValue: DateValue;
169
+ label: string;
170
+ readonly: boolean;
171
+ bgColor: string;
172
+ disabled: boolean;
173
+ placeholder: string;
174
+ noIcon: boolean;
175
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
176
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
177
+ showSuccessMessages: boolean;
178
+ disableErrorHandling: boolean;
179
+ format: string;
180
+ displayRange: boolean;
181
+ dateFormatReturn: string;
182
+ isOutlined: boolean;
183
+ displayIcon: boolean;
184
+ displayAppendIcon: boolean;
185
+ displayPrependIcon: boolean;
186
+ autoClamp: boolean;
187
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
188
+ inputRef: ({
189
+ $: import('vue').ComponentInternalInstance;
190
+ $data: {};
191
+ $props: {
192
+ readonly modelValue?: string | number | null | undefined;
193
+ readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
194
+ readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
195
+ readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
196
+ readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
197
+ readonly prependTooltip?: string | undefined;
198
+ readonly appendTooltip?: string | undefined;
199
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
200
+ readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
201
+ readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
202
+ readonly isClearable?: boolean | undefined;
203
+ readonly showDivider?: boolean | undefined;
204
+ readonly label?: string | undefined;
205
+ readonly required?: boolean | undefined;
206
+ readonly errorMessages?: string[] | null | undefined;
207
+ readonly warningMessages?: string[] | null | undefined;
208
+ readonly successMessages?: string[] | null | undefined;
209
+ readonly readonly?: boolean | undefined;
210
+ readonly isActive?: boolean | undefined;
211
+ readonly baseColor?: string | undefined;
212
+ readonly bgColor?: string | undefined;
213
+ readonly centerAffix?: boolean | undefined;
214
+ readonly counter?: string | number | boolean | undefined;
215
+ readonly counterValue?: number | ((value: any) => number) | undefined;
216
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
217
+ readonly direction?: "horizontal" | "vertical" | undefined;
218
+ readonly isDirty?: boolean | undefined;
219
+ readonly disabled?: boolean | undefined;
220
+ readonly isOnError?: boolean | undefined;
221
+ readonly isFlat?: boolean | undefined;
222
+ readonly isFocused?: boolean | undefined;
223
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
224
+ readonly areSpinButtonsHidden?: boolean | undefined;
225
+ readonly hint?: string | undefined;
226
+ readonly id?: string | undefined;
227
+ readonly loading?: string | boolean | undefined;
228
+ readonly maxErrors?: string | number | undefined;
229
+ readonly maxWidth?: string | number | undefined;
230
+ readonly messages?: string | string[] | undefined;
231
+ readonly minWidth?: string | number | undefined;
232
+ readonly name?: string | undefined;
233
+ readonly displayPersistentClear?: boolean | undefined;
234
+ readonly displayPersistentCounter?: boolean | undefined;
235
+ readonly displayPersistentHint?: boolean | undefined;
236
+ readonly displayPersistentPlaceholder?: boolean | undefined;
237
+ readonly placeholder?: string | undefined;
238
+ readonly prefix?: string | undefined;
239
+ readonly isReversed?: boolean | undefined;
240
+ readonly role?: string | undefined;
241
+ readonly rounded?: string | number | boolean | undefined;
242
+ readonly isOnSingleLine?: boolean | undefined;
243
+ readonly suffix?: string | undefined;
244
+ readonly theme?: string | undefined;
245
+ readonly isTiled?: boolean | undefined;
246
+ readonly type?: string | undefined;
247
+ readonly width?: string | number | undefined;
248
+ readonly displayAsterisk?: boolean | undefined;
249
+ readonly noIcon?: boolean | undefined;
250
+ readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
251
+ readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
252
+ readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
253
+ readonly showSuccessMessages?: boolean | undefined;
254
+ readonly isValidateOnBlur?: boolean | undefined;
255
+ readonly disableErrorHandling?: boolean | undefined;
256
+ readonly disableClickButton?: boolean | undefined;
257
+ readonly autocomplete?: string | undefined;
258
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
259
+ readonly onClear?: ((...args: any[]) => any) | undefined;
260
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
261
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
262
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
263
+ $attrs: {
264
+ [x: string]: unknown;
265
+ };
266
+ $refs: {
267
+ [x: string]: unknown;
268
+ } & {
269
+ syTextFieldRef: import('vue').CreateComponentPublicInstanceWithMixins<{
270
+ flat: boolean;
271
+ reverse: boolean;
272
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
273
+ type: string;
274
+ error: boolean;
275
+ active: boolean;
276
+ direction: "horizontal" | "vertical";
277
+ style: import('vue').StyleValue;
278
+ autofocus: boolean;
279
+ disabled: boolean;
280
+ readonly: boolean | null;
281
+ messages: string | readonly string[];
282
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
283
+ focused: boolean;
284
+ errorMessages: string | readonly string[] | null;
285
+ maxErrors: string | number;
286
+ density: import('vuetify/lib/composables/density.mjs').Density;
287
+ tile: boolean;
288
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
289
+ glow: boolean;
290
+ hideSpinButtons: boolean;
291
+ persistentHint: boolean;
292
+ clearable: boolean;
293
+ dirty: boolean;
294
+ persistentClear: boolean;
295
+ singleLine: boolean;
296
+ persistentPlaceholder: boolean;
297
+ persistentCounter: boolean;
298
+ } & {
299
+ name?: string | undefined;
300
+ id?: string | undefined;
301
+ width?: string | number | undefined;
302
+ color?: string | undefined;
303
+ maxWidth?: string | number | undefined;
304
+ minWidth?: string | number | undefined;
305
+ loading?: string | boolean | undefined;
306
+ label?: string | undefined;
307
+ prefix?: string | undefined;
308
+ role?: string | undefined;
309
+ class?: any;
310
+ theme?: string | undefined;
311
+ placeholder?: string | undefined;
312
+ counter?: string | number | boolean | undefined;
313
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
314
+ modelValue?: any;
315
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
316
+ validationValue?: any;
317
+ rounded?: string | number | boolean | undefined;
318
+ baseColor?: string | undefined;
319
+ bgColor?: string | undefined;
320
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
321
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
322
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
323
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
324
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
325
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
326
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
327
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
328
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
329
+ centerAffix?: boolean | undefined;
330
+ iconColor?: string | boolean | undefined;
331
+ hint?: string | undefined;
332
+ hideDetails?: boolean | "auto" | undefined;
333
+ suffix?: string | undefined;
334
+ counterValue?: number | ((value: any) => number) | undefined;
335
+ modelModifiers?: Record<string, boolean> | undefined;
336
+ } & {
337
+ $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
338
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
339
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
340
+ props: Record<string, any>;
341
+ }) => import('vue').VNodeChild) | undefined;
342
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
343
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
344
+ label: string | undefined;
345
+ props: Record<string, any>;
346
+ }) => import('vue').VNodeChild) | undefined;
347
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
348
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
349
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
350
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
351
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
352
+ default?: (() => import('vue').VNodeChild) | undefined;
353
+ counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
354
+ };
355
+ 'v-slots'?: {
356
+ message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
357
+ clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
358
+ props: Record<string, any>;
359
+ }) => import('vue').VNodeChild) | undefined;
360
+ details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
361
+ label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
362
+ label: string | undefined;
363
+ props: Record<string, any>;
364
+ }) => import('vue').VNodeChild) | undefined;
365
+ append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
366
+ prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
367
+ loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
368
+ 'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
369
+ 'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
370
+ default?: false | (() => import('vue').VNodeChild) | undefined;
371
+ counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
372
+ } | undefined;
373
+ } & {
374
+ "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
375
+ "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
376
+ props: Record<string, any>;
377
+ }) => import('vue').VNodeChild) | undefined;
378
+ "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
379
+ "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
380
+ label: string | undefined;
381
+ props: Record<string, any>;
382
+ }) => import('vue').VNodeChild) | undefined;
383
+ "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
384
+ "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
385
+ "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
386
+ "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
387
+ "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
388
+ "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
389
+ "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
390
+ } & {
391
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
392
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
393
+ "onClick:control"?: ((e: MouseEvent) => any) | undefined;
394
+ "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
395
+ }, HTMLInputElement & Omit<Omit<{
396
+ $: import('vue').ComponentInternalInstance;
397
+ $data: {};
398
+ $props: Partial<{
399
+ error: boolean;
400
+ direction: "horizontal" | "vertical";
401
+ style: import('vue').StyleValue;
402
+ disabled: boolean | null;
403
+ readonly: boolean | null;
404
+ messages: string | readonly string[];
405
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
406
+ focused: boolean;
407
+ errorMessages: string | readonly string[] | null;
408
+ maxErrors: string | number;
409
+ density: import('vuetify/lib/composables/density.mjs').Density;
410
+ centerAffix: boolean;
411
+ glow: boolean;
412
+ hideSpinButtons: boolean;
413
+ persistentHint: boolean;
414
+ }> & Omit<{
415
+ error: boolean;
416
+ direction: "horizontal" | "vertical";
417
+ style: import('vue').StyleValue;
418
+ disabled: boolean | null;
419
+ readonly: boolean | null;
420
+ messages: string | readonly string[];
421
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
422
+ focused: boolean;
423
+ errorMessages: string | readonly string[] | null;
424
+ maxErrors: string | number;
425
+ density: import('vuetify/lib/composables/density.mjs').Density;
426
+ centerAffix: boolean;
427
+ glow: boolean;
428
+ hideSpinButtons: boolean;
429
+ persistentHint: boolean;
430
+ name?: string | undefined;
431
+ id?: string | undefined;
432
+ width?: string | number | undefined;
433
+ color?: string | undefined;
434
+ maxWidth?: string | number | undefined;
435
+ minWidth?: string | number | undefined;
436
+ label?: string | undefined;
437
+ class?: any;
438
+ theme?: string | undefined;
439
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
440
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
441
+ validationValue?: any;
442
+ baseColor?: string | undefined;
443
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
444
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
445
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
446
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
447
+ iconColor?: string | boolean | undefined;
448
+ hint?: string | undefined;
449
+ hideDetails?: boolean | "auto" | undefined;
450
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
451
+ $attrs: {
452
+ [x: string]: unknown;
453
+ };
454
+ $refs: {
455
+ [x: string]: unknown;
456
+ };
457
+ $slots: Readonly<{
458
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
459
+ [key: string]: any;
460
+ }>[]) | undefined;
461
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
462
+ [key: string]: any;
463
+ }>[]) | undefined;
464
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
465
+ [key: string]: any;
466
+ }>[]) | undefined;
467
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
468
+ [key: string]: any;
469
+ }>[]) | undefined;
470
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
471
+ [key: string]: any;
472
+ }>[]) | undefined;
473
+ }>;
474
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
475
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
476
+ $host: Element | null;
477
+ $emit: (event: string, ...args: any[]) => void;
478
+ $el: any;
479
+ $options: import('vue').ComponentOptionsBase<{
480
+ error: boolean;
481
+ direction: "horizontal" | "vertical";
482
+ style: import('vue').StyleValue;
483
+ disabled: boolean | null;
484
+ readonly: boolean | null;
485
+ messages: string | readonly string[];
486
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
487
+ focused: boolean;
488
+ errorMessages: string | readonly string[] | null;
489
+ maxErrors: string | number;
490
+ density: import('vuetify/lib/composables/density.mjs').Density;
491
+ centerAffix: boolean;
492
+ glow: boolean;
493
+ hideSpinButtons: boolean;
494
+ persistentHint: boolean;
495
+ } & {
496
+ name?: string | undefined;
497
+ id?: string | undefined;
498
+ width?: string | number | undefined;
499
+ color?: string | undefined;
500
+ maxWidth?: string | number | undefined;
501
+ minWidth?: string | number | undefined;
502
+ label?: string | undefined;
503
+ class?: any;
504
+ theme?: string | undefined;
505
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
506
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
507
+ validationValue?: any;
508
+ baseColor?: string | undefined;
509
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
510
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
511
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
512
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
513
+ iconColor?: string | boolean | undefined;
514
+ hint?: string | undefined;
515
+ hideDetails?: boolean | "auto" | undefined;
516
+ }, {
517
+ reset: () => Promise<void>;
518
+ resetValidation: () => Promise<void>;
519
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
520
+ isValid: import('vue').ComputedRef<boolean | null>;
521
+ errorMessages: import('vue').ComputedRef<string[]>;
522
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
523
+ 'update:modelValue': (value: any) => true;
524
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
525
+ error: boolean;
526
+ direction: "horizontal" | "vertical";
527
+ style: import('vue').StyleValue;
528
+ disabled: boolean | null;
529
+ readonly: boolean | null;
530
+ messages: string | readonly string[];
531
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
532
+ focused: boolean;
533
+ errorMessages: string | readonly string[] | null;
534
+ maxErrors: string | number;
535
+ density: import('vuetify/lib/composables/density.mjs').Density;
536
+ centerAffix: boolean;
537
+ glow: boolean;
538
+ hideSpinButtons: boolean;
539
+ persistentHint: boolean;
540
+ }, {}, string, import('vue').SlotsType<Partial<{
541
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
542
+ [key: string]: any;
543
+ }>[];
544
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
545
+ [key: string]: any;
546
+ }>[];
547
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
548
+ [key: string]: any;
549
+ }>[];
550
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
551
+ [key: string]: any;
552
+ }>[];
553
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
554
+ [key: string]: any;
555
+ }>[];
556
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
557
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
558
+ created?: (() => void) | (() => void)[] | undefined;
559
+ beforeMount?: (() => void) | (() => void)[] | undefined;
560
+ mounted?: (() => void) | (() => void)[] | undefined;
561
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
562
+ updated?: (() => void) | (() => void)[] | undefined;
563
+ activated?: (() => void) | (() => void)[] | undefined;
564
+ deactivated?: (() => void) | (() => void)[] | undefined;
565
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
566
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
567
+ destroyed?: (() => void) | (() => void)[] | undefined;
568
+ unmounted?: (() => void) | (() => void)[] | undefined;
569
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
570
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
571
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
572
+ };
573
+ $forceUpdate: () => void;
574
+ $nextTick: typeof nextTick;
575
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
576
+ } & Readonly<{
577
+ error: boolean;
578
+ direction: "horizontal" | "vertical";
579
+ style: import('vue').StyleValue;
580
+ disabled: boolean | null;
581
+ readonly: boolean | null;
582
+ messages: string | readonly string[];
583
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
584
+ focused: boolean;
585
+ errorMessages: string | readonly string[] | null;
586
+ maxErrors: string | number;
587
+ density: import('vuetify/lib/composables/density.mjs').Density;
588
+ centerAffix: boolean;
589
+ glow: boolean;
590
+ hideSpinButtons: boolean;
591
+ persistentHint: boolean;
592
+ }> & Omit<{
593
+ error: boolean;
594
+ direction: "horizontal" | "vertical";
595
+ style: import('vue').StyleValue;
596
+ disabled: boolean | null;
597
+ readonly: boolean | null;
598
+ messages: string | readonly string[];
599
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
600
+ focused: boolean;
601
+ errorMessages: string | readonly string[] | null;
602
+ maxErrors: string | number;
603
+ density: import('vuetify/lib/composables/density.mjs').Density;
604
+ centerAffix: boolean;
605
+ glow: boolean;
606
+ hideSpinButtons: boolean;
607
+ persistentHint: boolean;
608
+ } & {
609
+ name?: string | undefined;
610
+ id?: string | undefined;
611
+ width?: string | number | undefined;
612
+ color?: string | undefined;
613
+ maxWidth?: string | number | undefined;
614
+ minWidth?: string | number | undefined;
615
+ label?: string | undefined;
616
+ class?: any;
617
+ theme?: string | undefined;
618
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
619
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
620
+ validationValue?: any;
621
+ baseColor?: string | undefined;
622
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
623
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
624
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
625
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
626
+ iconColor?: string | boolean | undefined;
627
+ hint?: string | undefined;
628
+ hideDetails?: boolean | "auto" | undefined;
629
+ }, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
630
+ reset: () => Promise<void>;
631
+ resetValidation: () => Promise<void>;
632
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
633
+ isValid: import('vue').ComputedRef<boolean | null>;
634
+ errorMessages: import('vue').ComputedRef<string[]>;
635
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
636
+ modelValue?: unknown;
637
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
638
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
639
+ $: import('vue').ComponentInternalInstance;
640
+ $data: {};
641
+ $props: Partial<{
642
+ flat: boolean;
643
+ reverse: boolean;
644
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
645
+ error: boolean;
646
+ active: boolean;
647
+ style: import('vue').StyleValue;
648
+ disabled: boolean;
649
+ focused: boolean;
650
+ rounded: string | number | boolean;
651
+ tile: boolean;
652
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
653
+ centerAffix: boolean;
654
+ glow: boolean;
655
+ clearable: boolean;
656
+ dirty: boolean;
657
+ persistentClear: boolean;
658
+ singleLine: boolean;
659
+ }> & Omit<{
660
+ flat: boolean;
661
+ reverse: boolean;
662
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
663
+ error: boolean;
664
+ active: boolean;
665
+ style: import('vue').StyleValue;
666
+ disabled: boolean;
667
+ focused: boolean;
668
+ tile: boolean;
669
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
670
+ glow: boolean;
671
+ clearable: boolean;
672
+ dirty: boolean;
673
+ persistentClear: boolean;
674
+ singleLine: boolean;
675
+ id?: string | undefined;
676
+ color?: string | undefined;
677
+ loading?: string | boolean | undefined;
678
+ label?: string | undefined;
679
+ class?: any;
680
+ theme?: string | undefined;
681
+ 'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
682
+ rounded?: string | number | boolean | undefined;
683
+ baseColor?: string | undefined;
684
+ bgColor?: string | undefined;
685
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
686
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
687
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
688
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
689
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
690
+ centerAffix?: boolean | undefined;
691
+ iconColor?: string | boolean | undefined;
692
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
693
+ $attrs: {
694
+ [x: string]: unknown;
695
+ };
696
+ $refs: {
697
+ [x: string]: unknown;
698
+ };
699
+ $slots: Readonly<{
700
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
701
+ props: Record<string, any>;
702
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
703
+ [key: string]: any;
704
+ }>[]) | undefined;
705
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
706
+ [key: string]: any;
707
+ }>[]) | undefined;
708
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
709
+ [key: string]: any;
710
+ }>[]) | undefined;
711
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
712
+ label: string | undefined;
713
+ props: Record<string, any>;
714
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
715
+ [key: string]: any;
716
+ }>[]) | undefined;
717
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
718
+ [key: string]: any;
719
+ }>[]) | undefined;
720
+ default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
721
+ [key: string]: any;
722
+ }>[]) | undefined;
723
+ }>;
724
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
725
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
726
+ $host: Element | null;
727
+ $emit: (event: "update:focused", focused: boolean) => void;
728
+ $el: any;
729
+ $options: import('vue').ComponentOptionsBase<{
730
+ flat: boolean;
731
+ reverse: boolean;
732
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
733
+ error: boolean;
734
+ active: boolean;
735
+ style: import('vue').StyleValue;
736
+ disabled: boolean;
737
+ focused: boolean;
738
+ tile: boolean;
739
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
740
+ glow: boolean;
741
+ clearable: boolean;
742
+ dirty: boolean;
743
+ persistentClear: boolean;
744
+ singleLine: boolean;
745
+ } & {
746
+ id?: string | undefined;
747
+ color?: string | undefined;
748
+ loading?: string | boolean | undefined;
749
+ label?: string | undefined;
750
+ class?: any;
751
+ theme?: string | undefined;
752
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
753
+ rounded?: string | number | boolean | undefined;
754
+ baseColor?: string | undefined;
755
+ bgColor?: string | undefined;
756
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
757
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
758
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
759
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
760
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
761
+ centerAffix?: boolean | undefined;
762
+ iconColor?: string | boolean | undefined;
763
+ } & {
764
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
765
+ }, {
766
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
767
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
768
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
769
+ 'update:focused': (focused: boolean) => true;
770
+ 'update:modelValue': (value: any) => true;
771
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
772
+ flat: boolean;
773
+ reverse: boolean;
774
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
775
+ error: boolean;
776
+ active: boolean;
777
+ style: import('vue').StyleValue;
778
+ disabled: boolean;
779
+ focused: boolean;
780
+ rounded: string | number | boolean;
781
+ tile: boolean;
782
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
783
+ centerAffix: boolean;
784
+ glow: boolean;
785
+ clearable: boolean;
786
+ dirty: boolean;
787
+ persistentClear: boolean;
788
+ singleLine: boolean;
789
+ }, {}, string, import('vue').SlotsType<Partial<{
790
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
791
+ props: Record<string, any>;
792
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
793
+ [key: string]: any;
794
+ }>[];
795
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
796
+ [key: string]: any;
797
+ }>[];
798
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
799
+ [key: string]: any;
800
+ }>[];
801
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
802
+ label: string | undefined;
803
+ props: Record<string, any>;
804
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
805
+ [key: string]: any;
806
+ }>[];
807
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
808
+ [key: string]: any;
809
+ }>[];
810
+ default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
811
+ [key: string]: any;
812
+ }>[];
813
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
814
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
815
+ created?: (() => void) | (() => void)[] | undefined;
816
+ beforeMount?: (() => void) | (() => void)[] | undefined;
817
+ mounted?: (() => void) | (() => void)[] | undefined;
818
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
819
+ updated?: (() => void) | (() => void)[] | undefined;
820
+ activated?: (() => void) | (() => void)[] | undefined;
821
+ deactivated?: (() => void) | (() => void)[] | undefined;
822
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
823
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
824
+ destroyed?: (() => void) | (() => void)[] | undefined;
825
+ unmounted?: (() => void) | (() => void)[] | undefined;
826
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
827
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
828
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
829
+ };
830
+ $forceUpdate: () => void;
831
+ $nextTick: typeof nextTick;
832
+ $watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
833
+ } & Readonly<{
834
+ flat: boolean;
835
+ reverse: boolean;
836
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
837
+ error: boolean;
838
+ active: boolean;
839
+ style: import('vue').StyleValue;
840
+ disabled: boolean;
841
+ focused: boolean;
842
+ rounded: string | number | boolean;
843
+ tile: boolean;
844
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
845
+ centerAffix: boolean;
846
+ glow: boolean;
847
+ clearable: boolean;
848
+ dirty: boolean;
849
+ persistentClear: boolean;
850
+ singleLine: boolean;
851
+ }> & Omit<{
852
+ flat: boolean;
853
+ reverse: boolean;
854
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
855
+ error: boolean;
856
+ active: boolean;
857
+ style: import('vue').StyleValue;
858
+ disabled: boolean;
859
+ focused: boolean;
860
+ tile: boolean;
861
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
862
+ glow: boolean;
863
+ clearable: boolean;
864
+ dirty: boolean;
865
+ persistentClear: boolean;
866
+ singleLine: boolean;
867
+ } & {
868
+ id?: string | undefined;
869
+ color?: string | undefined;
870
+ loading?: string | boolean | undefined;
871
+ label?: string | undefined;
872
+ class?: any;
873
+ theme?: string | undefined;
874
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
875
+ rounded?: string | number | boolean | undefined;
876
+ baseColor?: string | undefined;
877
+ bgColor?: string | undefined;
878
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
879
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
880
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
881
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
882
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
883
+ centerAffix?: boolean | undefined;
884
+ iconColor?: string | boolean | undefined;
885
+ } & {
886
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
887
+ }, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
888
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
889
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
890
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
891
+ modelValue?: unknown;
892
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
893
+ }, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
894
+ _allExposed: {} | {
895
+ reset: () => Promise<void>;
896
+ resetValidation: () => Promise<void>;
897
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
898
+ isValid: import('vue').ComputedRef<boolean | null>;
899
+ errorMessages: import('vue').ComputedRef<string[]>;
900
+ } | {
901
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
902
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
903
+ };
904
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
905
+ 'click:control': (e: MouseEvent) => true;
906
+ 'mousedown:control': (e: MouseEvent) => true;
907
+ 'update:focused': (focused: boolean) => true;
908
+ 'update:modelValue': (val: string) => true;
909
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
910
+ flat: boolean;
911
+ reverse: boolean;
912
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
913
+ type: string;
914
+ error: boolean;
915
+ active: boolean;
916
+ direction: "horizontal" | "vertical";
917
+ style: import('vue').StyleValue;
918
+ autofocus: boolean;
919
+ disabled: boolean;
920
+ readonly: boolean | null;
921
+ messages: string | readonly string[];
922
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
923
+ focused: boolean;
924
+ errorMessages: string | readonly string[] | null;
925
+ maxErrors: string | number;
926
+ density: import('vuetify/lib/composables/density.mjs').Density;
927
+ rounded: string | number | boolean;
928
+ tile: boolean;
929
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
930
+ centerAffix: boolean;
931
+ glow: boolean;
932
+ hideSpinButtons: boolean;
933
+ persistentHint: boolean;
934
+ clearable: boolean;
935
+ dirty: boolean;
936
+ persistentClear: boolean;
937
+ singleLine: boolean;
938
+ persistentPlaceholder: boolean;
939
+ persistentCounter: boolean;
940
+ }, true, {}, import('vue').SlotsType<Partial<{
941
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
942
+ [key: string]: any;
943
+ }>[];
944
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
945
+ props: Record<string, any>;
946
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
947
+ [key: string]: any;
948
+ }>[];
949
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
950
+ [key: string]: any;
951
+ }>[];
952
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
953
+ label: string | undefined;
954
+ props: Record<string, any>;
955
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
956
+ [key: string]: any;
957
+ }>[];
958
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
959
+ [key: string]: any;
960
+ }>[];
961
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
962
+ [key: string]: any;
963
+ }>[];
964
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
965
+ [key: string]: any;
966
+ }>[];
967
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
968
+ [key: string]: any;
969
+ }>[];
970
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
971
+ [key: string]: any;
972
+ }>[];
973
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
974
+ [key: string]: any;
975
+ }>[];
976
+ counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
977
+ [key: string]: any;
978
+ }>[];
979
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
980
+ P: {};
981
+ B: {};
982
+ D: {};
983
+ C: {};
984
+ M: {};
985
+ Defaults: {};
986
+ }, {
987
+ flat: boolean;
988
+ reverse: boolean;
989
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
990
+ type: string;
991
+ error: boolean;
992
+ active: boolean;
993
+ direction: "horizontal" | "vertical";
994
+ style: import('vue').StyleValue;
995
+ autofocus: boolean;
996
+ disabled: boolean;
997
+ readonly: boolean | null;
998
+ messages: string | readonly string[];
999
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1000
+ focused: boolean;
1001
+ errorMessages: string | readonly string[] | null;
1002
+ maxErrors: string | number;
1003
+ density: import('vuetify/lib/composables/density.mjs').Density;
1004
+ tile: boolean;
1005
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1006
+ glow: boolean;
1007
+ hideSpinButtons: boolean;
1008
+ persistentHint: boolean;
1009
+ clearable: boolean;
1010
+ dirty: boolean;
1011
+ persistentClear: boolean;
1012
+ singleLine: boolean;
1013
+ persistentPlaceholder: boolean;
1014
+ persistentCounter: boolean;
1015
+ } & {
1016
+ name?: string | undefined;
1017
+ id?: string | undefined;
1018
+ width?: string | number | undefined;
1019
+ color?: string | undefined;
1020
+ maxWidth?: string | number | undefined;
1021
+ minWidth?: string | number | undefined;
1022
+ loading?: string | boolean | undefined;
1023
+ label?: string | undefined;
1024
+ prefix?: string | undefined;
1025
+ role?: string | undefined;
1026
+ class?: any;
1027
+ theme?: string | undefined;
1028
+ placeholder?: string | undefined;
1029
+ counter?: string | number | boolean | undefined;
1030
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1031
+ modelValue?: any;
1032
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
1033
+ validationValue?: any;
1034
+ rounded?: string | number | boolean | undefined;
1035
+ baseColor?: string | undefined;
1036
+ bgColor?: string | undefined;
1037
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1038
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1039
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1040
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1041
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1042
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1043
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1044
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1045
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1046
+ centerAffix?: boolean | undefined;
1047
+ iconColor?: string | boolean | undefined;
1048
+ hint?: string | undefined;
1049
+ hideDetails?: boolean | "auto" | undefined;
1050
+ suffix?: string | undefined;
1051
+ counterValue?: number | ((value: any) => number) | undefined;
1052
+ modelModifiers?: Record<string, boolean> | undefined;
1053
+ } & {
1054
+ $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
1055
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
1056
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1057
+ props: Record<string, any>;
1058
+ }) => import('vue').VNodeChild) | undefined;
1059
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1060
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1061
+ label: string | undefined;
1062
+ props: Record<string, any>;
1063
+ }) => import('vue').VNodeChild) | undefined;
1064
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1065
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1066
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
1067
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1068
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1069
+ default?: (() => import('vue').VNodeChild) | undefined;
1070
+ counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
1071
+ };
1072
+ 'v-slots'?: {
1073
+ message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
1074
+ clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1075
+ props: Record<string, any>;
1076
+ }) => import('vue').VNodeChild) | undefined;
1077
+ details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1078
+ label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1079
+ label: string | undefined;
1080
+ props: Record<string, any>;
1081
+ }) => import('vue').VNodeChild) | undefined;
1082
+ append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1083
+ prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1084
+ loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
1085
+ 'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1086
+ 'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1087
+ default?: false | (() => import('vue').VNodeChild) | undefined;
1088
+ counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
1089
+ } | undefined;
1090
+ } & {
1091
+ "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
1092
+ "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1093
+ props: Record<string, any>;
1094
+ }) => import('vue').VNodeChild) | undefined;
1095
+ "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1096
+ "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1097
+ label: string | undefined;
1098
+ props: Record<string, any>;
1099
+ }) => import('vue').VNodeChild) | undefined;
1100
+ "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1101
+ "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
1102
+ "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
1103
+ "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1104
+ "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
1105
+ "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
1106
+ "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
1107
+ } & {
1108
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1109
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1110
+ "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1111
+ "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
1112
+ }, HTMLInputElement & Omit<Omit<{
1113
+ $: import('vue').ComponentInternalInstance;
1114
+ $data: {};
1115
+ $props: Partial<{
1116
+ error: boolean;
1117
+ direction: "horizontal" | "vertical";
1118
+ style: import('vue').StyleValue;
1119
+ disabled: boolean | null;
1120
+ readonly: boolean | null;
1121
+ messages: string | readonly string[];
1122
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1123
+ focused: boolean;
1124
+ errorMessages: string | readonly string[] | null;
1125
+ maxErrors: string | number;
1126
+ density: import('vuetify/lib/composables/density.mjs').Density;
1127
+ centerAffix: boolean;
1128
+ glow: boolean;
1129
+ hideSpinButtons: boolean;
1130
+ persistentHint: boolean;
1131
+ }> & Omit<{
1132
+ error: boolean;
1133
+ direction: "horizontal" | "vertical";
1134
+ style: import('vue').StyleValue;
1135
+ disabled: boolean | null;
1136
+ readonly: boolean | null;
1137
+ messages: string | readonly string[];
1138
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1139
+ focused: boolean;
1140
+ errorMessages: string | readonly string[] | null;
1141
+ maxErrors: string | number;
1142
+ density: import('vuetify/lib/composables/density.mjs').Density;
1143
+ centerAffix: boolean;
1144
+ glow: boolean;
1145
+ hideSpinButtons: boolean;
1146
+ persistentHint: boolean;
1147
+ name?: string | undefined;
1148
+ id?: string | undefined;
1149
+ width?: string | number | undefined;
1150
+ color?: string | undefined;
1151
+ maxWidth?: string | number | undefined;
1152
+ minWidth?: string | number | undefined;
1153
+ label?: string | undefined;
1154
+ class?: any;
1155
+ theme?: string | undefined;
1156
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1157
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
1158
+ validationValue?: any;
1159
+ baseColor?: string | undefined;
1160
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1161
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1162
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1163
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1164
+ iconColor?: string | boolean | undefined;
1165
+ hint?: string | undefined;
1166
+ hideDetails?: boolean | "auto" | undefined;
1167
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
1168
+ $attrs: {
1169
+ [x: string]: unknown;
1170
+ };
1171
+ $refs: {
1172
+ [x: string]: unknown;
1173
+ };
1174
+ $slots: Readonly<{
1175
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1176
+ [key: string]: any;
1177
+ }>[]) | undefined;
1178
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1179
+ [key: string]: any;
1180
+ }>[]) | undefined;
1181
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1182
+ [key: string]: any;
1183
+ }>[]) | undefined;
1184
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1185
+ [key: string]: any;
1186
+ }>[]) | undefined;
1187
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1188
+ [key: string]: any;
1189
+ }>[]) | undefined;
1190
+ }>;
1191
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1192
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1193
+ $host: Element | null;
1194
+ $emit: (event: string, ...args: any[]) => void;
1195
+ $el: any;
1196
+ $options: import('vue').ComponentOptionsBase<{
1197
+ error: boolean;
1198
+ direction: "horizontal" | "vertical";
1199
+ style: import('vue').StyleValue;
1200
+ disabled: boolean | null;
1201
+ readonly: boolean | null;
1202
+ messages: string | readonly string[];
1203
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1204
+ focused: boolean;
1205
+ errorMessages: string | readonly string[] | null;
1206
+ maxErrors: string | number;
1207
+ density: import('vuetify/lib/composables/density.mjs').Density;
1208
+ centerAffix: boolean;
1209
+ glow: boolean;
1210
+ hideSpinButtons: boolean;
1211
+ persistentHint: boolean;
1212
+ } & {
1213
+ name?: string | undefined;
1214
+ id?: string | undefined;
1215
+ width?: string | number | undefined;
1216
+ color?: string | undefined;
1217
+ maxWidth?: string | number | undefined;
1218
+ minWidth?: string | number | undefined;
1219
+ label?: string | undefined;
1220
+ class?: any;
1221
+ theme?: string | undefined;
1222
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1223
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
1224
+ validationValue?: any;
1225
+ baseColor?: string | undefined;
1226
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1227
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1228
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1229
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1230
+ iconColor?: string | boolean | undefined;
1231
+ hint?: string | undefined;
1232
+ hideDetails?: boolean | "auto" | undefined;
1233
+ }, {
1234
+ reset: () => Promise<void>;
1235
+ resetValidation: () => Promise<void>;
1236
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
1237
+ isValid: import('vue').ComputedRef<boolean | null>;
1238
+ errorMessages: import('vue').ComputedRef<string[]>;
1239
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1240
+ 'update:modelValue': (value: any) => true;
1241
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
1242
+ error: boolean;
1243
+ direction: "horizontal" | "vertical";
1244
+ style: import('vue').StyleValue;
1245
+ disabled: boolean | null;
1246
+ readonly: boolean | null;
1247
+ messages: string | readonly string[];
1248
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1249
+ focused: boolean;
1250
+ errorMessages: string | readonly string[] | null;
1251
+ maxErrors: string | number;
1252
+ density: import('vuetify/lib/composables/density.mjs').Density;
1253
+ centerAffix: boolean;
1254
+ glow: boolean;
1255
+ hideSpinButtons: boolean;
1256
+ persistentHint: boolean;
1257
+ }, {}, string, import('vue').SlotsType<Partial<{
1258
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1259
+ [key: string]: any;
1260
+ }>[];
1261
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1262
+ [key: string]: any;
1263
+ }>[];
1264
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1265
+ [key: string]: any;
1266
+ }>[];
1267
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1268
+ [key: string]: any;
1269
+ }>[];
1270
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1271
+ [key: string]: any;
1272
+ }>[];
1273
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1274
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
1275
+ created?: (() => void) | (() => void)[] | undefined;
1276
+ beforeMount?: (() => void) | (() => void)[] | undefined;
1277
+ mounted?: (() => void) | (() => void)[] | undefined;
1278
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
1279
+ updated?: (() => void) | (() => void)[] | undefined;
1280
+ activated?: (() => void) | (() => void)[] | undefined;
1281
+ deactivated?: (() => void) | (() => void)[] | undefined;
1282
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
1283
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
1284
+ destroyed?: (() => void) | (() => void)[] | undefined;
1285
+ unmounted?: (() => void) | (() => void)[] | undefined;
1286
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
1287
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
1288
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
1289
+ };
1290
+ $forceUpdate: () => void;
1291
+ $nextTick: typeof nextTick;
1292
+ $watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
1293
+ } & Readonly<{
1294
+ error: boolean;
1295
+ direction: "horizontal" | "vertical";
1296
+ style: import('vue').StyleValue;
1297
+ disabled: boolean | null;
1298
+ readonly: boolean | null;
1299
+ messages: string | readonly string[];
1300
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1301
+ focused: boolean;
1302
+ errorMessages: string | readonly string[] | null;
1303
+ maxErrors: string | number;
1304
+ density: import('vuetify/lib/composables/density.mjs').Density;
1305
+ centerAffix: boolean;
1306
+ glow: boolean;
1307
+ hideSpinButtons: boolean;
1308
+ persistentHint: boolean;
1309
+ }> & Omit<{
1310
+ error: boolean;
1311
+ direction: "horizontal" | "vertical";
1312
+ style: import('vue').StyleValue;
1313
+ disabled: boolean | null;
1314
+ readonly: boolean | null;
1315
+ messages: string | readonly string[];
1316
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
1317
+ focused: boolean;
1318
+ errorMessages: string | readonly string[] | null;
1319
+ maxErrors: string | number;
1320
+ density: import('vuetify/lib/composables/density.mjs').Density;
1321
+ centerAffix: boolean;
1322
+ glow: boolean;
1323
+ hideSpinButtons: boolean;
1324
+ persistentHint: boolean;
1325
+ } & {
1326
+ name?: string | undefined;
1327
+ id?: string | undefined;
1328
+ width?: string | number | undefined;
1329
+ color?: string | undefined;
1330
+ maxWidth?: string | number | undefined;
1331
+ minWidth?: string | number | undefined;
1332
+ label?: string | undefined;
1333
+ class?: any;
1334
+ theme?: string | undefined;
1335
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1336
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
1337
+ validationValue?: any;
1338
+ baseColor?: string | undefined;
1339
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1340
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1341
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1342
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1343
+ iconColor?: string | boolean | undefined;
1344
+ hint?: string | undefined;
1345
+ hideDetails?: boolean | "auto" | undefined;
1346
+ }, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
1347
+ reset: () => Promise<void>;
1348
+ resetValidation: () => Promise<void>;
1349
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
1350
+ isValid: import('vue').ComputedRef<boolean | null>;
1351
+ errorMessages: import('vue').ComputedRef<string[]>;
1352
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1353
+ modelValue?: unknown;
1354
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1355
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
1356
+ $: import('vue').ComponentInternalInstance;
1357
+ $data: {};
1358
+ $props: Partial<{
1359
+ flat: boolean;
1360
+ reverse: boolean;
1361
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1362
+ error: boolean; /** @type { [typeof __VLS_components.VIcon, typeof __VLS_components.VIcon, ] } */
1363
+ active: boolean;
1364
+ style: import('vue').StyleValue;
1365
+ disabled: boolean;
1366
+ focused: boolean;
1367
+ rounded: string | number | boolean;
1368
+ tile: boolean;
1369
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1370
+ centerAffix: boolean;
1371
+ glow: boolean;
1372
+ clearable: boolean;
1373
+ dirty: boolean;
1374
+ persistentClear: boolean;
1375
+ singleLine: boolean;
1376
+ }> & Omit<{
1377
+ flat: boolean;
1378
+ reverse: boolean;
1379
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1380
+ error: boolean;
1381
+ active: boolean;
1382
+ style: import('vue').StyleValue;
1383
+ disabled: boolean;
1384
+ focused: boolean;
1385
+ tile: boolean;
1386
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1387
+ glow: boolean;
1388
+ clearable: boolean;
1389
+ dirty: boolean;
1390
+ persistentClear: boolean;
1391
+ singleLine: boolean;
1392
+ id?: string | undefined;
1393
+ color?: string | undefined;
1394
+ loading?: string | boolean | undefined;
1395
+ label?: string | undefined;
1396
+ class?: any;
1397
+ theme?: string | undefined;
1398
+ 'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
1399
+ rounded?: string | number | boolean | undefined;
1400
+ baseColor?: string | undefined;
1401
+ bgColor?: string | undefined;
1402
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1403
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1404
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1405
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1406
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1407
+ centerAffix?: boolean | undefined;
1408
+ iconColor?: string | boolean | undefined;
1409
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1410
+ $attrs: {
1411
+ [x: string]: unknown;
1412
+ };
1413
+ $refs: {
1414
+ [x: string]: unknown;
1415
+ };
1416
+ $slots: Readonly<{
1417
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1418
+ props: Record<string, any>;
1419
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1420
+ [key: string]: any;
1421
+ }>[]) | undefined;
1422
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1423
+ [key: string]: any;
1424
+ }>[]) | undefined;
1425
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1426
+ [key: string]: any;
1427
+ }>[]) | undefined;
1428
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1429
+ label: string | undefined;
1430
+ props: Record<string, any>;
1431
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1432
+ [key: string]: any;
1433
+ }>[]) | undefined;
1434
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1435
+ [key: string]: any;
1436
+ }>[]) | undefined;
1437
+ default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1438
+ [key: string]: any;
1439
+ }>[]) | undefined;
1440
+ }>;
1441
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1442
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1443
+ $host: Element | null;
1444
+ $emit: (event: "update:focused", focused: boolean) => void;
1445
+ $el: any;
1446
+ $options: import('vue').ComponentOptionsBase<{
1447
+ flat: boolean;
1448
+ reverse: boolean;
1449
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1450
+ error: boolean;
1451
+ active: boolean;
1452
+ style: import('vue').StyleValue;
1453
+ disabled: boolean;
1454
+ focused: boolean;
1455
+ tile: boolean;
1456
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1457
+ glow: boolean;
1458
+ clearable: boolean;
1459
+ dirty: boolean;
1460
+ persistentClear: boolean;
1461
+ singleLine: boolean;
1462
+ } & {
1463
+ id?: string | undefined;
1464
+ color?: string | undefined;
1465
+ loading?: string | boolean | undefined;
1466
+ label?: string | undefined;
1467
+ class?: any;
1468
+ theme?: string | undefined;
1469
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1470
+ rounded?: string | number | boolean | undefined;
1471
+ baseColor?: string | undefined;
1472
+ bgColor?: string | undefined;
1473
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1474
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1475
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1476
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1477
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1478
+ centerAffix?: boolean | undefined;
1479
+ iconColor?: string | boolean | undefined;
1480
+ } & {
1481
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1482
+ }, {
1483
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1484
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
1485
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1486
+ 'update:focused': (focused: boolean) => true;
1487
+ 'update:modelValue': (value: any) => true;
1488
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
1489
+ flat: boolean;
1490
+ reverse: boolean;
1491
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1492
+ error: boolean;
1493
+ active: boolean;
1494
+ style: import('vue').StyleValue;
1495
+ disabled: boolean;
1496
+ focused: boolean;
1497
+ rounded: string | number | boolean;
1498
+ tile: boolean;
1499
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1500
+ centerAffix: boolean;
1501
+ glow: boolean;
1502
+ clearable: boolean;
1503
+ dirty: boolean;
1504
+ persistentClear: boolean;
1505
+ singleLine: boolean;
1506
+ }, {}, string, import('vue').SlotsType<Partial<{
1507
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1508
+ props: Record<string, any>;
1509
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1510
+ [key: string]: any;
1511
+ }>[];
1512
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1513
+ [key: string]: any;
1514
+ }>[];
1515
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1516
+ [key: string]: any;
1517
+ }>[];
1518
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
1519
+ label: string | undefined;
1520
+ props: Record<string, any>;
1521
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1522
+ [key: string]: any;
1523
+ }>[];
1524
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1525
+ [key: string]: any;
1526
+ }>[];
1527
+ default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1528
+ [key: string]: any;
1529
+ }>[];
1530
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1531
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
1532
+ created?: (() => void) | (() => void)[] | undefined;
1533
+ beforeMount?: (() => void) | (() => void)[] | undefined;
1534
+ mounted?: (() => void) | (() => void)[] | undefined;
1535
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
1536
+ updated?: (() => void) | (() => void)[] | undefined;
1537
+ activated?: (() => void) | (() => void)[] | undefined;
1538
+ deactivated?: (() => void) | (() => void)[] | undefined;
1539
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
1540
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
1541
+ destroyed?: (() => void) | (() => void)[] | undefined;
1542
+ unmounted?: (() => void) | (() => void)[] | undefined;
1543
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
1544
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
1545
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
1546
+ };
1547
+ $forceUpdate: () => void;
1548
+ $nextTick: typeof nextTick;
1549
+ $watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
1550
+ } & Readonly<{
1551
+ flat: boolean;
1552
+ reverse: boolean;
1553
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1554
+ error: boolean;
1555
+ active: boolean;
1556
+ style: import('vue').StyleValue;
1557
+ disabled: boolean;
1558
+ focused: boolean;
1559
+ rounded: string | number | boolean;
1560
+ tile: boolean;
1561
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1562
+ centerAffix: boolean;
1563
+ glow: boolean;
1564
+ clearable: boolean;
1565
+ dirty: boolean;
1566
+ persistentClear: boolean;
1567
+ singleLine: boolean;
1568
+ }> & Omit<{
1569
+ flat: boolean;
1570
+ reverse: boolean;
1571
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1572
+ error: boolean;
1573
+ active: boolean;
1574
+ style: import('vue').StyleValue;
1575
+ disabled: boolean;
1576
+ focused: boolean;
1577
+ tile: boolean;
1578
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1579
+ glow: boolean;
1580
+ clearable: boolean;
1581
+ dirty: boolean;
1582
+ persistentClear: boolean;
1583
+ singleLine: boolean;
1584
+ } & {
1585
+ id?: string | undefined;
1586
+ color?: string | undefined;
1587
+ loading?: string | boolean | undefined;
1588
+ label?: string | undefined;
1589
+ class?: any;
1590
+ theme?: string | undefined;
1591
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1592
+ rounded?: string | number | boolean | undefined;
1593
+ baseColor?: string | undefined;
1594
+ bgColor?: string | undefined;
1595
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1596
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
1597
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1598
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1599
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1600
+ centerAffix?: boolean | undefined;
1601
+ iconColor?: string | boolean | undefined;
1602
+ } & {
1603
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1604
+ }, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
1605
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1606
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
1607
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1608
+ modelValue?: unknown;
1609
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1610
+ }, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
1611
+ _allExposed: {} | {
1612
+ reset: () => Promise<void>;
1613
+ resetValidation: () => Promise<void>;
1614
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
1615
+ isValid: import('vue').ComputedRef<boolean | null>;
1616
+ errorMessages: import('vue').ComputedRef<string[]>;
1617
+ } | {
1618
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1619
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
1620
+ };
1621
+ }, {}, {}, {}, {
1622
+ flat: boolean;
1623
+ reverse: boolean;
1624
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
1625
+ type: string;
1626
+ error: boolean;
1627
+ active: boolean;
1628
+ direction: "horizontal" | "vertical";
1629
+ style: import('vue').StyleValue;
1630
+ autofocus: boolean;
1631
+ disabled: boolean;
1632
+ readonly: boolean | null;
1633
+ messages: string | readonly string[];
1634
+ 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)?])[];
1635
+ focused: boolean;
1636
+ errorMessages: string | readonly string[] | null;
1637
+ maxErrors: string | number;
1638
+ density: import('vuetify/lib/composables/density.mjs').Density;
1639
+ rounded: string | number | boolean;
1640
+ tile: boolean;
1641
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1642
+ centerAffix: boolean;
1643
+ glow: boolean;
1644
+ hideSpinButtons: boolean;
1645
+ persistentHint: boolean;
1646
+ clearable: boolean;
1647
+ dirty: boolean;
1648
+ persistentClear: boolean;
1649
+ singleLine: boolean;
1650
+ persistentPlaceholder: boolean;
1651
+ persistentCounter: boolean;
1652
+ }> | null;
1653
+ };
1654
+ $slots: Readonly<{
1655
+ [name: string]: import('vue').Slot<any> | undefined;
1656
+ }>;
1657
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1658
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1659
+ $host: Element | null;
1660
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
1661
+ $el: any;
1662
+ $options: import('vue').ComponentOptionsBase<Readonly<{
1663
+ modelValue?: string | number | null | undefined;
1664
+ prependIcon?: import('../../Customs/SyTextField/types').IconType;
1665
+ appendIcon?: import('../../Customs/SyTextField/types').IconType;
1666
+ prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
1667
+ appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
1668
+ prependTooltip?: string | undefined;
1669
+ appendTooltip?: string | undefined;
1670
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
1671
+ variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
1672
+ color?: import('../../Customs/SyTextField/types').ColorType | undefined;
1673
+ isClearable?: boolean | undefined;
1674
+ showDivider?: boolean | undefined;
1675
+ label?: string | undefined;
1676
+ required?: boolean | undefined;
1677
+ errorMessages?: string[] | null | undefined;
1678
+ warningMessages?: string[] | null | undefined;
1679
+ successMessages?: string[] | null | undefined;
1680
+ readonly?: boolean | undefined;
1681
+ isActive?: boolean | undefined;
1682
+ baseColor?: string | undefined;
1683
+ bgColor?: string | undefined;
1684
+ centerAffix?: boolean | undefined;
1685
+ counter?: string | number | boolean | undefined;
1686
+ counterValue?: number | ((value: any) => number) | undefined;
1687
+ density?: "default" | "comfortable" | "compact" | undefined;
1688
+ direction?: "horizontal" | "vertical" | undefined;
1689
+ isDirty?: boolean | undefined;
1690
+ disabled?: boolean | undefined;
1691
+ isOnError?: boolean | undefined;
1692
+ isFlat?: boolean | undefined;
1693
+ isFocused?: boolean | undefined;
1694
+ areDetailsHidden?: boolean | "auto" | undefined;
1695
+ areSpinButtonsHidden?: boolean | undefined;
1696
+ hint?: string | undefined;
1697
+ id?: string | undefined;
1698
+ loading?: string | boolean | undefined;
1699
+ maxErrors?: string | number | undefined;
1700
+ maxWidth?: string | number | undefined;
1701
+ messages?: string | string[] | undefined;
1702
+ minWidth?: string | number | undefined;
1703
+ name?: string | undefined;
1704
+ displayPersistentClear?: boolean | undefined;
1705
+ displayPersistentCounter?: boolean | undefined;
1706
+ displayPersistentHint?: boolean | undefined;
1707
+ displayPersistentPlaceholder?: boolean | undefined;
1708
+ placeholder?: string | undefined;
1709
+ prefix?: string | undefined;
1710
+ isReversed?: boolean | undefined;
1711
+ role?: string | undefined;
1712
+ rounded?: string | number | boolean | undefined;
1713
+ isOnSingleLine?: boolean | undefined;
1714
+ suffix?: string | undefined;
1715
+ theme?: string | undefined;
1716
+ isTiled?: boolean | undefined;
1717
+ type?: string | undefined;
1718
+ width?: string | number | undefined;
1719
+ displayAsterisk?: boolean | undefined;
1720
+ noIcon?: boolean | undefined;
1721
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1722
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1723
+ customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1724
+ showSuccessMessages?: boolean | undefined;
1725
+ isValidateOnBlur?: boolean | undefined;
1726
+ disableErrorHandling?: boolean | undefined;
1727
+ disableClickButton?: boolean | undefined;
1728
+ autocomplete?: string | undefined;
1729
+ }> & Readonly<{
1730
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1731
+ onClear?: ((...args: any[]) => any) | undefined;
1732
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1733
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1734
+ }>, {
1735
+ validation: {
1736
+ errors: Ref<string[], string[]>;
1737
+ warnings: Ref<string[], string[]>;
1738
+ successes: Ref<string[], string[]>;
1739
+ hasError: import('vue').ComputedRef<boolean>;
1740
+ hasWarning: import('vue').ComputedRef<boolean>;
1741
+ hasSuccess: import('vue').ComputedRef<boolean>;
1742
+ validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
1743
+ validateOnSubmit: () => Promise<boolean>;
1744
+ clearValidation: () => void;
1745
+ };
1746
+ validateOnSubmit: () => boolean;
1747
+ checkErrorOnBlur: () => void;
1748
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1749
+ "update:modelValue": (...args: any[]) => void;
1750
+ clear: (...args: any[]) => void;
1751
+ "prepend-icon-click": (...args: any[]) => void;
1752
+ "append-icon-click": (...args: any[]) => void;
1753
+ }, string, {
1754
+ modelValue: string | number | null;
1755
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1756
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1757
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1758
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1759
+ prependTooltip: string;
1760
+ appendTooltip: string;
1761
+ tooltipLocation: "top" | "bottom" | "start" | "end";
1762
+ variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
1763
+ color: import('../../Customs/SyTextField/types').ColorType;
1764
+ isClearable: boolean;
1765
+ label: string;
1766
+ errorMessages: string[] | null;
1767
+ warningMessages: string[] | null;
1768
+ successMessages: string[] | null;
1769
+ readonly: boolean;
1770
+ isActive: boolean;
1771
+ baseColor: string;
1772
+ bgColor: string;
1773
+ centerAffix: boolean;
1774
+ counter: string | number | boolean;
1775
+ counterValue: number | ((value: any) => number);
1776
+ density: "default" | "comfortable" | "compact";
1777
+ direction: "horizontal" | "vertical";
1778
+ isDirty: boolean;
1779
+ disabled: boolean;
1780
+ isOnError: boolean;
1781
+ isFlat: boolean;
1782
+ isFocused: boolean;
1783
+ areDetailsHidden: boolean | "auto";
1784
+ areSpinButtonsHidden: boolean;
1785
+ hint: string;
1786
+ id: string;
1787
+ loading: string | boolean;
1788
+ maxErrors: string | number;
1789
+ maxWidth: string | number;
1790
+ messages: string | string[];
1791
+ minWidth: string | number;
1792
+ name: string;
1793
+ displayPersistentClear: boolean;
1794
+ displayPersistentCounter: boolean;
1795
+ displayPersistentHint: boolean;
1796
+ displayPersistentPlaceholder: boolean;
1797
+ placeholder: string;
1798
+ prefix: string;
1799
+ isReversed: boolean;
1800
+ role: string;
1801
+ rounded: string | number | boolean;
1802
+ isOnSingleLine: boolean;
1803
+ suffix: string;
1804
+ theme: string;
1805
+ isTiled: boolean;
1806
+ type: string;
1807
+ width: string | number;
1808
+ displayAsterisk: boolean;
1809
+ noIcon: boolean;
1810
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
1811
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
1812
+ customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
1813
+ showSuccessMessages: boolean;
1814
+ isValidateOnBlur: boolean;
1815
+ disableErrorHandling: boolean;
1816
+ disableClickButton: boolean;
1817
+ autocomplete: string;
1818
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1819
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1820
+ created?: ((() => void) | (() => void)[]) | undefined;
1821
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
1822
+ mounted?: ((() => void) | (() => void)[]) | undefined;
1823
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
1824
+ updated?: ((() => void) | (() => void)[]) | undefined;
1825
+ activated?: ((() => void) | (() => void)[]) | undefined;
1826
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
1827
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
1828
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
1829
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
1830
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
1831
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1832
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1833
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
1834
+ };
1835
+ $forceUpdate: () => void;
1836
+ $nextTick: typeof nextTick;
1837
+ $watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
1838
+ } & Readonly<{
1839
+ modelValue: string | number | null;
1840
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1841
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1842
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1843
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1844
+ prependTooltip: string;
1845
+ appendTooltip: string;
1846
+ tooltipLocation: "top" | "bottom" | "start" | "end";
1847
+ variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
1848
+ color: import('../../Customs/SyTextField/types').ColorType;
1849
+ isClearable: boolean;
1850
+ label: string;
1851
+ errorMessages: string[] | null;
1852
+ warningMessages: string[] | null;
1853
+ successMessages: string[] | null;
1854
+ readonly: boolean;
1855
+ isActive: boolean;
1856
+ baseColor: string;
1857
+ bgColor: string;
1858
+ centerAffix: boolean;
1859
+ counter: string | number | boolean;
1860
+ counterValue: number | ((value: any) => number);
1861
+ density: "default" | "comfortable" | "compact";
1862
+ direction: "horizontal" | "vertical";
1863
+ isDirty: boolean;
1864
+ disabled: boolean;
1865
+ isOnError: boolean;
1866
+ isFlat: boolean;
1867
+ isFocused: boolean;
1868
+ areDetailsHidden: boolean | "auto";
1869
+ areSpinButtonsHidden: boolean;
1870
+ hint: string;
1871
+ id: string;
1872
+ loading: string | boolean;
1873
+ maxErrors: string | number;
1874
+ maxWidth: string | number;
1875
+ messages: string | string[];
1876
+ minWidth: string | number;
1877
+ name: string;
1878
+ displayPersistentClear: boolean;
1879
+ displayPersistentCounter: boolean;
1880
+ displayPersistentHint: boolean;
1881
+ displayPersistentPlaceholder: boolean;
1882
+ placeholder: string;
1883
+ prefix: string;
1884
+ isReversed: boolean;
1885
+ role: string;
1886
+ rounded: string | number | boolean;
1887
+ isOnSingleLine: boolean;
1888
+ suffix: string;
1889
+ theme: string;
1890
+ isTiled: boolean;
1891
+ type: string;
1892
+ width: string | number;
1893
+ displayAsterisk: boolean;
1894
+ noIcon: boolean;
1895
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
1896
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
1897
+ customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
1898
+ showSuccessMessages: boolean;
1899
+ isValidateOnBlur: boolean;
1900
+ disableErrorHandling: boolean;
1901
+ disableClickButton: boolean;
1902
+ autocomplete: string;
1903
+ }> & Omit<Readonly<{
1904
+ modelValue?: string | number | null | undefined;
1905
+ prependIcon?: import('../../Customs/SyTextField/types').IconType;
1906
+ appendIcon?: import('../../Customs/SyTextField/types').IconType;
1907
+ prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
1908
+ appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
1909
+ prependTooltip?: string | undefined;
1910
+ appendTooltip?: string | undefined;
1911
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
1912
+ variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
1913
+ color?: import('../../Customs/SyTextField/types').ColorType | undefined;
1914
+ isClearable?: boolean | undefined;
1915
+ showDivider?: boolean | undefined;
1916
+ label?: string | undefined;
1917
+ required?: boolean | undefined;
1918
+ errorMessages?: string[] | null | undefined;
1919
+ warningMessages?: string[] | null | undefined;
1920
+ successMessages?: string[] | null | undefined;
1921
+ readonly?: boolean | undefined;
1922
+ isActive?: boolean | undefined;
1923
+ baseColor?: string | undefined;
1924
+ bgColor?: string | undefined;
1925
+ centerAffix?: boolean | undefined;
1926
+ counter?: string | number | boolean | undefined;
1927
+ counterValue?: number | ((value: any) => number) | undefined;
1928
+ density?: "default" | "comfortable" | "compact" | undefined;
1929
+ direction?: "horizontal" | "vertical" | undefined;
1930
+ isDirty?: boolean | undefined;
1931
+ disabled?: boolean | undefined;
1932
+ isOnError?: boolean | undefined;
1933
+ isFlat?: boolean | undefined;
1934
+ isFocused?: boolean | undefined;
1935
+ areDetailsHidden?: boolean | "auto" | undefined;
1936
+ areSpinButtonsHidden?: boolean | undefined;
1937
+ hint?: string | undefined;
1938
+ id?: string | undefined;
1939
+ loading?: string | boolean | undefined;
1940
+ maxErrors?: string | number | undefined;
1941
+ maxWidth?: string | number | undefined;
1942
+ messages?: string | string[] | undefined;
1943
+ minWidth?: string | number | undefined;
1944
+ name?: string | undefined;
1945
+ displayPersistentClear?: boolean | undefined;
1946
+ displayPersistentCounter?: boolean | undefined;
1947
+ displayPersistentHint?: boolean | undefined;
1948
+ displayPersistentPlaceholder?: boolean | undefined;
1949
+ placeholder?: string | undefined;
1950
+ prefix?: string | undefined;
1951
+ isReversed?: boolean | undefined;
1952
+ role?: string | undefined;
1953
+ rounded?: string | number | boolean | undefined;
1954
+ isOnSingleLine?: boolean | undefined;
1955
+ suffix?: string | undefined;
1956
+ theme?: string | undefined;
1957
+ isTiled?: boolean | undefined;
1958
+ type?: string | undefined;
1959
+ width?: string | number | undefined;
1960
+ displayAsterisk?: boolean | undefined;
1961
+ noIcon?: boolean | undefined;
1962
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1963
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1964
+ customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
1965
+ showSuccessMessages?: boolean | undefined;
1966
+ isValidateOnBlur?: boolean | undefined;
1967
+ disableErrorHandling?: boolean | undefined;
1968
+ disableClickButton?: boolean | undefined;
1969
+ autocomplete?: string | undefined;
1970
+ }> & Readonly<{
1971
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1972
+ onClear?: ((...args: any[]) => any) | undefined;
1973
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1974
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1975
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
1976
+ validation: {
1977
+ errors: Ref<string[], string[]>;
1978
+ warnings: Ref<string[], string[]>;
1979
+ successes: Ref<string[], string[]>;
1980
+ hasError: import('vue').ComputedRef<boolean>;
1981
+ hasWarning: import('vue').ComputedRef<boolean>;
1982
+ hasSuccess: import('vue').ComputedRef<boolean>;
1983
+ validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
1984
+ validateOnSubmit: () => Promise<boolean>;
1985
+ clearValidation: () => void;
1986
+ };
1987
+ validateOnSubmit: () => boolean;
1988
+ checkErrorOnBlur: () => void;
1989
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1990
+ $slots: {
1991
+ prepend?(_: {}): any;
1992
+ append?(_: {}): any;
1993
+ 'prepend-inner'?(_: {}): any;
1994
+ 'append-inner'?(_: {}): any;
1995
+ details?(_: {}): any;
1996
+ };
1997
+ }) | null;
1998
+ }, any, import('vue').ComponentProvideOptions, {
1999
+ P: {};
2000
+ B: {};
2001
+ D: {};
2002
+ C: {};
2003
+ M: {};
2004
+ Defaults: {};
2005
+ }, Readonly<{
2006
+ modelValue?: DateValue | undefined;
2007
+ placeholder?: string | undefined;
2008
+ format?: string | undefined;
2009
+ dateFormatReturn?: string | undefined;
2010
+ label?: string | undefined;
2011
+ required?: boolean | undefined;
2012
+ disabled?: boolean | undefined;
2013
+ readonly?: boolean | undefined;
2014
+ isOutlined?: boolean | undefined;
2015
+ displayIcon?: boolean | undefined;
2016
+ displayAppendIcon?: boolean | undefined;
2017
+ noIcon?: boolean | undefined;
2018
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2019
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2020
+ displayPrependIcon?: boolean | undefined;
2021
+ disableErrorHandling?: boolean | undefined;
2022
+ showSuccessMessages?: boolean | undefined;
2023
+ bgColor?: string | undefined;
2024
+ displayRange?: boolean | undefined;
2025
+ autoClamp?: boolean | undefined;
2026
+ }> & Readonly<{
2027
+ onBlur?: (() => any) | undefined;
2028
+ onFocus?: (() => any) | undefined;
2029
+ onInput?: ((value: string) => any) | undefined;
2030
+ "onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
2031
+ "onDate-selected"?: ((value: DateValue) => any) | undefined;
2032
+ }>, {
2033
+ validateOnSubmit: () => Promise<boolean>;
2034
+ focus(): void;
2035
+ blur(): void;
2036
+ }, {}, {}, {}, {
2037
+ required: boolean;
2038
+ modelValue: DateValue;
2039
+ label: string;
2040
+ readonly: boolean;
2041
+ bgColor: string;
2042
+ disabled: boolean;
2043
+ placeholder: string;
2044
+ noIcon: boolean;
2045
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
2046
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
2047
+ showSuccessMessages: boolean;
2048
+ disableErrorHandling: boolean;
2049
+ format: string;
2050
+ displayRange: boolean;
2051
+ dateFormatReturn: string;
2052
+ isOutlined: boolean;
2053
+ displayIcon: boolean;
2054
+ displayAppendIcon: boolean;
2055
+ displayPrependIcon: boolean;
2056
+ autoClamp: boolean;
2057
+ }> | null;
2058
+ dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
2059
+ modelValue?: DateValue | undefined;
2060
+ placeholder?: string | undefined;
2061
+ format?: string | undefined;
2062
+ dateFormatReturn?: string | undefined;
2063
+ label?: string | undefined;
2064
+ required?: boolean | undefined;
2065
+ disabled?: boolean | undefined;
2066
+ readonly?: boolean | undefined;
2067
+ isOutlined?: boolean | undefined;
2068
+ displayIcon?: boolean | undefined;
2069
+ displayAppendIcon?: boolean | undefined;
2070
+ noIcon?: boolean | undefined;
2071
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2072
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2073
+ displayPrependIcon?: boolean | undefined;
2074
+ disableErrorHandling?: boolean | undefined;
2075
+ showSuccessMessages?: boolean | undefined;
2076
+ bgColor?: string | undefined;
2077
+ displayRange?: boolean | undefined;
2078
+ autoClamp?: boolean | undefined;
2079
+ }> & Readonly<{
2080
+ onBlur?: (() => any) | undefined;
2081
+ onFocus?: (() => any) | undefined;
2082
+ onInput?: ((value: string) => any) | undefined;
2083
+ "onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
2084
+ "onDate-selected"?: ((value: DateValue) => any) | undefined;
2085
+ }>, {
2086
+ validateOnSubmit: () => Promise<boolean>;
2087
+ focus(): void;
2088
+ blur(): void;
2089
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2090
+ blur: () => any;
2091
+ focus: () => any;
2092
+ input: (value: string) => any;
2093
+ "update:model-value": (value: DateValue) => any;
2094
+ "date-selected": (value: DateValue) => any;
2095
+ }, import('vue').PublicProps, {
2096
+ required: boolean;
2097
+ modelValue: DateValue;
2098
+ label: string;
2099
+ readonly: boolean;
2100
+ bgColor: string;
2101
+ disabled: boolean;
2102
+ placeholder: string;
2103
+ noIcon: boolean;
2104
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
2105
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
2106
+ showSuccessMessages: boolean;
2107
+ disableErrorHandling: boolean;
2108
+ format: string;
2109
+ displayRange: boolean;
2110
+ dateFormatReturn: string;
2111
+ isOutlined: boolean;
2112
+ displayIcon: boolean;
2113
+ displayAppendIcon: boolean;
2114
+ displayPrependIcon: boolean;
2115
+ autoClamp: boolean;
2116
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
2117
+ inputRef: ({
2118
+ $: import('vue').ComponentInternalInstance;
2119
+ $data: {};
2120
+ $props: {
2121
+ readonly modelValue?: string | number | null | undefined;
2122
+ readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
2123
+ readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
2124
+ readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
2125
+ readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
2126
+ readonly prependTooltip?: string | undefined;
2127
+ readonly appendTooltip?: string | undefined;
2128
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2129
+ readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
2130
+ readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
2131
+ readonly isClearable?: boolean | undefined;
2132
+ readonly showDivider?: boolean | undefined;
2133
+ readonly label?: string | undefined;
2134
+ readonly required?: boolean | undefined;
2135
+ readonly errorMessages?: string[] | null | undefined;
2136
+ readonly warningMessages?: string[] | null | undefined;
2137
+ readonly successMessages?: string[] | null | undefined;
2138
+ readonly readonly?: boolean | undefined;
2139
+ readonly isActive?: boolean | undefined;
2140
+ readonly baseColor?: string | undefined;
2141
+ readonly bgColor?: string | undefined;
2142
+ readonly centerAffix?: boolean | undefined;
2143
+ readonly counter?: string | number | boolean | undefined;
2144
+ readonly counterValue?: number | ((value: any) => number) | undefined;
2145
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
2146
+ readonly direction?: "horizontal" | "vertical" | undefined;
2147
+ readonly isDirty?: boolean | undefined;
2148
+ readonly disabled?: boolean | undefined;
2149
+ readonly isOnError?: boolean | undefined;
2150
+ readonly isFlat?: boolean | undefined;
2151
+ readonly isFocused?: boolean | undefined;
2152
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
2153
+ readonly areSpinButtonsHidden?: boolean | undefined;
2154
+ readonly hint?: string | undefined;
2155
+ readonly id?: string | undefined;
2156
+ readonly loading?: string | boolean | undefined;
2157
+ readonly maxErrors?: string | number | undefined;
2158
+ readonly maxWidth?: string | number | undefined;
2159
+ readonly messages?: string | string[] | undefined;
2160
+ readonly minWidth?: string | number | undefined;
2161
+ readonly name?: string | undefined;
2162
+ readonly displayPersistentClear?: boolean | undefined;
2163
+ readonly displayPersistentCounter?: boolean | undefined;
2164
+ readonly displayPersistentHint?: boolean | undefined;
2165
+ readonly displayPersistentPlaceholder?: boolean | undefined;
2166
+ readonly placeholder?: string | undefined;
2167
+ readonly prefix?: string | undefined;
2168
+ readonly isReversed?: boolean | undefined;
2169
+ readonly role?: string | undefined;
2170
+ readonly rounded?: string | number | boolean | undefined;
2171
+ readonly isOnSingleLine?: boolean | undefined;
2172
+ readonly suffix?: string | undefined;
2173
+ readonly theme?: string | undefined;
2174
+ readonly isTiled?: boolean | undefined;
2175
+ readonly type?: string | undefined;
2176
+ readonly width?: string | number | undefined;
2177
+ readonly displayAsterisk?: boolean | undefined;
2178
+ readonly noIcon?: boolean | undefined;
2179
+ readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2180
+ readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2181
+ readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
2182
+ readonly showSuccessMessages?: boolean | undefined;
2183
+ readonly isValidateOnBlur?: boolean | undefined;
2184
+ readonly disableErrorHandling?: boolean | undefined;
2185
+ readonly disableClickButton?: boolean | undefined;
2186
+ readonly autocomplete?: string | undefined;
2187
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2188
+ readonly onClear?: ((...args: any[]) => any) | undefined;
2189
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2190
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2191
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
2192
+ $attrs: {
2193
+ [x: string]: unknown;
2194
+ };
2195
+ $refs: {
2196
+ [x: string]: unknown;
2197
+ } & {
2198
+ syTextFieldRef: import('vue').CreateComponentPublicInstanceWithMixins<{
2199
+ flat: boolean;
2200
+ reverse: boolean;
2201
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2202
+ type: string;
2203
+ error: boolean;
2204
+ active: boolean;
2205
+ direction: "horizontal" | "vertical";
2206
+ style: import('vue').StyleValue;
2207
+ autofocus: boolean;
2208
+ disabled: boolean;
2209
+ readonly: boolean | null;
2210
+ messages: string | readonly string[];
2211
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2212
+ focused: boolean;
2213
+ errorMessages: string | readonly string[] | null;
2214
+ maxErrors: string | number;
2215
+ density: import('vuetify/lib/composables/density.mjs').Density;
2216
+ tile: boolean;
2217
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2218
+ glow: boolean;
2219
+ hideSpinButtons: boolean;
2220
+ persistentHint: boolean;
2221
+ clearable: boolean;
2222
+ dirty: boolean;
2223
+ persistentClear: boolean;
2224
+ singleLine: boolean;
2225
+ persistentPlaceholder: boolean;
2226
+ persistentCounter: boolean;
2227
+ } & {
2228
+ name?: string | undefined;
2229
+ id?: string | undefined;
2230
+ width?: string | number | undefined;
2231
+ color?: string | undefined;
2232
+ maxWidth?: string | number | undefined;
2233
+ minWidth?: string | number | undefined;
2234
+ loading?: string | boolean | undefined;
2235
+ label?: string | undefined;
2236
+ prefix?: string | undefined;
2237
+ role?: string | undefined;
2238
+ class?: any;
2239
+ theme?: string | undefined;
2240
+ placeholder?: string | undefined;
2241
+ counter?: string | number | boolean | undefined;
2242
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2243
+ modelValue?: any;
2244
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
2245
+ validationValue?: any;
2246
+ rounded?: string | number | boolean | undefined;
2247
+ baseColor?: string | undefined;
2248
+ bgColor?: string | undefined;
2249
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2250
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2251
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2252
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2253
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2254
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2255
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2256
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2257
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2258
+ centerAffix?: boolean | undefined;
2259
+ iconColor?: string | boolean | undefined;
2260
+ hint?: string | undefined;
2261
+ hideDetails?: boolean | "auto" | undefined;
2262
+ suffix?: string | undefined;
2263
+ counterValue?: number | ((value: any) => number) | undefined;
2264
+ modelModifiers?: Record<string, boolean> | undefined;
2265
+ } & {
2266
+ $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
2267
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
2268
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2269
+ props: Record<string, any>;
2270
+ }) => import('vue').VNodeChild) | undefined;
2271
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2272
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2273
+ label: string | undefined;
2274
+ props: Record<string, any>;
2275
+ }) => import('vue').VNodeChild) | undefined;
2276
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2277
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2278
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
2279
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2280
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2281
+ default?: (() => import('vue').VNodeChild) | undefined;
2282
+ counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
2283
+ };
2284
+ 'v-slots'?: {
2285
+ message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
2286
+ clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2287
+ props: Record<string, any>;
2288
+ }) => import('vue').VNodeChild) | undefined;
2289
+ details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2290
+ label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2291
+ label: string | undefined;
2292
+ props: Record<string, any>;
2293
+ }) => import('vue').VNodeChild) | undefined;
2294
+ append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2295
+ prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2296
+ loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
2297
+ 'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2298
+ 'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2299
+ default?: false | (() => import('vue').VNodeChild) | undefined;
2300
+ counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
2301
+ } | undefined;
2302
+ } & {
2303
+ "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
2304
+ "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2305
+ props: Record<string, any>;
2306
+ }) => import('vue').VNodeChild) | undefined;
2307
+ "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2308
+ "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2309
+ label: string | undefined;
2310
+ props: Record<string, any>;
2311
+ }) => import('vue').VNodeChild) | undefined;
2312
+ "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2313
+ "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2314
+ "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
2315
+ "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2316
+ "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2317
+ "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
2318
+ "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
2319
+ } & {
2320
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2321
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
2322
+ "onClick:control"?: ((e: MouseEvent) => any) | undefined;
2323
+ "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
2324
+ }, HTMLInputElement & Omit<Omit<{
2325
+ $: import('vue').ComponentInternalInstance;
2326
+ $data: {};
2327
+ $props: Partial<{
2328
+ error: boolean;
2329
+ direction: "horizontal" | "vertical";
2330
+ style: import('vue').StyleValue;
2331
+ disabled: boolean | null;
2332
+ readonly: boolean | null;
2333
+ messages: string | readonly string[];
2334
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2335
+ focused: boolean;
2336
+ errorMessages: string | readonly string[] | null;
2337
+ maxErrors: string | number;
2338
+ density: import('vuetify/lib/composables/density.mjs').Density;
2339
+ centerAffix: boolean;
2340
+ glow: boolean;
2341
+ hideSpinButtons: boolean;
2342
+ persistentHint: boolean;
2343
+ }> & Omit<{
2344
+ error: boolean;
2345
+ direction: "horizontal" | "vertical";
2346
+ style: import('vue').StyleValue;
2347
+ disabled: boolean | null;
2348
+ readonly: boolean | null;
2349
+ messages: string | readonly string[];
2350
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2351
+ focused: boolean;
2352
+ errorMessages: string | readonly string[] | null;
2353
+ maxErrors: string | number;
2354
+ density: import('vuetify/lib/composables/density.mjs').Density;
2355
+ centerAffix: boolean;
2356
+ glow: boolean;
2357
+ hideSpinButtons: boolean;
2358
+ persistentHint: boolean;
2359
+ name?: string | undefined;
2360
+ id?: string | undefined;
2361
+ width?: string | number | undefined;
2362
+ color?: string | undefined;
2363
+ maxWidth?: string | number | undefined;
2364
+ minWidth?: string | number | undefined;
2365
+ label?: string | undefined;
2366
+ class?: any;
2367
+ theme?: string | undefined;
2368
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2369
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
2370
+ validationValue?: any;
2371
+ baseColor?: string | undefined;
2372
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2373
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2374
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2375
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2376
+ iconColor?: string | boolean | undefined;
2377
+ hint?: string | undefined;
2378
+ hideDetails?: boolean | "auto" | undefined;
2379
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
2380
+ $attrs: {
2381
+ [x: string]: unknown;
2382
+ };
2383
+ $refs: {
2384
+ [x: string]: unknown;
2385
+ };
2386
+ $slots: Readonly<{
2387
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2388
+ [key: string]: any;
2389
+ }>[]) | undefined;
2390
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2391
+ [key: string]: any;
2392
+ }>[]) | undefined;
2393
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2394
+ [key: string]: any;
2395
+ }>[]) | undefined;
2396
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2397
+ [key: string]: any;
2398
+ }>[]) | undefined;
2399
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2400
+ [key: string]: any;
2401
+ }>[]) | undefined;
2402
+ }>;
2403
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2404
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2405
+ $host: Element | null;
2406
+ $emit: (event: string, ...args: any[]) => void;
2407
+ $el: any;
2408
+ $options: import('vue').ComponentOptionsBase<{
2409
+ error: boolean;
2410
+ direction: "horizontal" | "vertical";
2411
+ style: import('vue').StyleValue;
2412
+ disabled: boolean | null;
2413
+ readonly: boolean | null;
2414
+ messages: string | readonly string[];
2415
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2416
+ focused: boolean;
2417
+ errorMessages: string | readonly string[] | null;
2418
+ maxErrors: string | number;
2419
+ density: import('vuetify/lib/composables/density.mjs').Density;
2420
+ centerAffix: boolean;
2421
+ glow: boolean;
2422
+ hideSpinButtons: boolean;
2423
+ persistentHint: boolean;
2424
+ } & {
2425
+ name?: string | undefined;
2426
+ id?: string | undefined;
2427
+ width?: string | number | undefined;
2428
+ color?: string | undefined;
2429
+ maxWidth?: string | number | undefined;
2430
+ minWidth?: string | number | undefined;
2431
+ label?: string | undefined;
2432
+ class?: any;
2433
+ theme?: string | undefined;
2434
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2435
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
2436
+ validationValue?: any;
2437
+ baseColor?: string | undefined;
2438
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2439
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2440
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2441
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2442
+ iconColor?: string | boolean | undefined;
2443
+ hint?: string | undefined;
2444
+ hideDetails?: boolean | "auto" | undefined;
2445
+ }, {
2446
+ reset: () => Promise<void>;
2447
+ resetValidation: () => Promise<void>;
2448
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
2449
+ isValid: import('vue').ComputedRef<boolean | null>;
2450
+ errorMessages: import('vue').ComputedRef<string[]>;
2451
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
2452
+ 'update:modelValue': (value: any) => true;
2453
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
2454
+ error: boolean;
2455
+ direction: "horizontal" | "vertical";
2456
+ style: import('vue').StyleValue;
2457
+ disabled: boolean | null;
2458
+ readonly: boolean | null;
2459
+ messages: string | readonly string[];
2460
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2461
+ focused: boolean;
2462
+ errorMessages: string | readonly string[] | null;
2463
+ maxErrors: string | number;
2464
+ density: import('vuetify/lib/composables/density.mjs').Density;
2465
+ centerAffix: boolean;
2466
+ glow: boolean;
2467
+ hideSpinButtons: boolean;
2468
+ persistentHint: boolean;
2469
+ }, {}, string, import('vue').SlotsType<Partial<{
2470
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2471
+ [key: string]: any;
2472
+ }>[];
2473
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2474
+ [key: string]: any;
2475
+ }>[];
2476
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2477
+ [key: string]: any;
2478
+ }>[];
2479
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2480
+ [key: string]: any;
2481
+ }>[];
2482
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2483
+ [key: string]: any;
2484
+ }>[];
2485
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2486
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
2487
+ created?: (() => void) | (() => void)[] | undefined;
2488
+ beforeMount?: (() => void) | (() => void)[] | undefined;
2489
+ mounted?: (() => void) | (() => void)[] | undefined;
2490
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
2491
+ updated?: (() => void) | (() => void)[] | undefined;
2492
+ activated?: (() => void) | (() => void)[] | undefined;
2493
+ deactivated?: (() => void) | (() => void)[] | undefined;
2494
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
2495
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
2496
+ destroyed?: (() => void) | (() => void)[] | undefined;
2497
+ unmounted?: (() => void) | (() => void)[] | undefined;
2498
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
2499
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
2500
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
2501
+ };
2502
+ $forceUpdate: () => void;
2503
+ $nextTick: typeof nextTick;
2504
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
2505
+ } & Readonly<{
2506
+ error: boolean;
2507
+ direction: "horizontal" | "vertical";
2508
+ style: import('vue').StyleValue;
2509
+ disabled: boolean | null;
2510
+ readonly: boolean | null;
2511
+ messages: string | readonly string[];
2512
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2513
+ focused: boolean;
2514
+ errorMessages: string | readonly string[] | null;
2515
+ maxErrors: string | number;
2516
+ density: import('vuetify/lib/composables/density.mjs').Density;
2517
+ centerAffix: boolean;
2518
+ glow: boolean;
2519
+ hideSpinButtons: boolean;
2520
+ persistentHint: boolean;
2521
+ }> & Omit<{
2522
+ error: boolean;
2523
+ direction: "horizontal" | "vertical";
2524
+ style: import('vue').StyleValue;
2525
+ disabled: boolean | null;
2526
+ readonly: boolean | null;
2527
+ messages: string | readonly string[];
2528
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2529
+ focused: boolean;
2530
+ errorMessages: string | readonly string[] | null;
2531
+ maxErrors: string | number;
2532
+ density: import('vuetify/lib/composables/density.mjs').Density;
2533
+ centerAffix: boolean;
2534
+ glow: boolean;
2535
+ hideSpinButtons: boolean;
2536
+ persistentHint: boolean;
2537
+ } & {
2538
+ name?: string | undefined;
2539
+ id?: string | undefined;
2540
+ width?: string | number | undefined;
2541
+ color?: string | undefined;
2542
+ maxWidth?: string | number | undefined;
2543
+ minWidth?: string | number | undefined;
2544
+ label?: string | undefined;
2545
+ class?: any;
2546
+ theme?: string | undefined;
2547
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2548
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
2549
+ validationValue?: any;
2550
+ baseColor?: string | undefined;
2551
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2552
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2553
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2554
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2555
+ iconColor?: string | boolean | undefined;
2556
+ hint?: string | undefined;
2557
+ hideDetails?: boolean | "auto" | undefined;
2558
+ }, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
2559
+ reset: () => Promise<void>;
2560
+ resetValidation: () => Promise<void>;
2561
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
2562
+ isValid: import('vue').ComputedRef<boolean | null>;
2563
+ errorMessages: import('vue').ComputedRef<string[]>;
2564
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
2565
+ modelValue?: unknown;
2566
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2567
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
2568
+ $: import('vue').ComponentInternalInstance;
2569
+ $data: {};
2570
+ $props: Partial<{
2571
+ flat: boolean;
2572
+ reverse: boolean;
2573
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2574
+ error: boolean;
2575
+ active: boolean;
2576
+ style: import('vue').StyleValue;
2577
+ disabled: boolean;
2578
+ focused: boolean;
2579
+ rounded: string | number | boolean;
2580
+ tile: boolean;
2581
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2582
+ centerAffix: boolean;
2583
+ glow: boolean;
2584
+ clearable: boolean;
2585
+ dirty: boolean;
2586
+ persistentClear: boolean;
2587
+ singleLine: boolean;
2588
+ }> & Omit<{
2589
+ flat: boolean;
2590
+ reverse: boolean;
2591
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2592
+ error: boolean;
2593
+ active: boolean;
2594
+ style: import('vue').StyleValue;
2595
+ disabled: boolean;
2596
+ focused: boolean;
2597
+ tile: boolean;
2598
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2599
+ glow: boolean;
2600
+ clearable: boolean;
2601
+ dirty: boolean;
2602
+ persistentClear: boolean;
2603
+ singleLine: boolean;
2604
+ id?: string | undefined;
2605
+ color?: string | undefined;
2606
+ loading?: string | boolean | undefined;
2607
+ label?: string | undefined;
2608
+ class?: any;
2609
+ theme?: string | undefined;
2610
+ 'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
2611
+ rounded?: string | number | boolean | undefined;
2612
+ baseColor?: string | undefined;
2613
+ bgColor?: string | undefined;
2614
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2615
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2616
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2617
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2618
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2619
+ centerAffix?: boolean | undefined;
2620
+ iconColor?: string | boolean | undefined;
2621
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
2622
+ $attrs: {
2623
+ [x: string]: unknown;
2624
+ };
2625
+ $refs: {
2626
+ [x: string]: unknown;
2627
+ };
2628
+ $slots: Readonly<{
2629
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2630
+ props: Record<string, any>;
2631
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2632
+ [key: string]: any;
2633
+ }>[]) | undefined;
2634
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2635
+ [key: string]: any;
2636
+ }>[]) | undefined;
2637
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2638
+ [key: string]: any;
2639
+ }>[]) | undefined;
2640
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2641
+ label: string | undefined;
2642
+ props: Record<string, any>;
2643
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2644
+ [key: string]: any;
2645
+ }>[]) | undefined;
2646
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2647
+ [key: string]: any;
2648
+ }>[]) | undefined;
2649
+ default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2650
+ [key: string]: any;
2651
+ }>[]) | undefined;
2652
+ }>;
2653
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2654
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2655
+ $host: Element | null;
2656
+ $emit: (event: "update:focused", focused: boolean) => void;
2657
+ $el: any;
2658
+ $options: import('vue').ComponentOptionsBase<{
2659
+ flat: boolean;
2660
+ reverse: boolean;
2661
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2662
+ error: boolean;
2663
+ active: boolean;
2664
+ style: import('vue').StyleValue;
2665
+ disabled: boolean;
2666
+ focused: boolean;
2667
+ tile: boolean;
2668
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2669
+ glow: boolean;
2670
+ clearable: boolean;
2671
+ dirty: boolean;
2672
+ persistentClear: boolean;
2673
+ singleLine: boolean;
2674
+ } & {
2675
+ id?: string | undefined;
2676
+ color?: string | undefined;
2677
+ loading?: string | boolean | undefined;
2678
+ label?: string | undefined;
2679
+ class?: any;
2680
+ theme?: string | undefined;
2681
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2682
+ rounded?: string | number | boolean | undefined;
2683
+ baseColor?: string | undefined;
2684
+ bgColor?: string | undefined;
2685
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2686
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2687
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2688
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2689
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2690
+ centerAffix?: boolean | undefined;
2691
+ iconColor?: string | boolean | undefined;
2692
+ } & {
2693
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2694
+ }, {
2695
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2696
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
2697
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
2698
+ 'update:focused': (focused: boolean) => true;
2699
+ 'update:modelValue': (value: any) => true;
2700
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
2701
+ flat: boolean;
2702
+ reverse: boolean;
2703
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2704
+ error: boolean;
2705
+ active: boolean;
2706
+ style: import('vue').StyleValue;
2707
+ disabled: boolean;
2708
+ focused: boolean;
2709
+ rounded: string | number | boolean;
2710
+ tile: boolean;
2711
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2712
+ centerAffix: boolean;
2713
+ glow: boolean;
2714
+ clearable: boolean;
2715
+ dirty: boolean;
2716
+ persistentClear: boolean;
2717
+ singleLine: boolean;
2718
+ }, {}, string, import('vue').SlotsType<Partial<{
2719
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2720
+ props: Record<string, any>;
2721
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2722
+ [key: string]: any;
2723
+ }>[];
2724
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2725
+ [key: string]: any;
2726
+ }>[];
2727
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2728
+ [key: string]: any;
2729
+ }>[];
2730
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2731
+ label: string | undefined;
2732
+ props: Record<string, any>;
2733
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2734
+ [key: string]: any;
2735
+ }>[];
2736
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2737
+ [key: string]: any;
2738
+ }>[];
2739
+ default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2740
+ [key: string]: any;
2741
+ }>[];
2742
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2743
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
2744
+ created?: (() => void) | (() => void)[] | undefined;
2745
+ beforeMount?: (() => void) | (() => void)[] | undefined;
2746
+ mounted?: (() => void) | (() => void)[] | undefined;
2747
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
2748
+ updated?: (() => void) | (() => void)[] | undefined;
2749
+ activated?: (() => void) | (() => void)[] | undefined;
2750
+ deactivated?: (() => void) | (() => void)[] | undefined;
2751
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
2752
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
2753
+ destroyed?: (() => void) | (() => void)[] | undefined;
2754
+ unmounted?: (() => void) | (() => void)[] | undefined;
2755
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
2756
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
2757
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
2758
+ };
2759
+ $forceUpdate: () => void;
2760
+ $nextTick: typeof nextTick;
2761
+ $watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
2762
+ } & Readonly<{
2763
+ flat: boolean;
2764
+ reverse: boolean;
2765
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2766
+ error: boolean;
2767
+ active: boolean;
2768
+ style: import('vue').StyleValue;
2769
+ disabled: boolean;
2770
+ focused: boolean;
2771
+ rounded: string | number | boolean;
2772
+ tile: boolean;
2773
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2774
+ centerAffix: boolean;
2775
+ glow: boolean;
2776
+ clearable: boolean;
2777
+ dirty: boolean;
2778
+ persistentClear: boolean;
2779
+ singleLine: boolean;
2780
+ }> & Omit<{
2781
+ flat: boolean;
2782
+ reverse: boolean;
2783
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2784
+ error: boolean;
2785
+ active: boolean;
2786
+ style: import('vue').StyleValue;
2787
+ disabled: boolean;
2788
+ focused: boolean;
2789
+ tile: boolean;
2790
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2791
+ glow: boolean;
2792
+ clearable: boolean;
2793
+ dirty: boolean;
2794
+ persistentClear: boolean;
2795
+ singleLine: boolean;
2796
+ } & {
2797
+ id?: string | undefined;
2798
+ color?: string | undefined;
2799
+ loading?: string | boolean | undefined;
2800
+ label?: string | undefined;
2801
+ class?: any;
2802
+ theme?: string | undefined;
2803
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2804
+ rounded?: string | number | boolean | undefined;
2805
+ baseColor?: string | undefined;
2806
+ bgColor?: string | undefined;
2807
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2808
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2809
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2810
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2811
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2812
+ centerAffix?: boolean | undefined;
2813
+ iconColor?: string | boolean | undefined;
2814
+ } & {
2815
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2816
+ }, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
2817
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2818
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
2819
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
2820
+ modelValue?: unknown;
2821
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2822
+ }, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
2823
+ _allExposed: {} | {
2824
+ reset: () => Promise<void>;
2825
+ resetValidation: () => Promise<void>;
2826
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
2827
+ isValid: import('vue').ComputedRef<boolean | null>;
2828
+ errorMessages: import('vue').ComputedRef<string[]>;
2829
+ } | {
2830
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2831
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
2832
+ };
2833
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2834
+ 'click:control': (e: MouseEvent) => true;
2835
+ 'mousedown:control': (e: MouseEvent) => true;
2836
+ 'update:focused': (focused: boolean) => true;
2837
+ 'update:modelValue': (val: string) => true;
2838
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
2839
+ flat: boolean;
2840
+ reverse: boolean;
2841
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2842
+ type: string;
2843
+ error: boolean;
2844
+ active: boolean;
2845
+ direction: "horizontal" | "vertical";
2846
+ style: import('vue').StyleValue;
2847
+ autofocus: boolean;
2848
+ disabled: boolean;
2849
+ readonly: boolean | null;
2850
+ messages: string | readonly string[];
2851
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2852
+ focused: boolean;
2853
+ errorMessages: string | readonly string[] | null;
2854
+ maxErrors: string | number;
2855
+ density: import('vuetify/lib/composables/density.mjs').Density;
2856
+ rounded: string | number | boolean;
2857
+ tile: boolean;
2858
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2859
+ centerAffix: boolean;
2860
+ glow: boolean;
2861
+ hideSpinButtons: boolean;
2862
+ persistentHint: boolean;
2863
+ clearable: boolean;
2864
+ dirty: boolean;
2865
+ persistentClear: boolean;
2866
+ singleLine: boolean;
2867
+ persistentPlaceholder: boolean;
2868
+ persistentCounter: boolean;
2869
+ }, true, {}, import('vue').SlotsType<Partial<{
2870
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2871
+ [key: string]: any;
2872
+ }>[];
2873
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2874
+ props: Record<string, any>;
2875
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2876
+ [key: string]: any;
2877
+ }>[];
2878
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2879
+ [key: string]: any;
2880
+ }>[];
2881
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2882
+ label: string | undefined;
2883
+ props: Record<string, any>;
2884
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2885
+ [key: string]: any;
2886
+ }>[];
2887
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2888
+ [key: string]: any;
2889
+ }>[];
2890
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2891
+ [key: string]: any;
2892
+ }>[];
2893
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2894
+ [key: string]: any;
2895
+ }>[];
2896
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2897
+ [key: string]: any;
2898
+ }>[];
2899
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2900
+ [key: string]: any;
2901
+ }>[];
2902
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2903
+ [key: string]: any;
2904
+ }>[];
2905
+ counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2906
+ [key: string]: any;
2907
+ }>[];
2908
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
2909
+ P: {};
2910
+ B: {};
2911
+ D: {};
2912
+ C: {};
2913
+ M: {};
2914
+ Defaults: {};
2915
+ }, {
2916
+ flat: boolean;
2917
+ reverse: boolean;
2918
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
2919
+ type: string;
2920
+ error: boolean;
2921
+ active: boolean;
2922
+ direction: "horizontal" | "vertical";
2923
+ style: import('vue').StyleValue;
2924
+ autofocus: boolean;
2925
+ disabled: boolean;
2926
+ readonly: boolean | null;
2927
+ messages: string | readonly string[];
2928
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
2929
+ focused: boolean;
2930
+ errorMessages: string | readonly string[] | null;
2931
+ maxErrors: string | number;
2932
+ density: import('vuetify/lib/composables/density.mjs').Density;
2933
+ tile: boolean;
2934
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2935
+ glow: boolean;
2936
+ hideSpinButtons: boolean;
2937
+ persistentHint: boolean;
2938
+ clearable: boolean;
2939
+ dirty: boolean;
2940
+ persistentClear: boolean;
2941
+ singleLine: boolean;
2942
+ persistentPlaceholder: boolean;
2943
+ persistentCounter: boolean;
2944
+ } & {
2945
+ name?: string | undefined;
2946
+ id?: string | undefined;
2947
+ width?: string | number | undefined;
2948
+ color?: string | undefined;
2949
+ maxWidth?: string | number | undefined;
2950
+ minWidth?: string | number | undefined;
2951
+ loading?: string | boolean | undefined;
2952
+ label?: string | undefined;
2953
+ prefix?: string | undefined;
2954
+ role?: string | undefined;
2955
+ class?: any;
2956
+ theme?: string | undefined;
2957
+ placeholder?: string | undefined;
2958
+ counter?: string | number | boolean | undefined;
2959
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2960
+ modelValue?: any;
2961
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
2962
+ validationValue?: any;
2963
+ rounded?: string | number | boolean | undefined;
2964
+ baseColor?: string | undefined;
2965
+ bgColor?: string | undefined;
2966
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2967
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2968
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2969
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
2970
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2971
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2972
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2973
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2974
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2975
+ centerAffix?: boolean | undefined;
2976
+ iconColor?: string | boolean | undefined;
2977
+ hint?: string | undefined;
2978
+ hideDetails?: boolean | "auto" | undefined;
2979
+ suffix?: string | undefined;
2980
+ counterValue?: number | ((value: any) => number) | undefined;
2981
+ modelModifiers?: Record<string, boolean> | undefined;
2982
+ } & {
2983
+ $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
2984
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
2985
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2986
+ props: Record<string, any>;
2987
+ }) => import('vue').VNodeChild) | undefined;
2988
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2989
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
2990
+ label: string | undefined;
2991
+ props: Record<string, any>;
2992
+ }) => import('vue').VNodeChild) | undefined;
2993
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2994
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
2995
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
2996
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2997
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
2998
+ default?: (() => import('vue').VNodeChild) | undefined;
2999
+ counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
3000
+ };
3001
+ 'v-slots'?: {
3002
+ message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
3003
+ clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3004
+ props: Record<string, any>;
3005
+ }) => import('vue').VNodeChild) | undefined;
3006
+ details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3007
+ label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3008
+ label: string | undefined;
3009
+ props: Record<string, any>;
3010
+ }) => import('vue').VNodeChild) | undefined;
3011
+ append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3012
+ prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3013
+ loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
3014
+ 'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
3015
+ 'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
3016
+ default?: false | (() => import('vue').VNodeChild) | undefined;
3017
+ counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
3018
+ } | undefined;
3019
+ } & {
3020
+ "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
3021
+ "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3022
+ props: Record<string, any>;
3023
+ }) => import('vue').VNodeChild) | undefined;
3024
+ "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3025
+ "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3026
+ label: string | undefined;
3027
+ props: Record<string, any>;
3028
+ }) => import('vue').VNodeChild) | undefined;
3029
+ "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3030
+ "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
3031
+ "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
3032
+ "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
3033
+ "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
3034
+ "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
3035
+ "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
3036
+ } & {
3037
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3038
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
3039
+ "onClick:control"?: ((e: MouseEvent) => any) | undefined;
3040
+ "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
3041
+ }, HTMLInputElement & Omit<Omit<{
3042
+ $: import('vue').ComponentInternalInstance;
3043
+ $data: {};
3044
+ $props: Partial<{
3045
+ error: boolean;
3046
+ direction: "horizontal" | "vertical";
3047
+ style: import('vue').StyleValue;
3048
+ disabled: boolean | null;
3049
+ readonly: boolean | null;
3050
+ messages: string | readonly string[];
3051
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3052
+ focused: boolean;
3053
+ errorMessages: string | readonly string[] | null;
3054
+ maxErrors: string | number;
3055
+ density: import('vuetify/lib/composables/density.mjs').Density;
3056
+ centerAffix: boolean;
3057
+ glow: boolean;
3058
+ hideSpinButtons: boolean;
3059
+ persistentHint: boolean;
3060
+ }> & Omit<{
3061
+ error: boolean;
3062
+ direction: "horizontal" | "vertical";
3063
+ style: import('vue').StyleValue;
3064
+ disabled: boolean | null;
3065
+ readonly: boolean | null;
3066
+ messages: string | readonly string[];
3067
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3068
+ focused: boolean;
3069
+ errorMessages: string | readonly string[] | null;
3070
+ maxErrors: string | number;
3071
+ density: import('vuetify/lib/composables/density.mjs').Density;
3072
+ centerAffix: boolean;
3073
+ glow: boolean;
3074
+ hideSpinButtons: boolean;
3075
+ persistentHint: boolean;
3076
+ name?: string | undefined;
3077
+ id?: string | undefined;
3078
+ width?: string | number | undefined;
3079
+ color?: string | undefined;
3080
+ maxWidth?: string | number | undefined;
3081
+ minWidth?: string | number | undefined;
3082
+ label?: string | undefined;
3083
+ class?: any;
3084
+ theme?: string | undefined;
3085
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3086
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
3087
+ validationValue?: any;
3088
+ baseColor?: string | undefined;
3089
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3090
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3091
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3092
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3093
+ iconColor?: string | boolean | undefined;
3094
+ hint?: string | undefined;
3095
+ hideDetails?: boolean | "auto" | undefined;
3096
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
3097
+ $attrs: {
3098
+ [x: string]: unknown;
3099
+ };
3100
+ $refs: {
3101
+ [x: string]: unknown;
3102
+ };
3103
+ $slots: Readonly<{
3104
+ default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3105
+ [key: string]: any;
3106
+ }>[]) | undefined;
3107
+ prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3108
+ [key: string]: any;
3109
+ }>[]) | undefined;
3110
+ append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3111
+ [key: string]: any;
3112
+ }>[]) | undefined;
3113
+ details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3114
+ [key: string]: any;
3115
+ }>[]) | undefined;
3116
+ message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3117
+ [key: string]: any;
3118
+ }>[]) | undefined;
3119
+ }>;
3120
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3121
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3122
+ $host: Element | null;
3123
+ $emit: (event: string, ...args: any[]) => void;
3124
+ $el: any;
3125
+ $options: import('vue').ComponentOptionsBase<{
3126
+ error: boolean;
3127
+ direction: "horizontal" | "vertical";
3128
+ style: import('vue').StyleValue;
3129
+ disabled: boolean | null;
3130
+ readonly: boolean | null;
3131
+ messages: string | readonly string[];
3132
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3133
+ focused: boolean;
3134
+ errorMessages: string | readonly string[] | null;
3135
+ maxErrors: string | number;
3136
+ density: import('vuetify/lib/composables/density.mjs').Density;
3137
+ centerAffix: boolean;
3138
+ glow: boolean;
3139
+ hideSpinButtons: boolean;
3140
+ persistentHint: boolean;
3141
+ } & {
3142
+ name?: string | undefined;
3143
+ id?: string | undefined;
3144
+ width?: string | number | undefined;
3145
+ color?: string | undefined;
3146
+ maxWidth?: string | number | undefined;
3147
+ minWidth?: string | number | undefined;
3148
+ label?: string | undefined;
3149
+ class?: any;
3150
+ theme?: string | undefined;
3151
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3152
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
3153
+ validationValue?: any;
3154
+ baseColor?: string | undefined;
3155
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3156
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3157
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3158
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3159
+ iconColor?: string | boolean | undefined;
3160
+ hint?: string | undefined;
3161
+ hideDetails?: boolean | "auto" | undefined;
3162
+ }, {
3163
+ reset: () => Promise<void>;
3164
+ resetValidation: () => Promise<void>;
3165
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
3166
+ isValid: import('vue').ComputedRef<boolean | null>;
3167
+ errorMessages: import('vue').ComputedRef<string[]>;
3168
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
3169
+ 'update:modelValue': (value: any) => true;
3170
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
3171
+ error: boolean;
3172
+ direction: "horizontal" | "vertical";
3173
+ style: import('vue').StyleValue;
3174
+ disabled: boolean | null;
3175
+ readonly: boolean | null;
3176
+ messages: string | readonly string[];
3177
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3178
+ focused: boolean;
3179
+ errorMessages: string | readonly string[] | null;
3180
+ maxErrors: string | number;
3181
+ density: import('vuetify/lib/composables/density.mjs').Density;
3182
+ centerAffix: boolean;
3183
+ glow: boolean;
3184
+ hideSpinButtons: boolean;
3185
+ persistentHint: boolean;
3186
+ }, {}, string, import('vue').SlotsType<Partial<{
3187
+ default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3188
+ [key: string]: any;
3189
+ }>[];
3190
+ prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3191
+ [key: string]: any;
3192
+ }>[];
3193
+ append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3194
+ [key: string]: any;
3195
+ }>[];
3196
+ details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3197
+ [key: string]: any;
3198
+ }>[];
3199
+ message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3200
+ [key: string]: any;
3201
+ }>[];
3202
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
3203
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
3204
+ created?: (() => void) | (() => void)[] | undefined;
3205
+ beforeMount?: (() => void) | (() => void)[] | undefined;
3206
+ mounted?: (() => void) | (() => void)[] | undefined;
3207
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
3208
+ updated?: (() => void) | (() => void)[] | undefined;
3209
+ activated?: (() => void) | (() => void)[] | undefined;
3210
+ deactivated?: (() => void) | (() => void)[] | undefined;
3211
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
3212
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
3213
+ destroyed?: (() => void) | (() => void)[] | undefined;
3214
+ unmounted?: (() => void) | (() => void)[] | undefined;
3215
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
3216
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
3217
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
3218
+ };
3219
+ $forceUpdate: () => void;
3220
+ $nextTick: typeof nextTick;
3221
+ $watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
3222
+ } & Readonly<{
3223
+ error: boolean;
3224
+ direction: "horizontal" | "vertical";
3225
+ style: import('vue').StyleValue;
3226
+ disabled: boolean | null;
3227
+ readonly: boolean | null;
3228
+ messages: string | readonly string[];
3229
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3230
+ focused: boolean;
3231
+ errorMessages: string | readonly string[] | null;
3232
+ maxErrors: string | number;
3233
+ density: import('vuetify/lib/composables/density.mjs').Density;
3234
+ centerAffix: boolean;
3235
+ glow: boolean;
3236
+ hideSpinButtons: boolean;
3237
+ persistentHint: boolean;
3238
+ }> & Omit<{
3239
+ error: boolean;
3240
+ direction: "horizontal" | "vertical";
3241
+ style: import('vue').StyleValue;
3242
+ disabled: boolean | null;
3243
+ readonly: boolean | null;
3244
+ messages: string | readonly string[];
3245
+ rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
3246
+ focused: boolean;
3247
+ errorMessages: string | readonly string[] | null;
3248
+ maxErrors: string | number;
3249
+ density: import('vuetify/lib/composables/density.mjs').Density;
3250
+ centerAffix: boolean;
3251
+ glow: boolean;
3252
+ hideSpinButtons: boolean;
3253
+ persistentHint: boolean;
3254
+ } & {
3255
+ name?: string | undefined;
3256
+ id?: string | undefined;
3257
+ width?: string | number | undefined;
3258
+ color?: string | undefined;
3259
+ maxWidth?: string | number | undefined;
3260
+ minWidth?: string | number | undefined;
3261
+ label?: string | undefined;
3262
+ class?: any;
3263
+ theme?: string | undefined;
3264
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3265
+ validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
3266
+ validationValue?: any;
3267
+ baseColor?: string | undefined;
3268
+ prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3269
+ appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3270
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3271
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3272
+ iconColor?: string | boolean | undefined;
3273
+ hint?: string | undefined;
3274
+ hideDetails?: boolean | "auto" | undefined;
3275
+ }, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
3276
+ reset: () => Promise<void>;
3277
+ resetValidation: () => Promise<void>;
3278
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
3279
+ isValid: import('vue').ComputedRef<boolean | null>;
3280
+ errorMessages: import('vue').ComputedRef<string[]>;
3281
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
3282
+ modelValue?: unknown;
3283
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3284
+ }, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
3285
+ $: import('vue').ComponentInternalInstance;
3286
+ $data: {};
3287
+ $props: Partial<{
3288
+ flat: boolean;
3289
+ reverse: boolean;
3290
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3291
+ error: boolean; /** @type { [typeof __VLS_components.VIcon, typeof __VLS_components.VIcon, ] } */
3292
+ active: boolean;
3293
+ style: import('vue').StyleValue;
3294
+ disabled: boolean;
3295
+ focused: boolean;
3296
+ rounded: string | number | boolean;
3297
+ tile: boolean;
3298
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3299
+ centerAffix: boolean;
3300
+ glow: boolean;
3301
+ clearable: boolean;
3302
+ dirty: boolean;
3303
+ persistentClear: boolean;
3304
+ singleLine: boolean;
3305
+ }> & Omit<{
3306
+ flat: boolean;
3307
+ reverse: boolean;
3308
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3309
+ error: boolean;
3310
+ active: boolean;
3311
+ style: import('vue').StyleValue;
3312
+ disabled: boolean;
3313
+ focused: boolean;
3314
+ tile: boolean;
3315
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3316
+ glow: boolean;
3317
+ clearable: boolean;
3318
+ dirty: boolean;
3319
+ persistentClear: boolean;
3320
+ singleLine: boolean;
3321
+ id?: string | undefined;
3322
+ color?: string | undefined;
3323
+ loading?: string | boolean | undefined;
3324
+ label?: string | undefined;
3325
+ class?: any;
3326
+ theme?: string | undefined;
3327
+ 'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
3328
+ rounded?: string | number | boolean | undefined;
3329
+ baseColor?: string | undefined;
3330
+ bgColor?: string | undefined;
3331
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3332
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3333
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3334
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3335
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3336
+ centerAffix?: boolean | undefined;
3337
+ iconColor?: string | boolean | undefined;
3338
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
3339
+ $attrs: {
3340
+ [x: string]: unknown;
3341
+ };
3342
+ $refs: {
3343
+ [x: string]: unknown;
3344
+ };
3345
+ $slots: Readonly<{
3346
+ clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3347
+ props: Record<string, any>;
3348
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3349
+ [key: string]: any;
3350
+ }>[]) | undefined;
3351
+ 'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3352
+ [key: string]: any;
3353
+ }>[]) | undefined;
3354
+ 'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3355
+ [key: string]: any;
3356
+ }>[]) | undefined;
3357
+ label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3358
+ label: string | undefined;
3359
+ props: Record<string, any>;
3360
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3361
+ [key: string]: any;
3362
+ }>[]) | undefined;
3363
+ loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3364
+ [key: string]: any;
3365
+ }>[]) | undefined;
3366
+ default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3367
+ [key: string]: any;
3368
+ }>[]) | undefined;
3369
+ }>;
3370
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3371
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3372
+ $host: Element | null;
3373
+ $emit: (event: "update:focused", focused: boolean) => void;
3374
+ $el: any;
3375
+ $options: import('vue').ComponentOptionsBase<{
3376
+ flat: boolean;
3377
+ reverse: boolean;
3378
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3379
+ error: boolean;
3380
+ active: boolean;
3381
+ style: import('vue').StyleValue;
3382
+ disabled: boolean;
3383
+ focused: boolean;
3384
+ tile: boolean;
3385
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3386
+ glow: boolean;
3387
+ clearable: boolean;
3388
+ dirty: boolean;
3389
+ persistentClear: boolean;
3390
+ singleLine: boolean;
3391
+ } & {
3392
+ id?: string | undefined;
3393
+ color?: string | undefined;
3394
+ loading?: string | boolean | undefined;
3395
+ label?: string | undefined;
3396
+ class?: any;
3397
+ theme?: string | undefined;
3398
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3399
+ rounded?: string | number | boolean | undefined;
3400
+ baseColor?: string | undefined;
3401
+ bgColor?: string | undefined;
3402
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3403
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3404
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3405
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3406
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3407
+ centerAffix?: boolean | undefined;
3408
+ iconColor?: string | boolean | undefined;
3409
+ } & {
3410
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3411
+ }, {
3412
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
3413
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
3414
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
3415
+ 'update:focused': (focused: boolean) => true;
3416
+ 'update:modelValue': (value: any) => true;
3417
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
3418
+ flat: boolean;
3419
+ reverse: boolean;
3420
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3421
+ error: boolean;
3422
+ active: boolean;
3423
+ style: import('vue').StyleValue;
3424
+ disabled: boolean;
3425
+ focused: boolean;
3426
+ rounded: string | number | boolean;
3427
+ tile: boolean;
3428
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3429
+ centerAffix: boolean;
3430
+ glow: boolean;
3431
+ clearable: boolean;
3432
+ dirty: boolean;
3433
+ persistentClear: boolean;
3434
+ singleLine: boolean;
3435
+ }, {}, string, import('vue').SlotsType<Partial<{
3436
+ clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3437
+ props: Record<string, any>;
3438
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3439
+ [key: string]: any;
3440
+ }>[];
3441
+ 'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3442
+ [key: string]: any;
3443
+ }>[];
3444
+ 'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3445
+ [key: string]: any;
3446
+ }>[];
3447
+ label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
3448
+ label: string | undefined;
3449
+ props: Record<string, any>;
3450
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3451
+ [key: string]: any;
3452
+ }>[];
3453
+ loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3454
+ [key: string]: any;
3455
+ }>[];
3456
+ default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
3457
+ [key: string]: any;
3458
+ }>[];
3459
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
3460
+ beforeCreate?: (() => void) | (() => void)[] | undefined;
3461
+ created?: (() => void) | (() => void)[] | undefined;
3462
+ beforeMount?: (() => void) | (() => void)[] | undefined;
3463
+ mounted?: (() => void) | (() => void)[] | undefined;
3464
+ beforeUpdate?: (() => void) | (() => void)[] | undefined;
3465
+ updated?: (() => void) | (() => void)[] | undefined;
3466
+ activated?: (() => void) | (() => void)[] | undefined;
3467
+ deactivated?: (() => void) | (() => void)[] | undefined;
3468
+ beforeDestroy?: (() => void) | (() => void)[] | undefined;
3469
+ beforeUnmount?: (() => void) | (() => void)[] | undefined;
3470
+ destroyed?: (() => void) | (() => void)[] | undefined;
3471
+ unmounted?: (() => void) | (() => void)[] | undefined;
3472
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
3473
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
3474
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
3475
+ };
3476
+ $forceUpdate: () => void;
3477
+ $nextTick: typeof nextTick;
3478
+ $watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
3479
+ } & Readonly<{
3480
+ flat: boolean;
3481
+ reverse: boolean;
3482
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3483
+ error: boolean;
3484
+ active: boolean;
3485
+ style: import('vue').StyleValue;
3486
+ disabled: boolean;
3487
+ focused: boolean;
3488
+ rounded: string | number | boolean;
3489
+ tile: boolean;
3490
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3491
+ centerAffix: boolean;
3492
+ glow: boolean;
3493
+ clearable: boolean;
3494
+ dirty: boolean;
3495
+ persistentClear: boolean;
3496
+ singleLine: boolean;
3497
+ }> & Omit<{
3498
+ flat: boolean;
3499
+ reverse: boolean;
3500
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3501
+ error: boolean;
3502
+ active: boolean;
3503
+ style: import('vue').StyleValue;
3504
+ disabled: boolean;
3505
+ focused: boolean;
3506
+ tile: boolean;
3507
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3508
+ glow: boolean;
3509
+ clearable: boolean;
3510
+ dirty: boolean;
3511
+ persistentClear: boolean;
3512
+ singleLine: boolean;
3513
+ } & {
3514
+ id?: string | undefined;
3515
+ color?: string | undefined;
3516
+ loading?: string | boolean | undefined;
3517
+ label?: string | undefined;
3518
+ class?: any;
3519
+ theme?: string | undefined;
3520
+ 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3521
+ rounded?: string | number | boolean | undefined;
3522
+ baseColor?: string | undefined;
3523
+ bgColor?: string | undefined;
3524
+ appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3525
+ prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
3526
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3527
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3528
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3529
+ centerAffix?: boolean | undefined;
3530
+ iconColor?: string | boolean | undefined;
3531
+ } & {
3532
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3533
+ }, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
3534
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
3535
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
3536
+ }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
3537
+ modelValue?: unknown;
3538
+ 'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3539
+ }, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
3540
+ _allExposed: {} | {
3541
+ reset: () => Promise<void>;
3542
+ resetValidation: () => Promise<void>;
3543
+ validate: (silent?: boolean | undefined) => Promise<string[]>;
3544
+ isValid: import('vue').ComputedRef<boolean | null>;
3545
+ errorMessages: import('vue').ComputedRef<string[]>;
3546
+ } | {
3547
+ controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
3548
+ fieldIconColor: import('vue').ComputedRef<string | undefined>;
3549
+ };
3550
+ }, {}, {}, {}, {
3551
+ flat: boolean;
3552
+ reverse: boolean;
3553
+ variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
3554
+ type: string;
3555
+ error: boolean;
3556
+ active: boolean;
3557
+ direction: "horizontal" | "vertical";
3558
+ style: import('vue').StyleValue;
3559
+ autofocus: boolean;
3560
+ disabled: boolean;
3561
+ readonly: boolean | null;
3562
+ messages: string | readonly string[];
3563
+ 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)?])[];
3564
+ focused: boolean;
3565
+ errorMessages: string | readonly string[] | null;
3566
+ maxErrors: string | number;
3567
+ density: import('vuetify/lib/composables/density.mjs').Density;
3568
+ rounded: string | number | boolean;
3569
+ tile: boolean;
3570
+ clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
3571
+ centerAffix: boolean;
3572
+ glow: boolean;
3573
+ hideSpinButtons: boolean;
3574
+ persistentHint: boolean;
3575
+ clearable: boolean;
3576
+ dirty: boolean;
3577
+ persistentClear: boolean;
3578
+ singleLine: boolean;
3579
+ persistentPlaceholder: boolean;
3580
+ persistentCounter: boolean;
3581
+ }> | null;
3582
+ };
3583
+ $slots: Readonly<{
3584
+ [name: string]: import('vue').Slot<any> | undefined;
3585
+ }>;
3586
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3587
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
3588
+ $host: Element | null;
3589
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
3590
+ $el: any;
3591
+ $options: import('vue').ComponentOptionsBase<Readonly<{
3592
+ modelValue?: string | number | null | undefined;
3593
+ prependIcon?: import('../../Customs/SyTextField/types').IconType;
3594
+ appendIcon?: import('../../Customs/SyTextField/types').IconType;
3595
+ prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
3596
+ appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
3597
+ prependTooltip?: string | undefined;
3598
+ appendTooltip?: string | undefined;
3599
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
3600
+ variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
3601
+ color?: import('../../Customs/SyTextField/types').ColorType | undefined;
3602
+ isClearable?: boolean | undefined;
3603
+ showDivider?: boolean | undefined;
3604
+ label?: string | undefined;
3605
+ required?: boolean | undefined;
3606
+ errorMessages?: string[] | null | undefined;
3607
+ warningMessages?: string[] | null | undefined;
3608
+ successMessages?: string[] | null | undefined;
3609
+ readonly?: boolean | undefined;
3610
+ isActive?: boolean | undefined;
3611
+ baseColor?: string | undefined;
3612
+ bgColor?: string | undefined;
3613
+ centerAffix?: boolean | undefined;
3614
+ counter?: string | number | boolean | undefined;
3615
+ counterValue?: number | ((value: any) => number) | undefined;
3616
+ density?: "default" | "comfortable" | "compact" | undefined;
3617
+ direction?: "horizontal" | "vertical" | undefined;
3618
+ isDirty?: boolean | undefined;
3619
+ disabled?: boolean | undefined;
3620
+ isOnError?: boolean | undefined;
3621
+ isFlat?: boolean | undefined;
3622
+ isFocused?: boolean | undefined;
3623
+ areDetailsHidden?: boolean | "auto" | undefined;
3624
+ areSpinButtonsHidden?: boolean | undefined;
3625
+ hint?: string | undefined;
3626
+ id?: string | undefined;
3627
+ loading?: string | boolean | undefined;
3628
+ maxErrors?: string | number | undefined;
3629
+ maxWidth?: string | number | undefined;
3630
+ messages?: string | string[] | undefined;
3631
+ minWidth?: string | number | undefined;
3632
+ name?: string | undefined;
3633
+ displayPersistentClear?: boolean | undefined;
3634
+ displayPersistentCounter?: boolean | undefined;
3635
+ displayPersistentHint?: boolean | undefined;
3636
+ displayPersistentPlaceholder?: boolean | undefined;
3637
+ placeholder?: string | undefined;
3638
+ prefix?: string | undefined;
3639
+ isReversed?: boolean | undefined;
3640
+ role?: string | undefined;
3641
+ rounded?: string | number | boolean | undefined;
3642
+ isOnSingleLine?: boolean | undefined;
3643
+ suffix?: string | undefined;
3644
+ theme?: string | undefined;
3645
+ isTiled?: boolean | undefined;
3646
+ type?: string | undefined;
3647
+ width?: string | number | undefined;
3648
+ displayAsterisk?: boolean | undefined;
3649
+ noIcon?: boolean | undefined;
3650
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3651
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3652
+ customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3653
+ showSuccessMessages?: boolean | undefined;
3654
+ isValidateOnBlur?: boolean | undefined;
3655
+ disableErrorHandling?: boolean | undefined;
3656
+ disableClickButton?: boolean | undefined;
3657
+ autocomplete?: string | undefined;
3658
+ }> & Readonly<{
3659
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3660
+ onClear?: ((...args: any[]) => any) | undefined;
3661
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
3662
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
3663
+ }>, {
3664
+ validation: {
3665
+ errors: Ref<string[], string[]>;
3666
+ warnings: Ref<string[], string[]>;
3667
+ successes: Ref<string[], string[]>;
3668
+ hasError: import('vue').ComputedRef<boolean>;
3669
+ hasWarning: import('vue').ComputedRef<boolean>;
3670
+ hasSuccess: import('vue').ComputedRef<boolean>;
3671
+ validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
3672
+ validateOnSubmit: () => Promise<boolean>;
3673
+ clearValidation: () => void;
3674
+ };
3675
+ validateOnSubmit: () => boolean;
3676
+ checkErrorOnBlur: () => void;
3677
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3678
+ "update:modelValue": (...args: any[]) => void;
3679
+ clear: (...args: any[]) => void;
3680
+ "prepend-icon-click": (...args: any[]) => void;
3681
+ "append-icon-click": (...args: any[]) => void;
3682
+ }, string, {
3683
+ modelValue: string | number | null;
3684
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3685
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3686
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3687
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3688
+ prependTooltip: string;
3689
+ appendTooltip: string;
3690
+ tooltipLocation: "top" | "bottom" | "start" | "end";
3691
+ variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
3692
+ color: import('../../Customs/SyTextField/types').ColorType;
3693
+ isClearable: boolean;
3694
+ label: string;
3695
+ errorMessages: string[] | null;
3696
+ warningMessages: string[] | null;
3697
+ successMessages: string[] | null;
3698
+ readonly: boolean;
3699
+ isActive: boolean;
3700
+ baseColor: string;
3701
+ bgColor: string;
3702
+ centerAffix: boolean;
3703
+ counter: string | number | boolean;
3704
+ counterValue: number | ((value: any) => number);
3705
+ density: "default" | "comfortable" | "compact";
3706
+ direction: "horizontal" | "vertical";
3707
+ isDirty: boolean;
3708
+ disabled: boolean;
3709
+ isOnError: boolean;
3710
+ isFlat: boolean;
3711
+ isFocused: boolean;
3712
+ areDetailsHidden: boolean | "auto";
3713
+ areSpinButtonsHidden: boolean;
3714
+ hint: string;
3715
+ id: string;
3716
+ loading: string | boolean;
3717
+ maxErrors: string | number;
3718
+ maxWidth: string | number;
3719
+ messages: string | string[];
3720
+ minWidth: string | number;
3721
+ name: string;
3722
+ displayPersistentClear: boolean;
3723
+ displayPersistentCounter: boolean;
3724
+ displayPersistentHint: boolean;
3725
+ displayPersistentPlaceholder: boolean;
3726
+ placeholder: string;
3727
+ prefix: string;
3728
+ isReversed: boolean;
3729
+ role: string;
3730
+ rounded: string | number | boolean;
3731
+ isOnSingleLine: boolean;
3732
+ suffix: string;
3733
+ theme: string;
3734
+ isTiled: boolean;
3735
+ type: string;
3736
+ width: string | number;
3737
+ displayAsterisk: boolean;
3738
+ noIcon: boolean;
3739
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
3740
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
3741
+ customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
3742
+ showSuccessMessages: boolean;
3743
+ isValidateOnBlur: boolean;
3744
+ disableErrorHandling: boolean;
3745
+ disableClickButton: boolean;
3746
+ autocomplete: string;
3747
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
3748
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
3749
+ created?: ((() => void) | (() => void)[]) | undefined;
3750
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
3751
+ mounted?: ((() => void) | (() => void)[]) | undefined;
3752
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
3753
+ updated?: ((() => void) | (() => void)[]) | undefined;
3754
+ activated?: ((() => void) | (() => void)[]) | undefined;
3755
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
3756
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
3757
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
3758
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
3759
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
3760
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
3761
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
3762
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
3763
+ };
3764
+ $forceUpdate: () => void;
3765
+ $nextTick: typeof nextTick;
3766
+ $watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
3767
+ } & Readonly<{
3768
+ modelValue: string | number | null;
3769
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3770
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3771
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3772
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
3773
+ prependTooltip: string;
3774
+ appendTooltip: string;
3775
+ tooltipLocation: "top" | "bottom" | "start" | "end";
3776
+ variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
3777
+ color: import('../../Customs/SyTextField/types').ColorType;
3778
+ isClearable: boolean;
3779
+ label: string;
3780
+ errorMessages: string[] | null;
3781
+ warningMessages: string[] | null;
3782
+ successMessages: string[] | null;
3783
+ readonly: boolean;
3784
+ isActive: boolean;
3785
+ baseColor: string;
3786
+ bgColor: string;
3787
+ centerAffix: boolean;
3788
+ counter: string | number | boolean;
3789
+ counterValue: number | ((value: any) => number);
3790
+ density: "default" | "comfortable" | "compact";
3791
+ direction: "horizontal" | "vertical";
3792
+ isDirty: boolean;
3793
+ disabled: boolean;
3794
+ isOnError: boolean;
3795
+ isFlat: boolean;
3796
+ isFocused: boolean;
3797
+ areDetailsHidden: boolean | "auto";
3798
+ areSpinButtonsHidden: boolean;
3799
+ hint: string;
3800
+ id: string;
3801
+ loading: string | boolean;
3802
+ maxErrors: string | number;
3803
+ maxWidth: string | number;
3804
+ messages: string | string[];
3805
+ minWidth: string | number;
3806
+ name: string;
3807
+ displayPersistentClear: boolean;
3808
+ displayPersistentCounter: boolean;
3809
+ displayPersistentHint: boolean;
3810
+ displayPersistentPlaceholder: boolean;
3811
+ placeholder: string;
3812
+ prefix: string;
3813
+ isReversed: boolean;
3814
+ role: string;
3815
+ rounded: string | number | boolean;
3816
+ isOnSingleLine: boolean;
3817
+ suffix: string;
3818
+ theme: string;
3819
+ isTiled: boolean;
3820
+ type: string;
3821
+ width: string | number;
3822
+ displayAsterisk: boolean;
3823
+ noIcon: boolean;
3824
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
3825
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
3826
+ customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
3827
+ showSuccessMessages: boolean;
3828
+ isValidateOnBlur: boolean;
3829
+ disableErrorHandling: boolean;
3830
+ disableClickButton: boolean;
3831
+ autocomplete: string;
3832
+ }> & Omit<Readonly<{
3833
+ modelValue?: string | number | null | undefined;
3834
+ prependIcon?: import('../../Customs/SyTextField/types').IconType;
3835
+ appendIcon?: import('../../Customs/SyTextField/types').IconType;
3836
+ prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
3837
+ appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
3838
+ prependTooltip?: string | undefined;
3839
+ appendTooltip?: string | undefined;
3840
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
3841
+ variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
3842
+ color?: import('../../Customs/SyTextField/types').ColorType | undefined;
3843
+ isClearable?: boolean | undefined;
3844
+ showDivider?: boolean | undefined;
3845
+ label?: string | undefined;
3846
+ required?: boolean | undefined;
3847
+ errorMessages?: string[] | null | undefined;
3848
+ warningMessages?: string[] | null | undefined;
3849
+ successMessages?: string[] | null | undefined;
3850
+ readonly?: boolean | undefined;
3851
+ isActive?: boolean | undefined;
3852
+ baseColor?: string | undefined;
3853
+ bgColor?: string | undefined;
3854
+ centerAffix?: boolean | undefined;
3855
+ counter?: string | number | boolean | undefined;
3856
+ counterValue?: number | ((value: any) => number) | undefined;
3857
+ density?: "default" | "comfortable" | "compact" | undefined;
3858
+ direction?: "horizontal" | "vertical" | undefined;
3859
+ isDirty?: boolean | undefined;
3860
+ disabled?: boolean | undefined;
3861
+ isOnError?: boolean | undefined;
3862
+ isFlat?: boolean | undefined;
3863
+ isFocused?: boolean | undefined;
3864
+ areDetailsHidden?: boolean | "auto" | undefined;
3865
+ areSpinButtonsHidden?: boolean | undefined;
3866
+ hint?: string | undefined;
3867
+ id?: string | undefined;
3868
+ loading?: string | boolean | undefined;
3869
+ maxErrors?: string | number | undefined;
3870
+ maxWidth?: string | number | undefined;
3871
+ messages?: string | string[] | undefined;
3872
+ minWidth?: string | number | undefined;
3873
+ name?: string | undefined;
3874
+ displayPersistentClear?: boolean | undefined;
3875
+ displayPersistentCounter?: boolean | undefined;
3876
+ displayPersistentHint?: boolean | undefined;
3877
+ displayPersistentPlaceholder?: boolean | undefined;
3878
+ placeholder?: string | undefined;
3879
+ prefix?: string | undefined;
3880
+ isReversed?: boolean | undefined;
3881
+ role?: string | undefined;
3882
+ rounded?: string | number | boolean | undefined;
3883
+ isOnSingleLine?: boolean | undefined;
3884
+ suffix?: string | undefined;
3885
+ theme?: string | undefined;
3886
+ isTiled?: boolean | undefined;
3887
+ type?: string | undefined;
3888
+ width?: string | number | undefined;
3889
+ displayAsterisk?: boolean | undefined;
3890
+ noIcon?: boolean | undefined;
3891
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3892
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3893
+ customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3894
+ showSuccessMessages?: boolean | undefined;
3895
+ isValidateOnBlur?: boolean | undefined;
3896
+ disableErrorHandling?: boolean | undefined;
3897
+ disableClickButton?: boolean | undefined;
3898
+ autocomplete?: string | undefined;
3899
+ }> & Readonly<{
3900
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3901
+ onClear?: ((...args: any[]) => any) | undefined;
3902
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
3903
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
3904
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
3905
+ validation: {
3906
+ errors: Ref<string[], string[]>;
3907
+ warnings: Ref<string[], string[]>;
3908
+ successes: Ref<string[], string[]>;
3909
+ hasError: import('vue').ComputedRef<boolean>;
3910
+ hasWarning: import('vue').ComputedRef<boolean>;
3911
+ hasSuccess: import('vue').ComputedRef<boolean>;
3912
+ validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
3913
+ validateOnSubmit: () => Promise<boolean>;
3914
+ clearValidation: () => void;
3915
+ };
3916
+ validateOnSubmit: () => boolean;
3917
+ checkErrorOnBlur: () => void;
3918
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
3919
+ $slots: {
3920
+ prepend?(_: {}): any;
3921
+ append?(_: {}): any;
3922
+ 'prepend-inner'?(_: {}): any;
3923
+ 'append-inner'?(_: {}): any;
3924
+ details?(_: {}): any;
3925
+ };
3926
+ }) | null;
3927
+ }, any, import('vue').ComponentProvideOptions, {
3928
+ P: {};
3929
+ B: {};
3930
+ D: {};
3931
+ C: {};
3932
+ M: {};
3933
+ Defaults: {};
3934
+ }, Readonly<{
3935
+ modelValue?: DateValue | undefined;
3936
+ placeholder?: string | undefined;
3937
+ format?: string | undefined;
3938
+ dateFormatReturn?: string | undefined;
3939
+ label?: string | undefined;
3940
+ required?: boolean | undefined;
3941
+ disabled?: boolean | undefined;
3942
+ readonly?: boolean | undefined;
3943
+ isOutlined?: boolean | undefined;
3944
+ displayIcon?: boolean | undefined;
3945
+ displayAppendIcon?: boolean | undefined;
3946
+ noIcon?: boolean | undefined;
3947
+ customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3948
+ customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
3949
+ displayPrependIcon?: boolean | undefined;
3950
+ disableErrorHandling?: boolean | undefined;
3951
+ showSuccessMessages?: boolean | undefined;
3952
+ bgColor?: string | undefined;
3953
+ displayRange?: boolean | undefined;
3954
+ autoClamp?: boolean | undefined;
3955
+ }> & Readonly<{
3956
+ onBlur?: (() => any) | undefined;
3957
+ onFocus?: (() => any) | undefined;
3958
+ onInput?: ((value: string) => any) | undefined;
3959
+ "onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
3960
+ "onDate-selected"?: ((value: DateValue) => any) | undefined;
3961
+ }>, {
3962
+ validateOnSubmit: () => Promise<boolean>;
3963
+ focus(): void;
3964
+ blur(): void;
3965
+ }, {}, {}, {}, {
3966
+ required: boolean;
3967
+ modelValue: DateValue;
3968
+ label: string;
3969
+ readonly: boolean;
3970
+ bgColor: string;
3971
+ disabled: boolean;
3972
+ placeholder: string;
3973
+ noIcon: boolean;
3974
+ customRules: import('../../../composables/validation/useValidation').ValidationRule[];
3975
+ customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
3976
+ showSuccessMessages: boolean;
3977
+ disableErrorHandling: boolean;
3978
+ format: string;
3979
+ displayRange: boolean;
3980
+ dateFormatReturn: string;
3981
+ isOutlined: boolean;
3982
+ displayIcon: boolean;
3983
+ displayAppendIcon: boolean;
3984
+ displayPrependIcon: boolean;
3985
+ autoClamp: boolean;
3986
+ }> | null;
3987
+ datePickerRef: ({
3988
+ $: import('vue').ComponentInternalInstance;
3989
+ $data: {};
3990
+ $props: Partial<{
3991
+ active: string | string[];
3992
+ transition: string;
3993
+ header: string;
3994
+ style: import('vue').StyleValue;
3995
+ title: string;
3996
+ disabled: boolean;
3997
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
3998
+ landscape: boolean;
3999
+ rounded: string | number | boolean;
4000
+ tile: boolean;
4001
+ divided: boolean;
4002
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4003
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4004
+ reverseTransition: string;
4005
+ hideHeader: boolean;
4006
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4007
+ viewMode: "month" | "year" | "months";
4008
+ showAdjacentMonths: boolean;
4009
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4010
+ weeksInMonth: "static" | "dynamic";
4011
+ firstDayOfWeek: string | number;
4012
+ hideWeekdays: boolean;
4013
+ showWeek: boolean;
4014
+ }> & Omit<{
4015
+ transition: string;
4016
+ header: string;
4017
+ style: import('vue').StyleValue;
4018
+ title: string;
4019
+ disabled: boolean;
4020
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
4021
+ landscape: boolean;
4022
+ tile: boolean;
4023
+ divided: boolean;
4024
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4025
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4026
+ reverseTransition: string;
4027
+ hideHeader: boolean;
4028
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4029
+ viewMode: "month" | "year" | "months";
4030
+ showAdjacentMonths: boolean;
4031
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4032
+ weeksInMonth: "static" | "dynamic";
4033
+ hideWeekdays: boolean;
4034
+ showWeek: boolean;
4035
+ max?: unknown;
4036
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
4037
+ height?: string | number | undefined;
4038
+ width?: string | number | undefined;
4039
+ active?: string | string[] | undefined;
4040
+ min?: unknown;
4041
+ border?: string | number | boolean | undefined;
4042
+ color?: string | undefined;
4043
+ maxHeight?: string | number | undefined;
4044
+ maxWidth?: string | number | undefined;
4045
+ minHeight?: string | number | undefined;
4046
+ minWidth?: string | number | undefined;
4047
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
4048
+ text?: string | undefined;
4049
+ month?: string | number | undefined;
4050
+ year?: number | undefined;
4051
+ class?: any;
4052
+ theme?: string | undefined;
4053
+ elevation?: string | number | undefined;
4054
+ rounded?: string | number | boolean | undefined;
4055
+ bgColor?: string | undefined;
4056
+ controlHeight?: string | number | undefined;
4057
+ headerColor?: string | undefined;
4058
+ firstDayOfWeek?: string | number | undefined;
4059
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
4060
+ allowedMonths?: number[] | ((date: number) => boolean) | undefined;
4061
+ allowedYears?: number[] | ((date: number) => boolean) | undefined;
4062
+ "onUpdate:month"?: ((date: any) => any) | undefined;
4063
+ "onUpdate:year"?: ((date: any) => any) | undefined;
4064
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
4065
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode">;
4066
+ $attrs: {
4067
+ [x: string]: unknown;
4068
+ };
4069
+ $refs: {
4070
+ [x: string]: unknown;
4071
+ };
4072
+ $slots: Readonly<{
4073
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4074
+ [key: string]: any;
4075
+ }>[]) | undefined;
4076
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4077
+ [key: string]: any;
4078
+ }>[]) | undefined;
4079
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4080
+ [key: string]: any;
4081
+ }>[]) | undefined;
4082
+ header?: ((arg: {
4083
+ header: string;
4084
+ transition: string;
4085
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4086
+ [key: string]: any;
4087
+ }>[]) | undefined;
4088
+ }>;
4089
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
4090
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
4091
+ $host: Element | null;
4092
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
4093
+ $el: any;
4094
+ $options: import('vue').ComponentOptionsBase<{
4095
+ transition: string;
4096
+ header: string;
4097
+ style: import('vue').StyleValue;
4098
+ title: string;
4099
+ disabled: boolean;
4100
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
4101
+ landscape: boolean;
4102
+ tile: boolean;
4103
+ divided: boolean;
4104
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4105
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4106
+ reverseTransition: string;
4107
+ hideHeader: boolean;
4108
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4109
+ viewMode: "month" | "year" | "months";
4110
+ showAdjacentMonths: boolean;
4111
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4112
+ weeksInMonth: "static" | "dynamic";
4113
+ hideWeekdays: boolean;
4114
+ showWeek: boolean;
4115
+ } & {
4116
+ max?: unknown;
4117
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
4118
+ height?: string | number | undefined;
4119
+ width?: string | number | undefined;
4120
+ active?: string | string[] | undefined;
4121
+ min?: unknown;
4122
+ border?: string | number | boolean | undefined;
4123
+ color?: string | undefined;
4124
+ maxHeight?: string | number | undefined;
4125
+ maxWidth?: string | number | undefined;
4126
+ minHeight?: string | number | undefined;
4127
+ minWidth?: string | number | undefined;
4128
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
4129
+ text?: string | undefined;
4130
+ month?: string | number | undefined;
4131
+ year?: number | undefined;
4132
+ class?: any;
4133
+ theme?: string | undefined;
4134
+ elevation?: string | number | undefined;
4135
+ rounded?: string | number | boolean | undefined;
4136
+ bgColor?: string | undefined;
4137
+ controlHeight?: string | number | undefined;
4138
+ headerColor?: string | undefined;
4139
+ firstDayOfWeek?: string | number | undefined;
4140
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
4141
+ allowedMonths?: number[] | ((date: number) => boolean) | undefined;
4142
+ allowedYears?: number[] | ((date: number) => boolean) | undefined;
4143
+ } & {
4144
+ "onUpdate:month"?: ((date: any) => any) | undefined;
4145
+ "onUpdate:year"?: ((date: any) => any) | undefined;
4146
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
4147
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
4148
+ 'update:modelValue': (date: any) => true;
4149
+ 'update:month': (date: any) => true;
4150
+ 'update:year': (date: any) => true;
4151
+ 'update:viewMode': (date: any) => true;
4152
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
4153
+ active: string | string[];
4154
+ transition: string;
4155
+ header: string;
4156
+ style: import('vue').StyleValue;
4157
+ title: string;
4158
+ disabled: boolean;
4159
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
4160
+ landscape: boolean;
4161
+ rounded: string | number | boolean;
4162
+ tile: boolean;
4163
+ divided: boolean;
4164
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4165
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4166
+ reverseTransition: string;
4167
+ hideHeader: boolean;
4168
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4169
+ viewMode: "month" | "year" | "months";
4170
+ showAdjacentMonths: boolean;
4171
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4172
+ weeksInMonth: "static" | "dynamic";
4173
+ firstDayOfWeek: string | number;
4174
+ hideWeekdays: boolean;
4175
+ showWeek: boolean;
4176
+ }, {}, string, import('vue').SlotsType<Partial<{
4177
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4178
+ [key: string]: any;
4179
+ }>[];
4180
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4181
+ [key: string]: any;
4182
+ }>[];
4183
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4184
+ [key: string]: any;
4185
+ }>[];
4186
+ header: (arg: {
4187
+ header: string;
4188
+ transition: string;
4189
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
4190
+ [key: string]: any;
4191
+ }>[];
4192
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
4193
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
4194
+ created?: ((() => void) | (() => void)[]) | undefined;
4195
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
4196
+ mounted?: ((() => void) | (() => void)[]) | undefined;
4197
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
4198
+ updated?: ((() => void) | (() => void)[]) | undefined;
4199
+ activated?: ((() => void) | (() => void)[]) | undefined;
4200
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
4201
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
4202
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
4203
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
4204
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
4205
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
4206
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
4207
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
4208
+ };
4209
+ $forceUpdate: () => void;
4210
+ $nextTick: typeof nextTick;
4211
+ $watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
4212
+ } & Readonly<{
4213
+ active: string | string[];
4214
+ transition: string;
4215
+ header: string;
4216
+ style: import('vue').StyleValue;
4217
+ title: string;
4218
+ disabled: boolean;
4219
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
4220
+ landscape: boolean;
4221
+ rounded: string | number | boolean;
4222
+ tile: boolean;
4223
+ divided: boolean;
4224
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4225
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4226
+ reverseTransition: string;
4227
+ hideHeader: boolean;
4228
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4229
+ viewMode: "month" | "year" | "months";
4230
+ showAdjacentMonths: boolean;
4231
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4232
+ weeksInMonth: "static" | "dynamic";
4233
+ firstDayOfWeek: string | number;
4234
+ hideWeekdays: boolean;
4235
+ showWeek: boolean;
4236
+ }> & Omit<{
4237
+ transition: string;
4238
+ header: string;
4239
+ style: import('vue').StyleValue;
4240
+ title: string;
4241
+ disabled: boolean;
4242
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
4243
+ landscape: boolean;
4244
+ tile: boolean;
4245
+ divided: boolean;
4246
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4247
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4248
+ reverseTransition: string;
4249
+ hideHeader: boolean;
4250
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
4251
+ viewMode: "month" | "year" | "months";
4252
+ showAdjacentMonths: boolean;
4253
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
4254
+ weeksInMonth: "static" | "dynamic";
4255
+ hideWeekdays: boolean;
4256
+ showWeek: boolean;
4257
+ } & {
4258
+ max?: unknown;
4259
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
4260
+ height?: string | number | undefined;
4261
+ width?: string | number | undefined;
4262
+ active?: string | string[] | undefined;
4263
+ min?: unknown;
4264
+ border?: string | number | boolean | undefined;
4265
+ color?: string | undefined;
4266
+ maxHeight?: string | number | undefined;
4267
+ maxWidth?: string | number | undefined;
4268
+ minHeight?: string | number | undefined;
4269
+ minWidth?: string | number | undefined;
4270
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
4271
+ text?: string | undefined;
4272
+ month?: string | number | undefined;
4273
+ year?: number | undefined;
4274
+ class?: any;
4275
+ theme?: string | undefined;
4276
+ elevation?: string | number | undefined;
4277
+ rounded?: string | number | boolean | undefined;
4278
+ bgColor?: string | undefined;
4279
+ controlHeight?: string | number | undefined;
4280
+ headerColor?: string | undefined;
4281
+ firstDayOfWeek?: string | number | undefined;
4282
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
4283
+ allowedMonths?: number[] | ((date: number) => boolean) | undefined;
4284
+ allowedYears?: number[] | ((date: number) => boolean) | undefined;
4285
+ } & {
4286
+ "onUpdate:month"?: ((date: any) => any) | undefined;
4287
+ "onUpdate:year"?: ((date: any) => any) | undefined;
4288
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
4289
+ }, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
4290
+ modelValue?: Date | (Date | null)[] | null | undefined;
4291
+ "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
4292
+ multiple?: false | "range" | undefined;
4293
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
4294
+ }, HTMLDivElement>;
4295
+ export default _default;