@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
@@ -18,7 +18,7 @@ type __VLS_Props = {
18
18
  errorMessages?: string[] | null;
19
19
  warningMessages?: string[] | null;
20
20
  successMessages?: string[] | null;
21
- isReadOnly?: boolean;
21
+ readOnly?: boolean;
22
22
  isActive?: boolean;
23
23
  baseColor?: string;
24
24
  bgColor?: string;
@@ -28,7 +28,7 @@ type __VLS_Props = {
28
28
  density?: 'default' | 'comfortable' | 'compact';
29
29
  direction?: 'horizontal' | 'vertical';
30
30
  isDirty?: boolean;
31
- isDisabled?: boolean;
31
+ disabled?: boolean;
32
32
  isOnError?: boolean;
33
33
  isFlat?: boolean;
34
34
  isFocused?: boolean;
@@ -64,6 +64,7 @@ type __VLS_Props = {
64
64
  customSuccessRules?: ValidationRule[];
65
65
  showSuccessMessages?: boolean;
66
66
  isValidateOnBlur?: boolean;
67
+ disableErrorHandling?: boolean;
67
68
  };
68
69
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {
69
70
  validation: {
@@ -105,7 +106,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
105
106
  errorMessages: string[] | null;
106
107
  warningMessages: string[] | null;
107
108
  successMessages: string[] | null;
108
- isReadOnly: boolean;
109
+ readOnly: boolean;
109
110
  isActive: boolean;
110
111
  baseColor: string;
111
112
  bgColor: string;
@@ -115,7 +116,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
115
116
  density: "default" | "comfortable" | "compact";
116
117
  direction: "horizontal" | "vertical";
117
118
  isDirty: boolean;
118
- isDisabled: boolean;
119
+ disabled: boolean;
119
120
  isOnError: boolean;
120
121
  isFlat: boolean;
121
122
  isFocused: boolean;
@@ -151,6 +152,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
151
152
  customSuccessRules: ValidationRule[];
152
153
  showSuccessMessages: boolean;
153
154
  isValidateOnBlur: boolean;
155
+ disableErrorHandling: boolean;
154
156
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
155
157
  prepend?(_: {}): any;
156
158
  append?(_: {}): any;
@@ -1,7 +1,5 @@
1
1
  import { nextTick } from 'vue';
2
- import { RuleOptions } from '../../composables/rules/useFieldValidation';
3
- type DateValue = string | [string, string] | null;
4
- type DateInput = string | string[] | null | object;
2
+ import { DateValue, DateInput } from '../../composables/date/useDateInitialization';
5
3
  type __VLS_Props = {
6
4
  modelValue?: DateInput;
7
5
  placeholder?: string;
@@ -16,27 +14,31 @@ type __VLS_Props = {
16
14
  displayPrependIcon?: boolean;
17
15
  customRules?: {
18
16
  type: string;
19
- options: RuleOptions;
17
+ options: any;
20
18
  }[];
21
19
  customWarningRules?: {
22
20
  type: string;
23
- options: RuleOptions;
21
+ options: any;
24
22
  }[];
25
- isDisabled?: boolean;
23
+ disabled?: boolean;
26
24
  noIcon?: boolean;
27
25
  noCalendar?: boolean;
28
26
  isOutlined?: boolean;
29
- isReadOnly?: boolean;
27
+ readOnly?: boolean;
30
28
  width?: string;
29
+ disableErrorHandling?: boolean;
30
+ showSuccessMessages?: boolean;
31
+ bgColor?: string;
31
32
  };
32
- declare function initializeSelectedDates(modelValue: DateInput | null): Date | Date[] | null;
33
33
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
34
34
  validateOnSubmit: () => any;
35
35
  isDatePickerVisible: import('vue').Ref<boolean, boolean>;
36
36
  selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
37
37
  errorMessages: import('vue').Ref<string[], string[]>;
38
38
  handleClickOutside: (event: MouseEvent) => void;
39
- initializeSelectedDates: typeof initializeSelectedDates;
39
+ initializeSelectedDates: (modelValue: DateInput, displayFormat: string, returnFormat?: string) => Date | Date[] | null;
40
+ updateAccessibility: () => Promise<void>;
41
+ openDatePicker: () => void;
40
42
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
41
43
  "update:modelValue": (value: DateValue) => any;
42
44
  blur: () => any;
@@ -50,19 +52,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
50
52
  }>, {
51
53
  required: boolean;
52
54
  modelValue: DateInput;
53
- isReadOnly: boolean;
54
- isDisabled: boolean;
55
+ readOnly: boolean;
56
+ bgColor: string;
57
+ disabled: boolean;
55
58
  placeholder: string;
56
59
  width: string;
57
60
  noIcon: boolean;
58
61
  customRules: {
59
62
  type: string;
60
- options: RuleOptions;
63
+ options: any;
61
64
  }[];
62
65
  customWarningRules: {
63
66
  type: string;
64
- options: RuleOptions;
67
+ options: any;
65
68
  }[];
69
+ showSuccessMessages: boolean;
70
+ disableErrorHandling: boolean;
66
71
  format: string;
67
72
  dateFormatReturn: string;
68
73
  isOutlined: boolean;
@@ -81,27 +86,23 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
81
86
  dateFormatReturn?: string | undefined;
82
87
  label?: string | undefined;
83
88
  required?: boolean | undefined;
84
- isDisabled?: boolean | undefined;
85
- isReadOnly?: boolean | undefined;
89
+ disabled?: boolean | undefined;
90
+ readOnly?: boolean | undefined;
86
91
  isOutlined?: boolean | undefined;
87
92
  displayIcon?: boolean | undefined;
88
93
  displayAppendIcon?: boolean | undefined;
89
94
  noIcon?: boolean | undefined;
90
- customRules?: {
91
- type: string;
92
- options: RuleOptions;
93
- }[] | undefined;
94
- customWarningRules?: {
95
- type: string;
96
- options: RuleOptions;
97
- }[] | undefined;
95
+ customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
96
+ customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
98
97
  displayPrependIcon?: boolean | undefined;
98
+ disableErrorHandling?: boolean | undefined;
99
+ showSuccessMessages?: boolean | undefined;
99
100
  }> & Readonly<{
100
101
  onBlur?: (() => any) | undefined;
101
102
  onFocus?: (() => any) | undefined;
102
103
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
103
104
  }>, {
104
- validateOnSubmit: () => boolean;
105
+ validateOnSubmit: () => Promise<boolean>;
105
106
  focus: () => void;
106
107
  blur: () => void;
107
108
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
@@ -112,18 +113,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
112
113
  required: boolean;
113
114
  modelValue: string | null;
114
115
  label: string;
115
- isReadOnly: boolean;
116
- isDisabled: boolean;
116
+ readOnly: boolean;
117
+ disabled: boolean;
117
118
  placeholder: string;
118
119
  noIcon: boolean;
119
- customRules: {
120
- type: string;
121
- options: RuleOptions;
122
- }[];
123
- customWarningRules: {
124
- type: string;
125
- options: RuleOptions;
126
- }[];
120
+ customRules: import('../../composables/validation/useValidation').ValidationRule[];
121
+ customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
122
+ showSuccessMessages: boolean;
123
+ disableErrorHandling: boolean;
127
124
  format: string;
128
125
  dateFormatReturn: string;
129
126
  isOutlined: boolean;
@@ -152,7 +149,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
152
149
  readonly errorMessages?: string[] | null | undefined;
153
150
  readonly warningMessages?: string[] | null | undefined;
154
151
  readonly successMessages?: string[] | null | undefined;
155
- readonly isReadOnly?: boolean | undefined;
152
+ readonly readOnly?: boolean | undefined;
156
153
  readonly isActive?: boolean | undefined;
157
154
  readonly baseColor?: string | undefined;
158
155
  readonly bgColor?: string | undefined;
@@ -162,7 +159,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
162
159
  readonly density?: "default" | "comfortable" | "compact" | undefined;
163
160
  readonly direction?: "horizontal" | "vertical" | undefined;
164
161
  readonly isDirty?: boolean | undefined;
165
- readonly isDisabled?: boolean | undefined;
162
+ readonly disabled?: boolean | undefined;
166
163
  readonly isOnError?: boolean | undefined;
167
164
  readonly isFlat?: boolean | undefined;
168
165
  readonly isFocused?: boolean | undefined;
@@ -198,6 +195,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
198
195
  readonly customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
199
196
  readonly showSuccessMessages?: boolean | undefined;
200
197
  readonly isValidateOnBlur?: boolean | undefined;
198
+ readonly disableErrorHandling?: boolean | undefined;
201
199
  readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
202
200
  readonly onClear?: ((...args: any[]) => any) | undefined;
203
201
  readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
@@ -235,7 +233,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
235
233
  errorMessages?: string[] | null | undefined;
236
234
  warningMessages?: string[] | null | undefined;
237
235
  successMessages?: string[] | null | undefined;
238
- isReadOnly?: boolean | undefined;
236
+ readOnly?: boolean | undefined;
239
237
  isActive?: boolean | undefined;
240
238
  baseColor?: string | undefined;
241
239
  bgColor?: string | undefined;
@@ -245,7 +243,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
245
243
  density?: "default" | "comfortable" | "compact" | undefined;
246
244
  direction?: "horizontal" | "vertical" | undefined;
247
245
  isDirty?: boolean | undefined;
248
- isDisabled?: boolean | undefined;
246
+ disabled?: boolean | undefined;
249
247
  isOnError?: boolean | undefined;
250
248
  isFlat?: boolean | undefined;
251
249
  isFocused?: boolean | undefined;
@@ -281,6 +279,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
281
279
  customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
282
280
  showSuccessMessages?: boolean | undefined;
283
281
  isValidateOnBlur?: boolean | undefined;
282
+ disableErrorHandling?: boolean | undefined;
284
283
  }> & Readonly<{
285
284
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
286
285
  onClear?: ((...args: any[]) => any) | undefined;
@@ -321,7 +320,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
321
320
  errorMessages: string[] | null;
322
321
  warningMessages: string[] | null;
323
322
  successMessages: string[] | null;
324
- isReadOnly: boolean;
323
+ readOnly: boolean;
325
324
  isActive: boolean;
326
325
  baseColor: string;
327
326
  bgColor: string;
@@ -331,7 +330,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
331
330
  density: "default" | "comfortable" | "compact";
332
331
  direction: "horizontal" | "vertical";
333
332
  isDirty: boolean;
334
- isDisabled: boolean;
333
+ disabled: boolean;
335
334
  isOnError: boolean;
336
335
  isFlat: boolean;
337
336
  isFocused: boolean;
@@ -367,6 +366,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
367
366
  customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
368
367
  showSuccessMessages: boolean;
369
368
  isValidateOnBlur: boolean;
369
+ disableErrorHandling: boolean;
370
370
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
371
371
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
372
372
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -403,7 +403,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
403
403
  errorMessages: string[] | null;
404
404
  warningMessages: string[] | null;
405
405
  successMessages: string[] | null;
406
- isReadOnly: boolean;
406
+ readOnly: boolean;
407
407
  isActive: boolean;
408
408
  baseColor: string;
409
409
  bgColor: string;
@@ -413,7 +413,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
413
413
  density: "default" | "comfortable" | "compact";
414
414
  direction: "horizontal" | "vertical";
415
415
  isDirty: boolean;
416
- isDisabled: boolean;
416
+ disabled: boolean;
417
417
  isOnError: boolean;
418
418
  isFlat: boolean;
419
419
  isFocused: boolean;
@@ -449,6 +449,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
449
449
  customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
450
450
  showSuccessMessages: boolean;
451
451
  isValidateOnBlur: boolean;
452
+ disableErrorHandling: boolean;
452
453
  }> & Omit<Readonly<{
453
454
  modelValue?: string | number | null | undefined;
454
455
  prependIcon?: import('../Customs/SyTextField/types').IconType;
@@ -467,7 +468,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
467
468
  errorMessages?: string[] | null | undefined;
468
469
  warningMessages?: string[] | null | undefined;
469
470
  successMessages?: string[] | null | undefined;
470
- isReadOnly?: boolean | undefined;
471
+ readOnly?: boolean | undefined;
471
472
  isActive?: boolean | undefined;
472
473
  baseColor?: string | undefined;
473
474
  bgColor?: string | undefined;
@@ -477,7 +478,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
477
478
  density?: "default" | "comfortable" | "compact" | undefined;
478
479
  direction?: "horizontal" | "vertical" | undefined;
479
480
  isDirty?: boolean | undefined;
480
- isDisabled?: boolean | undefined;
481
+ disabled?: boolean | undefined;
481
482
  isOnError?: boolean | undefined;
482
483
  isFlat?: boolean | undefined;
483
484
  isFocused?: boolean | undefined;
@@ -513,12 +514,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
513
514
  customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
514
515
  showSuccessMessages?: boolean | undefined;
515
516
  isValidateOnBlur?: boolean | undefined;
517
+ disableErrorHandling?: boolean | undefined;
516
518
  }> & Readonly<{
517
519
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
518
520
  onClear?: ((...args: any[]) => any) | undefined;
519
521
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
520
522
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
521
- }>, "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<{
523
+ }>, "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<{
522
524
  validation: {
523
525
  errors: import('vue').Ref<string[], string[]>;
524
526
  warnings: import('vue').Ref<string[], string[]>;
@@ -555,45 +557,37 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
555
557
  dateFormatReturn?: string | undefined;
556
558
  label?: string | undefined;
557
559
  required?: boolean | undefined;
558
- isDisabled?: boolean | undefined;
559
- isReadOnly?: boolean | undefined;
560
+ disabled?: boolean | undefined;
561
+ readOnly?: boolean | undefined;
560
562
  isOutlined?: boolean | undefined;
561
563
  displayIcon?: boolean | undefined;
562
564
  displayAppendIcon?: boolean | undefined;
563
565
  noIcon?: boolean | undefined;
564
- customRules?: {
565
- type: string;
566
- options: RuleOptions;
567
- }[] | undefined;
568
- customWarningRules?: {
569
- type: string;
570
- options: RuleOptions;
571
- }[] | undefined;
566
+ customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
567
+ customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
572
568
  displayPrependIcon?: boolean | undefined;
569
+ disableErrorHandling?: boolean | undefined;
570
+ showSuccessMessages?: boolean | undefined;
573
571
  }> & Readonly<{
574
572
  onBlur?: (() => any) | undefined;
575
573
  onFocus?: (() => any) | undefined;
576
574
  "onUpdate:model-value"?: ((value: string | null) => any) | undefined;
577
575
  }>, {
578
- validateOnSubmit: () => boolean;
576
+ validateOnSubmit: () => Promise<boolean>;
579
577
  focus: () => void;
580
578
  blur: () => void;
581
579
  }, {}, {}, {}, {
582
580
  required: boolean;
583
581
  modelValue: string | null;
584
582
  label: string;
585
- isReadOnly: boolean;
586
- isDisabled: boolean;
583
+ readOnly: boolean;
584
+ disabled: boolean;
587
585
  placeholder: string;
588
586
  noIcon: boolean;
589
- customRules: {
590
- type: string;
591
- options: RuleOptions;
592
- }[];
593
- customWarningRules: {
594
- type: string;
595
- options: RuleOptions;
596
- }[];
587
+ customRules: import('../../composables/validation/useValidation').ValidationRule[];
588
+ customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
589
+ showSuccessMessages: boolean;
590
+ disableErrorHandling: boolean;
597
591
  format: string;
598
592
  dateFormatReturn: string;
599
593
  isOutlined: boolean;
@@ -1,5 +1,5 @@
1
1
  import { nextTick } from 'vue';
2
- import { RuleOptions } from '../../composables/rules/useFieldValidation';
2
+ import { ValidationRule } from '../../composables/validation/useValidation';
3
3
  type DateValue = string | null;
4
4
  type __VLS_Props = {
5
5
  modelValue?: DateValue;
@@ -8,24 +8,20 @@ type __VLS_Props = {
8
8
  dateFormatReturn?: string;
9
9
  label?: string;
10
10
  required?: boolean;
11
- isDisabled?: boolean;
12
- isReadOnly?: boolean;
11
+ disabled?: boolean;
12
+ readOnly?: boolean;
13
13
  isOutlined?: boolean;
14
14
  displayIcon?: boolean;
15
15
  displayAppendIcon?: boolean;
16
16
  noIcon?: boolean;
17
- customRules?: {
18
- type: string;
19
- options: RuleOptions;
20
- }[];
21
- customWarningRules?: {
22
- type: string;
23
- options: RuleOptions;
24
- }[];
17
+ customRules?: ValidationRule[];
18
+ customWarningRules?: ValidationRule[];
25
19
  displayPrependIcon?: boolean;
20
+ disableErrorHandling?: boolean;
21
+ showSuccessMessages?: boolean;
26
22
  };
27
23
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
28
- validateOnSubmit: () => boolean;
24
+ validateOnSubmit: () => Promise<boolean>;
29
25
  focus: () => void;
30
26
  blur: () => void;
31
27
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
@@ -40,18 +36,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
40
36
  required: boolean;
41
37
  modelValue: DateValue;
42
38
  label: string;
43
- isReadOnly: boolean;
44
- isDisabled: boolean;
39
+ readOnly: boolean;
40
+ disabled: boolean;
45
41
  placeholder: string;
46
42
  noIcon: boolean;
47
- customRules: {
48
- type: string;
49
- options: RuleOptions;
50
- }[];
51
- customWarningRules: {
52
- type: string;
53
- options: RuleOptions;
54
- }[];
43
+ customRules: ValidationRule[];
44
+ customWarningRules: ValidationRule[];
45
+ showSuccessMessages: boolean;
46
+ disableErrorHandling: boolean;
55
47
  format: string;
56
48
  dateFormatReturn: string;
57
49
  isOutlined: boolean;
@@ -80,7 +72,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
80
72
  readonly errorMessages?: string[] | null | undefined;
81
73
  readonly warningMessages?: string[] | null | undefined;
82
74
  readonly successMessages?: string[] | null | undefined;
83
- readonly isReadOnly?: boolean | undefined;
75
+ readonly readOnly?: boolean | undefined;
84
76
  readonly isActive?: boolean | undefined;
85
77
  readonly baseColor?: string | undefined;
86
78
  readonly bgColor?: string | undefined;
@@ -90,7 +82,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
90
82
  readonly density?: "default" | "comfortable" | "compact" | undefined;
91
83
  readonly direction?: "horizontal" | "vertical" | undefined;
92
84
  readonly isDirty?: boolean | undefined;
93
- readonly isDisabled?: boolean | undefined;
85
+ readonly disabled?: boolean | undefined;
94
86
  readonly isOnError?: boolean | undefined;
95
87
  readonly isFlat?: boolean | undefined;
96
88
  readonly isFocused?: boolean | undefined;
@@ -121,11 +113,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
121
113
  readonly width?: string | number | undefined;
122
114
  readonly displayAsterisk?: boolean | undefined;
123
115
  readonly noIcon?: boolean | undefined;
124
- readonly customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
125
- readonly customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
126
- readonly customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
116
+ readonly customRules?: ValidationRule[] | undefined;
117
+ readonly customWarningRules?: ValidationRule[] | undefined;
118
+ readonly customSuccessRules?: ValidationRule[] | undefined;
127
119
  readonly showSuccessMessages?: boolean | undefined;
128
120
  readonly isValidateOnBlur?: boolean | undefined;
121
+ readonly disableErrorHandling?: boolean | undefined;
129
122
  readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
130
123
  readonly onClear?: ((...args: any[]) => any) | undefined;
131
124
  readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
@@ -163,7 +156,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
163
156
  errorMessages?: string[] | null | undefined;
164
157
  warningMessages?: string[] | null | undefined;
165
158
  successMessages?: string[] | null | undefined;
166
- isReadOnly?: boolean | undefined;
159
+ readOnly?: boolean | undefined;
167
160
  isActive?: boolean | undefined;
168
161
  baseColor?: string | undefined;
169
162
  bgColor?: string | undefined;
@@ -173,7 +166,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
173
166
  density?: "default" | "comfortable" | "compact" | undefined;
174
167
  direction?: "horizontal" | "vertical" | undefined;
175
168
  isDirty?: boolean | undefined;
176
- isDisabled?: boolean | undefined;
169
+ disabled?: boolean | undefined;
177
170
  isOnError?: boolean | undefined;
178
171
  isFlat?: boolean | undefined;
179
172
  isFocused?: boolean | undefined;
@@ -204,11 +197,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
204
197
  width?: string | number | undefined;
205
198
  displayAsterisk?: boolean | undefined;
206
199
  noIcon?: boolean | undefined;
207
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
208
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
209
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
200
+ customRules?: ValidationRule[] | undefined;
201
+ customWarningRules?: ValidationRule[] | undefined;
202
+ customSuccessRules?: ValidationRule[] | undefined;
210
203
  showSuccessMessages?: boolean | undefined;
211
204
  isValidateOnBlur?: boolean | undefined;
205
+ disableErrorHandling?: boolean | undefined;
212
206
  }> & Readonly<{
213
207
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
214
208
  onClear?: ((...args: any[]) => any) | undefined;
@@ -222,7 +216,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
222
216
  hasError: import('vue').ComputedRef<boolean>;
223
217
  hasWarning: import('vue').ComputedRef<boolean>;
224
218
  hasSuccess: import('vue').ComputedRef<boolean>;
225
- 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;
219
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
226
220
  validateOnSubmit: () => Promise<boolean>;
227
221
  clearValidation: () => void;
228
222
  };
@@ -249,7 +243,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
249
243
  errorMessages: string[] | null;
250
244
  warningMessages: string[] | null;
251
245
  successMessages: string[] | null;
252
- isReadOnly: boolean;
246
+ readOnly: boolean;
253
247
  isActive: boolean;
254
248
  baseColor: string;
255
249
  bgColor: string;
@@ -259,7 +253,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
259
253
  density: "default" | "comfortable" | "compact";
260
254
  direction: "horizontal" | "vertical";
261
255
  isDirty: boolean;
262
- isDisabled: boolean;
256
+ disabled: boolean;
263
257
  isOnError: boolean;
264
258
  isFlat: boolean;
265
259
  isFocused: boolean;
@@ -290,11 +284,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
290
284
  width: string | number;
291
285
  displayAsterisk: boolean;
292
286
  noIcon: boolean;
293
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
294
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
295
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
287
+ customRules: ValidationRule[];
288
+ customWarningRules: ValidationRule[];
289
+ customSuccessRules: ValidationRule[];
296
290
  showSuccessMessages: boolean;
297
291
  isValidateOnBlur: boolean;
292
+ disableErrorHandling: boolean;
298
293
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
299
294
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
300
295
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -331,7 +326,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
331
326
  errorMessages: string[] | null;
332
327
  warningMessages: string[] | null;
333
328
  successMessages: string[] | null;
334
- isReadOnly: boolean;
329
+ readOnly: boolean;
335
330
  isActive: boolean;
336
331
  baseColor: string;
337
332
  bgColor: string;
@@ -341,7 +336,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
341
336
  density: "default" | "comfortable" | "compact";
342
337
  direction: "horizontal" | "vertical";
343
338
  isDirty: boolean;
344
- isDisabled: boolean;
339
+ disabled: boolean;
345
340
  isOnError: boolean;
346
341
  isFlat: boolean;
347
342
  isFocused: boolean;
@@ -372,11 +367,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
372
367
  width: string | number;
373
368
  displayAsterisk: boolean;
374
369
  noIcon: boolean;
375
- customRules: import('../../composables/validation/useValidation').ValidationRule[];
376
- customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
377
- customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
370
+ customRules: ValidationRule[];
371
+ customWarningRules: ValidationRule[];
372
+ customSuccessRules: ValidationRule[];
378
373
  showSuccessMessages: boolean;
379
374
  isValidateOnBlur: boolean;
375
+ disableErrorHandling: boolean;
380
376
  }> & Omit<Readonly<{
381
377
  modelValue?: string | number | null | undefined;
382
378
  prependIcon?: import('../Customs/SyTextField/types').IconType;
@@ -395,7 +391,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
395
391
  errorMessages?: string[] | null | undefined;
396
392
  warningMessages?: string[] | null | undefined;
397
393
  successMessages?: string[] | null | undefined;
398
- isReadOnly?: boolean | undefined;
394
+ readOnly?: boolean | undefined;
399
395
  isActive?: boolean | undefined;
400
396
  baseColor?: string | undefined;
401
397
  bgColor?: string | undefined;
@@ -405,7 +401,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
405
401
  density?: "default" | "comfortable" | "compact" | undefined;
406
402
  direction?: "horizontal" | "vertical" | undefined;
407
403
  isDirty?: boolean | undefined;
408
- isDisabled?: boolean | undefined;
404
+ disabled?: boolean | undefined;
409
405
  isOnError?: boolean | undefined;
410
406
  isFlat?: boolean | undefined;
411
407
  isFocused?: boolean | undefined;
@@ -436,17 +432,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
436
432
  width?: string | number | undefined;
437
433
  displayAsterisk?: boolean | undefined;
438
434
  noIcon?: boolean | undefined;
439
- customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
440
- customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
441
- customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
435
+ customRules?: ValidationRule[] | undefined;
436
+ customWarningRules?: ValidationRule[] | undefined;
437
+ customSuccessRules?: ValidationRule[] | undefined;
442
438
  showSuccessMessages?: boolean | undefined;
443
439
  isValidateOnBlur?: boolean | undefined;
440
+ disableErrorHandling?: boolean | undefined;
444
441
  }> & Readonly<{
445
442
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
446
443
  onClear?: ((...args: any[]) => any) | undefined;
447
444
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
448
445
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
449
- }>, "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<{
446
+ }>, "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<{
450
447
  validation: {
451
448
  errors: import('vue').Ref<string[], string[]>;
452
449
  warnings: import('vue').Ref<string[], string[]>;
@@ -454,7 +451,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
454
451
  hasError: import('vue').ComputedRef<boolean>;
455
452
  hasWarning: import('vue').ComputedRef<boolean>;
456
453
  hasSuccess: import('vue').ComputedRef<boolean>;
457
- 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;
454
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
458
455
  validateOnSubmit: () => Promise<boolean>;
459
456
  clearValidation: () => void;
460
457
  };