@cnamts/synapse 0.0.13-alpha → 0.0.15-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (654) hide show
  1. package/dist/{src/components → components}/BackBtn/BackBtn.d.ts +4 -1
  2. package/dist/components/CookiesSelection/CookiesSelection.d.ts +611 -0
  3. package/dist/{src/components → components}/CopyBtn/config.d.ts +1 -0
  4. package/dist/{src/components → components}/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
  5. package/dist/components/Customs/SySelect/SySelect.d.ts +1546 -0
  6. package/dist/components/Customs/SySelect/locales.d.ts +3 -0
  7. package/dist/{src/components → components}/Customs/SyTextField/SyTextField.d.ts +4 -4
  8. package/dist/components/DatePicker/DatePicker.d.ts +1315 -0
  9. package/dist/{src/components → components}/DatePicker/DateTextInput.d.ts +15 -15
  10. package/dist/components/DialogBox/DialogBox.d.ts +274 -0
  11. package/dist/{src/components → components}/DialogBox/config.d.ts +1 -1
  12. package/dist/{src/components → components}/DownloadBtn/DownloadBtn.d.ts +9 -0
  13. package/dist/components/DownloadBtn/locales.d.ts +3 -0
  14. package/dist/{src/components → components}/FilterInline/FilterInline.d.ts +2 -3
  15. package/dist/{src/components → components}/FilterSideBar/FilterSideBar.d.ts +1 -1
  16. package/dist/{src/components → components}/FranceConnectBtn/locales.d.ts +1 -0
  17. package/dist/{src/components → components}/HeaderToolbar/HeaderToolbar.d.ts +5 -1
  18. package/dist/components/LangBtn/LangBtn.d.ts +497 -0
  19. package/dist/{src/components → components}/LangBtn/config.d.ts +1 -3
  20. package/dist/{src/components → components}/NirField/NirField.d.ts +28 -29
  21. package/dist/{src/components → components}/PasswordField/PasswordField.d.ts +4 -4
  22. package/dist/components/PeriodField/PeriodField.d.ts +2847 -0
  23. package/dist/{src/components → components}/PhoneField/PhoneField.d.ts +27 -0
  24. package/dist/{src/components → components}/SkipLink/SkipLink.d.ts +3 -2
  25. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +783 -0
  26. package/dist/{src/components → components}/UserMenuBtn/UserMenuBtn.d.ts +2 -0
  27. package/dist/{src/components → components}/index.d.ts +2 -0
  28. package/dist/{src/composables → composables}/date/useDatePickerAccessibility.d.ts +2 -1
  29. package/dist/design-system-v3.js +4500 -4233
  30. package/dist/design-system-v3.umd.cjs +1 -1
  31. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamColors.d.ts +5 -10
  32. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamLightTheme.d.ts +0 -2
  33. package/dist/{src/designTokens → designTokens}/tokens/pa/paColors.d.ts +5 -10
  34. package/dist/{src/designTokens → designTokens}/tokens/pa/paLightTheme.d.ts +4 -5
  35. package/dist/style.css +1 -1
  36. package/dist/{src/vuetifyConfig.d.ts → vuetifyConfig.d.ts} +2 -0
  37. package/package.json +9 -8
  38. package/src/components/BackBtn/Accessibilite.stories.ts +4 -0
  39. package/src/components/BackBtn/BackBtn.stories.ts +34 -6
  40. package/src/components/BackBtn/BackBtn.vue +18 -8
  41. package/src/components/BackBtn/tests/BackBtn.spec.ts +2 -2
  42. package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +39 -3
  43. package/src/components/BackToTopBtn/Accessibilite.stories.ts +4 -0
  44. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +78 -21
  45. package/src/components/BackToTopBtn/BackToTopBtn.vue +15 -0
  46. package/src/components/BackToTopBtn/config.ts +2 -2
  47. package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +98 -6
  48. package/src/components/ChipList/ChipList.vue +1 -0
  49. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +31 -5
  50. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +570 -101
  51. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +28 -2
  52. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +13 -1
  53. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +568 -99
  54. package/src/components/CopyBtn/Accessibilite.stories.ts +4 -0
  55. package/src/components/CopyBtn/CopyBtn.stories.ts +2 -2
  56. package/src/components/CopyBtn/CopyBtn.vue +28 -22
  57. package/src/components/CopyBtn/config.ts +2 -1
  58. package/src/components/CopyBtn/tests/__snapshots__/CopyBtn.spec.ts.snap +28 -3
  59. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +2 -2
  60. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +6 -6
  61. package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +2 -2
  62. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -0
  63. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -0
  64. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -0
  65. package/src/components/Customs/SySelect/SySelect.vue +84 -9
  66. package/src/components/Customs/SySelect/locales.ts +3 -0
  67. package/src/components/Customs/SySelect/tests/SySelect.spec.ts +24 -2
  68. package/src/components/Customs/SyTextField/SyTextField.stories.ts +2 -2
  69. package/src/components/Customs/SyTextField/SyTextField.vue +6 -6
  70. package/src/components/DataList/DataList.vue +2 -2
  71. package/src/components/DataList/DataListLoading/DataListLoading.vue +2 -2
  72. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +1 -1
  73. package/src/components/DataList/tests/DataList.spec.ts +10 -10
  74. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +1 -1
  75. package/src/components/DataListItem/DataListItem.vue +9 -9
  76. package/src/components/DataListItem/tests/DataListItem.spec.ts +5 -5
  77. package/src/components/DatePicker/DatePicker.mdx +1 -1
  78. package/src/components/DatePicker/DatePicker.stories.ts +11 -11
  79. package/src/components/DatePicker/DatePicker.vue +89 -59
  80. package/src/components/DatePicker/DatePickerValidation.mdx +338 -0
  81. package/src/components/DatePicker/DatePickerValidation.stories.ts +22 -0
  82. package/src/components/DatePicker/DatePickerValidationExamples.vue +535 -0
  83. package/src/components/DatePicker/DateTextInput.vue +6 -6
  84. package/src/components/DatePicker/tests/DateTextInput.spec.ts +4 -4
  85. package/src/components/DialogBox/DialogBox.stories.ts +5 -2
  86. package/src/components/DialogBox/DialogBox.vue +5 -5
  87. package/src/components/DialogBox/config.ts +1 -1
  88. package/src/components/DialogBox/tests/DialogBox.spec.ts +1 -1
  89. package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +158 -19
  90. package/src/components/DownloadBtn/Accessibilite.stories.ts +4 -0
  91. package/src/components/DownloadBtn/DownloadBtn.stories.ts +33 -10
  92. package/src/components/DownloadBtn/DownloadBtn.vue +47 -6
  93. package/src/components/DownloadBtn/locales.ts +3 -0
  94. package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +75 -6
  95. package/src/components/ErrorPage/ErrorPage.vue +2 -2
  96. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +212 -38
  97. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +796 -86
  98. package/src/components/FilePreview/tests/FilePreview.spec.ts +1 -1
  99. package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +27 -5
  100. package/src/components/FilterInline/FilterInline.stories.ts +308 -2
  101. package/src/components/FilterInline/FilterInline.vue +3 -3
  102. package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +235 -21
  103. package/src/components/FilterSideBar/FilterSideBar.vue +1 -1
  104. package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +144 -15
  105. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +92 -18
  106. package/src/components/FranceConnectBtn/Accessibilite.stories.ts +4 -0
  107. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +18 -21
  108. package/src/components/FranceConnectBtn/locales.ts +2 -0
  109. package/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.ts +1 -1
  110. package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +235 -26
  111. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +3 -0
  112. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +5 -1
  113. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +3 -0
  114. package/src/components/HeaderBar/HeaderBurgerMenu/menu.scss +19 -0
  115. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +20 -6
  116. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +12 -2
  117. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +68 -37
  118. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  119. package/src/components/HeaderToolbar/HeaderToolbar.vue +346 -117
  120. package/src/components/HeaderToolbar/tests/{HeaderToolbar.spec.ts → HeaderToolBar.spec.ts} +2 -2
  121. package/src/components/LangBtn/Accessibilite.stories.ts +4 -0
  122. package/src/components/LangBtn/LangBtn.stories.ts +1 -4
  123. package/src/components/LangBtn/LangBtn.vue +69 -9
  124. package/src/components/LangBtn/config.ts +0 -1
  125. package/src/components/LangBtn/tests/LangBtn.spec.ts +30 -2
  126. package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +41 -3
  127. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +55 -8
  128. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +10 -1
  129. package/src/components/NirField/NirField.stories.ts +7 -7
  130. package/src/components/NirField/NirField.vue +10 -12
  131. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +229 -37
  132. package/src/components/NotificationBar/tests/__snapshots__/NotificationBar.spec.ts.snap +30 -3
  133. package/src/components/PageContainer/Accessibilite.stories.ts +36 -23
  134. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +16 -3
  135. package/src/components/PaginatedTable/PaginatedTable.stories.ts +144 -18
  136. package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +731 -94
  137. package/src/components/PasswordField/PasswordField.stories.ts +13 -13
  138. package/src/components/PasswordField/PasswordField.vue +6 -6
  139. package/src/components/PeriodField/PeriodField.stories.ts +13 -13
  140. package/src/components/PeriodField/PeriodField.vue +8 -4
  141. package/src/components/PhoneField/PhoneField.stories.ts +265 -0
  142. package/src/components/PhoneField/PhoneField.vue +38 -0
  143. package/src/components/PhoneField/tests/PhoneField.spec.ts +161 -14
  144. package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +80 -17
  145. package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +981 -162
  146. package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +634 -25
  147. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -1
  148. package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +477 -38
  149. package/src/components/RatingPicker/RatingPicker.stories.ts +1 -1
  150. package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +218 -10
  151. package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +476 -41
  152. package/src/components/SearchListField/SearchListField.stories.ts +1 -1
  153. package/src/components/SelectBtnField/SelectBtnField.stories.ts +1 -1
  154. package/src/components/SelectBtnField/SelectBtnField.vue +11 -15
  155. package/src/components/SelectBtnField/config.ts +1 -1
  156. package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +881 -65
  157. package/src/components/SkipLink/Accessibilite.stories.ts +8 -0
  158. package/src/components/SkipLink/SkipLink.vue +11 -9
  159. package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +18 -1
  160. package/src/components/SkipLink/tests/skipLink.spec.ts +120 -6
  161. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +110 -16
  162. package/src/components/SubHeader/SubHeader.stories.ts +1 -1
  163. package/src/components/SubHeader/tests/SubHeader.spec.ts +1 -1
  164. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +78 -6
  165. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +1034 -124
  166. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +11 -11
  167. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +328 -29
  168. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +64 -8
  169. package/src/components/UserMenuBtn/UserMenuBtn.vue +4 -2
  170. package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +41 -0
  171. package/src/components/index.ts +2 -0
  172. package/src/composables/date/tests/useDatePickerAccessibility.spec.ts +83 -5
  173. package/src/composables/date/useDatePickerAccessibility.ts +48 -3
  174. package/src/composables/rules/useFieldValidation.ts +26 -3
  175. package/src/designTokens/tokens/cnam/cnamColors.ts +5 -10
  176. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +0 -2
  177. package/src/designTokens/tokens/cnam/cnamSemantic.ts +3 -3
  178. package/src/designTokens/tokens/pa/paColors.ts +5 -10
  179. package/src/designTokens/tokens/pa/paLightTheme.ts +4 -5
  180. package/src/designTokens/tokens/pa/paSemantic.ts +3 -3
  181. package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
  182. package/src/stories/DesignTokens/ColorDisplay.vue +58 -0
  183. package/src/stories/DesignTokens/Colors.mdx +81 -212
  184. package/src/stories/DesignTokens/colors.stories.ts +1078 -0
  185. package/src/stories/GuideDuDev/LesBreackingChanges.mdx +31 -2
  186. package/src/stories/GuideDuDev/UtiliserLesRules.mdx +30 -8
  187. package/dist/src/components/Amelipro/types/types.d.ts +0 -38
  188. package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +0 -1
  189. package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +0 -1
  190. package/dist/src/components/ChipList/tests/chipList.spec.d.ts +0 -1
  191. package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +0 -1
  192. package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +0 -1
  193. package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +0 -1
  194. package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +0 -1
  195. package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +0 -1
  196. package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +0 -1
  197. package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +0 -1
  198. package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +0 -1
  199. package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +0 -1
  200. package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +0 -1
  201. package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +0 -1
  202. package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +0 -1
  203. package/dist/src/components/DataList/tests/DataList.spec.d.ts +0 -1
  204. package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +0 -1
  205. package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +0 -1
  206. package/dist/src/components/DatePicker/DatePicker.d.ts +0 -597
  207. package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +0 -1
  208. package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +0 -1
  209. package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +0 -1
  210. package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +0 -1
  211. package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +0 -1
  212. package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +0 -1
  213. package/dist/src/components/FileList/tests/FileList.spec.d.ts +0 -1
  214. package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +0 -1
  215. package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +0 -1
  216. package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +0 -1
  217. package/dist/src/components/FilterSideBar/tests/FilterSideBar.spec.d.ts +0 -1
  218. package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +0 -1
  219. package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +0 -1
  220. package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +0 -1
  221. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +0 -1
  222. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +0 -1
  223. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +0 -1
  224. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +0 -1
  225. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +0 -1
  226. package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +0 -1
  227. package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +0 -1
  228. package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +0 -1
  229. package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +0 -1
  230. package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +0 -1
  231. package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +0 -1
  232. package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +0 -1
  233. package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +0 -1
  234. package/dist/src/components/LangBtn/LangBtn.d.ts +0 -31
  235. package/dist/src/components/LangBtn/tests/Config.spec.d.ts +0 -1
  236. package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +0 -1
  237. package/dist/src/components/Logo/tests/Logo.spec.d.ts +0 -1
  238. package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +0 -1
  239. package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +0 -1
  240. package/dist/src/components/NirField/config.d.ts +0 -15
  241. package/dist/src/components/NirField/tests/NirField.spec.d.ts +0 -1
  242. package/dist/src/components/NirField/tests/config.spec.d.ts +0 -1
  243. package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +0 -1
  244. package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +0 -1
  245. package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +0 -1
  246. package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +0 -1
  247. package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +0 -1
  248. package/dist/src/components/PeriodField/PeriodField.d.ts +0 -1405
  249. package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +0 -1
  250. package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +0 -1
  251. package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +0 -1
  252. package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +0 -1
  253. package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +0 -1
  254. package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +0 -1
  255. package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +0 -1
  256. package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +0 -1
  257. package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +0 -1
  258. package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +0 -1
  259. package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +0 -1
  260. package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +0 -1
  261. package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +0 -1
  262. package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +0 -1
  263. package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +0 -1
  264. package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +0 -1
  265. package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +0 -1
  266. package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +0 -1
  267. package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +0 -1
  268. package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +0 -1
  269. package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +0 -1
  270. package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +0 -1
  271. package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +0 -1
  272. package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +0 -1
  273. package/dist/src/components/UploadWorkflow/tests/UploadWorkflow.spec.d.ts +0 -1
  274. package/dist/src/components/Usages/Usages.d.ts +0 -10
  275. package/dist/src/components/Usages/tests/Usages.spec.d.ts +0 -1
  276. package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +0 -1
  277. package/dist/src/composables/date/tests/useDateFormat.spec.d.ts +0 -1
  278. package/dist/src/composables/date/tests/useDateInitialization.spec.d.ts +0 -1
  279. package/dist/src/composables/date/tests/useDatePickerAccessibility.spec.d.ts +0 -1
  280. package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +0 -1
  281. package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +0 -1
  282. package/dist/src/composables/validation/tests/useValidation.spec.d.ts +0 -1
  283. package/dist/src/composables/widthable/tests/widthable.spec.d.ts +0 -1
  284. package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +0 -1
  285. package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +0 -1
  286. package/dist/src/utils/formatDate/tests/formatDate.spec.d.ts +0 -1
  287. package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +0 -1
  288. package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +0 -1
  289. package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +0 -1
  290. package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +0 -1
  291. package/dist/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.d.ts +0 -1
  292. package/dist/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.d.ts +0 -1
  293. package/dist/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.d.ts +0 -1
  294. package/dist/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  295. package/dist/src/utils/functions/validation/isEmailValid/tests/isEmailValid.spec.d.ts +0 -1
  296. package/dist/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.d.ts +0 -1
  297. package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +0 -1
  298. package/dist/src/utils/parseDate/tests/parseDate.spec.d.ts +0 -1
  299. package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +0 -1
  300. package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +0 -1
  301. package/dist/src/utils/rules/doMatchPattern/tests/matchPattern.spec.d.ts +0 -1
  302. package/dist/src/utils/rules/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  303. package/dist/src/utils/rules/isExactLength/tests/exactLength.spec.d.ts +0 -1
  304. package/dist/src/utils/rules/isMaxLength/tests/isMaxLength.spec.d.ts +0 -1
  305. package/dist/src/utils/rules/isMinLength/tests/isMinLength.spec.d.ts +0 -1
  306. package/dist/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.d.ts +0 -1
  307. package/dist/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.d.ts +0 -1
  308. package/dist/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.d.ts +0 -1
  309. package/dist/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.d.ts +0 -1
  310. package/dist/src/utils/rules/isRequired/tests/isRequred.spec.d.ts +0 -1
  311. package/dist/src/utils/rules/isValidEmail/tests/isValidEmail.spec.d.ts +0 -1
  312. package/src/components/Amelipro/types/types.ts +0 -40
  313. package/src/components/LangBtn/tests/Config.spec.ts +0 -24
  314. package/src/components/NirField/config.ts +0 -16
  315. package/src/components/NirField/tests/config.spec.ts +0 -65
  316. package/dist/{src/components → components}/BackBtn/AccessibiliteItems.d.ts +0 -0
  317. package/dist/{src/components → components}/BackBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  318. package/dist/{src/components → components}/BackBtn/locales.d.ts +0 -0
  319. package/dist/{src/components → components}/BackToTopBtn/AccessibiliteItems.d.ts +0 -0
  320. package/dist/{src/components → components}/BackToTopBtn/BackToTopBtn.d.ts +0 -0
  321. package/dist/{src/components → components}/BackToTopBtn/config.d.ts +0 -0
  322. package/dist/{src/components → components}/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  323. package/dist/{src/components → components}/BackToTopBtn/locales.d.ts +0 -0
  324. package/dist/{src/components → components}/ChipList/AccessibiliteItems.d.ts +0 -0
  325. package/dist/{src/components → components}/ChipList/ChipList.d.ts +0 -0
  326. package/dist/{src/components → components}/ChipList/config.d.ts +0 -0
  327. package/dist/{src/components → components}/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -0
  328. package/dist/{src/components → components}/ChipList/locales.d.ts +0 -0
  329. package/dist/{src/components → components}/ChipList/types.d.ts +0 -0
  330. package/dist/{src/components → components}/CollapsibleList/AccessibiliteItems.d.ts +0 -0
  331. package/dist/{src/components → components}/CollapsibleList/CollapsibleList.d.ts +0 -0
  332. package/dist/{src/components → components}/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -0
  333. package/dist/{src/components → components}/CollapsibleList/types.d.ts +0 -0
  334. package/dist/{src/components → components}/ContextualMenu/AccessibiliteItems.d.ts +0 -0
  335. package/dist/{src/components → components}/ContextualMenu/ContextualMenu.d.ts +0 -0
  336. package/dist/{src/components → components}/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  337. package/dist/{src/components → components}/ContextualMenu/types.d.ts +0 -0
  338. package/dist/{src/components → components}/CookieBanner/AccessibiliteItems.d.ts +0 -0
  339. package/dist/{src/components → components}/CookieBanner/CookieBanner.d.ts +0 -0
  340. package/dist/{src/components → components}/CookieBanner/config.d.ts +0 -0
  341. package/dist/{src/components → components}/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -0
  342. package/dist/{src/components → components}/CookieBanner/locales.d.ts +0 -0
  343. package/dist/{src/components → components}/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +0 -0
  344. package/dist/{src/components → components}/CookiesSelection/CookiesInformation/locales.d.ts +0 -0
  345. package/dist/{src/components → components}/CookiesSelection/CookiesTable/CookiesTable.d.ts +0 -0
  346. package/dist/{src/components → components}/CookiesSelection/CookiesTable/headers.d.ts +0 -0
  347. package/dist/{src/components → components}/CookiesSelection/locales.d.ts +0 -0
  348. package/dist/{src/components → components}/CookiesSelection/types.d.ts +0 -0
  349. package/dist/{src/components → components}/CopyBtn/AccessibiliteItems.d.ts +0 -0
  350. package/dist/{src/components → components}/CopyBtn/CopyBtn.d.ts +0 -0
  351. package/dist/{src/components → components}/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  352. package/dist/{src/components → components}/CopyBtn/locales.d.ts +0 -0
  353. package/dist/{src/components → components}/Customs/SyBtnSelect/AccessibiliteItems.d.ts +0 -0
  354. package/dist/{src/components → components}/Customs/SyBtnSelect/SyBtnSelect.d.ts +0 -0
  355. package/dist/{src/components → components}/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  356. package/dist/{src/components → components}/Customs/SyInputSelect/AccessibiliteItems.d.ts +0 -0
  357. package/dist/{src/components → components}/Customs/SyInputSelect/config.d.ts +0 -0
  358. package/dist/{src/components → components}/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  359. package/dist/{src/components → components}/Customs/SySelect/AccessibiliteItems.d.ts +0 -0
  360. package/dist/{src/components → components}/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  361. package/dist/{src/components → components}/Customs/SyTextField/AccessibiliteItems.d.ts +0 -0
  362. package/dist/{src/components → components}/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -0
  363. package/dist/{src/components → components}/Customs/SyTextField/types.d.ts +0 -0
  364. package/dist/{src/components → components}/DataList/AccessibiliteItems.d.ts +0 -0
  365. package/dist/{src/components → components}/DataList/DataList.d.ts +0 -0
  366. package/dist/{src/components → components}/DataList/DataListLoading/DataListLoading.d.ts +0 -0
  367. package/dist/{src/components → components}/DataList/constants/ExpertiseLevelEnum.d.ts +0 -0
  368. package/dist/{src/components → components}/DataList/locales.d.ts +0 -0
  369. package/dist/{src/components → components}/DataList/types.d.ts +0 -0
  370. package/dist/{src/components → components}/DataListGroup/AccessibiliteItems.d.ts +0 -0
  371. package/dist/{src/components → components}/DataListGroup/DataListGroup.d.ts +0 -0
  372. package/dist/{src/components → components}/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -0
  373. package/dist/{src/components → components}/DataListGroup/tests/data/dataListGroupItems.d.ts +0 -0
  374. package/dist/{src/components → components}/DataListGroup/types.d.ts +0 -0
  375. package/dist/{src/components → components}/DataListItem/DataListItem.d.ts +0 -0
  376. package/dist/{src/components → components}/DataListItem/config.d.ts +0 -0
  377. package/dist/{src/components → components}/DataListItem/locales.d.ts +0 -0
  378. package/dist/{src/components → components}/DataListItem/types.d.ts +0 -0
  379. package/dist/{src/components → components}/DatePicker/AccessibiliteItems.d.ts +0 -0
  380. package/dist/{src/components → components}/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  381. package/dist/{src/components → components}/DialogBox/AccessibiliteItems.d.ts +0 -0
  382. package/dist/{src/components → components}/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -0
  383. package/dist/{src/components → components}/DialogBox/locales.d.ts +0 -0
  384. package/dist/{src/components → components}/DownloadBtn/AccessibiliteItems.d.ts +0 -0
  385. package/dist/{src/components → components}/DownloadBtn/config.d.ts +0 -0
  386. package/dist/{src/components → components}/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  387. package/dist/{src/components → components}/DownloadBtn/tests/data/filePromise.d.ts +0 -0
  388. package/dist/{src/components → components}/ErrorPage/AccessibiliteItems.d.ts +0 -0
  389. package/dist/{src/components → components}/ErrorPage/ErrorPage.d.ts +0 -0
  390. package/dist/{src/components → components}/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  391. package/dist/{src/components → components}/ErrorPage/locales.d.ts +0 -0
  392. package/dist/{src/components → components}/ExternalLinks/AccessibiliteItems.d.ts +0 -0
  393. package/dist/{src/components → components}/ExternalLinks/ExternalLinks.d.ts +0 -0
  394. package/dist/{src/components → components}/ExternalLinks/config.d.ts +0 -0
  395. package/dist/{src/components → components}/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  396. package/dist/{src/components → components}/ExternalLinks/locales.d.ts +0 -0
  397. package/dist/{src/components → components}/FileList/AccessibiliteItems.d.ts +0 -0
  398. package/dist/{src/components → components}/FileList/FileList.d.ts +0 -0
  399. package/dist/{src/components → components}/FileList/UploadItem/UploadItem.d.ts +0 -0
  400. package/dist/{src/components → components}/FileList/UploadItem/locales.d.ts +0 -0
  401. package/dist/{src/components → components}/FileList/constants/ExpertiseLevelEnum.d.ts +0 -0
  402. package/dist/{src/components → components}/FilePreview/AccessibiliteItems.d.ts +0 -0
  403. package/dist/{src/components → components}/FilePreview/FilePreview.d.ts +0 -0
  404. package/dist/{src/components → components}/FilePreview/config.d.ts +0 -0
  405. package/dist/{src/components → components}/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -0
  406. package/dist/{src/components → components}/FilePreview/locales.d.ts +0 -0
  407. package/dist/{src/components → components}/FileUpload/AccessibiliteItems.d.ts +0 -0
  408. package/dist/{src/components → components}/FileUpload/FileUpload.d.ts +0 -0
  409. package/dist/{src/components → components}/FileUpload/FileUploadContent.d.ts +0 -0
  410. package/dist/{src/components → components}/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -0
  411. package/dist/{src/components → components}/FileUpload/locales.d.ts +0 -0
  412. package/dist/{src/components → components}/FileUpload/useFileDrop.d.ts +0 -0
  413. package/dist/{src/components → components}/FileUpload/validateFiles.d.ts +0 -0
  414. package/dist/{src/components → components}/FilterInline/AccessibiliteItems.d.ts +0 -0
  415. package/dist/{src/components → components}/FilterInline/constants/ExpertiseLevelEnum.d.ts +0 -0
  416. package/dist/{src/components → components}/FilterInline/locales.d.ts +0 -0
  417. package/dist/{src/components → components}/FilterSideBar/AccessibiliteItems.d.ts +0 -0
  418. package/dist/{src/components → components}/FilterSideBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  419. package/dist/{src/components → components}/FilterSideBar/locales.d.ts +0 -0
  420. package/dist/{src/components → components}/FooterBar/A11yCompliance.d.ts +0 -0
  421. package/dist/{src/components → components}/FooterBar/AccessibiliteItems.d.ts +0 -0
  422. package/dist/{src/components → components}/FooterBar/FooterBar.d.ts +0 -0
  423. package/dist/{src/components → components}/FooterBar/config.d.ts +0 -0
  424. package/dist/{src/components → components}/FooterBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  425. package/dist/{src/components → components}/FooterBar/defaultSocialMediaLinks.d.ts +0 -0
  426. package/dist/{src/components → components}/FooterBar/locales.d.ts +0 -0
  427. package/dist/{src/components → components}/FooterBar/types.d.ts +0 -0
  428. package/dist/{src/components → components}/FranceConnectBtn/AccessibiliteItems.d.ts +0 -0
  429. package/dist/{src/components → components}/FranceConnectBtn/FranceConnectBtn.d.ts +0 -0
  430. package/dist/{src/components → components}/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  431. package/dist/{src/components → components}/HeaderBar/AccessibiliteItems.d.ts +0 -0
  432. package/dist/{src/components → components}/HeaderBar/HeaderBar.d.ts +0 -0
  433. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +0 -0
  434. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +0 -0
  435. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +0 -0
  436. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +0 -0
  437. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +0 -0
  438. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  439. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/conts.d.ts +0 -0
  440. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/locals.d.ts +0 -0
  441. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +0 -0
  442. package/dist/{src/components → components}/HeaderBar/HeaderLogo/HeaderLogo.d.ts +0 -0
  443. package/dist/{src/components → components}/HeaderBar/HeaderLogo/locales.d.ts +0 -0
  444. package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +0 -0
  445. package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo.d.ts +0 -0
  446. package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +0 -0
  447. package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/locals.d.ts +0 -0
  448. package/dist/{src/components → components}/HeaderBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  449. package/dist/{src/components → components}/HeaderBar/consts.d.ts +0 -0
  450. package/dist/{src/components → components}/HeaderBar/locales.d.ts +0 -0
  451. package/dist/{src/components → components}/HeaderBar/useHeaderResponsiveMode.d.ts +0 -0
  452. package/dist/{src/components → components}/HeaderBar/useScrollDirection.d.ts +0 -0
  453. package/dist/{src/components → components}/HeaderLoading/AccessibiliteItems.d.ts +0 -0
  454. package/dist/{src/components → components}/HeaderLoading/HeaderLoading.d.ts +0 -0
  455. package/dist/{src/components → components}/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +0 -0
  456. package/dist/{src/components → components}/HeaderNavigationBar/HeaderNavigationBar.d.ts +0 -0
  457. package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +0 -0
  458. package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/config.d.ts +0 -0
  459. package/dist/{src/components → components}/HeaderNavigationBar/types.d.ts +0 -0
  460. package/dist/{src/components → components}/HeaderToolbar/AccessibiliteItems.d.ts +0 -0
  461. package/dist/{src/components → components}/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  462. package/dist/{src/components → components}/HeaderToolbar/types.d.ts +0 -0
  463. package/dist/{src/components → components}/LangBtn/AccessibiliteItems.d.ts +0 -0
  464. package/dist/{src/components → components}/LangBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  465. package/dist/{src/components → components}/LangBtn/locales.d.ts +0 -0
  466. package/dist/{src/components → components}/LangBtn/types.d.ts +0 -0
  467. package/dist/{src/components → components}/Logo/AccessibiliteItems.d.ts +0 -0
  468. package/dist/{src/components → components}/Logo/Logo.d.ts +0 -0
  469. package/dist/{src/components → components}/Logo/LogoSize.d.ts +0 -0
  470. package/dist/{src/components → components}/Logo/constants/ExpertiseLevelEnum.d.ts +0 -0
  471. package/dist/{src/components → components}/Logo/locales.d.ts +0 -0
  472. package/dist/{src/components → components}/Logo/logoDimensionsMapping.d.ts +0 -0
  473. package/dist/{src/components → components}/Logo/types.d.ts +0 -0
  474. package/dist/{src/components → components}/LogoBrandSection/AccessibiliteItems.d.ts +0 -0
  475. package/dist/{src/components → components}/LogoBrandSection/LogoBrandSection.d.ts +0 -0
  476. package/dist/{src/components → components}/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +0 -0
  477. package/dist/{src/components → components}/LogoBrandSection/dividerDimensionsMapping.d.ts +0 -0
  478. package/dist/{src/components → components}/LogoBrandSection/locales.d.ts +0 -0
  479. package/dist/{src/components → components}/LogoBrandSection/secondaryLogoMapping.d.ts +0 -0
  480. package/dist/{src/components → components}/LogoBrandSection/types.d.ts +0 -0
  481. package/dist/{src/components → components}/MaintenancePage/AccessibiliteItems.d.ts +0 -0
  482. package/dist/{src/components → components}/MaintenancePage/MaintenancePage.d.ts +0 -0
  483. package/dist/{src/components → components}/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +0 -0
  484. package/dist/{src/components → components}/MaintenancePage/index.d.ts +0 -0
  485. package/dist/{src/components → components}/MaintenancePage/locales.d.ts +0 -0
  486. package/dist/{src/components → components}/NirField/AccessibiliteItems.d.ts +0 -0
  487. package/dist/{src/components → components}/NirField/constants/ExpertiseLevelEnum.d.ts +0 -0
  488. package/dist/{src/components → components}/NirField/locales.d.ts +0 -0
  489. package/dist/{src/components → components}/NirField/nirValidation.d.ts +0 -0
  490. package/dist/{src/components → components}/NotFoundPage/AccessibiliteItems.d.ts +0 -0
  491. package/dist/{src/components → components}/NotFoundPage/NotFoundPage.d.ts +0 -0
  492. package/dist/{src/components → components}/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  493. package/dist/{src/components → components}/NotFoundPage/locales.d.ts +0 -0
  494. package/dist/{src/components → components}/NotificationBar/AccessibiliteItems.d.ts +0 -0
  495. package/dist/{src/components → components}/NotificationBar/NotificationBar.d.ts +0 -0
  496. package/dist/{src/components → components}/NotificationBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  497. package/dist/{src/components → components}/NotificationBar/options.d.ts +0 -0
  498. package/dist/{src/components → components}/NotificationBar/types.d.ts +0 -0
  499. package/dist/{src/components → components}/PageContainer/AccessibiliteItems.d.ts +0 -0
  500. package/dist/{src/components → components}/PageContainer/PageContainer.d.ts +0 -0
  501. package/dist/{src/components → components}/PageContainer/constants/ExpertiseLevelEnum.d.ts +0 -0
  502. package/dist/{src/components → components}/PaginatedTable/AccessibiliteItems.d.ts +0 -0
  503. package/dist/{src/components → components}/PaginatedTable/PaginatedTable.d.ts +0 -0
  504. package/dist/{src/components → components}/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +0 -0
  505. package/dist/{src/components → components}/PaginatedTable/constants/StateEnum.d.ts +0 -0
  506. package/dist/{src/components → components}/PaginatedTable/types.d.ts +0 -0
  507. package/dist/{src/components → components}/PasswordField/AccessibiliteItems.d.ts +0 -0
  508. package/dist/{src/components → components}/PasswordField/config.d.ts +0 -0
  509. package/dist/{src/components → components}/PasswordField/constants/ExpertiseLevelEnum.d.ts +0 -0
  510. package/dist/{src/components → components}/PasswordField/locales.d.ts +0 -0
  511. package/dist/{src/components → components}/PeriodField/AccessibiliteItems.d.ts +0 -0
  512. package/dist/{src/components → components}/PeriodField/constants/ExpertiseLevelEnum.d.ts +0 -0
  513. package/dist/{src/components → components}/PhoneField/AccessibiliteItems.d.ts +0 -0
  514. package/dist/{src/components → components}/PhoneField/constants/ExpertiseLevelEnum.d.ts +0 -0
  515. package/dist/{src/components → components}/PhoneField/indicatifs.d.ts +0 -0
  516. package/dist/{src/components → components}/PhoneField/locales.d.ts +0 -0
  517. package/dist/{src/components → components}/RangeField/AccessibiliteItems.d.ts +0 -0
  518. package/dist/{src/components → components}/RangeField/RangeField.d.ts +0 -0
  519. package/dist/{src/components → components}/RangeField/RangeSlider/RangeSlider.d.ts +0 -0
  520. package/dist/{src/components → components}/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +0 -0
  521. package/dist/{src/components → components}/RangeField/RangeSlider/types.d.ts +0 -0
  522. package/dist/{src/components → components}/RangeField/RangeSlider/useMouseSlide.d.ts +0 -0
  523. package/dist/{src/components → components}/RangeField/RangeSlider/useRangeSlider.d.ts +0 -0
  524. package/dist/{src/components → components}/RangeField/RangeSlider/useThumb.d.ts +0 -0
  525. package/dist/{src/components → components}/RangeField/RangeSlider/useThumbKeyboard.d.ts +0 -0
  526. package/dist/{src/components → components}/RangeField/RangeSlider/useTooltipsNudge.d.ts +0 -0
  527. package/dist/{src/components → components}/RangeField/RangeSlider/useTrack.d.ts +0 -0
  528. package/dist/{src/components → components}/RangeField/RangeSlider/vAnimateClick.d.ts +0 -0
  529. package/dist/{src/components → components}/RangeField/config.d.ts +0 -0
  530. package/dist/{src/components → components}/RangeField/constants/ExpertiseLevelEnum.d.ts +0 -0
  531. package/dist/{src/components → components}/RangeField/locales.d.ts +0 -0
  532. package/dist/{src/components → components}/RatingPicker/AccessibiliteItems.d.ts +0 -0
  533. package/dist/{src/components → components}/RatingPicker/EmotionPicker/EmotionPicker.d.ts +0 -0
  534. package/dist/{src/components → components}/RatingPicker/EmotionPicker/locales.d.ts +0 -0
  535. package/dist/{src/components → components}/RatingPicker/NumberPicker/NumberPicker.d.ts +0 -0
  536. package/dist/{src/components → components}/RatingPicker/NumberPicker/locales.d.ts +0 -0
  537. package/dist/{src/components → components}/RatingPicker/Rating.d.ts +0 -0
  538. package/dist/{src/components → components}/RatingPicker/RatingPicker.d.ts +0 -0
  539. package/dist/{src/components → components}/RatingPicker/StarsPicker/StarsPicker.d.ts +0 -0
  540. package/dist/{src/components → components}/RatingPicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  541. package/dist/{src/components → components}/RatingPicker/locales.d.ts +0 -0
  542. package/dist/{src/components → components}/SearchListField/AccessibiliteItems.d.ts +0 -0
  543. package/dist/{src/components → components}/SearchListField/SearchListField.d.ts +0 -0
  544. package/dist/{src/components → components}/SearchListField/constants/ExpertiseLevelEnum.d.ts +0 -0
  545. package/dist/{src/components → components}/SearchListField/locales.d.ts +0 -0
  546. package/dist/{src/components → components}/SearchListField/types.d.ts +0 -0
  547. package/dist/{src/components → components}/SelectBtnField/AccessibiliteItems.d.ts +0 -0
  548. package/dist/{src/components → components}/SelectBtnField/SelectBtnField.d.ts +1 -1
  549. /package/dist/{src/components → components}/SelectBtnField/config.d.ts +0 -0
  550. /package/dist/{src/components → components}/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +0 -0
  551. /package/dist/{src/components → components}/SelectBtnField/types.d.ts +0 -0
  552. /package/dist/{src/components → components}/SkipLink/AccessibiliteItems.d.ts +0 -0
  553. /package/dist/{src/components → components}/SkipLink/constants/ExpertiseLevelEnum.d.ts +0 -0
  554. /package/dist/{src/components → components}/SkipLink/locales.d.ts +0 -0
  555. /package/dist/{src/components → components}/SocialMediaLinks/AccessibiliteItems.d.ts +0 -0
  556. /package/dist/{src/components → components}/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +0 -0
  557. /package/dist/{src/components → components}/SocialMediaLinks/SocialMediaLinks.d.ts +0 -0
  558. /package/dist/{src/components → components}/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  559. /package/dist/{src/components → components}/SocialMediaLinks/locales.d.ts +0 -0
  560. /package/dist/{src/components → components}/SocialMediaLinks/types.d.ts +0 -0
  561. /package/dist/{src/components → components}/SubHeader/AccessibiliteItems.d.ts +0 -0
  562. /package/dist/{src/components → components}/SubHeader/SubHeader.d.ts +0 -0
  563. /package/dist/{src/components → components}/SubHeader/config.d.ts +0 -0
  564. /package/dist/{src/components → components}/SubHeader/constants/ExpertiseLevelEnum.d.ts +0 -0
  565. /package/dist/{src/components → components}/SubHeader/locales.d.ts +0 -0
  566. /package/dist/{src/components → components}/SyAlert/AccessibiliteItems.d.ts +0 -0
  567. /package/dist/{src/components → components}/SyAlert/SyAlert.d.ts +0 -0
  568. /package/dist/{src/components → components}/SyAlert/constants/ExpertiseLevelEnum.d.ts +0 -0
  569. /package/dist/{src/components → components}/SyAlert/locales.d.ts +0 -0
  570. /package/dist/{src/components → components}/TableToolbar/AccessibiliteItems.d.ts +0 -0
  571. /package/dist/{src/components → components}/TableToolbar/TableToolbar.d.ts +0 -0
  572. /package/dist/{src/components → components}/TableToolbar/config.d.ts +0 -0
  573. /package/dist/{src/components → components}/TableToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  574. /package/dist/{src/components → components}/TableToolbar/locales.d.ts +0 -0
  575. /package/dist/{src/components → components}/UploadWorkflow/AccessibiliteItems.d.ts +0 -0
  576. /package/dist/{src/components → components}/UploadWorkflow/config.d.ts +0 -0
  577. /package/dist/{src/components → components}/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +0 -0
  578. /package/dist/{src/components → components}/UploadWorkflow/locales.d.ts +0 -0
  579. /package/dist/{src/components → components}/UploadWorkflow/types.d.ts +0 -0
  580. /package/dist/{src/components → components}/UploadWorkflow/useFileList.d.ts +0 -0
  581. /package/dist/{src/components → components}/UploadWorkflow/useFileUploadJourney.d.ts +0 -0
  582. /package/dist/{src/components → components}/UserMenuBtn/AccessibiliteItems.d.ts +0 -0
  583. /package/dist/{src/components → components}/UserMenuBtn/config.d.ts +0 -0
  584. /package/dist/{src/components → components}/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  585. /package/dist/{src/composables → composables}/date/useDateFormat.d.ts +0 -0
  586. /package/dist/{src/composables → composables}/date/useDateInitialization.d.ts +0 -0
  587. /package/dist/{src/composables → composables}/index.d.ts +0 -0
  588. /package/dist/{src/composables → composables}/rules/useFieldValidation.d.ts +0 -0
  589. /package/dist/{src/composables → composables}/useCustomizableOptions.d.ts +0 -0
  590. /package/dist/{src/composables → composables}/useFilterable/useFilterable.d.ts +0 -0
  591. /package/dist/{src/composables → composables}/validation/useValidation.d.ts +0 -0
  592. /package/dist/{src/composables → composables}/widthable/index.d.ts +0 -0
  593. /package/dist/{src/constants → constants}/icons.d.ts +0 -0
  594. /package/dist/{src/designTokens → designTokens}/index.d.ts +0 -0
  595. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamContextual.d.ts +0 -0
  596. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamDarkTheme.d.ts +0 -0
  597. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamSemantic.d.ts +0 -0
  598. /package/dist/{src/designTokens → designTokens}/tokens/pa/paContextual.d.ts +0 -0
  599. /package/dist/{src/designTokens → designTokens}/tokens/pa/paDarkTheme.d.ts +0 -0
  600. /package/dist/{src/designTokens → designTokens}/tokens/pa/paSemantic.d.ts +0 -0
  601. /package/dist/{src/designTokens → designTokens}/utils/convertGaps.d.ts +0 -0
  602. /package/dist/{src/designTokens → designTokens}/utils/convertSemanticsToken.d.ts +0 -0
  603. /package/dist/{src/designTokens → designTokens}/utils/createFlattenTheme.d.ts +0 -0
  604. /package/dist/{src/designTokens → designTokens}/utils/index.d.ts +0 -0
  605. /package/dist/{src/directives → directives}/clickOutside.d.ts +0 -0
  606. /package/dist/{src/main.d.ts → main.d.ts} +0 -0
  607. /package/dist/{src/modules.d.ts → modules.d.ts} +0 -0
  608. /package/dist/{src/services → services}/NotificationService.d.ts +0 -0
  609. /package/dist/{src/services → services}/index.d.ts +0 -0
  610. /package/dist/{src/stories → stories}/Accessibilite/Vuetify/VuetifyItems.d.ts +0 -0
  611. /package/dist/{src/stories → stories}/EcoConception/ecoDesignItems.d.ts +0 -0
  612. /package/dist/{src/types → types}/vuetifyTypes.d.ts +0 -0
  613. /package/dist/{src/utils → utils}/calcHumanFileSize/index.d.ts +0 -0
  614. /package/dist/{src/utils → utils}/convertToUnit/index.d.ts +0 -0
  615. /package/dist/{src/utils → utils}/formatDate/index.d.ts +0 -0
  616. /package/dist/{src/utils → utils}/functions/copyToClipboard/index.d.ts +0 -0
  617. /package/dist/{src/utils → utils}/functions/deepCopy/index.d.ts +0 -0
  618. /package/dist/{src/utils → utils}/functions/downloadFile/index.d.ts +0 -0
  619. /package/dist/{src/utils → utils}/functions/downloadFile/types.d.ts +0 -0
  620. /package/dist/{src/utils → utils}/functions/throttleDisplayFn/throttleDisplayFn.d.ts +0 -0
  621. /package/dist/{src/utils → utils}/functions/validation/isDateAfter/index.d.ts +0 -0
  622. /package/dist/{src/utils → utils}/functions/validation/isDateBefore/index.d.ts +0 -0
  623. /package/dist/{src/utils → utils}/functions/validation/isDateInRange/index.d.ts +0 -0
  624. /package/dist/{src/utils → utils}/functions/validation/isDateValid/index.d.ts +0 -0
  625. /package/dist/{src/utils → utils}/functions/validation/isEmailValid/index.d.ts +0 -0
  626. /package/dist/{src/utils → utils}/functions/validation/isWeekend/index.d.ts +0 -0
  627. /package/dist/{src/utils → utils}/localStorageUtility/index.d.ts +0 -0
  628. /package/dist/{src/utils → utils}/parseDate/index.d.ts +0 -0
  629. /package/dist/{src/utils → utils}/propValidator/index.d.ts +0 -0
  630. /package/dist/{src/utils → utils}/ruleMessage/index.d.ts +0 -0
  631. /package/dist/{src/utils → utils}/rules/doMatchPattern/index.d.ts +0 -0
  632. /package/dist/{src/utils → utils}/rules/doMatchPattern/locales.d.ts +0 -0
  633. /package/dist/{src/utils → utils}/rules/index.d.ts +0 -0
  634. /package/dist/{src/utils → utils}/rules/isDateValid/index.d.ts +0 -0
  635. /package/dist/{src/utils → utils}/rules/isDateValid/locales.d.ts +0 -0
  636. /package/dist/{src/utils → utils}/rules/isExactLength/index.d.ts +0 -0
  637. /package/dist/{src/utils → utils}/rules/isExactLength/locales.d.ts +0 -0
  638. /package/dist/{src/utils → utils}/rules/isMaxLength/index.d.ts +0 -0
  639. /package/dist/{src/utils → utils}/rules/isMaxLength/locales.d.ts +0 -0
  640. /package/dist/{src/utils → utils}/rules/isMinLength/index.d.ts +0 -0
  641. /package/dist/{src/utils → utils}/rules/isMinLength/locales.d.ts +0 -0
  642. /package/dist/{src/utils → utils}/rules/isNotAfterDate/index.d.ts +0 -0
  643. /package/dist/{src/utils → utils}/rules/isNotAfterDate/locales.d.ts +0 -0
  644. /package/dist/{src/utils → utils}/rules/isNotAfterToday/index.d.ts +0 -0
  645. /package/dist/{src/utils → utils}/rules/isNotAfterToday/locales.d.ts +0 -0
  646. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/index.d.ts +0 -0
  647. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/locales.d.ts +0 -0
  648. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/index.d.ts +0 -0
  649. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/locales.d.ts +0 -0
  650. /package/dist/{src/utils → utils}/rules/isRequired/index.d.ts +0 -0
  651. /package/dist/{src/utils → utils}/rules/isRequired/locales.d.ts +0 -0
  652. /package/dist/{src/utils → utils}/rules/isValidEmail/index.d.ts +0 -0
  653. /package/dist/{src/utils → utils}/rules/isValidEmail/locales.d.ts +0 -0
  654. /package/dist/{src/utils → utils}/rules/types.d.ts +0 -0
