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