@cnamts/synapse 0.0.12-alpha → 0.0.14-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 (731) 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 +1534 -0
  6. package/dist/{src/components → components}/Customs/SyTextField/SyTextField.d.ts +6 -4
  7. package/dist/{src/components → components}/DatePicker/DatePicker.d.ts +60 -66
  8. package/dist/{src/components → components}/DatePicker/DateTextInput.d.ts +47 -50
  9. package/dist/components/DialogBox/DialogBox.d.ts +274 -0
  10. package/dist/{src/components → components}/DownloadBtn/DownloadBtn.d.ts +7 -0
  11. package/dist/components/DownloadBtn/locales.d.ts +3 -0
  12. package/dist/components/FilterInline/AccessibiliteItems.d.ts +30 -0
  13. package/dist/{src/components → components}/FilterInline/FilterInline.d.ts +2 -3
  14. package/dist/{src/components → components}/FilterSideBar/FilterSideBar.d.ts +1 -1
  15. package/dist/{src/components → components}/FranceConnectBtn/locales.d.ts +1 -0
  16. package/dist/{src/components → components}/HeaderToolbar/HeaderToolbar.d.ts +5 -1
  17. package/dist/{src/components → components}/NirField/NirField.d.ts +39 -28
  18. package/dist/{src/components → components}/NotificationBar/NotificationBar.d.ts +5 -5
  19. package/dist/{src/components → components}/PasswordField/PasswordField.d.ts +6 -4
  20. package/dist/{src/components → components}/PeriodField/PeriodField.d.ts +223 -211
  21. package/dist/{src/components → components}/PhoneField/PhoneField.d.ts +49 -1
  22. package/dist/components/SyAlert/AccessibiliteItems.d.ts +29 -0
  23. package/dist/components/TableToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
  24. package/dist/components/UploadWorkflow/AccessibiliteItems.d.ts +29 -0
  25. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +783 -0
  26. package/dist/components/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +4 -0
  27. package/dist/components/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
  28. package/dist/{src/components → components}/index.d.ts +4 -0
  29. package/dist/composables/date/useDateFormat.d.ts +26 -0
  30. package/dist/composables/date/useDateInitialization.d.ts +18 -0
  31. package/dist/composables/date/useDatePickerAccessibility.d.ts +9 -0
  32. package/dist/{src/composables → composables}/useFilterable/useFilterable.d.ts +1 -1
  33. package/dist/{src/composables → composables}/validation/useValidation.d.ts +1 -0
  34. package/dist/design-system-v3.js +4959 -3902
  35. package/dist/design-system-v3.umd.cjs +1 -1
  36. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamColors.d.ts +5 -10
  37. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamLightTheme.d.ts +0 -2
  38. package/dist/{src/designTokens → designTokens}/tokens/pa/paColors.d.ts +5 -10
  39. package/dist/{src/designTokens → designTokens}/tokens/pa/paLightTheme.d.ts +4 -5
  40. package/dist/{src/main.d.ts → main.d.ts} +1 -0
  41. package/dist/style.css +1 -1
  42. package/dist/utils/formatDate/index.d.ts +3 -0
  43. package/dist/utils/functions/validation/isDateAfter/index.d.ts +2 -0
  44. package/dist/utils/functions/validation/isDateBefore/index.d.ts +2 -0
  45. package/dist/utils/functions/validation/isDateInRange/index.d.ts +3 -0
  46. package/dist/utils/functions/validation/isDateValid/index.d.ts +9 -0
  47. package/dist/utils/functions/validation/isWeekend/index.d.ts +3 -0
  48. package/dist/utils/parseDate/index.d.ts +3 -0
  49. package/dist/utils/rules/doMatchPattern/index.d.ts +3 -0
  50. package/dist/utils/rules/index.d.ts +11 -0
  51. package/dist/utils/rules/isDateValid/index.d.ts +4 -0
  52. package/dist/utils/rules/isExactLength/index.d.ts +3 -0
  53. package/dist/utils/rules/isExactLength/locales.d.ts +2 -0
  54. package/dist/utils/rules/isMaxLength/index.d.ts +3 -0
  55. package/dist/utils/rules/isMaxLength/locales.d.ts +2 -0
  56. package/dist/utils/rules/isMinLength/index.d.ts +3 -0
  57. package/dist/utils/rules/isMinLength/locales.d.ts +2 -0
  58. package/dist/utils/rules/isNotAfterDate/index.d.ts +3 -0
  59. package/dist/utils/rules/isNotAfterToday/index.d.ts +4 -0
  60. package/dist/utils/rules/isNotAfterToday/locales.d.ts +2 -0
  61. package/dist/utils/rules/isNotBeforeDate/index.d.ts +3 -0
  62. package/dist/utils/rules/isNotBeforeDate/locales.d.ts +2 -0
  63. package/dist/utils/rules/isNotBeforeToday/index.d.ts +4 -0
  64. package/dist/utils/rules/isNotBeforeToday/locales.d.ts +2 -0
  65. package/dist/utils/rules/isRequired/index.d.ts +4 -0
  66. package/dist/utils/rules/isRequired/locales.d.ts +2 -0
  67. package/dist/utils/rules/isValidEmail/index.d.ts +4 -0
  68. package/dist/utils/rules/isValidEmail/locales.d.ts +2 -0
  69. package/dist/{src/vuetifyConfig.d.ts → vuetifyConfig.d.ts} +1 -0
  70. package/package.json +10 -7
  71. package/src/assets/_radius.scss +12 -6
  72. package/src/assets/settings.scss +8 -0
  73. package/src/components/BackBtn/BackBtn.stories.ts +34 -6
  74. package/src/components/BackBtn/BackBtn.vue +17 -8
  75. package/src/components/BackBtn/tests/BackBtn.spec.ts +2 -2
  76. package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +39 -3
  77. package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +98 -6
  78. package/src/components/ChipList/ChipList.stories.ts +26 -27
  79. package/src/components/ChipList/ChipList.vue +6 -1
  80. package/src/components/ChipList/config.ts +1 -0
  81. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +31 -5
  82. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +570 -101
  83. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +2 -2
  84. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +28 -2
  85. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +13 -1
  86. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +568 -99
  87. package/src/components/CopyBtn/CopyBtn.stories.ts +2 -2
  88. package/src/components/CopyBtn/CopyBtn.vue +28 -22
  89. package/src/components/CopyBtn/config.ts +2 -1
  90. package/src/components/CopyBtn/tests/__snapshots__/CopyBtn.spec.ts.snap +28 -3
  91. package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +1 -1
  92. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +6 -5
  93. package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +2 -2
  94. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +1 -1
  95. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -0
  96. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -0
  97. package/src/components/Customs/SySelect/SySelect.mdx +1 -1
  98. package/src/components/Customs/SySelect/SySelect.vue +31 -6
  99. package/src/components/Customs/SyTextField/SyTextField.mdx +2 -2
  100. package/src/components/Customs/SyTextField/SyTextField.stories.ts +241 -2
  101. package/src/components/Customs/SyTextField/SyTextField.vue +9 -6
  102. package/src/components/DataList/DataList.vue +2 -2
  103. package/src/components/DataList/DataListLoading/DataListLoading.vue +2 -2
  104. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +1 -1
  105. package/src/components/DataList/tests/DataList.spec.ts +10 -10
  106. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +1 -1
  107. package/src/components/DataListItem/DataListItem.vue +9 -9
  108. package/src/components/DataListItem/tests/DataListItem.spec.ts +5 -5
  109. package/src/components/DatePicker/DatePicker.mdx +1 -1
  110. package/src/components/DatePicker/DatePicker.stories.ts +187 -15
  111. package/src/components/DatePicker/DatePicker.vue +161 -355
  112. package/src/components/DatePicker/DateTextInput.vue +97 -257
  113. package/src/components/DatePicker/tests/DatePicker.spec.ts +118 -48
  114. package/src/components/DatePicker/tests/DateTextInput.spec.ts +206 -10
  115. package/src/components/DialogBox/DialogBox.vue +4 -4
  116. package/src/components/DialogBox/tests/DialogBox.spec.ts +1 -1
  117. package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +158 -19
  118. package/src/components/DownloadBtn/DownloadBtn.stories.ts +18 -4
  119. package/src/components/DownloadBtn/DownloadBtn.vue +37 -3
  120. package/src/components/DownloadBtn/locales.ts +3 -0
  121. package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +77 -6
  122. package/src/components/ErrorPage/ErrorPage.vue +2 -2
  123. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +212 -38
  124. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +796 -86
  125. package/src/components/FileList/Accessibilite.stories.ts +1 -1
  126. package/src/components/FileList/AccessibiliteItems.ts +22 -0
  127. package/src/components/FilePreview/tests/FilePreview.spec.ts +1 -1
  128. package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +27 -5
  129. package/src/components/FileUpload/FileUpload.stories.ts +9 -7
  130. package/src/components/FilterInline/Accessibilite.mdx +14 -0
  131. package/src/components/FilterInline/Accessibilite.stories.ts +216 -0
  132. package/src/components/FilterInline/AccessibiliteItems.ts +132 -0
  133. package/src/components/FilterInline/FilterInline.stories.ts +308 -2
  134. package/src/components/FilterInline/FilterInline.vue +3 -3
  135. package/src/components/FilterInline/constants/ExpertiseLevelEnum.ts +4 -0
  136. package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +235 -21
  137. package/src/components/FilterSideBar/Accessibilite.mdx +14 -0
  138. package/src/components/FilterSideBar/Accessibilite.stories.ts +216 -0
  139. package/src/components/FilterSideBar/AccessibiliteItems.ts +153 -0
  140. package/src/components/FilterSideBar/FilterSideBar.vue +1 -1
  141. package/src/components/FilterSideBar/constants/ExpertiseLevelEnum.ts +4 -0
  142. package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +144 -15
  143. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +92 -18
  144. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +18 -21
  145. package/src/components/FranceConnectBtn/locales.ts +2 -0
  146. package/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.ts +1 -1
  147. package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +235 -26
  148. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +5 -1
  149. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +20 -6
  150. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +68 -37
  151. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  152. package/src/components/HeaderToolbar/HeaderToolbar.vue +346 -117
  153. package/src/components/HeaderToolbar/tests/{HeaderToolbar.spec.ts → HeaderToolBar.spec.ts} +2 -2
  154. package/src/components/LangBtn/LangBtn.vue +1 -0
  155. package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +41 -3
  156. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +55 -8
  157. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +10 -1
  158. package/src/components/NirField/NirField.stories.ts +172 -7
  159. package/src/components/NirField/NirField.vue +16 -14
  160. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +229 -37
  161. package/src/components/NotificationBar/NotificationBar.mdx +2 -2
  162. package/src/components/NotificationBar/NotificationBar.stories.ts +59 -11
  163. package/src/components/NotificationBar/NotificationBar.vue +42 -114
  164. package/src/components/NotificationBar/tests/NotificationBar.spec.ts +28 -33
  165. package/src/components/NotificationBar/tests/__snapshots__/NotificationBar.spec.ts.snap +30 -3
  166. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +16 -3
  167. package/src/components/PaginatedTable/PaginatedTable.vue +6 -10
  168. package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +731 -94
  169. package/src/components/PasswordField/PasswordField.stories.ts +204 -17
  170. package/src/components/PasswordField/PasswordField.vue +9 -6
  171. package/src/components/PeriodField/PeriodField.stories.ts +227 -131
  172. package/src/components/PeriodField/PeriodField.vue +203 -152
  173. package/src/components/PeriodField/tests/PeriodField.spec.ts +146 -0
  174. package/src/components/PhoneField/PhoneField.stories.ts +174 -0
  175. package/src/components/PhoneField/PhoneField.vue +81 -17
  176. package/src/components/PhoneField/tests/PhoneField.spec.ts +40 -0
  177. package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +80 -17
  178. package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +981 -162
  179. package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +634 -25
  180. package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +477 -38
  181. package/src/components/RatingPicker/RatingPicker.stories.ts +7 -7
  182. package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +218 -10
  183. package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +476 -41
  184. package/src/components/SearchListField/SearchListField.stories.ts +2 -2
  185. package/src/components/SelectBtnField/SelectBtnField.stories.ts +1 -1
  186. package/src/components/SelectBtnField/SelectBtnField.vue +11 -15
  187. package/src/components/SelectBtnField/config.ts +1 -1
  188. package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +881 -65
  189. package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +15 -1
  190. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +110 -16
  191. package/src/components/SubHeader/SubHeader.stories.ts +1 -1
  192. package/src/components/SubHeader/tests/SubHeader.spec.ts +1 -1
  193. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +78 -6
  194. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +1034 -124
  195. package/src/components/UploadWorkflow/Accessibilite.mdx +14 -0
  196. package/src/components/UploadWorkflow/Accessibilite.stories.ts +216 -0
  197. package/src/components/UploadWorkflow/AccessibiliteItems.ts +192 -0
  198. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +11 -11
  199. package/src/components/UploadWorkflow/UploadWorkflow.vue +2 -2
  200. package/src/components/UploadWorkflow/constants/ExpertiseLevelEnum.ts +4 -0
  201. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +328 -29
  202. package/src/components/Usages/tests/Usages.spec.ts +183 -0
  203. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +8 -8
  204. package/src/components/index.ts +4 -0
  205. package/src/composables/date/tests/useDateFormat.spec.ts +67 -0
  206. package/src/composables/date/tests/useDateInitialization.spec.ts +89 -0
  207. package/src/composables/date/tests/useDatePickerAccessibility.spec.ts +180 -0
  208. package/src/composables/date/useDateFormat.ts +94 -0
  209. package/src/composables/date/useDateInitialization.ts +92 -0
  210. package/src/composables/date/useDatePickerAccessibility.ts +123 -0
  211. package/src/composables/rules/tests/useFieldValidation.spec.ts +385 -4
  212. package/src/composables/useFilterable/useFilterable.ts +5 -4
  213. package/src/composables/validation/useValidation.ts +15 -0
  214. package/src/designTokens/tokens/cnam/cnamColors.ts +5 -10
  215. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +0 -2
  216. package/src/designTokens/tokens/cnam/cnamSemantic.ts +3 -3
  217. package/src/designTokens/tokens/pa/paColors.ts +5 -10
  218. package/src/designTokens/tokens/pa/paLightTheme.ts +4 -5
  219. package/src/designTokens/tokens/pa/paSemantic.ts +3 -3
  220. package/src/main.ts +1 -0
  221. package/src/stories/Accessibilite/Aculturation/AuditDesignSystem.mdx +28 -0
  222. package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +2 -2
  223. package/src/stories/Accessibilite/Audit/RGAA.mdx +6 -6
  224. package/src/stories/Accessibilite/Introduction.mdx +2 -1
  225. package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
  226. package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +1 -1
  227. package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +8 -11
  228. package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +77 -0
  229. package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +9 -3
  230. package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +2 -2
  231. package/src/stories/Demarrer/Introduction.stories.ts +3 -3
  232. package/src/stories/Demarrer/Releases.mdx +8 -0
  233. package/src/stories/Demarrer/Releases.stories.ts +66 -0
  234. package/src/stories/DesignTokens/ColorDisplay.vue +58 -0
  235. package/src/stories/DesignTokens/Colors.mdx +81 -212
  236. package/src/stories/DesignTokens/Conteneurs.stories.ts +3 -3
  237. package/src/stories/DesignTokens/colors.stories.ts +1078 -0
  238. package/src/stories/GuideDuDev/LesBreackingChanges.mdx +36 -0
  239. package/src/stories/GuideDuDev/UtiliserLesRules.mdx +32 -10
  240. package/src/utils/formatDate/index.ts +6 -0
  241. package/src/utils/formatDate/tests/formatDate.spec.ts +18 -0
  242. package/src/utils/functions/validation/isDateAfter/index.ts +9 -0
  243. package/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.ts +18 -0
  244. package/src/utils/functions/validation/isDateBefore/index.ts +9 -0
  245. package/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.ts +23 -0
  246. package/src/utils/functions/validation/isDateInRange/index.ts +22 -0
  247. package/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.ts +28 -0
  248. package/src/utils/functions/validation/isDateValid/index.ts +67 -0
  249. package/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.ts +46 -0
  250. package/src/utils/functions/validation/isEmailValid/index.ts +9 -0
  251. package/src/utils/functions/validation/isWeekend/index.ts +10 -0
  252. package/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.ts +16 -0
  253. package/src/utils/parseDate/index.ts +29 -0
  254. package/src/utils/parseDate/tests/parseDate.spec.ts +52 -0
  255. package/src/utils/rules/Rules.mdx +16 -0
  256. package/src/utils/rules/doMatchPattern/DoMachPattern.mdx +66 -0
  257. package/src/utils/rules/doMatchPattern/DoMatchPattern.stories.ts +106 -0
  258. package/src/utils/rules/doMatchPattern/index.ts +28 -0
  259. package/src/utils/rules/doMatchPattern/locales.ts +5 -0
  260. package/src/utils/rules/doMatchPattern/tests/matchPattern.spec.ts +38 -0
  261. package/src/utils/rules/index.ts +11 -0
  262. package/src/utils/rules/isDateValid/IsDateValid.mdx +87 -0
  263. package/src/utils/rules/isDateValid/IsDateValid.stories.ts +113 -0
  264. package/src/utils/rules/isDateValid/index.ts +32 -0
  265. package/src/utils/rules/isDateValid/locales.ts +10 -0
  266. package/src/utils/rules/isDateValid/tests/isDateValid.spec.ts +27 -0
  267. package/src/utils/rules/isExactLength/IsExactLenght.mdx +68 -0
  268. package/src/utils/rules/isExactLength/IsExactLength.stories.ts +151 -0
  269. package/src/utils/rules/{exactLength → isExactLength}/index.ts +2 -4
  270. package/src/utils/rules/isExactLength/tests/exactLength.spec.ts +48 -0
  271. package/src/utils/rules/isMaxLength/IsMaxLength.mdx +68 -0
  272. package/src/utils/rules/isMaxLength/IsMaxLength.stories.ts +152 -0
  273. package/src/utils/rules/isMaxLength/index.ts +30 -0
  274. package/src/utils/rules/isMaxLength/locales.ts +6 -0
  275. package/src/utils/rules/isMaxLength/tests/isMaxLength.spec.ts +42 -0
  276. package/src/utils/rules/isMinLength/IsMinLength.mdx +68 -0
  277. package/src/utils/rules/isMinLength/IsMinLength.stories.ts +152 -0
  278. package/src/utils/rules/isMinLength/index.ts +30 -0
  279. package/src/utils/rules/isMinLength/locales.ts +6 -0
  280. package/src/utils/rules/isMinLength/tests/isMinLength.spec.ts +42 -0
  281. package/src/utils/rules/isNotAfterDate/IsNotAfterDate.mdx +68 -0
  282. package/src/utils/rules/isNotAfterDate/IsNotAfterDate.stories.ts +109 -0
  283. package/src/utils/rules/isNotAfterDate/index.ts +25 -0
  284. package/src/utils/rules/isNotAfterDate/locales.ts +6 -0
  285. package/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.ts +25 -0
  286. package/src/utils/rules/isNotAfterToday/IsNotAfterToday.mdx +83 -0
  287. package/src/utils/rules/isNotAfterToday/IsNotAfterToday.stories.ts +110 -0
  288. package/src/utils/rules/isNotAfterToday/index.ts +28 -0
  289. package/src/utils/rules/isNotAfterToday/locales.ts +5 -0
  290. package/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.ts +30 -0
  291. package/src/utils/rules/isNotBeforeDate/IsNotBeforeDate.mdx +68 -0
  292. package/src/utils/rules/isNotBeforeDate/IsNotBeforeDate.stories.ts +114 -0
  293. package/src/utils/rules/isNotBeforeDate/index.ts +25 -0
  294. package/src/utils/rules/isNotBeforeDate/locales.ts +6 -0
  295. package/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.ts +25 -0
  296. package/src/utils/rules/isNotBeforeToday/IsNotBeforeToday.mdx +83 -0
  297. package/src/utils/rules/isNotBeforeToday/IsNotBeforeToday.stories.ts +110 -0
  298. package/src/utils/rules/isNotBeforeToday/index.ts +28 -0
  299. package/src/utils/rules/isNotBeforeToday/locales.ts +5 -0
  300. package/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.ts +36 -0
  301. package/src/utils/rules/isRequired/IsRequired.mdx +81 -0
  302. package/src/utils/rules/isRequired/IsRequired.stories.ts +101 -0
  303. package/src/utils/rules/{required → isRequired}/index.ts +3 -3
  304. package/src/utils/rules/{required/tests/index.spec.ts → isRequired/tests/isRequred.spec.ts} +9 -9
  305. package/src/utils/rules/isValidEmail/IsValidEmail.mdx +81 -0
  306. package/src/utils/rules/isValidEmail/IsValidEmail.stories.ts +101 -0
  307. package/src/utils/rules/{email → isValidEmail}/index.ts +3 -5
  308. package/src/utils/rules/{email/tests/email.spec.ts → isValidEmail/tests/isValidEmail.spec.ts} +5 -5
  309. package/dist/src/components/Amelipro/types/languages.d.ts +0 -6
  310. package/dist/src/components/Amelipro/types/types.d.ts +0 -65
  311. package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +0 -1
  312. package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +0 -1
  313. package/dist/src/components/ChipList/tests/chipList.spec.d.ts +0 -1
  314. package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +0 -1
  315. package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +0 -1
  316. package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +0 -1
  317. package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +0 -1
  318. package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +0 -1
  319. package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +0 -1
  320. package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +0 -1
  321. package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +0 -1
  322. package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +0 -1
  323. package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +0 -1
  324. package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +0 -1
  325. package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +0 -1
  326. package/dist/src/components/DataList/tests/DataList.spec.d.ts +0 -1
  327. package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +0 -1
  328. package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +0 -1
  329. package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +0 -1
  330. package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +0 -1
  331. package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +0 -1
  332. package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +0 -1
  333. package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +0 -1
  334. package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +0 -1
  335. package/dist/src/components/FileList/tests/FileList.spec.d.ts +0 -1
  336. package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +0 -1
  337. package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +0 -1
  338. package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +0 -1
  339. package/dist/src/components/FilterSideBar/tests/FilterSideBar.spec.d.ts +0 -1
  340. package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +0 -1
  341. package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +0 -1
  342. package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +0 -1
  343. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +0 -1
  344. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +0 -1
  345. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +0 -1
  346. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +0 -1
  347. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +0 -1
  348. package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +0 -1
  349. package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +0 -1
  350. package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +0 -1
  351. package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +0 -1
  352. package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +0 -1
  353. package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +0 -1
  354. package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +0 -1
  355. package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +0 -1
  356. package/dist/src/components/LangBtn/tests/Config.spec.d.ts +0 -1
  357. package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +0 -1
  358. package/dist/src/components/Logo/tests/Logo.spec.d.ts +0 -1
  359. package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +0 -1
  360. package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +0 -1
  361. package/dist/src/components/NirField/config.d.ts +0 -15
  362. package/dist/src/components/NirField/tests/NirField.spec.d.ts +0 -1
  363. package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +0 -1
  364. package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +0 -1
  365. package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +0 -1
  366. package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +0 -1
  367. package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +0 -1
  368. package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +0 -1
  369. package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +0 -1
  370. package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +0 -1
  371. package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +0 -1
  372. package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +0 -1
  373. package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +0 -1
  374. package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +0 -1
  375. package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +0 -1
  376. package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +0 -1
  377. package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +0 -1
  378. package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +0 -1
  379. package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +0 -1
  380. package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +0 -1
  381. package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +0 -1
  382. package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +0 -1
  383. package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +0 -1
  384. package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +0 -1
  385. package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +0 -1
  386. package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +0 -1
  387. package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +0 -1
  388. package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +0 -1
  389. package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +0 -1
  390. package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +0 -1
  391. package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +0 -1
  392. package/dist/src/components/UploadWorkflow/tests/UploadWorkflow.spec.d.ts +0 -1
  393. package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +0 -1
  394. package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +0 -1
  395. package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +0 -1
  396. package/dist/src/composables/validation/tests/useValidation.spec.d.ts +0 -1
  397. package/dist/src/composables/widthable/tests/widthable.spec.d.ts +0 -1
  398. package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +0 -1
  399. package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +0 -1
  400. package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +0 -1
  401. package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +0 -1
  402. package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +0 -1
  403. package/dist/src/utils/functions/isEmailValid/tests/isEmailValid.spec.d.ts +0 -1
  404. package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +0 -1
  405. package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +0 -1
  406. package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +0 -1
  407. package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +0 -1
  408. package/dist/src/utils/rules/email/index.d.ts +0 -4
  409. package/dist/src/utils/rules/email/tests/email.spec.d.ts +0 -1
  410. package/dist/src/utils/rules/exactLength/index.d.ts +0 -4
  411. package/dist/src/utils/rules/required/index.d.ts +0 -4
  412. package/dist/src/utils/rules/required/ruleMessageHelper.d.ts +0 -3
  413. package/dist/src/utils/rules/required/tests/index.spec.d.ts +0 -1
  414. package/dist/src/utils/rules/required/tests/rulesMessageHelper.spec.d.ts +0 -1
  415. package/src/components/Amelipro/types/languages.d.ts +0 -6
  416. package/src/components/Amelipro/types/types.d.ts +0 -65
  417. package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +0 -58
  418. package/src/components/NirField/config.ts +0 -16
  419. package/src/utils/functions/isEmailValid/index.ts +0 -8
  420. package/src/utils/rules/required/ruleMessageHelper.ts +0 -14
  421. package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +0 -22
  422. /package/dist/{src/components → components}/BackBtn/AccessibiliteItems.d.ts +0 -0
  423. /package/dist/{src/components → components}/BackBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  424. /package/dist/{src/components → components}/BackBtn/locales.d.ts +0 -0
  425. /package/dist/{src/components → components}/BackToTopBtn/AccessibiliteItems.d.ts +0 -0
  426. /package/dist/{src/components → components}/BackToTopBtn/BackToTopBtn.d.ts +0 -0
  427. /package/dist/{src/components → components}/BackToTopBtn/config.d.ts +0 -0
  428. /package/dist/{src/components → components}/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  429. /package/dist/{src/components → components}/BackToTopBtn/locales.d.ts +0 -0
  430. /package/dist/{src/components → components}/ChipList/AccessibiliteItems.d.ts +0 -0
  431. /package/dist/{src/components → components}/ChipList/ChipList.d.ts +0 -0
  432. /package/dist/{src/components → components}/ChipList/config.d.ts +0 -0
  433. /package/dist/{src/components → components}/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -0
  434. /package/dist/{src/components → components}/ChipList/locales.d.ts +0 -0
  435. /package/dist/{src/components → components}/ChipList/types.d.ts +0 -0
  436. /package/dist/{src/components → components}/CollapsibleList/AccessibiliteItems.d.ts +0 -0
  437. /package/dist/{src/components → components}/CollapsibleList/CollapsibleList.d.ts +0 -0
  438. /package/dist/{src/components → components}/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -0
  439. /package/dist/{src/components → components}/CollapsibleList/types.d.ts +0 -0
  440. /package/dist/{src/components → components}/ContextualMenu/AccessibiliteItems.d.ts +0 -0
  441. /package/dist/{src/components → components}/ContextualMenu/ContextualMenu.d.ts +0 -0
  442. /package/dist/{src/components → components}/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  443. /package/dist/{src/components → components}/ContextualMenu/types.d.ts +0 -0
  444. /package/dist/{src/components → components}/CookieBanner/AccessibiliteItems.d.ts +0 -0
  445. /package/dist/{src/components → components}/CookieBanner/CookieBanner.d.ts +0 -0
  446. /package/dist/{src/components → components}/CookieBanner/config.d.ts +0 -0
  447. /package/dist/{src/components → components}/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -0
  448. /package/dist/{src/components → components}/CookieBanner/locales.d.ts +0 -0
  449. /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +0 -0
  450. /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/locales.d.ts +0 -0
  451. /package/dist/{src/components → components}/CookiesSelection/CookiesTable/CookiesTable.d.ts +0 -0
  452. /package/dist/{src/components → components}/CookiesSelection/CookiesTable/headers.d.ts +0 -0
  453. /package/dist/{src/components → components}/CookiesSelection/locales.d.ts +0 -0
  454. /package/dist/{src/components → components}/CookiesSelection/types.d.ts +0 -0
  455. /package/dist/{src/components → components}/CopyBtn/AccessibiliteItems.d.ts +0 -0
  456. /package/dist/{src/components → components}/CopyBtn/CopyBtn.d.ts +0 -0
  457. /package/dist/{src/components → components}/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  458. /package/dist/{src/components → components}/CopyBtn/locales.d.ts +0 -0
  459. /package/dist/{src/components → components}/Customs/SyBtnSelect/AccessibiliteItems.d.ts +0 -0
  460. /package/dist/{src/components → components}/Customs/SyBtnSelect/SyBtnSelect.d.ts +0 -0
  461. /package/dist/{src/components → components}/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  462. /package/dist/{src/components → components}/Customs/SyInputSelect/AccessibiliteItems.d.ts +0 -0
  463. /package/dist/{src/components → components}/Customs/SyInputSelect/config.d.ts +0 -0
  464. /package/dist/{src/components → components}/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  465. /package/dist/{src/components → components}/Customs/SySelect/AccessibiliteItems.d.ts +0 -0
  466. /package/dist/{src/components → components}/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  467. /package/dist/{src/components → components}/Customs/SyTextField/AccessibiliteItems.d.ts +0 -0
  468. /package/dist/{src/components → components}/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -0
  469. /package/dist/{src/components → components}/Customs/SyTextField/types.d.ts +0 -0
  470. /package/dist/{src/components → components}/DataList/AccessibiliteItems.d.ts +0 -0
  471. /package/dist/{src/components → components}/DataList/DataList.d.ts +0 -0
  472. /package/dist/{src/components → components}/DataList/DataListLoading/DataListLoading.d.ts +0 -0
  473. /package/dist/{src/components → components}/DataList/constants/ExpertiseLevelEnum.d.ts +0 -0
  474. /package/dist/{src/components → components}/DataList/locales.d.ts +0 -0
  475. /package/dist/{src/components → components}/DataList/types.d.ts +0 -0
  476. /package/dist/{src/components → components}/DataListGroup/AccessibiliteItems.d.ts +0 -0
  477. /package/dist/{src/components → components}/DataListGroup/DataListGroup.d.ts +0 -0
  478. /package/dist/{src/components → components}/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -0
  479. /package/dist/{src/components → components}/DataListGroup/tests/data/dataListGroupItems.d.ts +0 -0
  480. /package/dist/{src/components → components}/DataListGroup/types.d.ts +0 -0
  481. /package/dist/{src/components → components}/DataListItem/DataListItem.d.ts +0 -0
  482. /package/dist/{src/components → components}/DataListItem/config.d.ts +0 -0
  483. /package/dist/{src/components → components}/DataListItem/locales.d.ts +0 -0
  484. /package/dist/{src/components → components}/DataListItem/types.d.ts +0 -0
  485. /package/dist/{src/components → components}/DatePicker/AccessibiliteItems.d.ts +0 -0
  486. /package/dist/{src/components → components}/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  487. /package/dist/{src/components → components}/DialogBox/AccessibiliteItems.d.ts +0 -0
  488. /package/dist/{src/components → components}/DialogBox/config.d.ts +0 -0
  489. /package/dist/{src/components → components}/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -0
  490. /package/dist/{src/components → components}/DialogBox/locales.d.ts +0 -0
  491. /package/dist/{src/components → components}/DownloadBtn/AccessibiliteItems.d.ts +0 -0
  492. /package/dist/{src/components → components}/DownloadBtn/config.d.ts +0 -0
  493. /package/dist/{src/components → components}/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  494. /package/dist/{src/components → components}/DownloadBtn/tests/data/filePromise.d.ts +0 -0
  495. /package/dist/{src/components → components}/ErrorPage/AccessibiliteItems.d.ts +0 -0
  496. /package/dist/{src/components → components}/ErrorPage/ErrorPage.d.ts +0 -0
  497. /package/dist/{src/components → components}/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  498. /package/dist/{src/components → components}/ErrorPage/locales.d.ts +0 -0
  499. /package/dist/{src/components → components}/ExternalLinks/AccessibiliteItems.d.ts +0 -0
  500. /package/dist/{src/components → components}/ExternalLinks/ExternalLinks.d.ts +0 -0
  501. /package/dist/{src/components → components}/ExternalLinks/config.d.ts +0 -0
  502. /package/dist/{src/components → components}/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  503. /package/dist/{src/components → components}/ExternalLinks/locales.d.ts +0 -0
  504. /package/dist/{src/components → components}/FileList/AccessibiliteItems.d.ts +0 -0
  505. /package/dist/{src/components → components}/FileList/FileList.d.ts +0 -0
  506. /package/dist/{src/components → components}/FileList/UploadItem/UploadItem.d.ts +0 -0
  507. /package/dist/{src/components → components}/FileList/UploadItem/locales.d.ts +0 -0
  508. /package/dist/{src/components → components}/FileList/constants/ExpertiseLevelEnum.d.ts +0 -0
  509. /package/dist/{src/components → components}/FilePreview/AccessibiliteItems.d.ts +0 -0
  510. /package/dist/{src/components → components}/FilePreview/FilePreview.d.ts +0 -0
  511. /package/dist/{src/components → components}/FilePreview/config.d.ts +0 -0
  512. /package/dist/{src/components → components}/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -0
  513. /package/dist/{src/components → components}/FilePreview/locales.d.ts +0 -0
  514. /package/dist/{src/components → components}/FileUpload/AccessibiliteItems.d.ts +0 -0
  515. /package/dist/{src/components → components}/FileUpload/FileUpload.d.ts +0 -0
  516. /package/dist/{src/components → components}/FileUpload/FileUploadContent.d.ts +0 -0
  517. /package/dist/{src/components → components}/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -0
  518. /package/dist/{src/components → components}/FileUpload/locales.d.ts +0 -0
  519. /package/dist/{src/components → components}/FileUpload/useFileDrop.d.ts +0 -0
  520. /package/dist/{src/components → components}/FileUpload/validateFiles.d.ts +0 -0
  521. /package/dist/{src/components/FooterBar → components/FilterInline}/constants/ExpertiseLevelEnum.d.ts +0 -0
  522. /package/dist/{src/components → components}/FilterInline/locales.d.ts +0 -0
  523. /package/dist/{src/components/NotificationBar → components/FilterSideBar}/AccessibiliteItems.d.ts +0 -0
  524. /package/dist/{src/components/FranceConnectBtn → components/FilterSideBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
  525. /package/dist/{src/components → components}/FilterSideBar/locales.d.ts +0 -0
  526. /package/dist/{src/components → components}/FooterBar/A11yCompliance.d.ts +0 -0
  527. /package/dist/{src/components → components}/FooterBar/AccessibiliteItems.d.ts +0 -0
  528. /package/dist/{src/components → components}/FooterBar/FooterBar.d.ts +0 -0
  529. /package/dist/{src/components → components}/FooterBar/config.d.ts +0 -0
  530. /package/dist/{src/components/HeaderBar/HeaderBurgerMenu → components/FooterBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
  531. /package/dist/{src/components → components}/FooterBar/defaultSocialMediaLinks.d.ts +0 -0
  532. /package/dist/{src/components → components}/FooterBar/locales.d.ts +0 -0
  533. /package/dist/{src/components → components}/FooterBar/types.d.ts +0 -0
  534. /package/dist/{src/components → components}/FranceConnectBtn/AccessibiliteItems.d.ts +0 -0
  535. /package/dist/{src/components → components}/FranceConnectBtn/FranceConnectBtn.d.ts +0 -0
  536. /package/dist/{src/components/HeaderBar → components/FranceConnectBtn}/constants/ExpertiseLevelEnum.d.ts +0 -0
  537. /package/dist/{src/components → components}/HeaderBar/AccessibiliteItems.d.ts +0 -0
  538. /package/dist/{src/components → components}/HeaderBar/HeaderBar.d.ts +0 -0
  539. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +0 -0
  540. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +0 -0
  541. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +0 -0
  542. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +0 -0
  543. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +0 -0
  544. /package/dist/{src/components/HeaderLoading → components/HeaderBar/HeaderBurgerMenu}/constants/ExpertiseLevelEnum.d.ts +0 -0
  545. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/conts.d.ts +0 -0
  546. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/locals.d.ts +0 -0
  547. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +0 -0
  548. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/HeaderLogo.d.ts +0 -0
  549. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/locales.d.ts +0 -0
  550. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +0 -0
  551. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo.d.ts +0 -0
  552. /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +0 -0
  553. /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/locals.d.ts +0 -0
  554. /package/dist/{src/components/HeaderToolbar → components/HeaderBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
  555. /package/dist/{src/components → components}/HeaderBar/consts.d.ts +0 -0
  556. /package/dist/{src/components → components}/HeaderBar/locales.d.ts +0 -0
  557. /package/dist/{src/components → components}/HeaderBar/useHeaderResponsiveMode.d.ts +0 -0
  558. /package/dist/{src/components → components}/HeaderBar/useScrollDirection.d.ts +0 -0
  559. /package/dist/{src/components → components}/HeaderLoading/AccessibiliteItems.d.ts +0 -0
  560. /package/dist/{src/components → components}/HeaderLoading/HeaderLoading.d.ts +0 -0
  561. /package/dist/{src/components/LangBtn → components/HeaderLoading}/constants/ExpertiseLevelEnum.d.ts +0 -0
  562. /package/dist/{src/components → components}/HeaderNavigationBar/HeaderNavigationBar.d.ts +0 -0
  563. /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +0 -0
  564. /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/config.d.ts +0 -0
  565. /package/dist/{src/components → components}/HeaderNavigationBar/types.d.ts +0 -0
  566. /package/dist/{src/components → components}/HeaderToolbar/AccessibiliteItems.d.ts +0 -0
  567. /package/dist/{src/components/Logo → components/HeaderToolbar}/constants/ExpertiseLevelEnum.d.ts +0 -0
  568. /package/dist/{src/components → components}/HeaderToolbar/types.d.ts +0 -0
  569. /package/dist/{src/components → components}/LangBtn/AccessibiliteItems.d.ts +0 -0
  570. /package/dist/{src/components → components}/LangBtn/LangBtn.d.ts +0 -0
  571. /package/dist/{src/components → components}/LangBtn/config.d.ts +0 -0
  572. /package/dist/{src/components/LogoBrandSection → components/LangBtn}/constants/ExpertiseLevelEnum.d.ts +0 -0
  573. /package/dist/{src/components → components}/LangBtn/locales.d.ts +0 -0
  574. /package/dist/{src/components → components}/LangBtn/types.d.ts +0 -0
  575. /package/dist/{src/components → components}/Logo/AccessibiliteItems.d.ts +0 -0
  576. /package/dist/{src/components → components}/Logo/Logo.d.ts +0 -0
  577. /package/dist/{src/components → components}/Logo/LogoSize.d.ts +0 -0
  578. /package/dist/{src/components/MaintenancePage → components/Logo}/constants/ExpertiseLevelEnum.d.ts +0 -0
  579. /package/dist/{src/components → components}/Logo/locales.d.ts +0 -0
  580. /package/dist/{src/components → components}/Logo/logoDimensionsMapping.d.ts +0 -0
  581. /package/dist/{src/components → components}/Logo/types.d.ts +0 -0
  582. /package/dist/{src/components → components}/LogoBrandSection/AccessibiliteItems.d.ts +0 -0
  583. /package/dist/{src/components → components}/LogoBrandSection/LogoBrandSection.d.ts +0 -0
  584. /package/dist/{src/components/NirField → components/LogoBrandSection}/constants/ExpertiseLevelEnum.d.ts +0 -0
  585. /package/dist/{src/components → components}/LogoBrandSection/dividerDimensionsMapping.d.ts +0 -0
  586. /package/dist/{src/components → components}/LogoBrandSection/locales.d.ts +0 -0
  587. /package/dist/{src/components → components}/LogoBrandSection/secondaryLogoMapping.d.ts +0 -0
  588. /package/dist/{src/components → components}/LogoBrandSection/types.d.ts +0 -0
  589. /package/dist/{src/components → components}/MaintenancePage/AccessibiliteItems.d.ts +0 -0
  590. /package/dist/{src/components → components}/MaintenancePage/MaintenancePage.d.ts +0 -0
  591. /package/dist/{src/components/NotFoundPage → components/MaintenancePage}/constants/ExpertiseLevelEnum.d.ts +0 -0
  592. /package/dist/{src/components → components}/MaintenancePage/index.d.ts +0 -0
  593. /package/dist/{src/components → components}/MaintenancePage/locales.d.ts +0 -0
  594. /package/dist/{src/components → components}/NirField/AccessibiliteItems.d.ts +0 -0
  595. /package/dist/{src/components/NotificationBar → components/NirField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  596. /package/dist/{src/components → components}/NirField/locales.d.ts +0 -0
  597. /package/dist/{src/components → components}/NirField/nirValidation.d.ts +0 -0
  598. /package/dist/{src/components → components}/NotFoundPage/AccessibiliteItems.d.ts +0 -0
  599. /package/dist/{src/components → components}/NotFoundPage/NotFoundPage.d.ts +0 -0
  600. /package/dist/{src/components/PageContainer → components/NotFoundPage}/constants/ExpertiseLevelEnum.d.ts +0 -0
  601. /package/dist/{src/components → components}/NotFoundPage/locales.d.ts +0 -0
  602. /package/dist/{src/components/PageContainer → components/NotificationBar}/AccessibiliteItems.d.ts +0 -0
  603. /package/dist/{src/components/PaginatedTable → components/NotificationBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
  604. /package/dist/{src/components → components}/NotificationBar/options.d.ts +0 -0
  605. /package/dist/{src/components → components}/NotificationBar/types.d.ts +0 -0
  606. /package/dist/{src/components/SubHeader → components/PageContainer}/AccessibiliteItems.d.ts +0 -0
  607. /package/dist/{src/components → components}/PageContainer/PageContainer.d.ts +0 -0
  608. /package/dist/{src/components/PasswordField → components/PageContainer}/constants/ExpertiseLevelEnum.d.ts +0 -0
  609. /package/dist/{src/components → components}/PaginatedTable/AccessibiliteItems.d.ts +0 -0
  610. /package/dist/{src/components → components}/PaginatedTable/PaginatedTable.d.ts +0 -0
  611. /package/dist/{src/components/PeriodField → components/PaginatedTable}/constants/ExpertiseLevelEnum.d.ts +0 -0
  612. /package/dist/{src/components → components}/PaginatedTable/constants/StateEnum.d.ts +0 -0
  613. /package/dist/{src/components → components}/PaginatedTable/types.d.ts +0 -0
  614. /package/dist/{src/components → components}/PasswordField/AccessibiliteItems.d.ts +0 -0
  615. /package/dist/{src/components → components}/PasswordField/config.d.ts +0 -0
  616. /package/dist/{src/components/PhoneField → components/PasswordField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  617. /package/dist/{src/components → components}/PasswordField/locales.d.ts +0 -0
  618. /package/dist/{src/components → components}/PeriodField/AccessibiliteItems.d.ts +0 -0
  619. /package/dist/{src/components/RangeField → components/PeriodField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  620. /package/dist/{src/components → components}/PhoneField/AccessibiliteItems.d.ts +0 -0
  621. /package/dist/{src/components/RatingPicker → components/PhoneField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  622. /package/dist/{src/components → components}/PhoneField/indicatifs.d.ts +0 -0
  623. /package/dist/{src/components → components}/PhoneField/locales.d.ts +0 -0
  624. /package/dist/{src/components → components}/RangeField/AccessibiliteItems.d.ts +0 -0
  625. /package/dist/{src/components → components}/RangeField/RangeField.d.ts +0 -0
  626. /package/dist/{src/components → components}/RangeField/RangeSlider/RangeSlider.d.ts +0 -0
  627. /package/dist/{src/components → components}/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +0 -0
  628. /package/dist/{src/components → components}/RangeField/RangeSlider/types.d.ts +0 -0
  629. /package/dist/{src/components → components}/RangeField/RangeSlider/useMouseSlide.d.ts +0 -0
  630. /package/dist/{src/components → components}/RangeField/RangeSlider/useRangeSlider.d.ts +0 -0
  631. /package/dist/{src/components → components}/RangeField/RangeSlider/useThumb.d.ts +0 -0
  632. /package/dist/{src/components → components}/RangeField/RangeSlider/useThumbKeyboard.d.ts +0 -0
  633. /package/dist/{src/components → components}/RangeField/RangeSlider/useTooltipsNudge.d.ts +0 -0
  634. /package/dist/{src/components → components}/RangeField/RangeSlider/useTrack.d.ts +0 -0
  635. /package/dist/{src/components → components}/RangeField/RangeSlider/vAnimateClick.d.ts +0 -0
  636. /package/dist/{src/components → components}/RangeField/config.d.ts +0 -0
  637. /package/dist/{src/components/SearchListField → components/RangeField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  638. /package/dist/{src/components → components}/RangeField/locales.d.ts +0 -0
  639. /package/dist/{src/components → components}/RatingPicker/AccessibiliteItems.d.ts +0 -0
  640. /package/dist/{src/components → components}/RatingPicker/EmotionPicker/EmotionPicker.d.ts +0 -0
  641. /package/dist/{src/components → components}/RatingPicker/EmotionPicker/locales.d.ts +0 -0
  642. /package/dist/{src/components → components}/RatingPicker/NumberPicker/NumberPicker.d.ts +0 -0
  643. /package/dist/{src/components → components}/RatingPicker/NumberPicker/locales.d.ts +0 -0
  644. /package/dist/{src/components → components}/RatingPicker/Rating.d.ts +0 -0
  645. /package/dist/{src/components → components}/RatingPicker/RatingPicker.d.ts +0 -0
  646. /package/dist/{src/components → components}/RatingPicker/StarsPicker/StarsPicker.d.ts +0 -0
  647. /package/dist/{src/components/SelectBtnField → components/RatingPicker}/constants/ExpertiseLevelEnum.d.ts +0 -0
  648. /package/dist/{src/components → components}/RatingPicker/locales.d.ts +0 -0
  649. /package/dist/{src/components → components}/SearchListField/AccessibiliteItems.d.ts +0 -0
  650. /package/dist/{src/components → components}/SearchListField/SearchListField.d.ts +0 -0
  651. /package/dist/{src/components/SkipLink → components/SearchListField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  652. /package/dist/{src/components → components}/SearchListField/locales.d.ts +0 -0
  653. /package/dist/{src/components → components}/SearchListField/types.d.ts +0 -0
  654. /package/dist/{src/components → components}/SelectBtnField/AccessibiliteItems.d.ts +0 -0
  655. /package/dist/{src/components → components}/SelectBtnField/SelectBtnField.d.ts +0 -0
  656. /package/dist/{src/components → components}/SelectBtnField/config.d.ts +0 -0
  657. /package/dist/{src/components/SocialMediaLinks → components/SelectBtnField}/constants/ExpertiseLevelEnum.d.ts +0 -0
  658. /package/dist/{src/components → components}/SelectBtnField/types.d.ts +0 -0
  659. /package/dist/{src/components → components}/SkipLink/AccessibiliteItems.d.ts +0 -0
  660. /package/dist/{src/components → components}/SkipLink/SkipLink.d.ts +0 -0
  661. /package/dist/{src/components/SubHeader → components/SkipLink}/constants/ExpertiseLevelEnum.d.ts +0 -0
  662. /package/dist/{src/components → components}/SkipLink/locales.d.ts +0 -0
  663. /package/dist/{src/components → components}/SocialMediaLinks/AccessibiliteItems.d.ts +0 -0
  664. /package/dist/{src/components → components}/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +0 -0
  665. /package/dist/{src/components → components}/SocialMediaLinks/SocialMediaLinks.d.ts +0 -0
  666. /package/dist/{src/components/SyAlert → components/SocialMediaLinks}/constants/ExpertiseLevelEnum.d.ts +0 -0
  667. /package/dist/{src/components → components}/SocialMediaLinks/locales.d.ts +0 -0
  668. /package/dist/{src/components → components}/SocialMediaLinks/types.d.ts +0 -0
  669. /package/dist/{src/components/SyAlert → components/SubHeader}/AccessibiliteItems.d.ts +0 -0
  670. /package/dist/{src/components → components}/SubHeader/SubHeader.d.ts +0 -0
  671. /package/dist/{src/components → components}/SubHeader/config.d.ts +0 -0
  672. /package/dist/{src/components/TableToolbar → components/SubHeader}/constants/ExpertiseLevelEnum.d.ts +0 -0
  673. /package/dist/{src/components → components}/SubHeader/locales.d.ts +0 -0
  674. /package/dist/{src/components → components}/SyAlert/SyAlert.d.ts +0 -0
  675. /package/dist/{src/components/UserMenuBtn → components/SyAlert}/constants/ExpertiseLevelEnum.d.ts +0 -0
  676. /package/dist/{src/components → components}/SyAlert/locales.d.ts +0 -0
  677. /package/dist/{src/components → components}/TableToolbar/AccessibiliteItems.d.ts +0 -0
  678. /package/dist/{src/components → components}/TableToolbar/TableToolbar.d.ts +0 -0
  679. /package/dist/{src/components → components}/TableToolbar/config.d.ts +0 -0
  680. /package/dist/{src/components → components}/TableToolbar/locales.d.ts +0 -0
  681. /package/dist/{src/components → components}/UploadWorkflow/config.d.ts +0 -0
  682. /package/dist/{src/components → components}/UploadWorkflow/locales.d.ts +0 -0
  683. /package/dist/{src/components → components}/UploadWorkflow/types.d.ts +0 -0
  684. /package/dist/{src/components → components}/UploadWorkflow/useFileList.d.ts +0 -0
  685. /package/dist/{src/components → components}/UploadWorkflow/useFileUploadJourney.d.ts +0 -0
  686. /package/dist/{src/components → components}/UserMenuBtn/AccessibiliteItems.d.ts +0 -0
  687. /package/dist/{src/components → components}/UserMenuBtn/UserMenuBtn.d.ts +0 -0
  688. /package/dist/{src/components → components}/UserMenuBtn/config.d.ts +0 -0
  689. /package/dist/{src/composables → composables}/index.d.ts +0 -0
  690. /package/dist/{src/composables → composables}/rules/useFieldValidation.d.ts +0 -0
  691. /package/dist/{src/composables → composables}/useCustomizableOptions.d.ts +0 -0
  692. /package/dist/{src/composables → composables}/widthable/index.d.ts +0 -0
  693. /package/dist/{src/constants → constants}/icons.d.ts +0 -0
  694. /package/dist/{src/designTokens → designTokens}/index.d.ts +0 -0
  695. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamContextual.d.ts +0 -0
  696. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamDarkTheme.d.ts +0 -0
  697. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamSemantic.d.ts +0 -0
  698. /package/dist/{src/designTokens → designTokens}/tokens/pa/paContextual.d.ts +0 -0
  699. /package/dist/{src/designTokens → designTokens}/tokens/pa/paDarkTheme.d.ts +0 -0
  700. /package/dist/{src/designTokens → designTokens}/tokens/pa/paSemantic.d.ts +0 -0
  701. /package/dist/{src/designTokens → designTokens}/utils/convertGaps.d.ts +0 -0
  702. /package/dist/{src/designTokens → designTokens}/utils/convertSemanticsToken.d.ts +0 -0
  703. /package/dist/{src/designTokens → designTokens}/utils/createFlattenTheme.d.ts +0 -0
  704. /package/dist/{src/designTokens → designTokens}/utils/index.d.ts +0 -0
  705. /package/dist/{src/directives → directives}/clickOutside.d.ts +0 -0
  706. /package/dist/{src/modules.d.ts → modules.d.ts} +0 -0
  707. /package/dist/{src/services → services}/NotificationService.d.ts +0 -0
  708. /package/dist/{src/services → services}/index.d.ts +0 -0
  709. /package/dist/{src/stories → stories}/Accessibilite/Vuetify/VuetifyItems.d.ts +0 -0
  710. /package/dist/{src/stories → stories}/EcoConception/ecoDesignItems.d.ts +0 -0
  711. /package/dist/{src/types → types}/vuetifyTypes.d.ts +0 -0
  712. /package/dist/{src/utils → utils}/calcHumanFileSize/index.d.ts +0 -0
  713. /package/dist/{src/utils → utils}/convertToUnit/index.d.ts +0 -0
  714. /package/dist/{src/utils → utils}/functions/copyToClipboard/index.d.ts +0 -0
  715. /package/dist/{src/utils → utils}/functions/deepCopy/index.d.ts +0 -0
  716. /package/dist/{src/utils → utils}/functions/downloadFile/index.d.ts +0 -0
  717. /package/dist/{src/utils → utils}/functions/downloadFile/types.d.ts +0 -0
  718. /package/dist/{src/utils → utils}/functions/throttleDisplayFn/throttleDisplayFn.d.ts +0 -0
  719. /package/dist/{src/utils/functions → utils/functions/validation}/isEmailValid/index.d.ts +0 -0
  720. /package/dist/{src/utils → utils}/localStorageUtility/index.d.ts +0 -0
  721. /package/dist/{src/utils → utils}/propValidator/index.d.ts +0 -0
  722. /package/dist/{src/utils → utils}/ruleMessage/index.d.ts +0 -0
  723. /package/dist/{src/utils/rules/exactLength → utils/rules/doMatchPattern}/locales.d.ts +0 -0
  724. /package/dist/{src/utils/rules/email → utils/rules/isDateValid}/locales.d.ts +0 -0
  725. /package/dist/{src/utils/rules/required → utils/rules/isNotAfterDate}/locales.d.ts +0 -0
  726. /package/dist/{src/utils → utils}/rules/types.d.ts +0 -0
  727. /package/src/components/NirField/{tests → examples}//342/200/257dataset/342/200/257.md" +0 -0
  728. /package/src/utils/functions/{isEmailValid → validation/isEmailValid}/tests/isEmailValid.spec.ts +0 -0
  729. /package/src/utils/rules/{exactLength → isExactLength}/locales.ts +0 -0
  730. /package/src/utils/rules/{required → isRequired}/locales.ts +0 -0
  731. /package/src/utils/rules/{email → isValidEmail}/locales.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { RuleOptions } from '../../composables';
1
+ import { ValidationRule } from '../../composables/validation/useValidation';
2
2
  type DateInput = string | null;
3
3
  type PeriodValue = {
4
4
  from: DateInput;
@@ -14,24 +14,30 @@ type __VLS_Props = {
14
14
  required?: boolean;
15
15
  displayIcon?: boolean;
16
16
  displayAppendIcon?: boolean;
17
- isDisabled?: boolean;
17
+ disabled?: boolean;
18
18
  noIcon?: boolean;
19
19
  noCalendar?: boolean;
20
20
  isOutlined?: boolean;
21
21
  showSuccessMessages?: boolean;
22
- customRules?: {
23
- type: string;
24
- options: RuleOptions;
25
- }[];
26
- customWarningRules?: {
27
- type: string;
28
- options: RuleOptions;
29
- }[];
22
+ customRules?: ValidationRule[];
23
+ customWarningRules?: ValidationRule[];
24
+ disableErrorHandling?: boolean;
25
+ readOnly?: boolean;
30
26
  };
31
27
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
32
28
  validateOnSubmit: () => boolean;
33
- errors: import('vue').Ref<string[], string[]>;
34
- successes: import('vue').Ref<string[], string[]>;
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
+ };
35
41
  isValid: import('vue').ComputedRef<boolean>;
36
42
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
37
43
  "update:modelValue": (...args: any[]) => void;
@@ -40,17 +46,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
40
46
  }>, {
41
47
  required: boolean;
42
48
  modelValue: PeriodValue;
43
- isDisabled: boolean;
49
+ readOnly: boolean;
50
+ disabled: boolean;
44
51
  noIcon: boolean;
45
- customRules: {
46
- type: string;
47
- options: RuleOptions;
48
- }[];
49
- customWarningRules: {
50
- type: string;
51
- options: RuleOptions;
52
- }[];
52
+ customRules: ValidationRule[];
53
+ customWarningRules: ValidationRule[];
53
54
  showSuccessMessages: boolean;
55
+ disableErrorHandling: boolean;
54
56
  format: string;
55
57
  dateFormatReturn: string;
56
58
  isOutlined: boolean;
@@ -62,7 +64,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
62
64
  placeholderTo: string;
63
65
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
64
66
  fromDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
65
- modelValue?: (string | object | string[] | null) | undefined;
67
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
66
68
  placeholder?: string | undefined;
67
69
  format?: string | undefined;
68
70
  dateFormatReturn?: string | undefined;
@@ -75,20 +77,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
75
77
  displayPrependIcon?: boolean | undefined;
76
78
  customRules?: {
77
79
  type: string;
78
- options: RuleOptions;
80
+ options: any;
79
81
  }[] | undefined;
80
82
  customWarningRules?: {
81
83
  type: string;
82
- options: RuleOptions;
84
+ options: any;
83
85
  }[] | undefined;
84
- isDisabled?: boolean | undefined;
86
+ disabled?: boolean | undefined;
85
87
  noIcon?: boolean | undefined;
86
88
  noCalendar?: boolean | undefined;
87
89
  isOutlined?: boolean | undefined;
88
- isReadOnly?: boolean | undefined;
90
+ readOnly?: boolean | undefined;
89
91
  width?: string | undefined;
92
+ disableErrorHandling?: boolean | undefined;
93
+ showSuccessMessages?: boolean | undefined;
94
+ bgColor?: string | undefined;
90
95
  }> & Readonly<{
91
- "onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
96
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
92
97
  onBlur?: (() => any) | undefined;
93
98
  onFocus?: (() => any) | undefined;
94
99
  onClosed?: (() => any) | undefined;
@@ -98,28 +103,33 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
98
103
  selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
99
104
  errorMessages: import('vue').Ref<string[], string[]>;
100
105
  handleClickOutside: (event: MouseEvent) => void;
101
- initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
106
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
107
+ updateAccessibility: () => Promise<void>;
108
+ openDatePicker: () => void;
102
109
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
103
- "update:modelValue": (value: string | [string, string] | null) => any;
110
+ "update:modelValue": (value: import('../../composables/date/useDateInitialization').DateValue) => any;
104
111
  blur: () => any;
105
112
  focus: () => any;
106
113
  closed: () => any;
107
114
  }, import('vue').PublicProps, {
108
115
  required: boolean;
109
- modelValue: string | object | string[] | null;
110
- isReadOnly: boolean;
111
- isDisabled: boolean;
116
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
117
+ readOnly: boolean;
118
+ bgColor: string;
119
+ disabled: boolean;
112
120
  placeholder: string;
113
121
  width: string;
114
122
  noIcon: boolean;
115
123
  customRules: {
116
124
  type: string;
117
- options: RuleOptions;
125
+ options: any;
118
126
  }[];
119
127
  customWarningRules: {
120
128
  type: string;
121
- options: RuleOptions;
129
+ options: any;
122
130
  }[];
131
+ showSuccessMessages: boolean;
132
+ disableErrorHandling: boolean;
123
133
  format: string;
124
134
  dateFormatReturn: string;
125
135
  isOutlined: boolean;
@@ -138,27 +148,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
138
148
  dateFormatReturn?: string | undefined;
139
149
  label?: string | undefined;
140
150
  required?: boolean | undefined;
141
- isDisabled?: boolean | undefined;
142
- isReadOnly?: boolean | undefined;
151
+ disabled?: boolean | undefined;
152
+ readOnly?: boolean | undefined;
143
153
  isOutlined?: boolean | undefined;
144
154
  displayIcon?: boolean | undefined;
145
155
  displayAppendIcon?: boolean | undefined;
146
156
  noIcon?: boolean | undefined;
147
- customRules?: {
148
- type: string;
149
- options: RuleOptions;
150
- }[] | undefined;
151
- customWarningRules?: {
152
- type: string;
153
- options: RuleOptions;
154
- }[] | undefined;
157
+ customRules?: ValidationRule[] | undefined;
158
+ customWarningRules?: ValidationRule[] | undefined;
155
159
  displayPrependIcon?: boolean | undefined;
160
+ disableErrorHandling?: boolean | undefined;
161
+ showSuccessMessages?: boolean | undefined;
156
162
  }> & Readonly<{
157
163
  onBlur?: (() => any) | undefined;
158
164
  onFocus?: (() => any) | undefined;
159
165
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
160
166
  }>, {
161
- validateOnSubmit: () => boolean;
167
+ validateOnSubmit: () => Promise<boolean>;
162
168
  focus: () => void;
163
169
  blur: () => void;
164
170
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
@@ -169,18 +175,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
169
175
  required: boolean;
170
176
  modelValue: string | null;
171
177
  label: string;
172
- isReadOnly: boolean;
173
- isDisabled: boolean;
178
+ readOnly: boolean;
179
+ disabled: boolean;
174
180
  placeholder: string;
175
181
  noIcon: boolean;
176
- customRules: {
177
- type: string;
178
- options: RuleOptions;
179
- }[];
180
- customWarningRules: {
181
- type: string;
182
- options: RuleOptions;
183
- }[];
182
+ customRules: ValidationRule[];
183
+ customWarningRules: ValidationRule[];
184
+ showSuccessMessages: boolean;
185
+ disableErrorHandling: boolean;
184
186
  format: string;
185
187
  dateFormatReturn: string;
186
188
  isOutlined: boolean;
@@ -209,7 +211,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
209
211
  readonly errorMessages?: string[] | null | undefined;
210
212
  readonly warningMessages?: string[] | null | undefined;
211
213
  readonly successMessages?: string[] | null | undefined;
212
- readonly isReadOnly?: boolean | undefined;
214
+ readonly readOnly?: boolean | undefined;
213
215
  readonly isActive?: boolean | undefined;
214
216
  readonly baseColor?: string | undefined;
215
217
  readonly bgColor?: string | undefined;
@@ -219,7 +221,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
219
221
  readonly density?: "default" | "comfortable" | "compact" | undefined;
220
222
  readonly direction?: "horizontal" | "vertical" | undefined;
221
223
  readonly isDirty?: boolean | undefined;
222
- readonly isDisabled?: boolean | undefined;
224
+ readonly disabled?: boolean | undefined;
223
225
  readonly isOnError?: boolean | undefined;
224
226
  readonly isFlat?: boolean | undefined;
225
227
  readonly isFocused?: boolean | undefined;
@@ -250,11 +252,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
250
252
  readonly width?: string | number | undefined;
251
253
  readonly displayAsterisk?: boolean | undefined;
252
254
  readonly noIcon?: boolean | undefined;
253
- readonly customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
254
- readonly customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
255
- readonly customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
255
+ readonly customRules?: ValidationRule[] | undefined;
256
+ readonly customWarningRules?: ValidationRule[] | undefined;
257
+ readonly customSuccessRules?: ValidationRule[] | undefined;
256
258
  readonly showSuccessMessages?: boolean | undefined;
257
259
  readonly isValidateOnBlur?: boolean | undefined;
260
+ readonly disableErrorHandling?: boolean | undefined;
258
261
  readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
259
262
  readonly onClear?: ((...args: any[]) => any) | undefined;
260
263
  readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
@@ -292,7 +295,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
292
295
  errorMessages?: string[] | null | undefined;
293
296
  warningMessages?: string[] | null | undefined;
294
297
  successMessages?: string[] | null | undefined;
295
- isReadOnly?: boolean | undefined;
298
+ readOnly?: boolean | undefined;
296
299
  isActive?: boolean | undefined;
297
300
  baseColor?: string | undefined;
298
301
  bgColor?: string | undefined;
@@ -302,7 +305,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
302
305
  density?: "default" | "comfortable" | "compact" | undefined;
303
306
  direction?: "horizontal" | "vertical" | undefined;
304
307
  isDirty?: boolean | undefined;
305
- isDisabled?: boolean | undefined;
308
+ disabled?: boolean | undefined;
306
309
  isOnError?: boolean | undefined;
307
310
  isFlat?: boolean | undefined;
308
311
  isFocused?: boolean | undefined;
@@ -333,11 +336,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
333
336
  width?: string | number | undefined;
334
337
  displayAsterisk?: boolean | undefined;
335
338
  noIcon?: boolean | undefined;
336
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
337
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
338
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
339
+ customRules?: ValidationRule[] | undefined;
340
+ customWarningRules?: ValidationRule[] | undefined;
341
+ customSuccessRules?: ValidationRule[] | undefined;
339
342
  showSuccessMessages?: boolean | undefined;
340
343
  isValidateOnBlur?: boolean | undefined;
344
+ disableErrorHandling?: boolean | undefined;
341
345
  }> & Readonly<{
342
346
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
343
347
  onClear?: ((...args: any[]) => any) | undefined;
@@ -351,7 +355,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
351
355
  hasError: import('vue').ComputedRef<boolean>;
352
356
  hasWarning: import('vue').ComputedRef<boolean>;
353
357
  hasSuccess: import('vue').ComputedRef<boolean>;
354
- validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
358
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
355
359
  validateOnSubmit: () => Promise<boolean>;
356
360
  clearValidation: () => void;
357
361
  };
@@ -378,7 +382,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
378
382
  errorMessages: string[] | null;
379
383
  warningMessages: string[] | null;
380
384
  successMessages: string[] | null;
381
- isReadOnly: boolean;
385
+ readOnly: boolean;
382
386
  isActive: boolean;
383
387
  baseColor: string;
384
388
  bgColor: string;
@@ -388,7 +392,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
388
392
  density: "default" | "comfortable" | "compact";
389
393
  direction: "horizontal" | "vertical";
390
394
  isDirty: boolean;
391
- isDisabled: boolean;
395
+ disabled: boolean;
392
396
  isOnError: boolean;
393
397
  isFlat: boolean;
394
398
  isFocused: boolean;
@@ -419,11 +423,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
419
423
  width: string | number;
420
424
  displayAsterisk: boolean;
421
425
  noIcon: boolean;
422
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
423
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
424
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
426
+ customRules: ValidationRule[];
427
+ customWarningRules: ValidationRule[];
428
+ customSuccessRules: ValidationRule[];
425
429
  showSuccessMessages: boolean;
426
430
  isValidateOnBlur: boolean;
431
+ disableErrorHandling: boolean;
427
432
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
428
433
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
429
434
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -460,7 +465,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
460
465
  errorMessages: string[] | null;
461
466
  warningMessages: string[] | null;
462
467
  successMessages: string[] | null;
463
- isReadOnly: boolean;
468
+ readOnly: boolean;
464
469
  isActive: boolean;
465
470
  baseColor: string;
466
471
  bgColor: string;
@@ -470,7 +475,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
470
475
  density: "default" | "comfortable" | "compact";
471
476
  direction: "horizontal" | "vertical";
472
477
  isDirty: boolean;
473
- isDisabled: boolean;
478
+ disabled: boolean;
474
479
  isOnError: boolean;
475
480
  isFlat: boolean;
476
481
  isFocused: boolean;
@@ -501,11 +506,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
501
506
  width: string | number;
502
507
  displayAsterisk: boolean;
503
508
  noIcon: boolean;
504
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
505
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
506
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
509
+ customRules: ValidationRule[];
510
+ customWarningRules: ValidationRule[];
511
+ customSuccessRules: ValidationRule[];
507
512
  showSuccessMessages: boolean;
508
513
  isValidateOnBlur: boolean;
514
+ disableErrorHandling: boolean;
509
515
  }> & Omit<Readonly<{
510
516
  modelValue?: string | number | null | undefined;
511
517
  prependIcon?: import('../Customs/SyTextField/types').IconType;
@@ -524,7 +530,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
524
530
  errorMessages?: string[] | null | undefined;
525
531
  warningMessages?: string[] | null | undefined;
526
532
  successMessages?: string[] | null | undefined;
527
- isReadOnly?: boolean | undefined;
533
+ readOnly?: boolean | undefined;
528
534
  isActive?: boolean | undefined;
529
535
  baseColor?: string | undefined;
530
536
  bgColor?: string | undefined;
@@ -534,7 +540,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
534
540
  density?: "default" | "comfortable" | "compact" | undefined;
535
541
  direction?: "horizontal" | "vertical" | undefined;
536
542
  isDirty?: boolean | undefined;
537
- isDisabled?: boolean | undefined;
543
+ disabled?: boolean | undefined;
538
544
  isOnError?: boolean | undefined;
539
545
  isFlat?: boolean | undefined;
540
546
  isFocused?: boolean | undefined;
@@ -565,17 +571,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
565
571
  width?: string | number | undefined;
566
572
  displayAsterisk?: boolean | undefined;
567
573
  noIcon?: boolean | undefined;
568
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
569
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
570
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
574
+ customRules?: ValidationRule[] | undefined;
575
+ customWarningRules?: ValidationRule[] | undefined;
576
+ customSuccessRules?: ValidationRule[] | undefined;
571
577
  showSuccessMessages?: boolean | undefined;
572
578
  isValidateOnBlur?: boolean | undefined;
579
+ disableErrorHandling?: boolean | undefined;
573
580
  }> & Readonly<{
574
581
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
575
582
  onClear?: ((...args: any[]) => any) | undefined;
576
583
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
577
584
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
578
- }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "isReadOnly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "isDisabled" | "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")> & import('vue').ShallowUnwrapRef<{
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<{
579
586
  validation: {
580
587
  errors: import('vue').Ref<string[], string[]>;
581
588
  warnings: import('vue').Ref<string[], string[]>;
@@ -583,7 +590,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
583
590
  hasError: import('vue').ComputedRef<boolean>;
584
591
  hasWarning: import('vue').ComputedRef<boolean>;
585
592
  hasSuccess: import('vue').ComputedRef<boolean>;
586
- validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
593
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
587
594
  validateOnSubmit: () => Promise<boolean>;
588
595
  clearValidation: () => void;
589
596
  };
@@ -612,45 +619,37 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
612
619
  dateFormatReturn?: string | undefined;
613
620
  label?: string | undefined;
614
621
  required?: boolean | undefined;
615
- isDisabled?: boolean | undefined;
616
- isReadOnly?: boolean | undefined;
622
+ disabled?: boolean | undefined;
623
+ readOnly?: boolean | undefined;
617
624
  isOutlined?: boolean | undefined;
618
625
  displayIcon?: boolean | undefined;
619
626
  displayAppendIcon?: boolean | undefined;
620
627
  noIcon?: boolean | undefined;
621
- customRules?: {
622
- type: string;
623
- options: RuleOptions;
624
- }[] | undefined;
625
- customWarningRules?: {
626
- type: string;
627
- options: RuleOptions;
628
- }[] | undefined;
628
+ customRules?: ValidationRule[] | undefined;
629
+ customWarningRules?: ValidationRule[] | undefined;
629
630
  displayPrependIcon?: boolean | undefined;
631
+ disableErrorHandling?: boolean | undefined;
632
+ showSuccessMessages?: boolean | undefined;
630
633
  }> & Readonly<{
631
634
  onBlur?: (() => any) | undefined;
632
635
  onFocus?: (() => any) | undefined;
633
636
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
634
637
  }>, {
635
- validateOnSubmit: () => boolean;
638
+ validateOnSubmit: () => Promise<boolean>;
636
639
  focus: () => void;
637
640
  blur: () => void;
638
641
  }, {}, {}, {}, {
639
642
  required: boolean;
640
643
  modelValue: string | null;
641
644
  label: string;
642
- isReadOnly: boolean;
643
- isDisabled: boolean;
645
+ readOnly: boolean;
646
+ disabled: boolean;
644
647
  placeholder: string;
645
648
  noIcon: boolean;
646
- customRules: {
647
- type: string;
648
- options: RuleOptions;
649
- }[];
650
- customWarningRules: {
651
- type: string;
652
- options: RuleOptions;
653
- }[];
649
+ customRules: ValidationRule[];
650
+ customWarningRules: ValidationRule[];
651
+ showSuccessMessages: boolean;
652
+ disableErrorHandling: boolean;
654
653
  format: string;
655
654
  dateFormatReturn: string;
656
655
  isOutlined: boolean;
@@ -666,7 +665,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
666
665
  M: {};
667
666
  Defaults: {};
668
667
  }, Readonly<{
669
- modelValue?: (string | object | string[] | null) | undefined;
668
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
670
669
  placeholder?: string | undefined;
671
670
  format?: string | undefined;
672
671
  dateFormatReturn?: string | undefined;
@@ -679,20 +678,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
679
678
  displayPrependIcon?: boolean | undefined;
680
679
  customRules?: {
681
680
  type: string;
682
- options: RuleOptions;
681
+ options: any;
683
682
  }[] | undefined;
684
683
  customWarningRules?: {
685
684
  type: string;
686
- options: RuleOptions;
685
+ options: any;
687
686
  }[] | undefined;
688
- isDisabled?: boolean | undefined;
687
+ disabled?: boolean | undefined;
689
688
  noIcon?: boolean | undefined;
690
689
  noCalendar?: boolean | undefined;
691
690
  isOutlined?: boolean | undefined;
692
- isReadOnly?: boolean | undefined;
691
+ readOnly?: boolean | undefined;
693
692
  width?: string | undefined;
693
+ disableErrorHandling?: boolean | undefined;
694
+ showSuccessMessages?: boolean | undefined;
695
+ bgColor?: string | undefined;
694
696
  }> & Readonly<{
695
- "onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
697
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
696
698
  onBlur?: (() => any) | undefined;
697
699
  onFocus?: (() => any) | undefined;
698
700
  onClosed?: (() => any) | undefined;
@@ -702,23 +704,28 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
702
704
  selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
703
705
  errorMessages: import('vue').Ref<string[], string[]>;
704
706
  handleClickOutside: (event: MouseEvent) => void;
705
- initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
707
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
708
+ updateAccessibility: () => Promise<void>;
709
+ openDatePicker: () => void;
706
710
  }, {}, {}, {}, {
707
711
  required: boolean;
708
- modelValue: string | object | string[] | null;
709
- isReadOnly: boolean;
710
- isDisabled: boolean;
712
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
713
+ readOnly: boolean;
714
+ bgColor: string;
715
+ disabled: boolean;
711
716
  placeholder: string;
712
717
  width: string;
713
718
  noIcon: boolean;
714
719
  customRules: {
715
720
  type: string;
716
- options: RuleOptions;
721
+ options: any;
717
722
  }[];
718
723
  customWarningRules: {
719
724
  type: string;
720
- options: RuleOptions;
725
+ options: any;
721
726
  }[];
727
+ showSuccessMessages: boolean;
728
+ disableErrorHandling: boolean;
722
729
  format: string;
723
730
  dateFormatReturn: string;
724
731
  isOutlined: boolean;
@@ -731,7 +738,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
731
738
  noCalendar: boolean;
732
739
  }> | null;
733
740
  toDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
734
- modelValue?: (string | object | string[] | null) | undefined;
741
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
735
742
  placeholder?: string | undefined;
736
743
  format?: string | undefined;
737
744
  dateFormatReturn?: string | undefined;
@@ -744,20 +751,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
744
751
  displayPrependIcon?: boolean | undefined;
745
752
  customRules?: {
746
753
  type: string;
747
- options: RuleOptions;
754
+ options: any;
748
755
  }[] | undefined;
749
756
  customWarningRules?: {
750
757
  type: string;
751
- options: RuleOptions;
758
+ options: any;
752
759
  }[] | undefined;
753
- isDisabled?: boolean | undefined;
760
+ disabled?: boolean | undefined;
754
761
  noIcon?: boolean | undefined;
755
762
  noCalendar?: boolean | undefined;
756
763
  isOutlined?: boolean | undefined;
757
- isReadOnly?: boolean | undefined;
764
+ readOnly?: boolean | undefined;
758
765
  width?: string | undefined;
766
+ disableErrorHandling?: boolean | undefined;
767
+ showSuccessMessages?: boolean | undefined;
768
+ bgColor?: string | undefined;
759
769
  }> & Readonly<{
760
- "onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
770
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
761
771
  onBlur?: (() => any) | undefined;
762
772
  onFocus?: (() => any) | undefined;
763
773
  onClosed?: (() => any) | undefined;
@@ -767,28 +777,33 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
767
777
  selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
768
778
  errorMessages: import('vue').Ref<string[], string[]>;
769
779
  handleClickOutside: (event: MouseEvent) => void;
770
- initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
780
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
781
+ updateAccessibility: () => Promise<void>;
782
+ openDatePicker: () => void;
771
783
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
772
- "update:modelValue": (value: string | [string, string] | null) => any;
784
+ "update:modelValue": (value: import('../../composables/date/useDateInitialization').DateValue) => any;
773
785
  blur: () => any;
774
786
  focus: () => any;
775
787
  closed: () => any;
776
788
  }, import('vue').PublicProps, {
777
789
  required: boolean;
778
- modelValue: string | object | string[] | null;
779
- isReadOnly: boolean;
780
- isDisabled: boolean;
790
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
791
+ readOnly: boolean;
792
+ bgColor: string;
793
+ disabled: boolean;
781
794
  placeholder: string;
782
795
  width: string;
783
796
  noIcon: boolean;
784
797
  customRules: {
785
798
  type: string;
786
- options: RuleOptions;
799
+ options: any;
787
800
  }[];
788
801
  customWarningRules: {
789
802
  type: string;
790
- options: RuleOptions;
803
+ options: any;
791
804
  }[];
805
+ showSuccessMessages: boolean;
806
+ disableErrorHandling: boolean;
792
807
  format: string;
793
808
  dateFormatReturn: string;
794
809
  isOutlined: boolean;
@@ -807,27 +822,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
807
822
  dateFormatReturn?: string | undefined;
808
823
  label?: string | undefined;
809
824
  required?: boolean | undefined;
810
- isDisabled?: boolean | undefined;
811
- isReadOnly?: boolean | undefined;
825
+ disabled?: boolean | undefined;
826
+ readOnly?: boolean | undefined;
812
827
  isOutlined?: boolean | undefined;
813
828
  displayIcon?: boolean | undefined;
814
829
  displayAppendIcon?: boolean | undefined;
815
830
  noIcon?: boolean | undefined;
816
- customRules?: {
817
- type: string;
818
- options: RuleOptions;
819
- }[] | undefined;
820
- customWarningRules?: {
821
- type: string;
822
- options: RuleOptions;
823
- }[] | undefined;
831
+ customRules?: ValidationRule[] | undefined;
832
+ customWarningRules?: ValidationRule[] | undefined;
824
833
  displayPrependIcon?: boolean | undefined;
834
+ disableErrorHandling?: boolean | undefined;
835
+ showSuccessMessages?: boolean | undefined;
825
836
  }> & Readonly<{
826
837
  onBlur?: (() => any) | undefined;
827
838
  onFocus?: (() => any) | undefined;
828
839
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
829
840
  }>, {
830
- validateOnSubmit: () => boolean;
841
+ validateOnSubmit: () => Promise<boolean>;
831
842
  focus: () => void;
832
843
  blur: () => void;
833
844
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
@@ -838,18 +849,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
838
849
  required: boolean;
839
850
  modelValue: string | null;
840
851
  label: string;
841
- isReadOnly: boolean;
842
- isDisabled: boolean;
852
+ readOnly: boolean;
853
+ disabled: boolean;
843
854
  placeholder: string;
844
855
  noIcon: boolean;
845
- customRules: {
846
- type: string;
847
- options: RuleOptions;
848
- }[];
849
- customWarningRules: {
850
- type: string;
851
- options: RuleOptions;
852
- }[];
856
+ customRules: ValidationRule[];
857
+ customWarningRules: ValidationRule[];
858
+ showSuccessMessages: boolean;
859
+ disableErrorHandling: boolean;
853
860
  format: string;
854
861
  dateFormatReturn: string;
855
862
  isOutlined: boolean;
@@ -878,7 +885,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
878
885
  readonly errorMessages?: string[] | null | undefined;
879
886
  readonly warningMessages?: string[] | null | undefined;
880
887
  readonly successMessages?: string[] | null | undefined;
881
- readonly isReadOnly?: boolean | undefined;
888
+ readonly readOnly?: boolean | undefined;
882
889
  readonly isActive?: boolean | undefined;
883
890
  readonly baseColor?: string | undefined;
884
891
  readonly bgColor?: string | undefined;
@@ -888,7 +895,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
888
895
  readonly density?: "default" | "comfortable" | "compact" | undefined;
889
896
  readonly direction?: "horizontal" | "vertical" | undefined;
890
897
  readonly isDirty?: boolean | undefined;
891
- readonly isDisabled?: boolean | undefined;
898
+ readonly disabled?: boolean | undefined;
892
899
  readonly isOnError?: boolean | undefined;
893
900
  readonly isFlat?: boolean | undefined;
894
901
  readonly isFocused?: boolean | undefined;
@@ -919,11 +926,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
919
926
  readonly width?: string | number | undefined;
920
927
  readonly displayAsterisk?: boolean | undefined;
921
928
  readonly noIcon?: boolean | undefined;
922
- readonly customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
923
- readonly customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
924
- readonly customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
929
+ readonly customRules?: ValidationRule[] | undefined;
930
+ readonly customWarningRules?: ValidationRule[] | undefined;
931
+ readonly customSuccessRules?: ValidationRule[] | undefined;
925
932
  readonly showSuccessMessages?: boolean | undefined;
926
933
  readonly isValidateOnBlur?: boolean | undefined;
934
+ readonly disableErrorHandling?: boolean | undefined;
927
935
  readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
928
936
  readonly onClear?: ((...args: any[]) => any) | undefined;
929
937
  readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
@@ -961,7 +969,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
961
969
  errorMessages?: string[] | null | undefined;
962
970
  warningMessages?: string[] | null | undefined;
963
971
  successMessages?: string[] | null | undefined;
964
- isReadOnly?: boolean | undefined;
972
+ readOnly?: boolean | undefined;
965
973
  isActive?: boolean | undefined;
966
974
  baseColor?: string | undefined;
967
975
  bgColor?: string | undefined;
@@ -971,7 +979,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
971
979
  density?: "default" | "comfortable" | "compact" | undefined;
972
980
  direction?: "horizontal" | "vertical" | undefined;
973
981
  isDirty?: boolean | undefined;
974
- isDisabled?: boolean | undefined;
982
+ disabled?: boolean | undefined;
975
983
  isOnError?: boolean | undefined;
976
984
  isFlat?: boolean | undefined;
977
985
  isFocused?: boolean | undefined;
@@ -1002,11 +1010,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1002
1010
  width?: string | number | undefined;
1003
1011
  displayAsterisk?: boolean | undefined;
1004
1012
  noIcon?: boolean | undefined;
1005
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1006
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1007
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1013
+ customRules?: ValidationRule[] | undefined;
1014
+ customWarningRules?: ValidationRule[] | undefined;
1015
+ customSuccessRules?: ValidationRule[] | undefined;
1008
1016
  showSuccessMessages?: boolean | undefined;
1009
1017
  isValidateOnBlur?: boolean | undefined;
1018
+ disableErrorHandling?: boolean | undefined;
1010
1019
  }> & Readonly<{
1011
1020
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1012
1021
  onClear?: ((...args: any[]) => any) | undefined;
@@ -1020,7 +1029,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1020
1029
  hasError: import('vue').ComputedRef<boolean>;
1021
1030
  hasWarning: import('vue').ComputedRef<boolean>;
1022
1031
  hasSuccess: import('vue').ComputedRef<boolean>;
1023
- validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1032
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1024
1033
  validateOnSubmit: () => Promise<boolean>;
1025
1034
  clearValidation: () => void;
1026
1035
  };
@@ -1047,7 +1056,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1047
1056
  errorMessages: string[] | null;
1048
1057
  warningMessages: string[] | null;
1049
1058
  successMessages: string[] | null;
1050
- isReadOnly: boolean;
1059
+ readOnly: boolean;
1051
1060
  isActive: boolean;
1052
1061
  baseColor: string;
1053
1062
  bgColor: string;
@@ -1057,7 +1066,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1057
1066
  density: "default" | "comfortable" | "compact";
1058
1067
  direction: "horizontal" | "vertical";
1059
1068
  isDirty: boolean;
1060
- isDisabled: boolean;
1069
+ disabled: boolean;
1061
1070
  isOnError: boolean;
1062
1071
  isFlat: boolean;
1063
1072
  isFocused: boolean;
@@ -1088,11 +1097,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1088
1097
  width: string | number;
1089
1098
  displayAsterisk: boolean;
1090
1099
  noIcon: boolean;
1091
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
1092
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
1093
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
1100
+ customRules: ValidationRule[];
1101
+ customWarningRules: ValidationRule[];
1102
+ customSuccessRules: ValidationRule[];
1094
1103
  showSuccessMessages: boolean;
1095
1104
  isValidateOnBlur: boolean;
1105
+ disableErrorHandling: boolean;
1096
1106
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1097
1107
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1098
1108
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -1129,7 +1139,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1129
1139
  errorMessages: string[] | null;
1130
1140
  warningMessages: string[] | null;
1131
1141
  successMessages: string[] | null;
1132
- isReadOnly: boolean;
1142
+ readOnly: boolean;
1133
1143
  isActive: boolean;
1134
1144
  baseColor: string;
1135
1145
  bgColor: string;
@@ -1139,7 +1149,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1139
1149
  density: "default" | "comfortable" | "compact";
1140
1150
  direction: "horizontal" | "vertical";
1141
1151
  isDirty: boolean;
1142
- isDisabled: boolean;
1152
+ disabled: boolean;
1143
1153
  isOnError: boolean;
1144
1154
  isFlat: boolean;
1145
1155
  isFocused: boolean;
@@ -1170,11 +1180,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1170
1180
  width: string | number;
1171
1181
  displayAsterisk: boolean;
1172
1182
  noIcon: boolean;
1173
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
1174
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
1175
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
1183
+ customRules: ValidationRule[];
1184
+ customWarningRules: ValidationRule[];
1185
+ customSuccessRules: ValidationRule[];
1176
1186
  showSuccessMessages: boolean;
1177
1187
  isValidateOnBlur: boolean;
1188
+ disableErrorHandling: boolean;
1178
1189
  }> & Omit<Readonly<{
1179
1190
  modelValue?: string | number | null | undefined;
1180
1191
  prependIcon?: import('../Customs/SyTextField/types').IconType;
@@ -1193,7 +1204,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1193
1204
  errorMessages?: string[] | null | undefined;
1194
1205
  warningMessages?: string[] | null | undefined;
1195
1206
  successMessages?: string[] | null | undefined;
1196
- isReadOnly?: boolean | undefined;
1207
+ readOnly?: boolean | undefined;
1197
1208
  isActive?: boolean | undefined;
1198
1209
  baseColor?: string | undefined;
1199
1210
  bgColor?: string | undefined;
@@ -1203,7 +1214,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1203
1214
  density?: "default" | "comfortable" | "compact" | undefined;
1204
1215
  direction?: "horizontal" | "vertical" | undefined;
1205
1216
  isDirty?: boolean | undefined;
1206
- isDisabled?: boolean | undefined;
1217
+ disabled?: boolean | undefined;
1207
1218
  isOnError?: boolean | undefined;
1208
1219
  isFlat?: boolean | undefined;
1209
1220
  isFocused?: boolean | undefined;
@@ -1234,17 +1245,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1234
1245
  width?: string | number | undefined;
1235
1246
  displayAsterisk?: boolean | undefined;
1236
1247
  noIcon?: boolean | undefined;
1237
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1238
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1239
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
1248
+ customRules?: ValidationRule[] | undefined;
1249
+ customWarningRules?: ValidationRule[] | undefined;
1250
+ customSuccessRules?: ValidationRule[] | undefined;
1240
1251
  showSuccessMessages?: boolean | undefined;
1241
1252
  isValidateOnBlur?: boolean | undefined;
1253
+ disableErrorHandling?: boolean | undefined;
1242
1254
  }> & Readonly<{
1243
1255
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1244
1256
  onClear?: ((...args: any[]) => any) | undefined;
1245
1257
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1246
1258
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1247
- }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "isReadOnly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "isDisabled" | "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")> & import('vue').ShallowUnwrapRef<{
1259
+ }>, "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<{
1248
1260
  validation: {
1249
1261
  errors: import('vue').Ref<string[], string[]>;
1250
1262
  warnings: import('vue').Ref<string[], string[]>;
@@ -1252,7 +1264,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1252
1264
  hasError: import('vue').ComputedRef<boolean>;
1253
1265
  hasWarning: import('vue').ComputedRef<boolean>;
1254
1266
  hasSuccess: import('vue').ComputedRef<boolean>;
1255
- validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1267
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1256
1268
  validateOnSubmit: () => Promise<boolean>;
1257
1269
  clearValidation: () => void;
1258
1270
  };
@@ -1281,45 +1293,37 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1281
1293
  dateFormatReturn?: string | undefined;
1282
1294
  label?: string | undefined;
1283
1295
  required?: boolean | undefined;
1284
- isDisabled?: boolean | undefined;
1285
- isReadOnly?: boolean | undefined;
1296
+ disabled?: boolean | undefined;
1297
+ readOnly?: boolean | undefined;
1286
1298
  isOutlined?: boolean | undefined;
1287
1299
  displayIcon?: boolean | undefined;
1288
1300
  displayAppendIcon?: boolean | undefined;
1289
1301
  noIcon?: boolean | undefined;
1290
- customRules?: {
1291
- type: string;
1292
- options: RuleOptions;
1293
- }[] | undefined;
1294
- customWarningRules?: {
1295
- type: string;
1296
- options: RuleOptions;
1297
- }[] | undefined;
1302
+ customRules?: ValidationRule[] | undefined;
1303
+ customWarningRules?: ValidationRule[] | undefined;
1298
1304
  displayPrependIcon?: boolean | undefined;
1305
+ disableErrorHandling?: boolean | undefined;
1306
+ showSuccessMessages?: boolean | undefined;
1299
1307
  }> & Readonly<{
1300
1308
  onBlur?: (() => any) | undefined;
1301
1309
  onFocus?: (() => any) | undefined;
1302
1310
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
1303
1311
  }>, {
1304
- validateOnSubmit: () => boolean;
1312
+ validateOnSubmit: () => Promise<boolean>;
1305
1313
  focus: () => void;
1306
1314
  blur: () => void;
1307
1315
  }, {}, {}, {}, {
1308
1316
  required: boolean;
1309
1317
  modelValue: string | null;
1310
1318
  label: string;
1311
- isReadOnly: boolean;
1312
- isDisabled: boolean;
1319
+ readOnly: boolean;
1320
+ disabled: boolean;
1313
1321
  placeholder: string;
1314
1322
  noIcon: boolean;
1315
- customRules: {
1316
- type: string;
1317
- options: RuleOptions;
1318
- }[];
1319
- customWarningRules: {
1320
- type: string;
1321
- options: RuleOptions;
1322
- }[];
1323
+ customRules: ValidationRule[];
1324
+ customWarningRules: ValidationRule[];
1325
+ showSuccessMessages: boolean;
1326
+ disableErrorHandling: boolean;
1323
1327
  format: string;
1324
1328
  dateFormatReturn: string;
1325
1329
  isOutlined: boolean;
@@ -1335,7 +1339,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1335
1339
  M: {};
1336
1340
  Defaults: {};
1337
1341
  }, Readonly<{
1338
- modelValue?: (string | object | string[] | null) | undefined;
1342
+ modelValue?: import('../../composables/date/useDateInitialization').DateInput | undefined;
1339
1343
  placeholder?: string | undefined;
1340
1344
  format?: string | undefined;
1341
1345
  dateFormatReturn?: string | undefined;
@@ -1348,20 +1352,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1348
1352
  displayPrependIcon?: boolean | undefined;
1349
1353
  customRules?: {
1350
1354
  type: string;
1351
- options: RuleOptions;
1355
+ options: any;
1352
1356
  }[] | undefined;
1353
1357
  customWarningRules?: {
1354
1358
  type: string;
1355
- options: RuleOptions;
1359
+ options: any;
1356
1360
  }[] | undefined;
1357
- isDisabled?: boolean | undefined;
1361
+ disabled?: boolean | undefined;
1358
1362
  noIcon?: boolean | undefined;
1359
1363
  noCalendar?: boolean | undefined;
1360
1364
  isOutlined?: boolean | undefined;
1361
- isReadOnly?: boolean | undefined;
1365
+ readOnly?: boolean | undefined;
1362
1366
  width?: string | undefined;
1367
+ disableErrorHandling?: boolean | undefined;
1368
+ showSuccessMessages?: boolean | undefined;
1369
+ bgColor?: string | undefined;
1363
1370
  }> & Readonly<{
1364
- "onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
1371
+ "onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitialization').DateValue) => any) | undefined;
1365
1372
  onBlur?: (() => any) | undefined;
1366
1373
  onFocus?: (() => any) | undefined;
1367
1374
  onClosed?: (() => any) | undefined;
@@ -1371,23 +1378,28 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1371
1378
  selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
1372
1379
  errorMessages: import('vue').Ref<string[], string[]>;
1373
1380
  handleClickOutside: (event: MouseEvent) => void;
1374
- initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
1381
+ initializeSelectedDates: (modelValue: import('../../composables/date/useDateInitialization').DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
1382
+ updateAccessibility: () => Promise<void>;
1383
+ openDatePicker: () => void;
1375
1384
  }, {}, {}, {}, {
1376
1385
  required: boolean;
1377
- modelValue: string | object | string[] | null;
1378
- isReadOnly: boolean;
1379
- isDisabled: boolean;
1386
+ modelValue: import('../../composables/date/useDateInitialization').DateInput;
1387
+ readOnly: boolean;
1388
+ bgColor: string;
1389
+ disabled: boolean;
1380
1390
  placeholder: string;
1381
1391
  width: string;
1382
1392
  noIcon: boolean;
1383
1393
  customRules: {
1384
1394
  type: string;
1385
- options: RuleOptions;
1395
+ options: any;
1386
1396
  }[];
1387
1397
  customWarningRules: {
1388
1398
  type: string;
1389
- options: RuleOptions;
1399
+ options: any;
1390
1400
  }[];
1401
+ showSuccessMessages: boolean;
1402
+ disableErrorHandling: boolean;
1391
1403
  format: string;
1392
1404
  dateFormatReturn: string;
1393
1405
  isOutlined: boolean;