@@ -0,0 +1,2847 @@
1
+ import { ValidationRule } from '../../composables/validation/useValidation';
2
+ type DateInput = string | null;
3
+ type PeriodValue = {
4
+ from: DateInput;
5
+ to: DateInput;
6
+ };
7
+ type __VLS_Props = {
8
+ modelValue?: PeriodValue;
9
+ placeholderFrom?: string;
10
+ placeholderTo?: string;
11
+ format?: string;
12
+ dateFormatReturn?: string;
13
+ showWeekNumber?: boolean;
14
+ required?: boolean;
15
+ displayIcon?: boolean;
16
+ displayAppendIcon?: boolean;
17
+ disabled?: boolean;
18
+ noIcon?: boolean;
19
+ noCalendar?: boolean;
20
+ isOutlined?: boolean;
21
+ showSuccessMessages?: boolean;
22
+ customRules?: ValidationRule[];
23
+ customWarningRules?: ValidationRule[];
24
+ disableErrorHandling?: boolean;
25
+ readonly?: boolean;
26
+ };
27
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
28
+ validateOnSubmit: () => boolean;
29
+ errors: {
30
+ fromDate: import('vue').Ref<string[], string[]>;
31
+ toDate: import('vue').Ref<string[], string[]>;
32
+ };
33
+ successes: {
34
+ fromDate: import('vue').Ref<string[], string[]>;
35
+ toDate: import('vue').Ref<string[], string[]>;
36
+ };
37
+ warnings: {
38
+ fromDate: import('vue').Ref<string[], string[]>;
39
+ toDate: import('vue').Ref<string[], string[]>;
40
+ };
41
+ isValid: import('vue').ComputedRef<boolean>;
42
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
43
+ "update:modelValue": (...args: any[]) => void;
44
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
45
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
46
+ }>, {
47
+ required: boolean;
48
+ modelValue: PeriodValue;
49
+ readonly: boolean;
50
+ disabled: boolean;
51
+ noIcon: boolean;
52
+ customRules: ValidationRule[];
53
+ customWarningRules: ValidationRule[];
54
+ showSuccessMessages: boolean;
55
+ disableErrorHandling: boolean;
56
+ format: string;
57
+ dateFormatReturn: string;
58
+ isOutlined: boolean;
59
+ displayIcon: boolean;
60
+ displayAppendIcon: boolean;
61
+ showWeekNumber: boolean;
62
+ noCalendar: boolean;
63
+ placeholderFrom: string;
64
+ placeholderTo: string;
65
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
66
+ fromDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
67
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
68
+ placeholder?: string | undefined;
69
+ format?: string | undefined;
70
+ dateFormatReturn?: string | undefined;
71
+ isBirthDate?: boolean | undefined;
72
+ showWeekNumber?: boolean | undefined;
73
+ required?: boolean | undefined;
74
+ displayRange?: boolean | undefined;
75
+ displayIcon?: boolean | undefined;
76
+ displayAppendIcon?: boolean | undefined;
77
+ displayPrependIcon?: boolean | undefined;
78
+ customRules?: {
79
+ type: string;
80
+ options: any;
81
+ }[] | undefined;
82
+ customWarningRules?: {
83
+ type: string;
84
+ options: any;
85
+ }[] | undefined;
86
+ disabled?: boolean | undefined;
87
+ noIcon?: boolean | undefined;
88
+ noCalendar?: boolean | undefined;
89
+ isOutlined?: boolean | undefined;
90
+ readonly?: boolean | undefined;
91
+ width?: string | undefined;
92
+ disableErrorHandling?: boolean | undefined;
93
+ showSuccessMessages?: boolean | undefined;
94
+ bgColor?: string | undefined;
95
+ }> & Readonly<{
96
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
97
+ onBlur?: (() => any) | undefined;
98
+ onFocus?: (() => any) | undefined;
99
+ onClosed?: (() => any) | undefined;
100
+ }>, {
101
+ validateOnSubmit: () => any;
102
+ isDatePickerVisible: import('vue').Ref<boolean, boolean>;
103
+ selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
104
+ errorMessages: import('vue').Ref<string[], string[]>;
105
+ handleClickOutside: (event: MouseEvent) => void;
106
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
107
+ updateAccessibility: () => Promise<void>;
108
+ openDatePicker: () => void;
109
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
110
+ "update:modelValue": (value: import('../../composables/date/useDateInitialization').DateValue) => any;
111
+ blur: () => any;
112
+ focus: () => any;
113
+ closed: () => any;
114
+ }, import('vue').PublicProps, {
115
+ required: boolean;
116
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
117
+ readonly: boolean;
118
+ bgColor: string;
119
+ disabled: boolean;
120
+ placeholder: string;
121
+ width: string;
122
+ noIcon: boolean;
123
+ customRules: {
124
+ type: string;
125
+ options: any;
126
+ }[];
127
+ customWarningRules: {
128
+ type: string;
129
+ options: any;
130
+ }[];
131
+ showSuccessMessages: boolean;
132
+ disableErrorHandling: boolean;
133
+ format: string;
134
+ dateFormatReturn: string;
135
+ isOutlined: boolean;
136
+ displayIcon: boolean;
137
+ displayAppendIcon: boolean;
138
+ displayPrependIcon: boolean;
139
+ isBirthDate: boolean;
140
+ showWeekNumber: boolean;
141
+ displayRange: boolean;
142
+ noCalendar: boolean;
143
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
144
+ dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
145
+ modelValue?: (string | null) | undefined;
146
+ placeholder?: string | undefined;
147
+ format?: string | undefined;
148
+ dateFormatReturn?: string | undefined;
149
+ label?: string | undefined;
150
+ required?: boolean | undefined;
151
+ disabled?: boolean | undefined;
152
+ readonly?: boolean | undefined;
153
+ isOutlined?: boolean | undefined;
154
+ displayIcon?: boolean | undefined;
155
+ displayAppendIcon?: boolean | undefined;
156
+ noIcon?: boolean | undefined;
157
+ customRules?: ValidationRule[] | undefined;
158
+ customWarningRules?: ValidationRule[] | undefined;
159
+ displayPrependIcon?: boolean | undefined;
160
+ disableErrorHandling?: boolean | undefined;
161
+ showSuccessMessages?: boolean | undefined;
162
+ }> & Readonly<{
163
+ onBlur?: (() => any) | undefined;
164
+ onFocus?: (() => any) | undefined;
165
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
166
+ }>, {
167
+ validateOnSubmit: () => Promise<boolean>;
168
+ focus: () => void;
169
+ blur: () => void;
170
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
171
+ blur: () => any;
172
+ focus: () => any;
173
+ "update:model-value": (value: string | null) => any;
174
+ }, import('vue').PublicProps, {
175
+ required: boolean;
176
+ modelValue: string | null;
177
+ label: string;
178
+ readonly: boolean;
179
+ disabled: boolean;
180
+ placeholder: string;
181
+ noIcon: boolean;
182
+ customRules: ValidationRule[];
183
+ customWarningRules: ValidationRule[];
184
+ showSuccessMessages: boolean;
185
+ disableErrorHandling: boolean;
186
+ format: string;
187
+ dateFormatReturn: string;
188
+ isOutlined: boolean;
189
+ displayIcon: boolean;
190
+ displayAppendIcon: boolean;
191
+ displayPrependIcon: boolean;
192
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
193
+ inputRef: ({
194
+ $: import('vue').ComponentInternalInstance;
195
+ $data: {};
196
+ $props: {
197
+ readonly modelValue?: string | number | null | undefined;
198
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
199
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
200
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
201
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
202
+ readonly prependTooltip?: string | undefined;
203
+ readonly appendTooltip?: string | undefined;
204
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
205
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
206
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
207
+ readonly isClearable?: boolean | undefined;
208
+ readonly showDivider?: boolean | undefined;
209
+ readonly label?: string | undefined;
210
+ readonly required?: boolean | undefined;
211
+ readonly errorMessages?: string[] | null | undefined;
212
+ readonly warningMessages?: string[] | null | undefined;
213
+ readonly successMessages?: string[] | null | undefined;
214
+ readonly readonly?: boolean | undefined;
215
+ readonly isActive?: boolean | undefined;
216
+ readonly baseColor?: string | undefined;
217
+ readonly bgColor?: string | undefined;
218
+ readonly centerAffix?: boolean | undefined;
219
+ readonly counter?: string | number | boolean | undefined;
220
+ readonly counterValue?: number | ((value: any) => number) | undefined;
221
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
222
+ readonly direction?: "horizontal" | "vertical" | undefined;
223
+ readonly isDirty?: boolean | undefined;
224
+ readonly disabled?: boolean | undefined;
225
+ readonly isOnError?: boolean | undefined;
226
+ readonly isFlat?: boolean | undefined;
227
+ readonly isFocused?: boolean | undefined;
228
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
229
+ readonly areSpinButtonsHidden?: boolean | undefined;
230
+ readonly hint?: string | undefined;
231
+ readonly id?: string | undefined;
232
+ readonly loading?: string | boolean | undefined;
233
+ readonly maxErrors?: string | number | undefined;
234
+ readonly maxWidth?: string | number | undefined;
235
+ readonly messages?: string | string[] | undefined;
236
+ readonly minWidth?: string | number | undefined;
237
+ readonly name?: string | undefined;
238
+ readonly displayPersistentClear?: boolean | undefined;
239
+ readonly displayPersistentCounter?: boolean | undefined;
240
+ readonly displayPersistentHint?: boolean | undefined;
241
+ readonly displayPersistentPlaceholder?: boolean | undefined;
242
+ readonly placeholder?: string | undefined;
243
+ readonly prefix?: string | undefined;
244
+ readonly isReversed?: boolean | undefined;
245
+ readonly role?: string | undefined;
246
+ readonly rounded?: string | number | boolean | undefined;
247
+ readonly isOnSingleLine?: boolean | undefined;
248
+ readonly suffix?: string | undefined;
249
+ readonly theme?: string | undefined;
250
+ readonly isTiled?: boolean | undefined;
251
+ readonly type?: string | undefined;
252
+ readonly width?: string | number | undefined;
253
+ readonly displayAsterisk?: boolean | undefined;
254
+ readonly noIcon?: boolean | undefined;
255
+ readonly customRules?: ValidationRule[] | undefined;
256
+ readonly customWarningRules?: ValidationRule[] | undefined;
257
+ readonly customSuccessRules?: ValidationRule[] | undefined;
258
+ readonly showSuccessMessages?: boolean | undefined;
259
+ readonly isValidateOnBlur?: boolean | undefined;
260
+ readonly disableErrorHandling?: boolean | undefined;
261
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
262
+ readonly onClear?: ((...args: any[]) => any) | undefined;
263
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
264
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
265
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
266
+ $attrs: {
267
+ [x: string]: unknown;
268
+ };
269
+ $refs: {
270
+ [x: string]: unknown;
271
+ };
272
+ $slots: Readonly<{
273
+ [name: string]: import('vue').Slot<any> | undefined;
274
+ }>;
275
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
276
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
277
+ $host: Element | null;
278
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
279
+ $el: any;
280
+ $options: import('vue').ComponentOptionsBase<Readonly<{
281
+ modelValue?: string | number | null | undefined;
282
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
283
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
284
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
285
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
286
+ prependTooltip?: string | undefined;
287
+ appendTooltip?: string | undefined;
288
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
289
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
290
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
291
+ isClearable?: boolean | undefined;
292
+ showDivider?: boolean | undefined;
293
+ label?: string | undefined;
294
+ required?: boolean | undefined;
295
+ errorMessages?: string[] | null | undefined;
296
+ warningMessages?: string[] | null | undefined;
297
+ successMessages?: string[] | null | undefined;
298
+ readonly?: boolean | undefined;
299
+ isActive?: boolean | undefined;
300
+ baseColor?: string | undefined;
301
+ bgColor?: string | undefined;
302
+ centerAffix?: boolean | undefined;
303
+ counter?: string | number | boolean | undefined;
304
+ counterValue?: number | ((value: any) => number) | undefined;
305
+ density?: "default" | "comfortable" | "compact" | undefined;
306
+ direction?: "horizontal" | "vertical" | undefined;
307
+ isDirty?: boolean | undefined;
308
+ disabled?: boolean | undefined;
309
+ isOnError?: boolean | undefined;
310
+ isFlat?: boolean | undefined;
311
+ isFocused?: boolean | undefined;
312
+ areDetailsHidden?: boolean | "auto" | undefined;
313
+ areSpinButtonsHidden?: boolean | undefined;
314
+ hint?: string | undefined;
315
+ id?: string | undefined;
316
+ loading?: string | boolean | undefined;
317
+ maxErrors?: string | number | undefined;
318
+ maxWidth?: string | number | undefined;
319
+ messages?: string | string[] | undefined;
320
+ minWidth?: string | number | undefined;
321
+ name?: string | undefined;
322
+ displayPersistentClear?: boolean | undefined;
323
+ displayPersistentCounter?: boolean | undefined;
324
+ displayPersistentHint?: boolean | undefined;
325
+ displayPersistentPlaceholder?: boolean | undefined;
326
+ placeholder?: string | undefined;
327
+ prefix?: string | undefined;
328
+ isReversed?: boolean | undefined;
329
+ role?: string | undefined;
330
+ rounded?: string | number | boolean | undefined;
331
+ isOnSingleLine?: boolean | undefined;
332
+ suffix?: string | undefined;
333
+ theme?: string | undefined;
334
+ isTiled?: boolean | undefined;
335
+ type?: string | undefined;
336
+ width?: string | number | undefined;
337
+ displayAsterisk?: boolean | undefined;
338
+ noIcon?: boolean | undefined;
339
+ customRules?: ValidationRule[] | undefined;
340
+ customWarningRules?: ValidationRule[] | undefined;
341
+ customSuccessRules?: ValidationRule[] | undefined;
342
+ showSuccessMessages?: boolean | undefined;
343
+ isValidateOnBlur?: boolean | undefined;
344
+ disableErrorHandling?: boolean | undefined;
345
+ }> & Readonly<{
346
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
347
+ onClear?: ((...args: any[]) => any) | undefined;
348
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
349
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
350
+ }>, {
351
+ validation: {
352
+ errors: import('vue').Ref<string[], string[]>;
353
+ warnings: import('vue').Ref<string[], string[]>;
354
+ successes: import('vue').Ref<string[], string[]>;
355
+ hasError: import('vue').ComputedRef<boolean>;
356
+ hasWarning: import('vue').ComputedRef<boolean>;
357
+ hasSuccess: import('vue').ComputedRef<boolean>;
358
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
359
+ validateOnSubmit: () => Promise<boolean>;
360
+ clearValidation: () => void;
361
+ };
362
+ validateOnSubmit: () => boolean;
363
+ checkErrorOnBlur: () => void;
364
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
365
+ "update:modelValue": (...args: any[]) => void;
366
+ clear: (...args: any[]) => void;
367
+ "prepend-icon-click": (...args: any[]) => void;
368
+ "append-icon-click": (...args: any[]) => void;
369
+ }, string, {
370
+ modelValue: string | number | null;
371
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
372
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
373
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
374
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
375
+ prependTooltip: string;
376
+ appendTooltip: string;
377
+ tooltipLocation: "top" | "bottom" | "start" | "end";
378
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
379
+ color: import('../Customs/SyTextField/types').ColorType;
380
+ isClearable: boolean;
381
+ label: string;
382
+ errorMessages: string[] | null;
383
+ warningMessages: string[] | null;
384
+ successMessages: string[] | null;
385
+ readonly: boolean;
386
+ isActive: boolean;
387
+ baseColor: string;
388
+ bgColor: string;
389
+ centerAffix: boolean;
390
+ counter: string | number | boolean;
391
+ counterValue: number | ((value: any) => number);
392
+ density: "default" | "comfortable" | "compact";
393
+ direction: "horizontal" | "vertical";
394
+ isDirty: boolean;
395
+ disabled: boolean;
396
+ isOnError: boolean;
397
+ isFlat: boolean;
398
+ isFocused: boolean;
399
+ areDetailsHidden: boolean | "auto";
400
+ areSpinButtonsHidden: boolean;
401
+ hint: string;
402
+ id: string;
403
+ loading: string | boolean;
404
+ maxErrors: string | number;
405
+ maxWidth: string | number;
406
+ messages: string | string[];
407
+ minWidth: string | number;
408
+ name: string;
409
+ displayPersistentClear: boolean;
410
+ displayPersistentCounter: boolean;
411
+ displayPersistentHint: boolean;
412
+ displayPersistentPlaceholder: boolean;
413
+ placeholder: string;
414
+ prefix: string;
415
+ isReversed: boolean;
416
+ role: string;
417
+ rounded: string | number | boolean;
418
+ isOnSingleLine: boolean;
419
+ suffix: string;
420
+ theme: string;
421
+ isTiled: boolean;
422
+ type: string;
423
+ width: string | number;
424
+ displayAsterisk: boolean;
425
+ noIcon: boolean;
426
+ customRules: ValidationRule[];
427
+ customWarningRules: ValidationRule[];
428
+ customSuccessRules: ValidationRule[];
429
+ showSuccessMessages: boolean;
430
+ isValidateOnBlur: boolean;
431
+ disableErrorHandling: boolean;
432
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
433
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
434
+ created?: ((() => void) | (() => void)[]) | undefined;
435
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
436
+ mounted?: ((() => void) | (() => void)[]) | undefined;
437
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
438
+ updated?: ((() => void) | (() => void)[]) | undefined;
439
+ activated?: ((() => void) | (() => void)[]) | undefined;
440
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
441
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
442
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
443
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
444
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
445
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
446
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
447
+ 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;
448
+ };
449
+ $forceUpdate: () => void;
450
+ $nextTick: typeof import('vue').nextTick;
451
+ $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;
452
+ } & Readonly<{
453
+ modelValue: string | number | null;
454
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
455
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
456
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
457
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
458
+ prependTooltip: string;
459
+ appendTooltip: string;
460
+ tooltipLocation: "top" | "bottom" | "start" | "end";
461
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
462
+ color: import('../Customs/SyTextField/types').ColorType;
463
+ isClearable: boolean;
464
+ label: string;
465
+ errorMessages: string[] | null;
466
+ warningMessages: string[] | null;
467
+ successMessages: string[] | null;
468
+ readonly: boolean;
469
+ isActive: boolean;
470
+ baseColor: string;
471
+ bgColor: string;
472
+ centerAffix: boolean;
473
+ counter: string | number | boolean;
474
+ counterValue: number | ((value: any) => number);
475
+ density: "default" | "comfortable" | "compact";
476
+ direction: "horizontal" | "vertical";
477
+ isDirty: boolean;
478
+ disabled: boolean;
479
+ isOnError: boolean;
480
+ isFlat: boolean;
481
+ isFocused: boolean;
482
+ areDetailsHidden: boolean | "auto";
483
+ areSpinButtonsHidden: boolean;
484
+ hint: string;
485
+ id: string;
486
+ loading: string | boolean;
487
+ maxErrors: string | number;
488
+ maxWidth: string | number;
489
+ messages: string | string[];
490
+ minWidth: string | number;
491
+ name: string;
492
+ displayPersistentClear: boolean;
493
+ displayPersistentCounter: boolean;
494
+ displayPersistentHint: boolean;
495
+ displayPersistentPlaceholder: boolean;
496
+ placeholder: string;
497
+ prefix: string;
498
+ isReversed: boolean;
499
+ role: string;
500
+ rounded: string | number | boolean;
501
+ isOnSingleLine: boolean;
502
+ suffix: string;
503
+ theme: string;
504
+ isTiled: boolean;
505
+ type: string;
506
+ width: string | number;
507
+ displayAsterisk: boolean;
508
+ noIcon: boolean;
509
+ customRules: ValidationRule[];
510
+ customWarningRules: ValidationRule[];
511
+ customSuccessRules: ValidationRule[];
512
+ showSuccessMessages: boolean;
513
+ isValidateOnBlur: boolean;
514
+ disableErrorHandling: boolean;
515
+ }> & Omit<Readonly<{
516
+ modelValue?: string | number | null | undefined;
517
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
518
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
519
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
520
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
521
+ prependTooltip?: string | undefined;
522
+ appendTooltip?: string | undefined;
523
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
524
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
525
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
526
+ isClearable?: boolean | undefined;
527
+ showDivider?: boolean | undefined;
528
+ label?: string | undefined;
529
+ required?: boolean | undefined;
530
+ errorMessages?: string[] | null | undefined;
531
+ warningMessages?: string[] | null | undefined;
532
+ successMessages?: string[] | null | undefined;
533
+ readonly?: boolean | undefined;
534
+ isActive?: boolean | undefined;
535
+ baseColor?: string | undefined;
536
+ bgColor?: string | undefined;
537
+ centerAffix?: boolean | undefined;
538
+ counter?: string | number | boolean | undefined;
539
+ counterValue?: number | ((value: any) => number) | undefined;
540
+ density?: "default" | "comfortable" | "compact" | undefined;
541
+ direction?: "horizontal" | "vertical" | undefined;
542
+ isDirty?: boolean | undefined;
543
+ disabled?: boolean | undefined;
544
+ isOnError?: boolean | undefined;
545
+ isFlat?: boolean | undefined;
546
+ isFocused?: boolean | undefined;
547
+ areDetailsHidden?: boolean | "auto" | undefined;
548
+ areSpinButtonsHidden?: boolean | undefined;
549
+ hint?: string | undefined;
550
+ id?: string | undefined;
551
+ loading?: string | boolean | undefined;
552
+ maxErrors?: string | number | undefined;
553
+ maxWidth?: string | number | undefined;
554
+ messages?: string | string[] | undefined;
555
+ minWidth?: string | number | undefined;
556
+ name?: string | undefined;
557
+ displayPersistentClear?: boolean | undefined;
558
+ displayPersistentCounter?: boolean | undefined;
559
+ displayPersistentHint?: boolean | undefined;
560
+ displayPersistentPlaceholder?: boolean | undefined;
561
+ placeholder?: string | undefined;
562
+ prefix?: string | undefined;
563
+ isReversed?: boolean | undefined;
564
+ role?: string | undefined;
565
+ rounded?: string | number | boolean | undefined;
566
+ isOnSingleLine?: boolean | undefined;
567
+ suffix?: string | undefined;
568
+ theme?: string | undefined;
569
+ isTiled?: boolean | undefined;
570
+ type?: string | undefined;
571
+ width?: string | number | undefined;
572
+ displayAsterisk?: boolean | undefined;
573
+ noIcon?: boolean | undefined;
574
+ customRules?: ValidationRule[] | undefined;
575
+ customWarningRules?: ValidationRule[] | undefined;
576
+ customSuccessRules?: ValidationRule[] | undefined;
577
+ showSuccessMessages?: boolean | undefined;
578
+ isValidateOnBlur?: boolean | undefined;
579
+ disableErrorHandling?: boolean | undefined;
580
+ }> & Readonly<{
581
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
582
+ onClear?: ((...args: any[]) => any) | undefined;
583
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
584
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
585
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
586
+ validation: {
587
+ errors: import('vue').Ref<string[], string[]>;
588
+ warnings: import('vue').Ref<string[], string[]>;
589
+ successes: import('vue').Ref<string[], string[]>;
590
+ hasError: import('vue').ComputedRef<boolean>;
591
+ hasWarning: import('vue').ComputedRef<boolean>;
592
+ hasSuccess: import('vue').ComputedRef<boolean>;
593
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
594
+ validateOnSubmit: () => Promise<boolean>;
595
+ clearValidation: () => void;
596
+ };
597
+ validateOnSubmit: () => boolean;
598
+ checkErrorOnBlur: () => void;
599
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
600
+ $slots: {
601
+ prepend?(_: {}): any;
602
+ append?(_: {}): any;
603
+ 'prepend-inner'?(_: {}): any;
604
+ 'append-inner'?(_: {}): any;
605
+ details?(_: {}): any;
606
+ };
607
+ }) | null;
608
+ }, any, import('vue').ComponentProvideOptions, {
609
+ P: {};
610
+ B: {};
611
+ D: {};
612
+ C: {};
613
+ M: {};
614
+ Defaults: {};
615
+ }, Readonly<{
616
+ modelValue?: (string | null) | undefined;
617
+ placeholder?: string | undefined;
618
+ format?: string | undefined;
619
+ dateFormatReturn?: string | undefined;
620
+ label?: string | undefined;
621
+ required?: boolean | undefined;
622
+ disabled?: boolean | undefined;
623
+ readonly?: boolean | undefined;
624
+ isOutlined?: boolean | undefined;
625
+ displayIcon?: boolean | undefined;
626
+ displayAppendIcon?: boolean | undefined;
627
+ noIcon?: boolean | undefined;
628
+ customRules?: ValidationRule[] | undefined;
629
+ customWarningRules?: ValidationRule[] | undefined;
630
+ displayPrependIcon?: boolean | undefined;
631
+ disableErrorHandling?: boolean | undefined;
632
+ showSuccessMessages?: boolean | undefined;
633
+ }> & Readonly<{
634
+ onBlur?: (() => any) | undefined;
635
+ onFocus?: (() => any) | undefined;
636
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
637
+ }>, {
638
+ validateOnSubmit: () => Promise<boolean>;
639
+ focus: () => void;
640
+ blur: () => void;
641
+ }, {}, {}, {}, {
642
+ required: boolean;
643
+ modelValue: string | null;
644
+ label: string;
645
+ readonly: boolean;
646
+ disabled: boolean;
647
+ placeholder: string;
648
+ noIcon: boolean;
649
+ customRules: ValidationRule[];
650
+ customWarningRules: ValidationRule[];
651
+ showSuccessMessages: boolean;
652
+ disableErrorHandling: boolean;
653
+ format: string;
654
+ dateFormatReturn: string;
655
+ isOutlined: boolean;
656
+ displayIcon: boolean;
657
+ displayAppendIcon: boolean;
658
+ displayPrependIcon: boolean;
659
+ }> | null;
660
+ dateCalendarTextInputRef: ({
661
+ $: import('vue').ComponentInternalInstance;
662
+ $data: {};
663
+ $props: {
664
+ readonly modelValue?: string | number | null | undefined;
665
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
666
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
667
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
668
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
669
+ readonly prependTooltip?: string | undefined;
670
+ readonly appendTooltip?: string | undefined;
671
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
672
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
673
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
674
+ readonly isClearable?: boolean | undefined;
675
+ readonly showDivider?: boolean | undefined;
676
+ readonly label?: string | undefined;
677
+ readonly required?: boolean | undefined;
678
+ readonly errorMessages?: string[] | null | undefined;
679
+ readonly warningMessages?: string[] | null | undefined;
680
+ readonly successMessages?: string[] | null | undefined;
681
+ readonly readonly?: boolean | undefined;
682
+ readonly isActive?: boolean | undefined;
683
+ readonly baseColor?: string | undefined;
684
+ readonly bgColor?: string | undefined;
685
+ readonly centerAffix?: boolean | undefined;
686
+ readonly counter?: string | number | boolean | undefined;
687
+ readonly counterValue?: number | ((value: any) => number) | undefined;
688
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
689
+ readonly direction?: "horizontal" | "vertical" | undefined;
690
+ readonly isDirty?: boolean | undefined;
691
+ readonly disabled?: boolean | undefined;
692
+ readonly isOnError?: boolean | undefined;
693
+ readonly isFlat?: boolean | undefined;
694
+ readonly isFocused?: boolean | undefined;
695
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
696
+ readonly areSpinButtonsHidden?: boolean | undefined;
697
+ readonly hint?: string | undefined;
698
+ readonly id?: string | undefined;
699
+ readonly loading?: string | boolean | undefined;
700
+ readonly maxErrors?: string | number | undefined;
701
+ readonly maxWidth?: string | number | undefined;
702
+ readonly messages?: string | string[] | undefined;
703
+ readonly minWidth?: string | number | undefined;
704
+ readonly name?: string | undefined;
705
+ readonly displayPersistentClear?: boolean | undefined;
706
+ readonly displayPersistentCounter?: boolean | undefined;
707
+ readonly displayPersistentHint?: boolean | undefined;
708
+ readonly displayPersistentPlaceholder?: boolean | undefined;
709
+ readonly placeholder?: string | undefined;
710
+ readonly prefix?: string | undefined;
711
+ readonly isReversed?: boolean | undefined;
712
+ readonly role?: string | undefined;
713
+ readonly rounded?: string | number | boolean | undefined;
714
+ readonly isOnSingleLine?: boolean | undefined;
715
+ readonly suffix?: string | undefined;
716
+ readonly theme?: string | undefined;
717
+ readonly isTiled?: boolean | undefined;
718
+ readonly type?: string | undefined;
719
+ readonly width?: string | number | undefined;
720
+ readonly displayAsterisk?: boolean | undefined;
721
+ readonly noIcon?: boolean | undefined;
722
+ readonly customRules?: ValidationRule[] | undefined;
723
+ readonly customWarningRules?: ValidationRule[] | undefined;
724
+ readonly customSuccessRules?: ValidationRule[] | undefined;
725
+ readonly showSuccessMessages?: boolean | undefined;
726
+ readonly isValidateOnBlur?: boolean | undefined;
727
+ readonly disableErrorHandling?: boolean | undefined;
728
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
729
+ readonly onClear?: ((...args: any[]) => any) | undefined;
730
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
731
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
732
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
733
+ $attrs: {
734
+ [x: string]: unknown;
735
+ };
736
+ $refs: {
737
+ [x: string]: unknown;
738
+ };
739
+ $slots: Readonly<{
740
+ [name: string]: import('vue').Slot<any> | undefined;
741
+ }>;
742
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
743
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
744
+ $host: Element | null;
745
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
746
+ $el: any;
747
+ $options: import('vue').ComponentOptionsBase<Readonly<{
748
+ modelValue?: string | number | null | undefined;
749
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
750
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
751
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
752
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
753
+ prependTooltip?: string | undefined;
754
+ appendTooltip?: string | undefined;
755
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
756
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
757
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
758
+ isClearable?: boolean | undefined;
759
+ showDivider?: boolean | undefined;
760
+ label?: string | undefined;
761
+ required?: boolean | undefined;
762
+ errorMessages?: string[] | null | undefined;
763
+ warningMessages?: string[] | null | undefined;
764
+ successMessages?: string[] | null | undefined;
765
+ readonly?: boolean | undefined;
766
+ isActive?: boolean | undefined;
767
+ baseColor?: string | undefined;
768
+ bgColor?: string | undefined;
769
+ centerAffix?: boolean | undefined;
770
+ counter?: string | number | boolean | undefined;
771
+ counterValue?: number | ((value: any) => number) | undefined;
772
+ density?: "default" | "comfortable" | "compact" | undefined;
773
+ direction?: "horizontal" | "vertical" | undefined;
774
+ isDirty?: boolean | undefined;
775
+ disabled?: boolean | undefined;
776
+ isOnError?: boolean | undefined;
777
+ isFlat?: boolean | undefined;
778
+ isFocused?: boolean | undefined;
779
+ areDetailsHidden?: boolean | "auto" | undefined;
780
+ areSpinButtonsHidden?: boolean | undefined;
781
+ hint?: string | undefined;
782
+ id?: string | undefined;
783
+ loading?: string | boolean | undefined;
784
+ maxErrors?: string | number | undefined;
785
+ maxWidth?: string | number | undefined;
786
+ messages?: string | string[] | undefined;
787
+ minWidth?: string | number | undefined;
788
+ name?: string | undefined;
789
+ displayPersistentClear?: boolean | undefined;
790
+ displayPersistentCounter?: boolean | undefined;
791
+ displayPersistentHint?: boolean | undefined;
792
+ displayPersistentPlaceholder?: boolean | undefined;
793
+ placeholder?: string | undefined;
794
+ prefix?: string | undefined;
795
+ isReversed?: boolean | undefined;
796
+ role?: string | undefined;
797
+ rounded?: string | number | boolean | undefined;
798
+ isOnSingleLine?: boolean | undefined;
799
+ suffix?: string | undefined;
800
+ theme?: string | undefined;
801
+ isTiled?: boolean | undefined;
802
+ type?: string | undefined;
803
+ width?: string | number | undefined;
804
+ displayAsterisk?: boolean | undefined;
805
+ noIcon?: boolean | undefined;
806
+ customRules?: ValidationRule[] | undefined;
807
+ customWarningRules?: ValidationRule[] | undefined;
808
+ customSuccessRules?: ValidationRule[] | undefined;
809
+ showSuccessMessages?: boolean | undefined;
810
+ isValidateOnBlur?: boolean | undefined;
811
+ disableErrorHandling?: boolean | undefined;
812
+ }> & Readonly<{
813
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
814
+ onClear?: ((...args: any[]) => any) | undefined;
815
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
816
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
817
+ }>, {
818
+ validation: {
819
+ errors: import('vue').Ref<string[], string[]>;
820
+ warnings: import('vue').Ref<string[], string[]>;
821
+ successes: import('vue').Ref<string[], string[]>;
822
+ hasError: import('vue').ComputedRef<boolean>;
823
+ hasWarning: import('vue').ComputedRef<boolean>;
824
+ hasSuccess: import('vue').ComputedRef<boolean>;
825
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
826
+ validateOnSubmit: () => Promise<boolean>;
827
+ clearValidation: () => void;
828
+ };
829
+ validateOnSubmit: () => boolean;
830
+ checkErrorOnBlur: () => void;
831
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
832
+ "update:modelValue": (...args: any[]) => void;
833
+ clear: (...args: any[]) => void;
834
+ "prepend-icon-click": (...args: any[]) => void;
835
+ "append-icon-click": (...args: any[]) => void;
836
+ }, string, {
837
+ modelValue: string | number | null;
838
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
839
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
840
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
841
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
842
+ prependTooltip: string;
843
+ appendTooltip: string;
844
+ tooltipLocation: "top" | "bottom" | "start" | "end";
845
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
846
+ color: import('../Customs/SyTextField/types').ColorType;
847
+ isClearable: boolean;
848
+ label: string;
849
+ errorMessages: string[] | null;
850
+ warningMessages: string[] | null;
851
+ successMessages: string[] | null;
852
+ readonly: boolean;
853
+ isActive: boolean;
854
+ baseColor: string;
855
+ bgColor: string;
856
+ centerAffix: boolean;
857
+ counter: string | number | boolean;
858
+ counterValue: number | ((value: any) => number);
859
+ density: "default" | "comfortable" | "compact";
860
+ direction: "horizontal" | "vertical";
861
+ isDirty: boolean;
862
+ disabled: boolean;
863
+ isOnError: boolean;
864
+ isFlat: boolean;
865
+ isFocused: boolean;
866
+ areDetailsHidden: boolean | "auto";
867
+ areSpinButtonsHidden: boolean;
868
+ hint: string;
869
+ id: string;
870
+ loading: string | boolean;
871
+ maxErrors: string | number;
872
+ maxWidth: string | number;
873
+ messages: string | string[];
874
+ minWidth: string | number;
875
+ name: string;
876
+ displayPersistentClear: boolean;
877
+ displayPersistentCounter: boolean;
878
+ displayPersistentHint: boolean;
879
+ displayPersistentPlaceholder: boolean;
880
+ placeholder: string;
881
+ prefix: string;
882
+ isReversed: boolean;
883
+ role: string;
884
+ rounded: string | number | boolean;
885
+ isOnSingleLine: boolean;
886
+ suffix: string;
887
+ theme: string;
888
+ isTiled: boolean;
889
+ type: string;
890
+ width: string | number;
891
+ displayAsterisk: boolean;
892
+ noIcon: boolean;
893
+ customRules: ValidationRule[];
894
+ customWarningRules: ValidationRule[];
895
+ customSuccessRules: ValidationRule[];
896
+ showSuccessMessages: boolean;
897
+ isValidateOnBlur: boolean;
898
+ disableErrorHandling: boolean;
899
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
900
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
901
+ created?: ((() => void) | (() => void)[]) | undefined;
902
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
903
+ mounted?: ((() => void) | (() => void)[]) | undefined;
904
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
905
+ updated?: ((() => void) | (() => void)[]) | undefined;
906
+ activated?: ((() => void) | (() => void)[]) | undefined;
907
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
908
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
909
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
910
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
911
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
912
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
913
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
914
+ 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;
915
+ };
916
+ $forceUpdate: () => void;
917
+ $nextTick: typeof import('vue').nextTick;
918
+ $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;
919
+ } & Readonly<{
920
+ modelValue: string | number | null;
921
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
922
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
923
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
924
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
925
+ prependTooltip: string;
926
+ appendTooltip: string;
927
+ tooltipLocation: "top" | "bottom" | "start" | "end";
928
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
929
+ color: import('../Customs/SyTextField/types').ColorType;
930
+ isClearable: boolean;
931
+ label: string;
932
+ errorMessages: string[] | null;
933
+ warningMessages: string[] | null;
934
+ successMessages: string[] | null;
935
+ readonly: boolean;
936
+ isActive: boolean;
937
+ baseColor: string;
938
+ bgColor: string;
939
+ centerAffix: boolean;
940
+ counter: string | number | boolean;
941
+ counterValue: number | ((value: any) => number);
942
+ density: "default" | "comfortable" | "compact";
943
+ direction: "horizontal" | "vertical";
944
+ isDirty: boolean;
945
+ disabled: boolean;
946
+ isOnError: boolean;
947
+ isFlat: boolean;
948
+ isFocused: boolean;
949
+ areDetailsHidden: boolean | "auto";
950
+ areSpinButtonsHidden: boolean;
951
+ hint: string;
952
+ id: string;
953
+ loading: string | boolean;
954
+ maxErrors: string | number;
955
+ maxWidth: string | number;
956
+ messages: string | string[];
957
+ minWidth: string | number;
958
+ name: string;
959
+ displayPersistentClear: boolean;
960
+ displayPersistentCounter: boolean;
961
+ displayPersistentHint: boolean;
962
+ displayPersistentPlaceholder: boolean;
963
+ placeholder: string;
964
+ prefix: string;
965
+ isReversed: boolean;
966
+ role: string;
967
+ rounded: string | number | boolean;
968
+ isOnSingleLine: boolean;
969
+ suffix: string;
970
+ theme: string;
971
+ isTiled: boolean;
972
+ type: string;
973
+ width: string | number;
974
+ displayAsterisk: boolean;
975
+ noIcon: boolean;
976
+ customRules: ValidationRule[];
977
+ customWarningRules: ValidationRule[];
978
+ customSuccessRules: ValidationRule[];
979
+ showSuccessMessages: boolean;
980
+ isValidateOnBlur: boolean;
981
+ disableErrorHandling: boolean;
982
+ }> & Omit<Readonly<{
983
+ modelValue?: string | number | null | undefined;
984
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
985
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
986
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
987
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
988
+ prependTooltip?: string | undefined;
989
+ appendTooltip?: string | undefined;
990
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
991
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
992
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
993
+ isClearable?: boolean | undefined;
994
+ showDivider?: boolean | undefined;
995
+ label?: string | undefined;
996
+ required?: boolean | undefined;
997
+ errorMessages?: string[] | null | undefined;
998
+ warningMessages?: string[] | null | undefined;
999
+ successMessages?: string[] | null | undefined;
1000
+ readonly?: boolean | undefined;
1001
+ isActive?: boolean | undefined;
1002
+ baseColor?: string | undefined;
1003
+ bgColor?: string | undefined;
1004
+ centerAffix?: boolean | undefined;
1005
+ counter?: string | number | boolean | undefined;
1006
+ counterValue?: number | ((value: any) => number) | undefined;
1007
+ density?: "default" | "comfortable" | "compact" | undefined;
1008
+ direction?: "horizontal" | "vertical" | undefined;
1009
+ isDirty?: boolean | undefined;
1010
+ disabled?: boolean | undefined;
1011
+ isOnError?: boolean | undefined;
1012
+ isFlat?: boolean | undefined;
1013
+ isFocused?: boolean | undefined;
1014
+ areDetailsHidden?: boolean | "auto" | undefined;
1015
+ areSpinButtonsHidden?: boolean | undefined;
1016
+ hint?: string | undefined;
1017
+ id?: string | undefined;
1018
+ loading?: string | boolean | undefined;
1019
+ maxErrors?: string | number | undefined;
1020
+ maxWidth?: string | number | undefined;
1021
+ messages?: string | string[] | undefined;
1022
+ minWidth?: string | number | undefined;
1023
+ name?: string | undefined;
1024
+ displayPersistentClear?: boolean | undefined;
1025
+ displayPersistentCounter?: boolean | undefined;
1026
+ displayPersistentHint?: boolean | undefined;
1027
+ displayPersistentPlaceholder?: boolean | undefined;
1028
+ placeholder?: string | undefined;
1029
+ prefix?: string | undefined;
1030
+ isReversed?: boolean | undefined;
1031
+ role?: string | undefined;
1032
+ rounded?: string | number | boolean | undefined;
1033
+ isOnSingleLine?: boolean | undefined;
1034
+ suffix?: string | undefined;
1035
+ theme?: string | undefined;
1036
+ isTiled?: boolean | undefined;
1037
+ type?: string | undefined;
1038
+ width?: string | number | undefined;
1039
+ displayAsterisk?: boolean | undefined;
1040
+ noIcon?: boolean | undefined;
1041
+ customRules?: ValidationRule[] | undefined;
1042
+ customWarningRules?: ValidationRule[] | undefined;
1043
+ customSuccessRules?: ValidationRule[] | undefined;
1044
+ showSuccessMessages?: boolean | undefined;
1045
+ isValidateOnBlur?: boolean | undefined;
1046
+ disableErrorHandling?: boolean | undefined;
1047
+ }> & Readonly<{
1048
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1049
+ onClear?: ((...args: any[]) => any) | undefined;
1050
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1051
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1052
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
1053
+ validation: {
1054
+ errors: import('vue').Ref<string[], string[]>;
1055
+ warnings: import('vue').Ref<string[], string[]>;
1056
+ successes: import('vue').Ref<string[], string[]>;
1057
+ hasError: import('vue').ComputedRef<boolean>;
1058
+ hasWarning: import('vue').ComputedRef<boolean>;
1059
+ hasSuccess: import('vue').ComputedRef<boolean>;
1060
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1061
+ validateOnSubmit: () => Promise<boolean>;
1062
+ clearValidation: () => void;
1063
+ };
1064
+ validateOnSubmit: () => boolean;
1065
+ checkErrorOnBlur: () => void;
1066
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1067
+ $slots: {
1068
+ prepend?(_: {}): any;
1069
+ append?(_: {}): any;
1070
+ 'prepend-inner'?(_: {}): any;
1071
+ 'append-inner'?(_: {}): any;
1072
+ details?(_: {}): any;
1073
+ };
1074
+ }) | null;
1075
+ datePickerRef: ({
1076
+ $: import('vue').ComponentInternalInstance;
1077
+ $data: {};
1078
+ $props: Partial<{
1079
+ active: string | string[];
1080
+ transition: string;
1081
+ header: string;
1082
+ style: import('vue').StyleValue;
1083
+ title: string;
1084
+ disabled: boolean;
1085
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1086
+ landscape: boolean;
1087
+ rounded: string | number | boolean;
1088
+ tile: boolean;
1089
+ divided: boolean;
1090
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1091
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1092
+ reverseTransition: string;
1093
+ hideHeader: boolean;
1094
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1095
+ viewMode: "month" | "year" | "months";
1096
+ showAdjacentMonths: boolean;
1097
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1098
+ weeksInMonth: "static" | "dynamic";
1099
+ firstDayOfWeek: string | number;
1100
+ hideWeekdays: boolean;
1101
+ showWeek: boolean;
1102
+ }> & Omit<{
1103
+ transition: string;
1104
+ header: string;
1105
+ style: import('vue').StyleValue;
1106
+ title: string;
1107
+ disabled: boolean;
1108
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1109
+ landscape: boolean;
1110
+ tile: boolean;
1111
+ divided: boolean;
1112
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1113
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1114
+ reverseTransition: string;
1115
+ hideHeader: boolean;
1116
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1117
+ viewMode: "month" | "year" | "months";
1118
+ showAdjacentMonths: boolean;
1119
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1120
+ weeksInMonth: "static" | "dynamic";
1121
+ hideWeekdays: boolean;
1122
+ showWeek: boolean;
1123
+ max?: unknown;
1124
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1125
+ height?: string | number | undefined;
1126
+ width?: string | number | undefined;
1127
+ active?: string | string[] | undefined;
1128
+ min?: unknown;
1129
+ border?: string | number | boolean | undefined;
1130
+ color?: string | undefined;
1131
+ maxHeight?: string | number | undefined;
1132
+ maxWidth?: string | number | undefined;
1133
+ minHeight?: string | number | undefined;
1134
+ minWidth?: string | number | undefined;
1135
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1136
+ text?: string | undefined;
1137
+ month?: string | number | undefined;
1138
+ year?: number | undefined;
1139
+ class?: any;
1140
+ theme?: string | undefined;
1141
+ elevation?: string | number | undefined;
1142
+ rounded?: string | number | boolean | undefined;
1143
+ bgColor?: string | undefined;
1144
+ controlHeight?: string | number | undefined;
1145
+ headerColor?: string | undefined;
1146
+ firstDayOfWeek?: string | number | undefined;
1147
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1148
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1149
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1150
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1151
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode">;
1152
+ $attrs: {
1153
+ [x: string]: unknown;
1154
+ };
1155
+ $refs: {
1156
+ [x: string]: unknown;
1157
+ };
1158
+ $slots: Readonly<{
1159
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1160
+ [key: string]: any;
1161
+ }>[]) | undefined;
1162
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1163
+ [key: string]: any;
1164
+ }>[]) | undefined;
1165
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1166
+ [key: string]: any;
1167
+ }>[]) | undefined;
1168
+ header?: ((arg: {
1169
+ header: string;
1170
+ transition: string;
1171
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1172
+ [key: string]: any;
1173
+ }>[]) | undefined;
1174
+ }>;
1175
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1176
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1177
+ $host: Element | null;
1178
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
1179
+ $el: any;
1180
+ $options: import('vue').ComponentOptionsBase<{
1181
+ transition: string;
1182
+ header: string;
1183
+ style: import('vue').StyleValue;
1184
+ title: string;
1185
+ disabled: boolean;
1186
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1187
+ landscape: boolean;
1188
+ tile: boolean;
1189
+ divided: boolean;
1190
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1191
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1192
+ reverseTransition: string;
1193
+ hideHeader: boolean;
1194
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1195
+ viewMode: "month" | "year" | "months";
1196
+ showAdjacentMonths: boolean;
1197
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1198
+ weeksInMonth: "static" | "dynamic";
1199
+ hideWeekdays: boolean;
1200
+ showWeek: boolean;
1201
+ } & {
1202
+ max?: unknown;
1203
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1204
+ height?: string | number | undefined;
1205
+ width?: string | number | undefined;
1206
+ active?: string | string[] | undefined;
1207
+ min?: unknown;
1208
+ border?: string | number | boolean | undefined;
1209
+ color?: string | undefined;
1210
+ maxHeight?: string | number | undefined;
1211
+ maxWidth?: string | number | undefined;
1212
+ minHeight?: string | number | undefined;
1213
+ minWidth?: string | number | undefined;
1214
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1215
+ text?: string | undefined;
1216
+ month?: string | number | undefined;
1217
+ year?: number | undefined;
1218
+ class?: any;
1219
+ theme?: string | undefined;
1220
+ elevation?: string | number | undefined;
1221
+ rounded?: string | number | boolean | undefined;
1222
+ bgColor?: string | undefined;
1223
+ controlHeight?: string | number | undefined;
1224
+ headerColor?: string | undefined;
1225
+ firstDayOfWeek?: string | number | undefined;
1226
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1227
+ } & {
1228
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1229
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1230
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1231
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1232
+ 'update:modelValue': (date: any) => true;
1233
+ 'update:month': (date: any) => true;
1234
+ 'update:year': (date: any) => true;
1235
+ 'update:viewMode': (date: any) => true;
1236
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
1237
+ active: string | string[];
1238
+ transition: string;
1239
+ header: string;
1240
+ style: import('vue').StyleValue;
1241
+ title: string;
1242
+ disabled: boolean;
1243
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1244
+ landscape: boolean;
1245
+ rounded: string | number | boolean;
1246
+ tile: boolean;
1247
+ divided: boolean;
1248
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1249
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1250
+ reverseTransition: string;
1251
+ hideHeader: boolean;
1252
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1253
+ viewMode: "month" | "year" | "months";
1254
+ showAdjacentMonths: boolean;
1255
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1256
+ weeksInMonth: "static" | "dynamic";
1257
+ firstDayOfWeek: string | number;
1258
+ hideWeekdays: boolean;
1259
+ showWeek: boolean;
1260
+ }, {}, string, import('vue').SlotsType<Partial<{
1261
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1262
+ [key: string]: any;
1263
+ }>[];
1264
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1265
+ [key: string]: any;
1266
+ }>[];
1267
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1268
+ [key: string]: any;
1269
+ }>[];
1270
+ header: (arg: {
1271
+ header: string;
1272
+ transition: string;
1273
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1274
+ [key: string]: any;
1275
+ }>[];
1276
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1277
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1278
+ created?: ((() => void) | (() => void)[]) | undefined;
1279
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
1280
+ mounted?: ((() => void) | (() => void)[]) | undefined;
1281
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
1282
+ updated?: ((() => void) | (() => void)[]) | undefined;
1283
+ activated?: ((() => void) | (() => void)[]) | undefined;
1284
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
1285
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
1286
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
1287
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
1288
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
1289
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1290
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1291
+ 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;
1292
+ };
1293
+ $forceUpdate: () => void;
1294
+ $nextTick: typeof import('vue').nextTick;
1295
+ $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;
1296
+ } & Readonly<{
1297
+ active: string | string[];
1298
+ transition: string;
1299
+ header: string;
1300
+ style: import('vue').StyleValue;
1301
+ title: string;
1302
+ disabled: boolean;
1303
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1304
+ landscape: boolean;
1305
+ rounded: string | number | boolean;
1306
+ tile: boolean;
1307
+ divided: boolean;
1308
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1309
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1310
+ reverseTransition: string;
1311
+ hideHeader: boolean;
1312
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1313
+ viewMode: "month" | "year" | "months";
1314
+ showAdjacentMonths: boolean;
1315
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1316
+ weeksInMonth: "static" | "dynamic";
1317
+ firstDayOfWeek: string | number;
1318
+ hideWeekdays: boolean;
1319
+ showWeek: boolean;
1320
+ }> & Omit<{
1321
+ transition: string;
1322
+ header: string;
1323
+ style: import('vue').StyleValue;
1324
+ title: string;
1325
+ disabled: boolean;
1326
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1327
+ landscape: boolean;
1328
+ tile: boolean;
1329
+ divided: boolean;
1330
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1331
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1332
+ reverseTransition: string;
1333
+ hideHeader: boolean;
1334
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1335
+ viewMode: "month" | "year" | "months";
1336
+ showAdjacentMonths: boolean;
1337
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1338
+ weeksInMonth: "static" | "dynamic";
1339
+ hideWeekdays: boolean;
1340
+ showWeek: boolean;
1341
+ } & {
1342
+ max?: unknown;
1343
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1344
+ height?: string | number | undefined;
1345
+ width?: string | number | undefined;
1346
+ active?: string | string[] | undefined;
1347
+ min?: unknown;
1348
+ border?: string | number | boolean | undefined;
1349
+ color?: string | undefined;
1350
+ maxHeight?: string | number | undefined;
1351
+ maxWidth?: string | number | undefined;
1352
+ minHeight?: string | number | undefined;
1353
+ minWidth?: string | number | undefined;
1354
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1355
+ text?: string | undefined;
1356
+ month?: string | number | undefined;
1357
+ year?: number | undefined;
1358
+ class?: any;
1359
+ theme?: string | undefined;
1360
+ elevation?: string | number | undefined;
1361
+ rounded?: string | number | boolean | undefined;
1362
+ bgColor?: string | undefined;
1363
+ controlHeight?: string | number | undefined;
1364
+ headerColor?: string | undefined;
1365
+ firstDayOfWeek?: string | number | undefined;
1366
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1367
+ } & {
1368
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1369
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1370
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1371
+ }, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1372
+ modelValue?: Date | Date[] | null | undefined;
1373
+ "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
1374
+ multiple?: false | "range" | undefined;
1375
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
1376
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1377
+ P: {};
1378
+ B: {};
1379
+ D: {};
1380
+ C: {};
1381
+ M: {};
1382
+ Defaults: {};
1383
+ }, Readonly<{
1384
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
1385
+ placeholder?: string | undefined;
1386
+ format?: string | undefined;
1387
+ dateFormatReturn?: string | undefined;
1388
+ isBirthDate?: boolean | undefined;
1389
+ showWeekNumber?: boolean | undefined;
1390
+ required?: boolean | undefined;
1391
+ displayRange?: boolean | undefined;
1392
+ displayIcon?: boolean | undefined;
1393
+ displayAppendIcon?: boolean | undefined;
1394
+ displayPrependIcon?: boolean | undefined;
1395
+ customRules?: {
1396
+ type: string;
1397
+ options: any;
1398
+ }[] | undefined;
1399
+ customWarningRules?: {
1400
+ type: string;
1401
+ options: any;
1402
+ }[] | undefined;
1403
+ disabled?: boolean | undefined;
1404
+ noIcon?: boolean | undefined;
1405
+ noCalendar?: boolean | undefined;
1406
+ isOutlined?: boolean | undefined;
1407
+ readonly?: boolean | undefined;
1408
+ width?: string | undefined;
1409
+ disableErrorHandling?: boolean | undefined;
1410
+ showSuccessMessages?: boolean | undefined;
1411
+ bgColor?: string | undefined;
1412
+ }> & Readonly<{
1413
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
1414
+ onBlur?: (() => any) | undefined;
1415
+ onFocus?: (() => any) | undefined;
1416
+ onClosed?: (() => any) | undefined;
1417
+ }>, {
1418
+ validateOnSubmit: () => any;
1419
+ isDatePickerVisible: import('vue').Ref<boolean, boolean>;
1420
+ selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
1421
+ errorMessages: import('vue').Ref<string[], string[]>;
1422
+ handleClickOutside: (event: MouseEvent) => void;
1423
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
1424
+ updateAccessibility: () => Promise<void>;
1425
+ openDatePicker: () => void;
1426
+ }, {}, {}, {}, {
1427
+ required: boolean;
1428
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
1429
+ readonly: boolean;
1430
+ bgColor: string;
1431
+ disabled: boolean;
1432
+ placeholder: string;
1433
+ width: string;
1434
+ noIcon: boolean;
1435
+ customRules: {
1436
+ type: string;
1437
+ options: any;
1438
+ }[];
1439
+ customWarningRules: {
1440
+ type: string;
1441
+ options: any;
1442
+ }[];
1443
+ showSuccessMessages: boolean;
1444
+ disableErrorHandling: boolean;
1445
+ format: string;
1446
+ dateFormatReturn: string;
1447
+ isOutlined: boolean;
1448
+ displayIcon: boolean;
1449
+ displayAppendIcon: boolean;
1450
+ displayPrependIcon: boolean;
1451
+ isBirthDate: boolean;
1452
+ showWeekNumber: boolean;
1453
+ displayRange: boolean;
1454
+ noCalendar: boolean;
1455
+ }> | null;
1456
+ toDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
1457
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
1458
+ placeholder?: string | undefined;
1459
+ format?: string | undefined;
1460
+ dateFormatReturn?: string | undefined;
1461
+ isBirthDate?: boolean | undefined;
1462
+ showWeekNumber?: boolean | undefined;
1463
+ required?: boolean | undefined;
1464
+ displayRange?: boolean | undefined;
1465
+ displayIcon?: boolean | undefined;
1466
+ displayAppendIcon?: boolean | undefined;
1467
+ displayPrependIcon?: boolean | undefined;
1468
+ customRules?: {
1469
+ type: string;
1470
+ options: any;
1471
+ }[] | undefined;
1472
+ customWarningRules?: {
1473
+ type: string;
1474
+ options: any;
1475
+ }[] | undefined;
1476
+ disabled?: boolean | undefined;
1477
+ noIcon?: boolean | undefined;
1478
+ noCalendar?: boolean | undefined;
1479
+ isOutlined?: boolean | undefined;
1480
+ readonly?: boolean | undefined;
1481
+ width?: string | undefined;
1482
+ disableErrorHandling?: boolean | undefined;
1483
+ showSuccessMessages?: boolean | undefined;
1484
+ bgColor?: string | undefined;
1485
+ }> & Readonly<{
1486
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
1487
+ onBlur?: (() => any) | undefined;
1488
+ onFocus?: (() => any) | undefined;
1489
+ onClosed?: (() => any) | undefined;
1490
+ }>, {
1491
+ validateOnSubmit: () => any;
1492
+ isDatePickerVisible: import('vue').Ref<boolean, boolean>;
1493
+ selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
1494
+ errorMessages: import('vue').Ref<string[], string[]>;
1495
+ handleClickOutside: (event: MouseEvent) => void;
1496
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
1497
+ updateAccessibility: () => Promise<void>;
1498
+ openDatePicker: () => void;
1499
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
1500
+ "update:modelValue": (value: import('../../composables/date/useDateInitialization').DateValue) => any;
1501
+ blur: () => any;
1502
+ focus: () => any;
1503
+ closed: () => any;
1504
+ }, import('vue').PublicProps, {
1505
+ required: boolean;
1506
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
1507
+ readonly: boolean;
1508
+ bgColor: string;
1509
+ disabled: boolean;
1510
+ placeholder: string;
1511
+ width: string;
1512
+ noIcon: boolean;
1513
+ customRules: {
1514
+ type: string;
1515
+ options: any;
1516
+ }[];
1517
+ customWarningRules: {
1518
+ type: string;
1519
+ options: any;
1520
+ }[];
1521
+ showSuccessMessages: boolean;
1522
+ disableErrorHandling: boolean;
1523
+ format: string;
1524
+ dateFormatReturn: string;
1525
+ isOutlined: boolean;
1526
+ displayIcon: boolean;
1527
+ displayAppendIcon: boolean;
1528
+ displayPrependIcon: boolean;
1529
+ isBirthDate: boolean;
1530
+ showWeekNumber: boolean;
1531
+ displayRange: boolean;
1532
+ noCalendar: boolean;
1533
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
1534
+ dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
1535
+ modelValue?: (string | null) | undefined;
1536
+ placeholder?: string | undefined;
1537
+ format?: string | undefined;
1538
+ dateFormatReturn?: string | undefined;
1539
+ label?: string | undefined;
1540
+ required?: boolean | undefined;
1541
+ disabled?: boolean | undefined;
1542
+ readonly?: boolean | undefined;
1543
+ isOutlined?: boolean | undefined;
1544
+ displayIcon?: boolean | undefined;
1545
+ displayAppendIcon?: boolean | undefined;
1546
+ noIcon?: boolean | undefined;
1547
+ customRules?: ValidationRule[] | undefined;
1548
+ customWarningRules?: ValidationRule[] | undefined;
1549
+ displayPrependIcon?: boolean | undefined;
1550
+ disableErrorHandling?: boolean | undefined;
1551
+ showSuccessMessages?: boolean | undefined;
1552
+ }> & Readonly<{
1553
+ onBlur?: (() => any) | undefined;
1554
+ onFocus?: (() => any) | undefined;
1555
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
1556
+ }>, {
1557
+ validateOnSubmit: () => Promise<boolean>;
1558
+ focus: () => void;
1559
+ blur: () => void;
1560
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
1561
+ blur: () => any;
1562
+ focus: () => any;
1563
+ "update:model-value": (value: string | null) => any;
1564
+ }, import('vue').PublicProps, {
1565
+ required: boolean;
1566
+ modelValue: string | null;
1567
+ label: string;
1568
+ readonly: boolean;
1569
+ disabled: boolean;
1570
+ placeholder: string;
1571
+ noIcon: boolean;
1572
+ customRules: ValidationRule[];
1573
+ customWarningRules: ValidationRule[];
1574
+ showSuccessMessages: boolean;
1575
+ disableErrorHandling: boolean;
1576
+ format: string;
1577
+ dateFormatReturn: string;
1578
+ isOutlined: boolean;
1579
+ displayIcon: boolean;
1580
+ displayAppendIcon: boolean;
1581
+ displayPrependIcon: boolean;
1582
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
1583
+ inputRef: ({
1584
+ $: import('vue').ComponentInternalInstance;
1585
+ $data: {};
1586
+ $props: {
1587
+ readonly modelValue?: string | number | null | undefined;
1588
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
1589
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
1590
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
1591
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
1592
+ readonly prependTooltip?: string | undefined;
1593
+ readonly appendTooltip?: string | undefined;
1594
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
1595
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
1596
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
1597
+ readonly isClearable?: boolean | undefined;
1598
+ readonly showDivider?: boolean | undefined;
1599
+ readonly label?: string | undefined;
1600
+ readonly required?: boolean | undefined;
1601
+ readonly errorMessages?: string[] | null | undefined;
1602
+ readonly warningMessages?: string[] | null | undefined;
1603
+ readonly successMessages?: string[] | null | undefined;
1604
+ readonly readonly?: boolean | undefined;
1605
+ readonly isActive?: boolean | undefined;
1606
+ readonly baseColor?: string | undefined;
1607
+ readonly bgColor?: string | undefined;
1608
+ readonly centerAffix?: boolean | undefined;
1609
+ readonly counter?: string | number | boolean | undefined;
1610
+ readonly counterValue?: number | ((value: any) => number) | undefined;
1611
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
1612
+ readonly direction?: "horizontal" | "vertical" | undefined;
1613
+ readonly isDirty?: boolean | undefined;
1614
+ readonly disabled?: boolean | undefined;
1615
+ readonly isOnError?: boolean | undefined;
1616
+ readonly isFlat?: boolean | undefined;
1617
+ readonly isFocused?: boolean | undefined;
1618
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
1619
+ readonly areSpinButtonsHidden?: boolean | undefined;
1620
+ readonly hint?: string | undefined;
1621
+ readonly id?: string | undefined;
1622
+ readonly loading?: string | boolean | undefined;
1623
+ readonly maxErrors?: string | number | undefined;
1624
+ readonly maxWidth?: string | number | undefined;
1625
+ readonly messages?: string | string[] | undefined;
1626
+ readonly minWidth?: string | number | undefined;
1627
+ readonly name?: string | undefined;
1628
+ readonly displayPersistentClear?: boolean | undefined;
1629
+ readonly displayPersistentCounter?: boolean | undefined;
1630
+ readonly displayPersistentHint?: boolean | undefined;
1631
+ readonly displayPersistentPlaceholder?: boolean | undefined;
1632
+ readonly placeholder?: string | undefined;
1633
+ readonly prefix?: string | undefined;
1634
+ readonly isReversed?: boolean | undefined;
1635
+ readonly role?: string | undefined;
1636
+ readonly rounded?: string | number | boolean | undefined;
1637
+ readonly isOnSingleLine?: boolean | undefined;
1638
+ readonly suffix?: string | undefined;
1639
+ readonly theme?: string | undefined;
1640
+ readonly isTiled?: boolean | undefined;
1641
+ readonly type?: string | undefined;
1642
+ readonly width?: string | number | undefined;
1643
+ readonly displayAsterisk?: boolean | undefined;
1644
+ readonly noIcon?: boolean | undefined;
1645
+ readonly customRules?: ValidationRule[] | undefined;
1646
+ readonly customWarningRules?: ValidationRule[] | undefined;
1647
+ readonly customSuccessRules?: ValidationRule[] | undefined;
1648
+ readonly showSuccessMessages?: boolean | undefined;
1649
+ readonly isValidateOnBlur?: boolean | undefined;
1650
+ readonly disableErrorHandling?: boolean | undefined;
1651
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1652
+ readonly onClear?: ((...args: any[]) => any) | undefined;
1653
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1654
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1655
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1656
+ $attrs: {
1657
+ [x: string]: unknown;
1658
+ };
1659
+ $refs: {
1660
+ [x: string]: unknown;
1661
+ };
1662
+ $slots: Readonly<{
1663
+ [name: string]: import('vue').Slot<any> | undefined;
1664
+ }>;
1665
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1666
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1667
+ $host: Element | null;
1668
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
1669
+ $el: any;
1670
+ $options: import('vue').ComponentOptionsBase<Readonly<{
1671
+ modelValue?: string | number | null | undefined;
1672
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
1673
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
1674
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
1675
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
1676
+ prependTooltip?: string | undefined;
1677
+ appendTooltip?: string | undefined;
1678
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
1679
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
1680
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
1681
+ isClearable?: boolean | undefined;
1682
+ showDivider?: boolean | undefined;
1683
+ label?: string | undefined;
1684
+ required?: boolean | undefined;
1685
+ errorMessages?: string[] | null | undefined;
1686
+ warningMessages?: string[] | null | undefined;
1687
+ successMessages?: string[] | null | undefined;
1688
+ readonly?: boolean | undefined;
1689
+ isActive?: boolean | undefined;
1690
+ baseColor?: string | undefined;
1691
+ bgColor?: string | undefined;
1692
+ centerAffix?: boolean | undefined;
1693
+ counter?: string | number | boolean | undefined;
1694
+ counterValue?: number | ((value: any) => number) | undefined;
1695
+ density?: "default" | "comfortable" | "compact" | undefined;
1696
+ direction?: "horizontal" | "vertical" | undefined;
1697
+ isDirty?: boolean | undefined;
1698
+ disabled?: boolean | undefined;
1699
+ isOnError?: boolean | undefined;
1700
+ isFlat?: boolean | undefined;
1701
+ isFocused?: boolean | undefined;
1702
+ areDetailsHidden?: boolean | "auto" | undefined;
1703
+ areSpinButtonsHidden?: boolean | undefined;
1704
+ hint?: string | undefined;
1705
+ id?: string | undefined;
1706
+ loading?: string | boolean | undefined;
1707
+ maxErrors?: string | number | undefined;
1708
+ maxWidth?: string | number | undefined;
1709
+ messages?: string | string[] | undefined;
1710
+ minWidth?: string | number | undefined;
1711
+ name?: string | undefined;
1712
+ displayPersistentClear?: boolean | undefined;
1713
+ displayPersistentCounter?: boolean | undefined;
1714
+ displayPersistentHint?: boolean | undefined;
1715
+ displayPersistentPlaceholder?: boolean | undefined;
1716
+ placeholder?: string | undefined;
1717
+ prefix?: string | undefined;
1718
+ isReversed?: boolean | undefined;
1719
+ role?: string | undefined;
1720
+ rounded?: string | number | boolean | undefined;
1721
+ isOnSingleLine?: boolean | undefined;
1722
+ suffix?: string | undefined;
1723
+ theme?: string | undefined;
1724
+ isTiled?: boolean | undefined;
1725
+ type?: string | undefined;
1726
+ width?: string | number | undefined;
1727
+ displayAsterisk?: boolean | undefined;
1728
+ noIcon?: boolean | undefined;
1729
+ customRules?: ValidationRule[] | undefined;
1730
+ customWarningRules?: ValidationRule[] | undefined;
1731
+ customSuccessRules?: ValidationRule[] | undefined;
1732
+ showSuccessMessages?: boolean | undefined;
1733
+ isValidateOnBlur?: boolean | undefined;
1734
+ disableErrorHandling?: boolean | undefined;
1735
+ }> & Readonly<{
1736
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1737
+ onClear?: ((...args: any[]) => any) | undefined;
1738
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1739
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1740
+ }>, {
1741
+ validation: {
1742
+ errors: import('vue').Ref<string[], string[]>;
1743
+ warnings: import('vue').Ref<string[], string[]>;
1744
+ successes: import('vue').Ref<string[], string[]>;
1745
+ hasError: import('vue').ComputedRef<boolean>;
1746
+ hasWarning: import('vue').ComputedRef<boolean>;
1747
+ hasSuccess: import('vue').ComputedRef<boolean>;
1748
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1749
+ validateOnSubmit: () => Promise<boolean>;
1750
+ clearValidation: () => void;
1751
+ };
1752
+ validateOnSubmit: () => boolean;
1753
+ checkErrorOnBlur: () => void;
1754
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1755
+ "update:modelValue": (...args: any[]) => void;
1756
+ clear: (...args: any[]) => void;
1757
+ "prepend-icon-click": (...args: any[]) => void;
1758
+ "append-icon-click": (...args: any[]) => void;
1759
+ }, string, {
1760
+ modelValue: string | number | null;
1761
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1762
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1763
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1764
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1765
+ prependTooltip: string;
1766
+ appendTooltip: string;
1767
+ tooltipLocation: "top" | "bottom" | "start" | "end";
1768
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
1769
+ color: import('../Customs/SyTextField/types').ColorType;
1770
+ isClearable: boolean;
1771
+ label: string;
1772
+ errorMessages: string[] | null;
1773
+ warningMessages: string[] | null;
1774
+ successMessages: string[] | null;
1775
+ readonly: boolean;
1776
+ isActive: boolean;
1777
+ baseColor: string;
1778
+ bgColor: string;
1779
+ centerAffix: boolean;
1780
+ counter: string | number | boolean;
1781
+ counterValue: number | ((value: any) => number);
1782
+ density: "default" | "comfortable" | "compact";
1783
+ direction: "horizontal" | "vertical";
1784
+ isDirty: boolean;
1785
+ disabled: boolean;
1786
+ isOnError: boolean;
1787
+ isFlat: boolean;
1788
+ isFocused: boolean;
1789
+ areDetailsHidden: boolean | "auto";
1790
+ areSpinButtonsHidden: boolean;
1791
+ hint: string;
1792
+ id: string;
1793
+ loading: string | boolean;
1794
+ maxErrors: string | number;
1795
+ maxWidth: string | number;
1796
+ messages: string | string[];
1797
+ minWidth: string | number;
1798
+ name: string;
1799
+ displayPersistentClear: boolean;
1800
+ displayPersistentCounter: boolean;
1801
+ displayPersistentHint: boolean;
1802
+ displayPersistentPlaceholder: boolean;
1803
+ placeholder: string;
1804
+ prefix: string;
1805
+ isReversed: boolean;
1806
+ role: string;
1807
+ rounded: string | number | boolean;
1808
+ isOnSingleLine: boolean;
1809
+ suffix: string;
1810
+ theme: string;
1811
+ isTiled: boolean;
1812
+ type: string;
1813
+ width: string | number;
1814
+ displayAsterisk: boolean;
1815
+ noIcon: boolean;
1816
+ customRules: ValidationRule[];
1817
+ customWarningRules: ValidationRule[];
1818
+ customSuccessRules: ValidationRule[];
1819
+ showSuccessMessages: boolean;
1820
+ isValidateOnBlur: boolean;
1821
+ disableErrorHandling: boolean;
1822
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1823
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1824
+ created?: ((() => void) | (() => void)[]) | undefined;
1825
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
1826
+ mounted?: ((() => void) | (() => void)[]) | undefined;
1827
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
1828
+ updated?: ((() => void) | (() => void)[]) | undefined;
1829
+ activated?: ((() => void) | (() => void)[]) | undefined;
1830
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
1831
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
1832
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
1833
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
1834
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
1835
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1836
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1837
+ 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;
1838
+ };
1839
+ $forceUpdate: () => void;
1840
+ $nextTick: typeof import('vue').nextTick;
1841
+ $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;
1842
+ } & Readonly<{
1843
+ modelValue: string | number | null;
1844
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1845
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1846
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1847
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
1848
+ prependTooltip: string;
1849
+ appendTooltip: string;
1850
+ tooltipLocation: "top" | "bottom" | "start" | "end";
1851
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
1852
+ color: import('../Customs/SyTextField/types').ColorType;
1853
+ isClearable: boolean;
1854
+ label: string;
1855
+ errorMessages: string[] | null;
1856
+ warningMessages: string[] | null;
1857
+ successMessages: string[] | null;
1858
+ readonly: boolean;
1859
+ isActive: boolean;
1860
+ baseColor: string;
1861
+ bgColor: string;
1862
+ centerAffix: boolean;
1863
+ counter: string | number | boolean;
1864
+ counterValue: number | ((value: any) => number);
1865
+ density: "default" | "comfortable" | "compact";
1866
+ direction: "horizontal" | "vertical";
1867
+ isDirty: boolean;
1868
+ disabled: boolean;
1869
+ isOnError: boolean;
1870
+ isFlat: boolean;
1871
+ isFocused: boolean;
1872
+ areDetailsHidden: boolean | "auto";
1873
+ areSpinButtonsHidden: boolean;
1874
+ hint: string;
1875
+ id: string;
1876
+ loading: string | boolean;
1877
+ maxErrors: string | number;
1878
+ maxWidth: string | number;
1879
+ messages: string | string[];
1880
+ minWidth: string | number;
1881
+ name: string;
1882
+ displayPersistentClear: boolean;
1883
+ displayPersistentCounter: boolean;
1884
+ displayPersistentHint: boolean;
1885
+ displayPersistentPlaceholder: boolean;
1886
+ placeholder: string;
1887
+ prefix: string;
1888
+ isReversed: boolean;
1889
+ role: string;
1890
+ rounded: string | number | boolean;
1891
+ isOnSingleLine: boolean;
1892
+ suffix: string;
1893
+ theme: string;
1894
+ isTiled: boolean;
1895
+ type: string;
1896
+ width: string | number;
1897
+ displayAsterisk: boolean;
1898
+ noIcon: boolean;
1899
+ customRules: ValidationRule[];
1900
+ customWarningRules: ValidationRule[];
1901
+ customSuccessRules: ValidationRule[];
1902
+ showSuccessMessages: boolean;
1903
+ isValidateOnBlur: boolean;
1904
+ disableErrorHandling: boolean;
1905
+ }> & Omit<Readonly<{
1906
+ modelValue?: string | number | null | undefined;
1907
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
1908
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
1909
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
1910
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
1911
+ prependTooltip?: string | undefined;
1912
+ appendTooltip?: string | undefined;
1913
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
1914
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
1915
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
1916
+ isClearable?: boolean | undefined;
1917
+ showDivider?: boolean | undefined;
1918
+ label?: string | undefined;
1919
+ required?: boolean | undefined;
1920
+ errorMessages?: string[] | null | undefined;
1921
+ warningMessages?: string[] | null | undefined;
1922
+ successMessages?: string[] | null | undefined;
1923
+ readonly?: boolean | undefined;
1924
+ isActive?: boolean | undefined;
1925
+ baseColor?: string | undefined;
1926
+ bgColor?: string | undefined;
1927
+ centerAffix?: boolean | undefined;
1928
+ counter?: string | number | boolean | undefined;
1929
+ counterValue?: number | ((value: any) => number) | undefined;
1930
+ density?: "default" | "comfortable" | "compact" | undefined;
1931
+ direction?: "horizontal" | "vertical" | undefined;
1932
+ isDirty?: boolean | undefined;
1933
+ disabled?: boolean | undefined;
1934
+ isOnError?: boolean | undefined;
1935
+ isFlat?: boolean | undefined;
1936
+ isFocused?: boolean | undefined;
1937
+ areDetailsHidden?: boolean | "auto" | undefined;
1938
+ areSpinButtonsHidden?: boolean | undefined;
1939
+ hint?: string | undefined;
1940
+ id?: string | undefined;
1941
+ loading?: string | boolean | undefined;
1942
+ maxErrors?: string | number | undefined;
1943
+ maxWidth?: string | number | undefined;
1944
+ messages?: string | string[] | undefined;
1945
+ minWidth?: string | number | undefined;
1946
+ name?: string | undefined;
1947
+ displayPersistentClear?: boolean | undefined;
1948
+ displayPersistentCounter?: boolean | undefined;
1949
+ displayPersistentHint?: boolean | undefined;
1950
+ displayPersistentPlaceholder?: boolean | undefined;
1951
+ placeholder?: string | undefined;
1952
+ prefix?: string | undefined;
1953
+ isReversed?: boolean | undefined;
1954
+ role?: string | undefined;
1955
+ rounded?: string | number | boolean | undefined;
1956
+ isOnSingleLine?: boolean | undefined;
1957
+ suffix?: string | undefined;
1958
+ theme?: string | undefined;
1959
+ isTiled?: boolean | undefined;
1960
+ type?: string | undefined;
1961
+ width?: string | number | undefined;
1962
+ displayAsterisk?: boolean | undefined;
1963
+ noIcon?: boolean | undefined;
1964
+ customRules?: ValidationRule[] | undefined;
1965
+ customWarningRules?: ValidationRule[] | undefined;
1966
+ customSuccessRules?: ValidationRule[] | undefined;
1967
+ showSuccessMessages?: boolean | undefined;
1968
+ isValidateOnBlur?: boolean | undefined;
1969
+ disableErrorHandling?: boolean | undefined;
1970
+ }> & Readonly<{
1971
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1972
+ onClear?: ((...args: any[]) => any) | undefined;
1973
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1974
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1975
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
1976
+ validation: {
1977
+ errors: import('vue').Ref<string[], string[]>;
1978
+ warnings: import('vue').Ref<string[], string[]>;
1979
+ successes: import('vue').Ref<string[], string[]>;
1980
+ hasError: import('vue').ComputedRef<boolean>;
1981
+ hasWarning: import('vue').ComputedRef<boolean>;
1982
+ hasSuccess: import('vue').ComputedRef<boolean>;
1983
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1984
+ validateOnSubmit: () => Promise<boolean>;
1985
+ clearValidation: () => void;
1986
+ };
1987
+ validateOnSubmit: () => boolean;
1988
+ checkErrorOnBlur: () => void;
1989
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1990
+ $slots: {
1991
+ prepend?(_: {}): any;
1992
+ append?(_: {}): any;
1993
+ 'prepend-inner'?(_: {}): any;
1994
+ 'append-inner'?(_: {}): any;
1995
+ details?(_: {}): any;
1996
+ };
1997
+ }) | null;
1998
+ }, any, import('vue').ComponentProvideOptions, {
1999
+ P: {};
2000
+ B: {};
2001
+ D: {};
2002
+ C: {};
2003
+ M: {};
2004
+ Defaults: {};
2005
+ }, Readonly<{
2006
+ modelValue?: (string | null) | undefined;
2007
+ placeholder?: string | undefined;
2008
+ format?: string | undefined;
2009
+ dateFormatReturn?: string | undefined;
2010
+ label?: string | undefined;
2011
+ required?: boolean | undefined;
2012
+ disabled?: boolean | undefined;
2013
+ readonly?: boolean | undefined;
2014
+ isOutlined?: boolean | undefined;
2015
+ displayIcon?: boolean | undefined;
2016
+ displayAppendIcon?: boolean | undefined;
2017
+ noIcon?: boolean | undefined;
2018
+ customRules?: ValidationRule[] | undefined;
2019
+ customWarningRules?: ValidationRule[] | undefined;
2020
+ displayPrependIcon?: boolean | undefined;
2021
+ disableErrorHandling?: boolean | undefined;
2022
+ showSuccessMessages?: boolean | undefined;
2023
+ }> & Readonly<{
2024
+ onBlur?: (() => any) | undefined;
2025
+ onFocus?: (() => any) | undefined;
2026
+ "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
2027
+ }>, {
2028
+ validateOnSubmit: () => Promise<boolean>;
2029
+ focus: () => void;
2030
+ blur: () => void;
2031
+ }, {}, {}, {}, {
2032
+ required: boolean;
2033
+ modelValue: string | null;
2034
+ label: string;
2035
+ readonly: boolean;
2036
+ disabled: boolean;
2037
+ placeholder: string;
2038
+ noIcon: boolean;
2039
+ customRules: ValidationRule[];
2040
+ customWarningRules: ValidationRule[];
2041
+ showSuccessMessages: boolean;
2042
+ disableErrorHandling: boolean;
2043
+ format: string;
2044
+ dateFormatReturn: string;
2045
+ isOutlined: boolean;
2046
+ displayIcon: boolean;
2047
+ displayAppendIcon: boolean;
2048
+ displayPrependIcon: boolean;
2049
+ }> | null;
2050
+ dateCalendarTextInputRef: ({
2051
+ $: import('vue').ComponentInternalInstance;
2052
+ $data: {};
2053
+ $props: {
2054
+ readonly modelValue?: string | number | null | undefined;
2055
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
2056
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
2057
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2058
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2059
+ readonly prependTooltip?: string | undefined;
2060
+ readonly appendTooltip?: string | undefined;
2061
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2062
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2063
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
2064
+ readonly isClearable?: boolean | undefined;
2065
+ readonly showDivider?: boolean | undefined;
2066
+ readonly label?: string | undefined;
2067
+ readonly required?: boolean | undefined;
2068
+ readonly errorMessages?: string[] | null | undefined;
2069
+ readonly warningMessages?: string[] | null | undefined;
2070
+ readonly successMessages?: string[] | null | undefined;
2071
+ readonly readonly?: boolean | undefined;
2072
+ readonly isActive?: boolean | undefined;
2073
+ readonly baseColor?: string | undefined;
2074
+ readonly bgColor?: string | undefined;
2075
+ readonly centerAffix?: boolean | undefined;
2076
+ readonly counter?: string | number | boolean | undefined;
2077
+ readonly counterValue?: number | ((value: any) => number) | undefined;
2078
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
2079
+ readonly direction?: "horizontal" | "vertical" | undefined;
2080
+ readonly isDirty?: boolean | undefined;
2081
+ readonly disabled?: boolean | undefined;
2082
+ readonly isOnError?: boolean | undefined;
2083
+ readonly isFlat?: boolean | undefined;
2084
+ readonly isFocused?: boolean | undefined;
2085
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
2086
+ readonly areSpinButtonsHidden?: boolean | undefined;
2087
+ readonly hint?: string | undefined;
2088
+ readonly id?: string | undefined;
2089
+ readonly loading?: string | boolean | undefined;
2090
+ readonly maxErrors?: string | number | undefined;
2091
+ readonly maxWidth?: string | number | undefined;
2092
+ readonly messages?: string | string[] | undefined;
2093
+ readonly minWidth?: string | number | undefined;
2094
+ readonly name?: string | undefined;
2095
+ readonly displayPersistentClear?: boolean | undefined;
2096
+ readonly displayPersistentCounter?: boolean | undefined;
2097
+ readonly displayPersistentHint?: boolean | undefined;
2098
+ readonly displayPersistentPlaceholder?: boolean | undefined;
2099
+ readonly placeholder?: string | undefined;
2100
+ readonly prefix?: string | undefined;
2101
+ readonly isReversed?: boolean | undefined;
2102
+ readonly role?: string | undefined;
2103
+ readonly rounded?: string | number | boolean | undefined;
2104
+ readonly isOnSingleLine?: boolean | undefined;
2105
+ readonly suffix?: string | undefined;
2106
+ readonly theme?: string | undefined;
2107
+ readonly isTiled?: boolean | undefined;
2108
+ readonly type?: string | undefined;
2109
+ readonly width?: string | number | undefined;
2110
+ readonly displayAsterisk?: boolean | undefined;
2111
+ readonly noIcon?: boolean | undefined;
2112
+ readonly customRules?: ValidationRule[] | undefined;
2113
+ readonly customWarningRules?: ValidationRule[] | undefined;
2114
+ readonly customSuccessRules?: ValidationRule[] | undefined;
2115
+ readonly showSuccessMessages?: boolean | undefined;
2116
+ readonly isValidateOnBlur?: boolean | undefined;
2117
+ readonly disableErrorHandling?: boolean | undefined;
2118
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2119
+ readonly onClear?: ((...args: any[]) => any) | undefined;
2120
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2121
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2122
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
2123
+ $attrs: {
2124
+ [x: string]: unknown;
2125
+ };
2126
+ $refs: {
2127
+ [x: string]: unknown;
2128
+ };
2129
+ $slots: Readonly<{
2130
+ [name: string]: import('vue').Slot<any> | undefined;
2131
+ }>;
2132
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2133
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2134
+ $host: Element | null;
2135
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
2136
+ $el: any;
2137
+ $options: import('vue').ComponentOptionsBase<Readonly<{
2138
+ modelValue?: string | number | null | undefined;
2139
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
2140
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
2141
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2142
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2143
+ prependTooltip?: string | undefined;
2144
+ appendTooltip?: string | undefined;
2145
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2146
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2147
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
2148
+ isClearable?: boolean | undefined;
2149
+ showDivider?: boolean | undefined;
2150
+ label?: string | undefined;
2151
+ required?: boolean | undefined;
2152
+ errorMessages?: string[] | null | undefined;
2153
+ warningMessages?: string[] | null | undefined;
2154
+ successMessages?: string[] | null | undefined;
2155
+ readonly?: boolean | undefined;
2156
+ isActive?: boolean | undefined;
2157
+ baseColor?: string | undefined;
2158
+ bgColor?: string | undefined;
2159
+ centerAffix?: boolean | undefined;
2160
+ counter?: string | number | boolean | undefined;
2161
+ counterValue?: number | ((value: any) => number) | undefined;
2162
+ density?: "default" | "comfortable" | "compact" | undefined;
2163
+ direction?: "horizontal" | "vertical" | undefined;
2164
+ isDirty?: boolean | undefined;
2165
+ disabled?: boolean | undefined;
2166
+ isOnError?: boolean | undefined;
2167
+ isFlat?: boolean | undefined;
2168
+ isFocused?: boolean | undefined;
2169
+ areDetailsHidden?: boolean | "auto" | undefined;
2170
+ areSpinButtonsHidden?: boolean | undefined;
2171
+ hint?: string | undefined;
2172
+ id?: string | undefined;
2173
+ loading?: string | boolean | undefined;
2174
+ maxErrors?: string | number | undefined;
2175
+ maxWidth?: string | number | undefined;
2176
+ messages?: string | string[] | undefined;
2177
+ minWidth?: string | number | undefined;
2178
+ name?: string | undefined;
2179
+ displayPersistentClear?: boolean | undefined;
2180
+ displayPersistentCounter?: boolean | undefined;
2181
+ displayPersistentHint?: boolean | undefined;
2182
+ displayPersistentPlaceholder?: boolean | undefined;
2183
+ placeholder?: string | undefined;
2184
+ prefix?: string | undefined;
2185
+ isReversed?: boolean | undefined;
2186
+ role?: string | undefined;
2187
+ rounded?: string | number | boolean | undefined;
2188
+ isOnSingleLine?: boolean | undefined;
2189
+ suffix?: string | undefined;
2190
+ theme?: string | undefined;
2191
+ isTiled?: boolean | undefined;
2192
+ type?: string | undefined;
2193
+ width?: string | number | undefined;
2194
+ displayAsterisk?: boolean | undefined;
2195
+ noIcon?: boolean | undefined;
2196
+ customRules?: ValidationRule[] | undefined;
2197
+ customWarningRules?: ValidationRule[] | undefined;
2198
+ customSuccessRules?: ValidationRule[] | undefined;
2199
+ showSuccessMessages?: boolean | undefined;
2200
+ isValidateOnBlur?: boolean | undefined;
2201
+ disableErrorHandling?: boolean | undefined;
2202
+ }> & Readonly<{
2203
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2204
+ onClear?: ((...args: any[]) => any) | undefined;
2205
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2206
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2207
+ }>, {
2208
+ validation: {
2209
+ errors: import('vue').Ref<string[], string[]>;
2210
+ warnings: import('vue').Ref<string[], string[]>;
2211
+ successes: import('vue').Ref<string[], string[]>;
2212
+ hasError: import('vue').ComputedRef<boolean>;
2213
+ hasWarning: import('vue').ComputedRef<boolean>;
2214
+ hasSuccess: import('vue').ComputedRef<boolean>;
2215
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
2216
+ validateOnSubmit: () => Promise<boolean>;
2217
+ clearValidation: () => void;
2218
+ };
2219
+ validateOnSubmit: () => boolean;
2220
+ checkErrorOnBlur: () => void;
2221
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2222
+ "update:modelValue": (...args: any[]) => void;
2223
+ clear: (...args: any[]) => void;
2224
+ "prepend-icon-click": (...args: any[]) => void;
2225
+ "append-icon-click": (...args: any[]) => void;
2226
+ }, string, {
2227
+ modelValue: string | number | null;
2228
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2229
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2230
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2231
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2232
+ prependTooltip: string;
2233
+ appendTooltip: string;
2234
+ tooltipLocation: "top" | "bottom" | "start" | "end";
2235
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
2236
+ color: import('../Customs/SyTextField/types').ColorType;
2237
+ isClearable: boolean;
2238
+ label: string;
2239
+ errorMessages: string[] | null;
2240
+ warningMessages: string[] | null;
2241
+ successMessages: string[] | null;
2242
+ readonly: boolean;
2243
+ isActive: boolean;
2244
+ baseColor: string;
2245
+ bgColor: string;
2246
+ centerAffix: boolean;
2247
+ counter: string | number | boolean;
2248
+ counterValue: number | ((value: any) => number);
2249
+ density: "default" | "comfortable" | "compact";
2250
+ direction: "horizontal" | "vertical";
2251
+ isDirty: boolean;
2252
+ disabled: boolean;
2253
+ isOnError: boolean;
2254
+ isFlat: boolean;
2255
+ isFocused: boolean;
2256
+ areDetailsHidden: boolean | "auto";
2257
+ areSpinButtonsHidden: boolean;
2258
+ hint: string;
2259
+ id: string;
2260
+ loading: string | boolean;
2261
+ maxErrors: string | number;
2262
+ maxWidth: string | number;
2263
+ messages: string | string[];
2264
+ minWidth: string | number;
2265
+ name: string;
2266
+ displayPersistentClear: boolean;
2267
+ displayPersistentCounter: boolean;
2268
+ displayPersistentHint: boolean;
2269
+ displayPersistentPlaceholder: boolean;
2270
+ placeholder: string;
2271
+ prefix: string;
2272
+ isReversed: boolean;
2273
+ role: string;
2274
+ rounded: string | number | boolean;
2275
+ isOnSingleLine: boolean;
2276
+ suffix: string;
2277
+ theme: string;
2278
+ isTiled: boolean;
2279
+ type: string;
2280
+ width: string | number;
2281
+ displayAsterisk: boolean;
2282
+ noIcon: boolean;
2283
+ customRules: ValidationRule[];
2284
+ customWarningRules: ValidationRule[];
2285
+ customSuccessRules: ValidationRule[];
2286
+ showSuccessMessages: boolean;
2287
+ isValidateOnBlur: boolean;
2288
+ disableErrorHandling: boolean;
2289
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2290
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2291
+ created?: ((() => void) | (() => void)[]) | undefined;
2292
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2293
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2294
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2295
+ updated?: ((() => void) | (() => void)[]) | undefined;
2296
+ activated?: ((() => void) | (() => void)[]) | undefined;
2297
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2298
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2299
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2300
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2301
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2302
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2303
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2304
+ 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;
2305
+ };
2306
+ $forceUpdate: () => void;
2307
+ $nextTick: typeof import('vue').nextTick;
2308
+ $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;
2309
+ } & Readonly<{
2310
+ modelValue: string | number | null;
2311
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2312
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2313
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2314
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2315
+ prependTooltip: string;
2316
+ appendTooltip: string;
2317
+ tooltipLocation: "top" | "bottom" | "start" | "end";
2318
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
2319
+ color: import('../Customs/SyTextField/types').ColorType;
2320
+ isClearable: boolean;
2321
+ label: string;
2322
+ errorMessages: string[] | null;
2323
+ warningMessages: string[] | null;
2324
+ successMessages: string[] | null;
2325
+ readonly: boolean;
2326
+ isActive: boolean;
2327
+ baseColor: string;
2328
+ bgColor: string;
2329
+ centerAffix: boolean;
2330
+ counter: string | number | boolean;
2331
+ counterValue: number | ((value: any) => number);
2332
+ density: "default" | "comfortable" | "compact";
2333
+ direction: "horizontal" | "vertical";
2334
+ isDirty: boolean;
2335
+ disabled: boolean;
2336
+ isOnError: boolean;
2337
+ isFlat: boolean;
2338
+ isFocused: boolean;
2339
+ areDetailsHidden: boolean | "auto";
2340
+ areSpinButtonsHidden: boolean;
2341
+ hint: string;
2342
+ id: string;
2343
+ loading: string | boolean;
2344
+ maxErrors: string | number;
2345
+ maxWidth: string | number;
2346
+ messages: string | string[];
2347
+ minWidth: string | number;
2348
+ name: string;
2349
+ displayPersistentClear: boolean;
2350
+ displayPersistentCounter: boolean;
2351
+ displayPersistentHint: boolean;
2352
+ displayPersistentPlaceholder: boolean;
2353
+ placeholder: string;
2354
+ prefix: string;
2355
+ isReversed: boolean;
2356
+ role: string;
2357
+ rounded: string | number | boolean;
2358
+ isOnSingleLine: boolean;
2359
+ suffix: string;
2360
+ theme: string;
2361
+ isTiled: boolean;
2362
+ type: string;
2363
+ width: string | number;
2364
+ displayAsterisk: boolean;
2365
+ noIcon: boolean;
2366
+ customRules: ValidationRule[];
2367
+ customWarningRules: ValidationRule[];
2368
+ customSuccessRules: ValidationRule[];
2369
+ showSuccessMessages: boolean;
2370
+ isValidateOnBlur: boolean;
2371
+ disableErrorHandling: boolean;
2372
+ }> & Omit<Readonly<{
2373
+ modelValue?: string | number | null | undefined;
2374
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
2375
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
2376
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2377
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2378
+ prependTooltip?: string | undefined;
2379
+ appendTooltip?: string | undefined;
2380
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2381
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2382
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
2383
+ isClearable?: boolean | undefined;
2384
+ showDivider?: boolean | undefined;
2385
+ label?: string | undefined;
2386
+ required?: boolean | undefined;
2387
+ errorMessages?: string[] | null | undefined;
2388
+ warningMessages?: string[] | null | undefined;
2389
+ successMessages?: string[] | null | undefined;
2390
+ readonly?: boolean | undefined;
2391
+ isActive?: boolean | undefined;
2392
+ baseColor?: string | undefined;
2393
+ bgColor?: string | undefined;
2394
+ centerAffix?: boolean | undefined;
2395
+ counter?: string | number | boolean | undefined;
2396
+ counterValue?: number | ((value: any) => number) | undefined;
2397
+ density?: "default" | "comfortable" | "compact" | undefined;
2398
+ direction?: "horizontal" | "vertical" | undefined;
2399
+ isDirty?: boolean | undefined;
2400
+ disabled?: boolean | undefined;
2401
+ isOnError?: boolean | undefined;
2402
+ isFlat?: boolean | undefined;
2403
+ isFocused?: boolean | undefined;
2404
+ areDetailsHidden?: boolean | "auto" | undefined;
2405
+ areSpinButtonsHidden?: boolean | undefined;
2406
+ hint?: string | undefined;
2407
+ id?: string | undefined;
2408
+ loading?: string | boolean | undefined;
2409
+ maxErrors?: string | number | undefined;
2410
+ maxWidth?: string | number | undefined;
2411
+ messages?: string | string[] | undefined;
2412
+ minWidth?: string | number | undefined;
2413
+ name?: string | undefined;
2414
+ displayPersistentClear?: boolean | undefined;
2415
+ displayPersistentCounter?: boolean | undefined;
2416
+ displayPersistentHint?: boolean | undefined;
2417
+ displayPersistentPlaceholder?: boolean | undefined;
2418
+ placeholder?: string | undefined;
2419
+ prefix?: string | undefined;
2420
+ isReversed?: boolean | undefined;
2421
+ role?: string | undefined;
2422
+ rounded?: string | number | boolean | undefined;
2423
+ isOnSingleLine?: boolean | undefined;
2424
+ suffix?: string | undefined;
2425
+ theme?: string | undefined;
2426
+ isTiled?: boolean | undefined;
2427
+ type?: string | undefined;
2428
+ width?: string | number | undefined;
2429
+ displayAsterisk?: boolean | undefined;
2430
+ noIcon?: boolean | undefined;
2431
+ customRules?: ValidationRule[] | undefined;
2432
+ customWarningRules?: ValidationRule[] | undefined;
2433
+ customSuccessRules?: ValidationRule[] | undefined;
2434
+ showSuccessMessages?: boolean | undefined;
2435
+ isValidateOnBlur?: boolean | undefined;
2436
+ disableErrorHandling?: boolean | undefined;
2437
+ }> & Readonly<{
2438
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2439
+ onClear?: ((...args: any[]) => any) | undefined;
2440
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2441
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2442
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
2443
+ validation: {
2444
+ errors: import('vue').Ref<string[], string[]>;
2445
+ warnings: import('vue').Ref<string[], string[]>;
2446
+ successes: import('vue').Ref<string[], string[]>;
2447
+ hasError: import('vue').ComputedRef<boolean>;
2448
+ hasWarning: import('vue').ComputedRef<boolean>;
2449
+ hasSuccess: import('vue').ComputedRef<boolean>;
2450
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
2451
+ validateOnSubmit: () => Promise<boolean>;
2452
+ clearValidation: () => void;
2453
+ };
2454
+ validateOnSubmit: () => boolean;
2455
+ checkErrorOnBlur: () => void;
2456
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
2457
+ $slots: {
2458
+ prepend?(_: {}): any;
2459
+ append?(_: {}): any;
2460
+ 'prepend-inner'?(_: {}): any;
2461
+ 'append-inner'?(_: {}): any;
2462
+ details?(_: {}): any;
2463
+ };
2464
+ }) | null;
2465
+ datePickerRef: ({
2466
+ $: import('vue').ComponentInternalInstance;
2467
+ $data: {};
2468
+ $props: Partial<{
2469
+ active: string | string[];
2470
+ transition: string;
2471
+ header: string;
2472
+ style: import('vue').StyleValue;
2473
+ title: string;
2474
+ disabled: boolean;
2475
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2476
+ landscape: boolean;
2477
+ rounded: string | number | boolean;
2478
+ tile: boolean;
2479
+ divided: boolean;
2480
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2481
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2482
+ reverseTransition: string;
2483
+ hideHeader: boolean;
2484
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2485
+ viewMode: "month" | "year" | "months";
2486
+ showAdjacentMonths: boolean;
2487
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2488
+ weeksInMonth: "static" | "dynamic";
2489
+ firstDayOfWeek: string | number;
2490
+ hideWeekdays: boolean;
2491
+ showWeek: boolean;
2492
+ }> & Omit<{
2493
+ transition: string;
2494
+ header: string;
2495
+ style: import('vue').StyleValue;
2496
+ title: string;
2497
+ disabled: boolean;
2498
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2499
+ landscape: boolean;
2500
+ tile: boolean;
2501
+ divided: boolean;
2502
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2503
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2504
+ reverseTransition: string;
2505
+ hideHeader: boolean;
2506
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2507
+ viewMode: "month" | "year" | "months";
2508
+ showAdjacentMonths: boolean;
2509
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2510
+ weeksInMonth: "static" | "dynamic";
2511
+ hideWeekdays: boolean;
2512
+ showWeek: boolean;
2513
+ max?: unknown;
2514
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2515
+ height?: string | number | undefined;
2516
+ width?: string | number | undefined;
2517
+ active?: string | string[] | undefined;
2518
+ min?: unknown;
2519
+ border?: string | number | boolean | undefined;
2520
+ color?: string | undefined;
2521
+ maxHeight?: string | number | undefined;
2522
+ maxWidth?: string | number | undefined;
2523
+ minHeight?: string | number | undefined;
2524
+ minWidth?: string | number | undefined;
2525
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2526
+ text?: string | undefined;
2527
+ month?: string | number | undefined;
2528
+ year?: number | undefined;
2529
+ class?: any;
2530
+ theme?: string | undefined;
2531
+ elevation?: string | number | undefined;
2532
+ rounded?: string | number | boolean | undefined;
2533
+ bgColor?: string | undefined;
2534
+ controlHeight?: string | number | undefined;
2535
+ headerColor?: string | undefined;
2536
+ firstDayOfWeek?: string | number | undefined;
2537
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2538
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2539
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2540
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2541
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode">;
2542
+ $attrs: {
2543
+ [x: string]: unknown;
2544
+ };
2545
+ $refs: {
2546
+ [x: string]: unknown;
2547
+ };
2548
+ $slots: Readonly<{
2549
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2550
+ [key: string]: any;
2551
+ }>[]) | undefined;
2552
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2553
+ [key: string]: any;
2554
+ }>[]) | undefined;
2555
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2556
+ [key: string]: any;
2557
+ }>[]) | undefined;
2558
+ header?: ((arg: {
2559
+ header: string;
2560
+ transition: string;
2561
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2562
+ [key: string]: any;
2563
+ }>[]) | undefined;
2564
+ }>;
2565
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2566
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2567
+ $host: Element | null;
2568
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
2569
+ $el: any;
2570
+ $options: import('vue').ComponentOptionsBase<{
2571
+ transition: string;
2572
+ header: string;
2573
+ style: import('vue').StyleValue;
2574
+ title: string;
2575
+ disabled: boolean;
2576
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2577
+ landscape: boolean;
2578
+ tile: boolean;
2579
+ divided: boolean;
2580
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2581
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2582
+ reverseTransition: string;
2583
+ hideHeader: boolean;
2584
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2585
+ viewMode: "month" | "year" | "months";
2586
+ showAdjacentMonths: boolean;
2587
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2588
+ weeksInMonth: "static" | "dynamic";
2589
+ hideWeekdays: boolean;
2590
+ showWeek: boolean;
2591
+ } & {
2592
+ max?: unknown;
2593
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2594
+ height?: string | number | undefined;
2595
+ width?: string | number | undefined;
2596
+ active?: string | string[] | undefined;
2597
+ min?: unknown;
2598
+ border?: string | number | boolean | undefined;
2599
+ color?: string | undefined;
2600
+ maxHeight?: string | number | undefined;
2601
+ maxWidth?: string | number | undefined;
2602
+ minHeight?: string | number | undefined;
2603
+ minWidth?: string | number | undefined;
2604
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2605
+ text?: string | undefined;
2606
+ month?: string | number | undefined;
2607
+ year?: number | undefined;
2608
+ class?: any;
2609
+ theme?: string | undefined;
2610
+ elevation?: string | number | undefined;
2611
+ rounded?: string | number | boolean | undefined;
2612
+ bgColor?: string | undefined;
2613
+ controlHeight?: string | number | undefined;
2614
+ headerColor?: string | undefined;
2615
+ firstDayOfWeek?: string | number | undefined;
2616
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2617
+ } & {
2618
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2619
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2620
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2621
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
2622
+ 'update:modelValue': (date: any) => true;
2623
+ 'update:month': (date: any) => true;
2624
+ 'update:year': (date: any) => true;
2625
+ 'update:viewMode': (date: any) => true;
2626
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
2627
+ active: string | string[];
2628
+ transition: string;
2629
+ header: string;
2630
+ style: import('vue').StyleValue;
2631
+ title: string;
2632
+ disabled: boolean;
2633
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2634
+ landscape: boolean;
2635
+ rounded: string | number | boolean;
2636
+ tile: boolean;
2637
+ divided: boolean;
2638
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2639
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2640
+ reverseTransition: string;
2641
+ hideHeader: boolean;
2642
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2643
+ viewMode: "month" | "year" | "months";
2644
+ showAdjacentMonths: boolean;
2645
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2646
+ weeksInMonth: "static" | "dynamic";
2647
+ firstDayOfWeek: string | number;
2648
+ hideWeekdays: boolean;
2649
+ showWeek: boolean;
2650
+ }, {}, string, import('vue').SlotsType<Partial<{
2651
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2652
+ [key: string]: any;
2653
+ }>[];
2654
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2655
+ [key: string]: any;
2656
+ }>[];
2657
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2658
+ [key: string]: any;
2659
+ }>[];
2660
+ header: (arg: {
2661
+ header: string;
2662
+ transition: string;
2663
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2664
+ [key: string]: any;
2665
+ }>[];
2666
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2667
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2668
+ created?: ((() => void) | (() => void)[]) | undefined;
2669
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2670
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2671
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2672
+ updated?: ((() => void) | (() => void)[]) | undefined;
2673
+ activated?: ((() => void) | (() => void)[]) | undefined;
2674
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2675
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2676
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2677
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2678
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2679
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2680
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2681
+ 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;
2682
+ };
2683
+ $forceUpdate: () => void;
2684
+ $nextTick: typeof import('vue').nextTick;
2685
+ $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;
2686
+ } & Readonly<{
2687
+ active: string | string[];
2688
+ transition: string;
2689
+ header: string;
2690
+ style: import('vue').StyleValue;
2691
+ title: string;
2692
+ disabled: boolean;
2693
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2694
+ landscape: boolean;
2695
+ rounded: string | number | boolean;
2696
+ tile: boolean;
2697
+ divided: boolean;
2698
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2699
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2700
+ reverseTransition: string;
2701
+ hideHeader: boolean;
2702
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2703
+ viewMode: "month" | "year" | "months";
2704
+ showAdjacentMonths: boolean;
2705
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2706
+ weeksInMonth: "static" | "dynamic";
2707
+ firstDayOfWeek: string | number;
2708
+ hideWeekdays: boolean;
2709
+ showWeek: boolean;
2710
+ }> & Omit<{
2711
+ transition: string;
2712
+ header: string;
2713
+ style: import('vue').StyleValue;
2714
+ title: string;
2715
+ disabled: boolean;
2716
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2717
+ landscape: boolean;
2718
+ tile: boolean;
2719
+ divided: boolean;
2720
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2721
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2722
+ reverseTransition: string;
2723
+ hideHeader: boolean;
2724
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2725
+ viewMode: "month" | "year" | "months";
2726
+ showAdjacentMonths: boolean;
2727
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2728
+ weeksInMonth: "static" | "dynamic";
2729
+ hideWeekdays: boolean;
2730
+ showWeek: boolean;
2731
+ } & {
2732
+ max?: unknown;
2733
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2734
+ height?: string | number | undefined;
2735
+ width?: string | number | undefined;
2736
+ active?: string | string[] | undefined;
2737
+ min?: unknown;
2738
+ border?: string | number | boolean | undefined;
2739
+ color?: string | undefined;
2740
+ maxHeight?: string | number | undefined;
2741
+ maxWidth?: string | number | undefined;
2742
+ minHeight?: string | number | undefined;
2743
+ minWidth?: string | number | undefined;
2744
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2745
+ text?: string | undefined;
2746
+ month?: string | number | undefined;
2747
+ year?: number | undefined;
2748
+ class?: any;
2749
+ theme?: string | undefined;
2750
+ elevation?: string | number | undefined;
2751
+ rounded?: string | number | boolean | undefined;
2752
+ bgColor?: string | undefined;
2753
+ controlHeight?: string | number | undefined;
2754
+ headerColor?: string | undefined;
2755
+ firstDayOfWeek?: string | number | undefined;
2756
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2757
+ } & {
2758
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2759
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2760
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2761
+ }, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
2762
+ modelValue?: Date | Date[] | null | undefined;
2763
+ "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
2764
+ multiple?: false | "range" | undefined;
2765
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
2766
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
2767
+ P: {};
2768
+ B: {};
2769
+ D: {};
2770
+ C: {};
2771
+ M: {};
2772
+ Defaults: {};
2773
+ }, Readonly<{
2774
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
2775
+ placeholder?: string | undefined;
2776
+ format?: string | undefined;
2777
+ dateFormatReturn?: string | undefined;
2778
+ isBirthDate?: boolean | undefined;
2779
+ showWeekNumber?: boolean | undefined;
2780
+ required?: boolean | undefined;
2781
+ displayRange?: boolean | undefined;
2782
+ displayIcon?: boolean | undefined;
2783
+ displayAppendIcon?: boolean | undefined;
2784
+ displayPrependIcon?: boolean | undefined;
2785
+ customRules?: {
2786
+ type: string;
2787
+ options: any;
2788
+ }[] | undefined;
2789
+ customWarningRules?: {
2790
+ type: string;
2791
+ options: any;
2792
+ }[] | undefined;
2793
+ disabled?: boolean | undefined;
2794
+ noIcon?: boolean | undefined;
2795
+ noCalendar?: boolean | undefined;
2796
+ isOutlined?: boolean | undefined;
2797
+ readonly?: boolean | undefined;
2798
+ width?: string | undefined;
2799
+ disableErrorHandling?: boolean | undefined;
2800
+ showSuccessMessages?: boolean | undefined;
2801
+ bgColor?: string | undefined;
2802
+ }> & Readonly<{
2803
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
2804
+ onBlur?: (() => any) | undefined;
2805
+ onFocus?: (() => any) | undefined;
2806
+ onClosed?: (() => any) | undefined;
2807
+ }>, {
2808
+ validateOnSubmit: () => any;
2809
+ isDatePickerVisible: import('vue').Ref<boolean, boolean>;
2810
+ selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
2811
+ errorMessages: import('vue').Ref<string[], string[]>;
2812
+ handleClickOutside: (event: MouseEvent) => void;
2813
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
2814
+ updateAccessibility: () => Promise<void>;
2815
+ openDatePicker: () => void;
2816
+ }, {}, {}, {}, {
2817
+ required: boolean;
2818
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
2819
+ readonly: boolean;
2820
+ bgColor: string;
2821
+ disabled: boolean;
2822
+ placeholder: string;
2823
+ width: string;
2824
+ noIcon: boolean;
2825
+ customRules: {
2826
+ type: string;
2827
+ options: any;
2828
+ }[];
2829
+ customWarningRules: {
2830
+ type: string;
2831
+ options: any;
2832
+ }[];
2833
+ showSuccessMessages: boolean;
2834
+ disableErrorHandling: boolean;
2835
+ format: string;
2836
+ dateFormatReturn: string;
2837
+ isOutlined: boolean;
2838
+ displayIcon: boolean;
2839
+ displayAppendIcon: boolean;
2840
+ displayPrependIcon: boolean;
2841
+ isBirthDate: boolean;
2842
+ showWeekNumber: boolean;
2843
+ displayRange: boolean;
2844
+ noCalendar: boolean;
2845
+ }> | null;
2846
+ }, HTMLDivElement>;
2847
+ export default _default;