@cnamts/synapse 0.0.13-alpha → 0.0.15-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (654) hide show
  1. package/dist/{src/components → components}/BackBtn/BackBtn.d.ts +4 -1
  2. package/dist/components/CookiesSelection/CookiesSelection.d.ts +611 -0
  3. package/dist/{src/components → components}/CopyBtn/config.d.ts +1 -0
  4. package/dist/{src/components → components}/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
  5. package/dist/components/Customs/SySelect/SySelect.d.ts +1546 -0
  6. package/dist/components/Customs/SySelect/locales.d.ts +3 -0
  7. package/dist/{src/components → components}/Customs/SyTextField/SyTextField.d.ts +4 -4
  8. package/dist/components/DatePicker/DatePicker.d.ts +1315 -0
  9. package/dist/{src/components → components}/DatePicker/DateTextInput.d.ts +15 -15
  10. package/dist/components/DialogBox/DialogBox.d.ts +274 -0
  11. package/dist/{src/components → components}/DialogBox/config.d.ts +1 -1
  12. package/dist/{src/components → components}/DownloadBtn/DownloadBtn.d.ts +9 -0
  13. package/dist/components/DownloadBtn/locales.d.ts +3 -0
  14. package/dist/{src/components → components}/FilterInline/FilterInline.d.ts +2 -3
  15. package/dist/{src/components → components}/FilterSideBar/FilterSideBar.d.ts +1 -1
  16. package/dist/{src/components → components}/FranceConnectBtn/locales.d.ts +1 -0
  17. package/dist/{src/components → components}/HeaderToolbar/HeaderToolbar.d.ts +5 -1
  18. package/dist/components/LangBtn/LangBtn.d.ts +497 -0
  19. package/dist/{src/components → components}/LangBtn/config.d.ts +1 -3
  20. package/dist/{src/components → components}/NirField/NirField.d.ts +28 -29
  21. package/dist/{src/components → components}/PasswordField/PasswordField.d.ts +4 -4
  22. package/dist/components/PeriodField/PeriodField.d.ts +2847 -0
  23. package/dist/{src/components → components}/PhoneField/PhoneField.d.ts +27 -0
  24. package/dist/{src/components → components}/SkipLink/SkipLink.d.ts +3 -2
  25. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +783 -0
  26. package/dist/{src/components → components}/UserMenuBtn/UserMenuBtn.d.ts +2 -0
  27. package/dist/{src/components → components}/index.d.ts +2 -0
  28. package/dist/{src/composables → composables}/date/useDatePickerAccessibility.d.ts +2 -1
  29. package/dist/design-system-v3.js +4500 -4233
  30. package/dist/design-system-v3.umd.cjs +1 -1
  31. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamColors.d.ts +5 -10
  32. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamLightTheme.d.ts +0 -2
  33. package/dist/{src/designTokens → designTokens}/tokens/pa/paColors.d.ts +5 -10
  34. package/dist/{src/designTokens → designTokens}/tokens/pa/paLightTheme.d.ts +4 -5
  35. package/dist/style.css +1 -1
  36. package/dist/{src/vuetifyConfig.d.ts → vuetifyConfig.d.ts} +2 -0
  37. package/package.json +9 -8
  38. package/src/components/BackBtn/Accessibilite.stories.ts +4 -0
  39. package/src/components/BackBtn/BackBtn.stories.ts +34 -6
  40. package/src/components/BackBtn/BackBtn.vue +18 -8
  41. package/src/components/BackBtn/tests/BackBtn.spec.ts +2 -2
  42. package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +39 -3
  43. package/src/components/BackToTopBtn/Accessibilite.stories.ts +4 -0
  44. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +78 -21
  45. package/src/components/BackToTopBtn/BackToTopBtn.vue +15 -0
  46. package/src/components/BackToTopBtn/config.ts +2 -2
  47. package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +98 -6
  48. package/src/components/ChipList/ChipList.vue +1 -0
  49. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +31 -5
  50. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +570 -101
  51. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +28 -2
  52. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +13 -1
  53. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +568 -99
  54. package/src/components/CopyBtn/Accessibilite.stories.ts +4 -0
  55. package/src/components/CopyBtn/CopyBtn.stories.ts +2 -2
  56. package/src/components/CopyBtn/CopyBtn.vue +28 -22
  57. package/src/components/CopyBtn/config.ts +2 -1
  58. package/src/components/CopyBtn/tests/__snapshots__/CopyBtn.spec.ts.snap +28 -3
  59. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +2 -2
  60. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +6 -6
  61. package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +2 -2
  62. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -0
  63. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -0
  64. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -0
  65. package/src/components/Customs/SySelect/SySelect.vue +84 -9
  66. package/src/components/Customs/SySelect/locales.ts +3 -0
  67. package/src/components/Customs/SySelect/tests/SySelect.spec.ts +24 -2
  68. package/src/components/Customs/SyTextField/SyTextField.stories.ts +2 -2
  69. package/src/components/Customs/SyTextField/SyTextField.vue +6 -6
  70. package/src/components/DataList/DataList.vue +2 -2
  71. package/src/components/DataList/DataListLoading/DataListLoading.vue +2 -2
  72. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +1 -1
  73. package/src/components/DataList/tests/DataList.spec.ts +10 -10
  74. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +1 -1
  75. package/src/components/DataListItem/DataListItem.vue +9 -9
  76. package/src/components/DataListItem/tests/DataListItem.spec.ts +5 -5
  77. package/src/components/DatePicker/DatePicker.mdx +1 -1
  78. package/src/components/DatePicker/DatePicker.stories.ts +11 -11
  79. package/src/components/DatePicker/DatePicker.vue +89 -59
  80. package/src/components/DatePicker/DatePickerValidation.mdx +338 -0
  81. package/src/components/DatePicker/DatePickerValidation.stories.ts +22 -0
  82. package/src/components/DatePicker/DatePickerValidationExamples.vue +535 -0
  83. package/src/components/DatePicker/DateTextInput.vue +6 -6
  84. package/src/components/DatePicker/tests/DateTextInput.spec.ts +4 -4
  85. package/src/components/DialogBox/DialogBox.stories.ts +5 -2
  86. package/src/components/DialogBox/DialogBox.vue +5 -5
  87. package/src/components/DialogBox/config.ts +1 -1
  88. package/src/components/DialogBox/tests/DialogBox.spec.ts +1 -1
  89. package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +158 -19
  90. package/src/components/DownloadBtn/Accessibilite.stories.ts +4 -0
  91. package/src/components/DownloadBtn/DownloadBtn.stories.ts +33 -10
  92. package/src/components/DownloadBtn/DownloadBtn.vue +47 -6
  93. package/src/components/DownloadBtn/locales.ts +3 -0
  94. package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +75 -6
  95. package/src/components/ErrorPage/ErrorPage.vue +2 -2
  96. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +212 -38
  97. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +796 -86
  98. package/src/components/FilePreview/tests/FilePreview.spec.ts +1 -1
  99. package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +27 -5
  100. package/src/components/FilterInline/FilterInline.stories.ts +308 -2
  101. package/src/components/FilterInline/FilterInline.vue +3 -3
  102. package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +235 -21
  103. package/src/components/FilterSideBar/FilterSideBar.vue +1 -1
  104. package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +144 -15
  105. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +92 -18
  106. package/src/components/FranceConnectBtn/Accessibilite.stories.ts +4 -0
  107. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +18 -21
  108. package/src/components/FranceConnectBtn/locales.ts +2 -0
  109. package/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.ts +1 -1
  110. package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +235 -26
  111. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +3 -0
  112. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +5 -1
  113. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +3 -0
  114. package/src/components/HeaderBar/HeaderBurgerMenu/menu.scss +19 -0
  115. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +20 -6
  116. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +12 -2
  117. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +68 -37
  118. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  119. package/src/components/HeaderToolbar/HeaderToolbar.vue +346 -117
  120. package/src/components/HeaderToolbar/tests/{HeaderToolbar.spec.ts → HeaderToolBar.spec.ts} +2 -2
  121. package/src/components/LangBtn/Accessibilite.stories.ts +4 -0
  122. package/src/components/LangBtn/LangBtn.stories.ts +1 -4
  123. package/src/components/LangBtn/LangBtn.vue +69 -9
  124. package/src/components/LangBtn/config.ts +0 -1
  125. package/src/components/LangBtn/tests/LangBtn.spec.ts +30 -2
  126. package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +41 -3
  127. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +55 -8
  128. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +10 -1
  129. package/src/components/NirField/NirField.stories.ts +7 -7
  130. package/src/components/NirField/NirField.vue +10 -12
  131. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +229 -37
  132. package/src/components/NotificationBar/tests/__snapshots__/NotificationBar.spec.ts.snap +30 -3
  133. package/src/components/PageContainer/Accessibilite.stories.ts +36 -23
  134. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +16 -3
  135. package/src/components/PaginatedTable/PaginatedTable.stories.ts +144 -18
  136. package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +731 -94
  137. package/src/components/PasswordField/PasswordField.stories.ts +13 -13
  138. package/src/components/PasswordField/PasswordField.vue +6 -6
  139. package/src/components/PeriodField/PeriodField.stories.ts +13 -13
  140. package/src/components/PeriodField/PeriodField.vue +8 -4
  141. package/src/components/PhoneField/PhoneField.stories.ts +265 -0
  142. package/src/components/PhoneField/PhoneField.vue +38 -0
  143. package/src/components/PhoneField/tests/PhoneField.spec.ts +161 -14
  144. package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +80 -17
  145. package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +981 -162
  146. package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +634 -25
  147. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -1
  148. package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +477 -38
  149. package/src/components/RatingPicker/RatingPicker.stories.ts +1 -1
  150. package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +218 -10
  151. package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +476 -41
  152. package/src/components/SearchListField/SearchListField.stories.ts +1 -1
  153. package/src/components/SelectBtnField/SelectBtnField.stories.ts +1 -1
  154. package/src/components/SelectBtnField/SelectBtnField.vue +11 -15
  155. package/src/components/SelectBtnField/config.ts +1 -1
  156. package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +881 -65
  157. package/src/components/SkipLink/Accessibilite.stories.ts +8 -0
  158. package/src/components/SkipLink/SkipLink.vue +11 -9
  159. package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +18 -1
  160. package/src/components/SkipLink/tests/skipLink.spec.ts +120 -6
  161. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +110 -16
  162. package/src/components/SubHeader/SubHeader.stories.ts +1 -1
  163. package/src/components/SubHeader/tests/SubHeader.spec.ts +1 -1
  164. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +78 -6
  165. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +1034 -124
  166. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +11 -11
  167. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +328 -29
  168. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +64 -8
  169. package/src/components/UserMenuBtn/UserMenuBtn.vue +4 -2
  170. package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +41 -0
  171. package/src/components/index.ts +2 -0
  172. package/src/composables/date/tests/useDatePickerAccessibility.spec.ts +83 -5
  173. package/src/composables/date/useDatePickerAccessibility.ts +48 -3
  174. package/src/composables/rules/useFieldValidation.ts +26 -3
  175. package/src/designTokens/tokens/cnam/cnamColors.ts +5 -10
  176. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +0 -2
  177. package/src/designTokens/tokens/cnam/cnamSemantic.ts +3 -3
  178. package/src/designTokens/tokens/pa/paColors.ts +5 -10
  179. package/src/designTokens/tokens/pa/paLightTheme.ts +4 -5
  180. package/src/designTokens/tokens/pa/paSemantic.ts +3 -3
  181. package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
  182. package/src/stories/DesignTokens/ColorDisplay.vue +58 -0
  183. package/src/stories/DesignTokens/Colors.mdx +81 -212
  184. package/src/stories/DesignTokens/colors.stories.ts +1078 -0
  185. package/src/stories/GuideDuDev/LesBreackingChanges.mdx +31 -2
  186. package/src/stories/GuideDuDev/UtiliserLesRules.mdx +30 -8
  187. package/dist/src/components/Amelipro/types/types.d.ts +0 -38
  188. package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +0 -1
  189. package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +0 -1
  190. package/dist/src/components/ChipList/tests/chipList.spec.d.ts +0 -1
  191. package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +0 -1
  192. package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +0 -1
  193. package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +0 -1
  194. package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +0 -1
  195. package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +0 -1
  196. package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +0 -1
  197. package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +0 -1
  198. package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +0 -1
  199. package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +0 -1
  200. package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +0 -1
  201. package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +0 -1
  202. package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +0 -1
  203. package/dist/src/components/DataList/tests/DataList.spec.d.ts +0 -1
  204. package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +0 -1
  205. package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +0 -1
  206. package/dist/src/components/DatePicker/DatePicker.d.ts +0 -597
  207. package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +0 -1
  208. package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +0 -1
  209. package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +0 -1
  210. package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +0 -1
  211. package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +0 -1
  212. package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +0 -1
  213. package/dist/src/components/FileList/tests/FileList.spec.d.ts +0 -1
  214. package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +0 -1
  215. package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +0 -1
  216. package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +0 -1
  217. package/dist/src/components/FilterSideBar/tests/FilterSideBar.spec.d.ts +0 -1
  218. package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +0 -1
  219. package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +0 -1
  220. package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +0 -1
  221. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +0 -1
  222. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +0 -1
  223. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +0 -1
  224. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +0 -1
  225. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +0 -1
  226. package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +0 -1
  227. package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +0 -1
  228. package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +0 -1
  229. package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +0 -1
  230. package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +0 -1
  231. package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +0 -1
  232. package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +0 -1
  233. package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +0 -1
  234. package/dist/src/components/LangBtn/LangBtn.d.ts +0 -31
  235. package/dist/src/components/LangBtn/tests/Config.spec.d.ts +0 -1
  236. package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +0 -1
  237. package/dist/src/components/Logo/tests/Logo.spec.d.ts +0 -1
  238. package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +0 -1
  239. package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +0 -1
  240. package/dist/src/components/NirField/config.d.ts +0 -15
  241. package/dist/src/components/NirField/tests/NirField.spec.d.ts +0 -1
  242. package/dist/src/components/NirField/tests/config.spec.d.ts +0 -1
  243. package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +0 -1
  244. package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +0 -1
  245. package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +0 -1
  246. package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +0 -1
  247. package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +0 -1
  248. package/dist/src/components/PeriodField/PeriodField.d.ts +0 -1405
  249. package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +0 -1
  250. package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +0 -1
  251. package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +0 -1
  252. package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +0 -1
  253. package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +0 -1
  254. package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +0 -1
  255. package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +0 -1
  256. package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +0 -1
  257. package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +0 -1
  258. package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +0 -1
  259. package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +0 -1
  260. package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +0 -1
  261. package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +0 -1
  262. package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +0 -1
  263. package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +0 -1
  264. package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +0 -1
  265. package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +0 -1
  266. package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +0 -1
  267. package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +0 -1
  268. package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +0 -1
  269. package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +0 -1
  270. package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +0 -1
  271. package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +0 -1
  272. package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +0 -1
  273. package/dist/src/components/UploadWorkflow/tests/UploadWorkflow.spec.d.ts +0 -1
  274. package/dist/src/components/Usages/Usages.d.ts +0 -10
  275. package/dist/src/components/Usages/tests/Usages.spec.d.ts +0 -1
  276. package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +0 -1
  277. package/dist/src/composables/date/tests/useDateFormat.spec.d.ts +0 -1
  278. package/dist/src/composables/date/tests/useDateInitialization.spec.d.ts +0 -1
  279. package/dist/src/composables/date/tests/useDatePickerAccessibility.spec.d.ts +0 -1
  280. package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +0 -1
  281. package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +0 -1
  282. package/dist/src/composables/validation/tests/useValidation.spec.d.ts +0 -1
  283. package/dist/src/composables/widthable/tests/widthable.spec.d.ts +0 -1
  284. package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +0 -1
  285. package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +0 -1
  286. package/dist/src/utils/formatDate/tests/formatDate.spec.d.ts +0 -1
  287. package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +0 -1
  288. package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +0 -1
  289. package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +0 -1
  290. package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +0 -1
  291. package/dist/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.d.ts +0 -1
  292. package/dist/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.d.ts +0 -1
  293. package/dist/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.d.ts +0 -1
  294. package/dist/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  295. package/dist/src/utils/functions/validation/isEmailValid/tests/isEmailValid.spec.d.ts +0 -1
  296. package/dist/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.d.ts +0 -1
  297. package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +0 -1
  298. package/dist/src/utils/parseDate/tests/parseDate.spec.d.ts +0 -1
  299. package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +0 -1
  300. package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +0 -1
  301. package/dist/src/utils/rules/doMatchPattern/tests/matchPattern.spec.d.ts +0 -1
  302. package/dist/src/utils/rules/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  303. package/dist/src/utils/rules/isExactLength/tests/exactLength.spec.d.ts +0 -1
  304. package/dist/src/utils/rules/isMaxLength/tests/isMaxLength.spec.d.ts +0 -1
  305. package/dist/src/utils/rules/isMinLength/tests/isMinLength.spec.d.ts +0 -1
  306. package/dist/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.d.ts +0 -1
  307. package/dist/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.d.ts +0 -1
  308. package/dist/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.d.ts +0 -1
  309. package/dist/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.d.ts +0 -1
  310. package/dist/src/utils/rules/isRequired/tests/isRequred.spec.d.ts +0 -1
  311. package/dist/src/utils/rules/isValidEmail/tests/isValidEmail.spec.d.ts +0 -1
  312. package/src/components/Amelipro/types/types.ts +0 -40
  313. package/src/components/LangBtn/tests/Config.spec.ts +0 -24
  314. package/src/components/NirField/config.ts +0 -16
  315. package/src/components/NirField/tests/config.spec.ts +0 -65
  316. package/dist/{src/components → components}/BackBtn/AccessibiliteItems.d.ts +0 -0
  317. package/dist/{src/components → components}/BackBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  318. package/dist/{src/components → components}/BackBtn/locales.d.ts +0 -0
  319. package/dist/{src/components → components}/BackToTopBtn/AccessibiliteItems.d.ts +0 -0
  320. package/dist/{src/components → components}/BackToTopBtn/BackToTopBtn.d.ts +0 -0
  321. package/dist/{src/components → components}/BackToTopBtn/config.d.ts +0 -0
  322. package/dist/{src/components → components}/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  323. package/dist/{src/components → components}/BackToTopBtn/locales.d.ts +0 -0
  324. package/dist/{src/components → components}/ChipList/AccessibiliteItems.d.ts +0 -0
  325. package/dist/{src/components → components}/ChipList/ChipList.d.ts +0 -0
  326. package/dist/{src/components → components}/ChipList/config.d.ts +0 -0
  327. package/dist/{src/components → components}/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -0
  328. package/dist/{src/components → components}/ChipList/locales.d.ts +0 -0
  329. package/dist/{src/components → components}/ChipList/types.d.ts +0 -0
  330. package/dist/{src/components → components}/CollapsibleList/AccessibiliteItems.d.ts +0 -0
  331. package/dist/{src/components → components}/CollapsibleList/CollapsibleList.d.ts +0 -0
  332. package/dist/{src/components → components}/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -0
  333. package/dist/{src/components → components}/CollapsibleList/types.d.ts +0 -0
  334. package/dist/{src/components → components}/ContextualMenu/AccessibiliteItems.d.ts +0 -0
  335. package/dist/{src/components → components}/ContextualMenu/ContextualMenu.d.ts +0 -0
  336. package/dist/{src/components → components}/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  337. package/dist/{src/components → components}/ContextualMenu/types.d.ts +0 -0
  338. package/dist/{src/components → components}/CookieBanner/AccessibiliteItems.d.ts +0 -0
  339. package/dist/{src/components → components}/CookieBanner/CookieBanner.d.ts +0 -0
  340. package/dist/{src/components → components}/CookieBanner/config.d.ts +0 -0
  341. package/dist/{src/components → components}/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -0
  342. package/dist/{src/components → components}/CookieBanner/locales.d.ts +0 -0
  343. package/dist/{src/components → components}/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +0 -0
  344. package/dist/{src/components → components}/CookiesSelection/CookiesInformation/locales.d.ts +0 -0
  345. package/dist/{src/components → components}/CookiesSelection/CookiesTable/CookiesTable.d.ts +0 -0
  346. package/dist/{src/components → components}/CookiesSelection/CookiesTable/headers.d.ts +0 -0
  347. package/dist/{src/components → components}/CookiesSelection/locales.d.ts +0 -0
  348. package/dist/{src/components → components}/CookiesSelection/types.d.ts +0 -0
  349. package/dist/{src/components → components}/CopyBtn/AccessibiliteItems.d.ts +0 -0
  350. package/dist/{src/components → components}/CopyBtn/CopyBtn.d.ts +0 -0
  351. package/dist/{src/components → components}/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  352. package/dist/{src/components → components}/CopyBtn/locales.d.ts +0 -0
  353. package/dist/{src/components → components}/Customs/SyBtnSelect/AccessibiliteItems.d.ts +0 -0
  354. package/dist/{src/components → components}/Customs/SyBtnSelect/SyBtnSelect.d.ts +0 -0
  355. package/dist/{src/components → components}/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  356. package/dist/{src/components → components}/Customs/SyInputSelect/AccessibiliteItems.d.ts +0 -0
  357. package/dist/{src/components → components}/Customs/SyInputSelect/config.d.ts +0 -0
  358. package/dist/{src/components → components}/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  359. package/dist/{src/components → components}/Customs/SySelect/AccessibiliteItems.d.ts +0 -0
  360. package/dist/{src/components → components}/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  361. package/dist/{src/components → components}/Customs/SyTextField/AccessibiliteItems.d.ts +0 -0
  362. package/dist/{src/components → components}/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -0
  363. package/dist/{src/components → components}/Customs/SyTextField/types.d.ts +0 -0
  364. package/dist/{src/components → components}/DataList/AccessibiliteItems.d.ts +0 -0
  365. package/dist/{src/components → components}/DataList/DataList.d.ts +0 -0
  366. package/dist/{src/components → components}/DataList/DataListLoading/DataListLoading.d.ts +0 -0
  367. package/dist/{src/components → components}/DataList/constants/ExpertiseLevelEnum.d.ts +0 -0
  368. package/dist/{src/components → components}/DataList/locales.d.ts +0 -0
  369. package/dist/{src/components → components}/DataList/types.d.ts +0 -0
  370. package/dist/{src/components → components}/DataListGroup/AccessibiliteItems.d.ts +0 -0
  371. package/dist/{src/components → components}/DataListGroup/DataListGroup.d.ts +0 -0
  372. package/dist/{src/components → components}/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -0
  373. package/dist/{src/components → components}/DataListGroup/tests/data/dataListGroupItems.d.ts +0 -0
  374. package/dist/{src/components → components}/DataListGroup/types.d.ts +0 -0
  375. package/dist/{src/components → components}/DataListItem/DataListItem.d.ts +0 -0
  376. package/dist/{src/components → components}/DataListItem/config.d.ts +0 -0
  377. package/dist/{src/components → components}/DataListItem/locales.d.ts +0 -0
  378. package/dist/{src/components → components}/DataListItem/types.d.ts +0 -0
  379. package/dist/{src/components → components}/DatePicker/AccessibiliteItems.d.ts +0 -0
  380. package/dist/{src/components → components}/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  381. package/dist/{src/components → components}/DialogBox/AccessibiliteItems.d.ts +0 -0
  382. package/dist/{src/components → components}/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -0
  383. package/dist/{src/components → components}/DialogBox/locales.d.ts +0 -0
  384. package/dist/{src/components → components}/DownloadBtn/AccessibiliteItems.d.ts +0 -0
  385. package/dist/{src/components → components}/DownloadBtn/config.d.ts +0 -0
  386. package/dist/{src/components → components}/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  387. package/dist/{src/components → components}/DownloadBtn/tests/data/filePromise.d.ts +0 -0
  388. package/dist/{src/components → components}/ErrorPage/AccessibiliteItems.d.ts +0 -0
  389. package/dist/{src/components → components}/ErrorPage/ErrorPage.d.ts +0 -0
  390. package/dist/{src/components → components}/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  391. package/dist/{src/components → components}/ErrorPage/locales.d.ts +0 -0
  392. package/dist/{src/components → components}/ExternalLinks/AccessibiliteItems.d.ts +0 -0
  393. package/dist/{src/components → components}/ExternalLinks/ExternalLinks.d.ts +0 -0
  394. package/dist/{src/components → components}/ExternalLinks/config.d.ts +0 -0
  395. package/dist/{src/components → components}/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  396. package/dist/{src/components → components}/ExternalLinks/locales.d.ts +0 -0
  397. package/dist/{src/components → components}/FileList/AccessibiliteItems.d.ts +0 -0
  398. package/dist/{src/components → components}/FileList/FileList.d.ts +0 -0
  399. package/dist/{src/components → components}/FileList/UploadItem/UploadItem.d.ts +0 -0
  400. package/dist/{src/components → components}/FileList/UploadItem/locales.d.ts +0 -0
  401. package/dist/{src/components → components}/FileList/constants/ExpertiseLevelEnum.d.ts +0 -0
  402. package/dist/{src/components → components}/FilePreview/AccessibiliteItems.d.ts +0 -0
  403. package/dist/{src/components → components}/FilePreview/FilePreview.d.ts +0 -0
  404. package/dist/{src/components → components}/FilePreview/config.d.ts +0 -0
  405. package/dist/{src/components → components}/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -0
  406. package/dist/{src/components → components}/FilePreview/locales.d.ts +0 -0
  407. package/dist/{src/components → components}/FileUpload/AccessibiliteItems.d.ts +0 -0
  408. package/dist/{src/components → components}/FileUpload/FileUpload.d.ts +0 -0
  409. package/dist/{src/components → components}/FileUpload/FileUploadContent.d.ts +0 -0
  410. package/dist/{src/components → components}/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -0
  411. package/dist/{src/components → components}/FileUpload/locales.d.ts +0 -0
  412. package/dist/{src/components → components}/FileUpload/useFileDrop.d.ts +0 -0
  413. package/dist/{src/components → components}/FileUpload/validateFiles.d.ts +0 -0
  414. package/dist/{src/components → components}/FilterInline/AccessibiliteItems.d.ts +0 -0
  415. package/dist/{src/components → components}/FilterInline/constants/ExpertiseLevelEnum.d.ts +0 -0
  416. package/dist/{src/components → components}/FilterInline/locales.d.ts +0 -0
  417. package/dist/{src/components → components}/FilterSideBar/AccessibiliteItems.d.ts +0 -0
  418. package/dist/{src/components → components}/FilterSideBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  419. package/dist/{src/components → components}/FilterSideBar/locales.d.ts +0 -0
  420. package/dist/{src/components → components}/FooterBar/A11yCompliance.d.ts +0 -0
  421. package/dist/{src/components → components}/FooterBar/AccessibiliteItems.d.ts +0 -0
  422. package/dist/{src/components → components}/FooterBar/FooterBar.d.ts +0 -0
  423. package/dist/{src/components → components}/FooterBar/config.d.ts +0 -0
  424. package/dist/{src/components → components}/FooterBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  425. package/dist/{src/components → components}/FooterBar/defaultSocialMediaLinks.d.ts +0 -0
  426. package/dist/{src/components → components}/FooterBar/locales.d.ts +0 -0
  427. package/dist/{src/components → components}/FooterBar/types.d.ts +0 -0
  428. package/dist/{src/components → components}/FranceConnectBtn/AccessibiliteItems.d.ts +0 -0
  429. package/dist/{src/components → components}/FranceConnectBtn/FranceConnectBtn.d.ts +0 -0
  430. package/dist/{src/components → components}/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  431. package/dist/{src/components → components}/HeaderBar/AccessibiliteItems.d.ts +0 -0
  432. package/dist/{src/components → components}/HeaderBar/HeaderBar.d.ts +0 -0
  433. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +0 -0
  434. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +0 -0
  435. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +0 -0
  436. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +0 -0
  437. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +0 -0
  438. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  439. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/conts.d.ts +0 -0
  440. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/locals.d.ts +0 -0
  441. package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +0 -0
  442. package/dist/{src/components → components}/HeaderBar/HeaderLogo/HeaderLogo.d.ts +0 -0
  443. package/dist/{src/components → components}/HeaderBar/HeaderLogo/locales.d.ts +0 -0
  444. package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +0 -0
  445. package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo.d.ts +0 -0
  446. package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +0 -0
  447. package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/locals.d.ts +0 -0
  448. package/dist/{src/components → components}/HeaderBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  449. package/dist/{src/components → components}/HeaderBar/consts.d.ts +0 -0
  450. package/dist/{src/components → components}/HeaderBar/locales.d.ts +0 -0
  451. package/dist/{src/components → components}/HeaderBar/useHeaderResponsiveMode.d.ts +0 -0
  452. package/dist/{src/components → components}/HeaderBar/useScrollDirection.d.ts +0 -0
  453. package/dist/{src/components → components}/HeaderLoading/AccessibiliteItems.d.ts +0 -0
  454. package/dist/{src/components → components}/HeaderLoading/HeaderLoading.d.ts +0 -0
  455. package/dist/{src/components → components}/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +0 -0
  456. package/dist/{src/components → components}/HeaderNavigationBar/HeaderNavigationBar.d.ts +0 -0
  457. package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +0 -0
  458. package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/config.d.ts +0 -0
  459. package/dist/{src/components → components}/HeaderNavigationBar/types.d.ts +0 -0
  460. package/dist/{src/components → components}/HeaderToolbar/AccessibiliteItems.d.ts +0 -0
  461. package/dist/{src/components → components}/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  462. package/dist/{src/components → components}/HeaderToolbar/types.d.ts +0 -0
  463. package/dist/{src/components → components}/LangBtn/AccessibiliteItems.d.ts +0 -0
  464. package/dist/{src/components → components}/LangBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  465. package/dist/{src/components → components}/LangBtn/locales.d.ts +0 -0
  466. package/dist/{src/components → components}/LangBtn/types.d.ts +0 -0
  467. package/dist/{src/components → components}/Logo/AccessibiliteItems.d.ts +0 -0
  468. package/dist/{src/components → components}/Logo/Logo.d.ts +0 -0
  469. package/dist/{src/components → components}/Logo/LogoSize.d.ts +0 -0
  470. package/dist/{src/components → components}/Logo/constants/ExpertiseLevelEnum.d.ts +0 -0
  471. package/dist/{src/components → components}/Logo/locales.d.ts +0 -0
  472. package/dist/{src/components → components}/Logo/logoDimensionsMapping.d.ts +0 -0
  473. package/dist/{src/components → components}/Logo/types.d.ts +0 -0
  474. package/dist/{src/components → components}/LogoBrandSection/AccessibiliteItems.d.ts +0 -0
  475. package/dist/{src/components → components}/LogoBrandSection/LogoBrandSection.d.ts +0 -0
  476. package/dist/{src/components → components}/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +0 -0
  477. package/dist/{src/components → components}/LogoBrandSection/dividerDimensionsMapping.d.ts +0 -0
  478. package/dist/{src/components → components}/LogoBrandSection/locales.d.ts +0 -0
  479. package/dist/{src/components → components}/LogoBrandSection/secondaryLogoMapping.d.ts +0 -0
  480. package/dist/{src/components → components}/LogoBrandSection/types.d.ts +0 -0
  481. package/dist/{src/components → components}/MaintenancePage/AccessibiliteItems.d.ts +0 -0
  482. package/dist/{src/components → components}/MaintenancePage/MaintenancePage.d.ts +0 -0
  483. package/dist/{src/components → components}/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +0 -0
  484. package/dist/{src/components → components}/MaintenancePage/index.d.ts +0 -0
  485. package/dist/{src/components → components}/MaintenancePage/locales.d.ts +0 -0
  486. package/dist/{src/components → components}/NirField/AccessibiliteItems.d.ts +0 -0
  487. package/dist/{src/components → components}/NirField/constants/ExpertiseLevelEnum.d.ts +0 -0
  488. package/dist/{src/components → components}/NirField/locales.d.ts +0 -0
  489. package/dist/{src/components → components}/NirField/nirValidation.d.ts +0 -0
  490. package/dist/{src/components → components}/NotFoundPage/AccessibiliteItems.d.ts +0 -0
  491. package/dist/{src/components → components}/NotFoundPage/NotFoundPage.d.ts +0 -0
  492. package/dist/{src/components → components}/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  493. package/dist/{src/components → components}/NotFoundPage/locales.d.ts +0 -0
  494. package/dist/{src/components → components}/NotificationBar/AccessibiliteItems.d.ts +0 -0
  495. package/dist/{src/components → components}/NotificationBar/NotificationBar.d.ts +0 -0
  496. package/dist/{src/components → components}/NotificationBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  497. package/dist/{src/components → components}/NotificationBar/options.d.ts +0 -0
  498. package/dist/{src/components → components}/NotificationBar/types.d.ts +0 -0
  499. package/dist/{src/components → components}/PageContainer/AccessibiliteItems.d.ts +0 -0
  500. package/dist/{src/components → components}/PageContainer/PageContainer.d.ts +0 -0
  501. package/dist/{src/components → components}/PageContainer/constants/ExpertiseLevelEnum.d.ts +0 -0
  502. package/dist/{src/components → components}/PaginatedTable/AccessibiliteItems.d.ts +0 -0
  503. package/dist/{src/components → components}/PaginatedTable/PaginatedTable.d.ts +0 -0
  504. package/dist/{src/components → components}/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +0 -0
  505. package/dist/{src/components → components}/PaginatedTable/constants/StateEnum.d.ts +0 -0
  506. package/dist/{src/components → components}/PaginatedTable/types.d.ts +0 -0
  507. package/dist/{src/components → components}/PasswordField/AccessibiliteItems.d.ts +0 -0
  508. package/dist/{src/components → components}/PasswordField/config.d.ts +0 -0
  509. package/dist/{src/components → components}/PasswordField/constants/ExpertiseLevelEnum.d.ts +0 -0
  510. package/dist/{src/components → components}/PasswordField/locales.d.ts +0 -0
  511. package/dist/{src/components → components}/PeriodField/AccessibiliteItems.d.ts +0 -0
  512. package/dist/{src/components → components}/PeriodField/constants/ExpertiseLevelEnum.d.ts +0 -0
  513. package/dist/{src/components → components}/PhoneField/AccessibiliteItems.d.ts +0 -0
  514. package/dist/{src/components → components}/PhoneField/constants/ExpertiseLevelEnum.d.ts +0 -0
  515. package/dist/{src/components → components}/PhoneField/indicatifs.d.ts +0 -0
  516. package/dist/{src/components → components}/PhoneField/locales.d.ts +0 -0
  517. package/dist/{src/components → components}/RangeField/AccessibiliteItems.d.ts +0 -0
  518. package/dist/{src/components → components}/RangeField/RangeField.d.ts +0 -0
  519. package/dist/{src/components → components}/RangeField/RangeSlider/RangeSlider.d.ts +0 -0
  520. package/dist/{src/components → components}/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +0 -0
  521. package/dist/{src/components → components}/RangeField/RangeSlider/types.d.ts +0 -0
  522. package/dist/{src/components → components}/RangeField/RangeSlider/useMouseSlide.d.ts +0 -0
  523. package/dist/{src/components → components}/RangeField/RangeSlider/useRangeSlider.d.ts +0 -0
  524. package/dist/{src/components → components}/RangeField/RangeSlider/useThumb.d.ts +0 -0
  525. package/dist/{src/components → components}/RangeField/RangeSlider/useThumbKeyboard.d.ts +0 -0
  526. package/dist/{src/components → components}/RangeField/RangeSlider/useTooltipsNudge.d.ts +0 -0
  527. package/dist/{src/components → components}/RangeField/RangeSlider/useTrack.d.ts +0 -0
  528. package/dist/{src/components → components}/RangeField/RangeSlider/vAnimateClick.d.ts +0 -0
  529. package/dist/{src/components → components}/RangeField/config.d.ts +0 -0
  530. package/dist/{src/components → components}/RangeField/constants/ExpertiseLevelEnum.d.ts +0 -0
  531. package/dist/{src/components → components}/RangeField/locales.d.ts +0 -0
  532. package/dist/{src/components → components}/RatingPicker/AccessibiliteItems.d.ts +0 -0
  533. package/dist/{src/components → components}/RatingPicker/EmotionPicker/EmotionPicker.d.ts +0 -0
  534. package/dist/{src/components → components}/RatingPicker/EmotionPicker/locales.d.ts +0 -0
  535. package/dist/{src/components → components}/RatingPicker/NumberPicker/NumberPicker.d.ts +0 -0
  536. package/dist/{src/components → components}/RatingPicker/NumberPicker/locales.d.ts +0 -0
  537. package/dist/{src/components → components}/RatingPicker/Rating.d.ts +0 -0
  538. package/dist/{src/components → components}/RatingPicker/RatingPicker.d.ts +0 -0
  539. package/dist/{src/components → components}/RatingPicker/StarsPicker/StarsPicker.d.ts +0 -0
  540. package/dist/{src/components → components}/RatingPicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  541. package/dist/{src/components → components}/RatingPicker/locales.d.ts +0 -0
  542. package/dist/{src/components → components}/SearchListField/AccessibiliteItems.d.ts +0 -0
  543. package/dist/{src/components → components}/SearchListField/SearchListField.d.ts +0 -0
  544. package/dist/{src/components → components}/SearchListField/constants/ExpertiseLevelEnum.d.ts +0 -0
  545. package/dist/{src/components → components}/SearchListField/locales.d.ts +0 -0
  546. package/dist/{src/components → components}/SearchListField/types.d.ts +0 -0
  547. package/dist/{src/components → components}/SelectBtnField/AccessibiliteItems.d.ts +0 -0
  548. package/dist/{src/components → components}/SelectBtnField/SelectBtnField.d.ts +1 -1
  549. /package/dist/{src/components → components}/SelectBtnField/config.d.ts +0 -0
  550. /package/dist/{src/components → components}/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +0 -0
  551. /package/dist/{src/components → components}/SelectBtnField/types.d.ts +0 -0
  552. /package/dist/{src/components → components}/SkipLink/AccessibiliteItems.d.ts +0 -0
  553. /package/dist/{src/components → components}/SkipLink/constants/ExpertiseLevelEnum.d.ts +0 -0
  554. /package/dist/{src/components → components}/SkipLink/locales.d.ts +0 -0
  555. /package/dist/{src/components → components}/SocialMediaLinks/AccessibiliteItems.d.ts +0 -0
  556. /package/dist/{src/components → components}/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +0 -0
  557. /package/dist/{src/components → components}/SocialMediaLinks/SocialMediaLinks.d.ts +0 -0
  558. /package/dist/{src/components → components}/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  559. /package/dist/{src/components → components}/SocialMediaLinks/locales.d.ts +0 -0
  560. /package/dist/{src/components → components}/SocialMediaLinks/types.d.ts +0 -0
  561. /package/dist/{src/components → components}/SubHeader/AccessibiliteItems.d.ts +0 -0
  562. /package/dist/{src/components → components}/SubHeader/SubHeader.d.ts +0 -0
  563. /package/dist/{src/components → components}/SubHeader/config.d.ts +0 -0
  564. /package/dist/{src/components → components}/SubHeader/constants/ExpertiseLevelEnum.d.ts +0 -0
  565. /package/dist/{src/components → components}/SubHeader/locales.d.ts +0 -0
  566. /package/dist/{src/components → components}/SyAlert/AccessibiliteItems.d.ts +0 -0
  567. /package/dist/{src/components → components}/SyAlert/SyAlert.d.ts +0 -0
  568. /package/dist/{src/components → components}/SyAlert/constants/ExpertiseLevelEnum.d.ts +0 -0
  569. /package/dist/{src/components → components}/SyAlert/locales.d.ts +0 -0
  570. /package/dist/{src/components → components}/TableToolbar/AccessibiliteItems.d.ts +0 -0
  571. /package/dist/{src/components → components}/TableToolbar/TableToolbar.d.ts +0 -0
  572. /package/dist/{src/components → components}/TableToolbar/config.d.ts +0 -0
  573. /package/dist/{src/components → components}/TableToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  574. /package/dist/{src/components → components}/TableToolbar/locales.d.ts +0 -0
  575. /package/dist/{src/components → components}/UploadWorkflow/AccessibiliteItems.d.ts +0 -0
  576. /package/dist/{src/components → components}/UploadWorkflow/config.d.ts +0 -0
  577. /package/dist/{src/components → components}/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +0 -0
  578. /package/dist/{src/components → components}/UploadWorkflow/locales.d.ts +0 -0
  579. /package/dist/{src/components → components}/UploadWorkflow/types.d.ts +0 -0
  580. /package/dist/{src/components → components}/UploadWorkflow/useFileList.d.ts +0 -0
  581. /package/dist/{src/components → components}/UploadWorkflow/useFileUploadJourney.d.ts +0 -0
  582. /package/dist/{src/components → components}/UserMenuBtn/AccessibiliteItems.d.ts +0 -0
  583. /package/dist/{src/components → components}/UserMenuBtn/config.d.ts +0 -0
  584. /package/dist/{src/components → components}/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  585. /package/dist/{src/composables → composables}/date/useDateFormat.d.ts +0 -0
  586. /package/dist/{src/composables → composables}/date/useDateInitialization.d.ts +0 -0
  587. /package/dist/{src/composables → composables}/index.d.ts +0 -0
  588. /package/dist/{src/composables → composables}/rules/useFieldValidation.d.ts +0 -0
  589. /package/dist/{src/composables → composables}/useCustomizableOptions.d.ts +0 -0
  590. /package/dist/{src/composables → composables}/useFilterable/useFilterable.d.ts +0 -0
  591. /package/dist/{src/composables → composables}/validation/useValidation.d.ts +0 -0
  592. /package/dist/{src/composables → composables}/widthable/index.d.ts +0 -0
  593. /package/dist/{src/constants → constants}/icons.d.ts +0 -0
  594. /package/dist/{src/designTokens → designTokens}/index.d.ts +0 -0
  595. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamContextual.d.ts +0 -0
  596. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamDarkTheme.d.ts +0 -0
  597. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamSemantic.d.ts +0 -0
  598. /package/dist/{src/designTokens → designTokens}/tokens/pa/paContextual.d.ts +0 -0
  599. /package/dist/{src/designTokens → designTokens}/tokens/pa/paDarkTheme.d.ts +0 -0
  600. /package/dist/{src/designTokens → designTokens}/tokens/pa/paSemantic.d.ts +0 -0
  601. /package/dist/{src/designTokens → designTokens}/utils/convertGaps.d.ts +0 -0
  602. /package/dist/{src/designTokens → designTokens}/utils/convertSemanticsToken.d.ts +0 -0
  603. /package/dist/{src/designTokens → designTokens}/utils/createFlattenTheme.d.ts +0 -0
  604. /package/dist/{src/designTokens → designTokens}/utils/index.d.ts +0 -0
  605. /package/dist/{src/directives → directives}/clickOutside.d.ts +0 -0
  606. /package/dist/{src/main.d.ts → main.d.ts} +0 -0
  607. /package/dist/{src/modules.d.ts → modules.d.ts} +0 -0
  608. /package/dist/{src/services → services}/NotificationService.d.ts +0 -0
  609. /package/dist/{src/services → services}/index.d.ts +0 -0
  610. /package/dist/{src/stories → stories}/Accessibilite/Vuetify/VuetifyItems.d.ts +0 -0
  611. /package/dist/{src/stories → stories}/EcoConception/ecoDesignItems.d.ts +0 -0
  612. /package/dist/{src/types → types}/vuetifyTypes.d.ts +0 -0
  613. /package/dist/{src/utils → utils}/calcHumanFileSize/index.d.ts +0 -0
  614. /package/dist/{src/utils → utils}/convertToUnit/index.d.ts +0 -0
  615. /package/dist/{src/utils → utils}/formatDate/index.d.ts +0 -0
  616. /package/dist/{src/utils → utils}/functions/copyToClipboard/index.d.ts +0 -0
  617. /package/dist/{src/utils → utils}/functions/deepCopy/index.d.ts +0 -0
  618. /package/dist/{src/utils → utils}/functions/downloadFile/index.d.ts +0 -0
  619. /package/dist/{src/utils → utils}/functions/downloadFile/types.d.ts +0 -0
  620. /package/dist/{src/utils → utils}/functions/throttleDisplayFn/throttleDisplayFn.d.ts +0 -0
  621. /package/dist/{src/utils → utils}/functions/validation/isDateAfter/index.d.ts +0 -0
  622. /package/dist/{src/utils → utils}/functions/validation/isDateBefore/index.d.ts +0 -0
  623. /package/dist/{src/utils → utils}/functions/validation/isDateInRange/index.d.ts +0 -0
  624. /package/dist/{src/utils → utils}/functions/validation/isDateValid/index.d.ts +0 -0
  625. /package/dist/{src/utils → utils}/functions/validation/isEmailValid/index.d.ts +0 -0
  626. /package/dist/{src/utils → utils}/functions/validation/isWeekend/index.d.ts +0 -0
  627. /package/dist/{src/utils → utils}/localStorageUtility/index.d.ts +0 -0
  628. /package/dist/{src/utils → utils}/parseDate/index.d.ts +0 -0
  629. /package/dist/{src/utils → utils}/propValidator/index.d.ts +0 -0
  630. /package/dist/{src/utils → utils}/ruleMessage/index.d.ts +0 -0
  631. /package/dist/{src/utils → utils}/rules/doMatchPattern/index.d.ts +0 -0
  632. /package/dist/{src/utils → utils}/rules/doMatchPattern/locales.d.ts +0 -0
  633. /package/dist/{src/utils → utils}/rules/index.d.ts +0 -0
  634. /package/dist/{src/utils → utils}/rules/isDateValid/index.d.ts +0 -0
  635. /package/dist/{src/utils → utils}/rules/isDateValid/locales.d.ts +0 -0
  636. /package/dist/{src/utils → utils}/rules/isExactLength/index.d.ts +0 -0
  637. /package/dist/{src/utils → utils}/rules/isExactLength/locales.d.ts +0 -0
  638. /package/dist/{src/utils → utils}/rules/isMaxLength/index.d.ts +0 -0
  639. /package/dist/{src/utils → utils}/rules/isMaxLength/locales.d.ts +0 -0
  640. /package/dist/{src/utils → utils}/rules/isMinLength/index.d.ts +0 -0
  641. /package/dist/{src/utils → utils}/rules/isMinLength/locales.d.ts +0 -0
  642. /package/dist/{src/utils → utils}/rules/isNotAfterDate/index.d.ts +0 -0
  643. /package/dist/{src/utils → utils}/rules/isNotAfterDate/locales.d.ts +0 -0
  644. /package/dist/{src/utils → utils}/rules/isNotAfterToday/index.d.ts +0 -0
  645. /package/dist/{src/utils → utils}/rules/isNotAfterToday/locales.d.ts +0 -0
  646. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/index.d.ts +0 -0
  647. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/locales.d.ts +0 -0
  648. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/index.d.ts +0 -0
  649. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/locales.d.ts +0 -0
  650. /package/dist/{src/utils → utils}/rules/isRequired/index.d.ts +0 -0
  651. /package/dist/{src/utils → utils}/rules/isRequired/locales.d.ts +0 -0
  652. /package/dist/{src/utils → utils}/rules/isValidEmail/index.d.ts +0 -0
  653. /package/dist/{src/utils → utils}/rules/isValidEmail/locales.d.ts +0 -0
  654. /package/dist/{src/utils → utils}/rules/types.d.ts +0 -0
@@ -1,36 +1,245 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
3
  exports[`FranceConnectBtn > renders correctly 1`] = `
4
- "<div data-v-dc72de41="" class="vd-france-connect-btn d-flex flex-column align-start"><a data-v-dc72de41="" href="https://app.franceconnect.gouv.fr/" aria-label="S’identifier avec FranceConnect" class="vd-france-connect-link d-inline-flex"><svg data-v-dc72de41="" viewBox="0 0 209 56" width="209px" height="56" xmlns="http://www.w3.org/2000/svg">
5
- <path data-v-dc72de41="" fill="#000091" d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"></path>
6
- <path data-v-dc72de41="" fill="#e1000f" d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"></path>
7
- <path data-v-dc72de41="" fill="#0063cb" d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"></path>
8
- <path data-v-dc72de41="" fill="#fff" d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"></path>
9
- <path data-v-dc72de41="" fill="#f5f5fe" d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"></path>
10
- <!--v-if-->
11
- </svg></a><a data-v-dc72de41="" href="https://franceconnect.gouv.fr/" target="_blank" rel="noopener noreferrer" class="vd-france-connect-info-link text-decoration-none mt-3">Quest-ce que FranceConnect ? <i data-v-dc72de41="" class="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z mdi v-icon notranslate v-theme--light ml-1 mb-1" style="font-size: 1em; height: 1em; width: 1em;" aria-hidden="true"></i></a></div>"
4
+ <div class="
5
+ align-start
6
+ d-flex
7
+ flex-column
8
+ sy-france-connect-btn
9
+ ">
10
+ <a
11
+ aria-label="Sidentifier avec FranceConnect"
12
+ class="
13
+ d-inline-flex
14
+ sy-france-connect-link
15
+ "
16
+ href="https://app.franceconnect.gouv.fr/"
17
+ ><svg
18
+ aria-hidden="true"
19
+ height="56"
20
+ role="presentation"
21
+ viewBox="0 0 209 56"
22
+ width="209px"
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ >
25
+ <path
26
+ d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"
27
+ fill="#000091"
28
+ />
29
+ <path
30
+ d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"
31
+ fill="#e1000f"
32
+ />
33
+ <path
34
+ d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"
35
+ fill="#0063cb"
36
+ />
37
+ <path
38
+ d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"
39
+ fill="#fff"
40
+ />
41
+ <path
42
+ d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"
43
+ fill="#f5f5fe"
44
+ />
45
+
46
+ <!-- v-if -->
47
+ </svg></a>
48
+ <a
49
+ aria-label="Qu’est-ce que FranceConnect ? (nouvelle fenêtre)"
50
+ class="
51
+ mt-3
52
+ sy-france-connect-info-link
53
+ text-decoration-none
54
+ "
55
+ href="https://franceconnect.gouv.fr/"
56
+ rel="noopener noreferrer"
57
+ target="_blank"
58
+ >Qu’est-ce que FranceConnect ? <i
59
+ aria-hidden="true"
60
+ class="
61
+ 0
62
+ 0
63
+ 0,0
64
+ 0,0
65
+ 21,19V12H19V19Z
66
+ 3,3.9
67
+ 3,5V19A2,2
68
+ 5,21H19A2,2
69
+ M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3
70
+ mdi
71
+ notranslate
72
+ sy-france-connect-info-link-icon
73
+ v-icon
74
+ v-theme--light
75
+ "
76
+ style="font-size: 1em; height: 1em; width: 1em;"
77
+ ></i></a>
78
+ </div>
12
79
  `;
13
80
 
14
81
  exports[`FranceConnectBtn > renders correctly in black 1`] = `
15
- "<div class="v-theme-provider v-theme--dark">
16
- <div data-v-dc72de41="" class="vd-france-connect-btn d-flex flex-column align-start vd-france-connect-btn--dark"><a data-v-dc72de41="" href="https://app.franceconnect.gouv.fr/" aria-label="S’identifier avec FranceConnect+" class="vd-france-connect-link d-inline-flex"><svg data-v-dc72de41="" viewBox="0 0 245 56" width="245px" height="56" xmlns="http://www.w3.org/2000/svg">
17
- <path data-v-dc72de41="" fill="#000091" d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"></path>
18
- <path data-v-dc72de41="" fill="#e1000f" d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"></path>
19
- <path data-v-dc72de41="" fill="#0063cb" d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"></path>
20
- <path data-v-dc72de41="" fill="#fff" d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"></path>
21
- <path data-v-dc72de41="" fill="#000091" d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"></path>
22
- <path data-v-dc72de41="" fill="#000091" d="M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"></path>
23
- </svg></a><a data-v-dc72de41="" href="https://franceconnect.gouv.fr/france-connect-plus" target="_blank" rel="noopener noreferrer" class="vd-france-connect-info-link text-decoration-none mt-3">Qu’est-ce que FranceConnect+ ? <i data-v-dc72de41="" class="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z mdi v-icon notranslate v-theme--dark ml-1 mb-1" style="font-size: 1em; height: 1em; width: 1em;" aria-hidden="true"></i></a></div>
24
- </div>"
82
+ <div class="
83
+ v-theme--dark
84
+ v-theme-provider
85
+ ">
86
+ <div class="
87
+ align-start
88
+ d-flex
89
+ flex-column
90
+ sy-france-connect-btn
91
+ sy-france-connect-btn--dark
92
+ ">
93
+ <a
94
+ aria-label="S’identifier avec FranceConnect+"
95
+ class="
96
+ d-inline-flex
97
+ sy-france-connect-link
98
+ "
99
+ href="https://app.franceconnect.gouv.fr/"
100
+ ><svg
101
+ aria-hidden="true"
102
+ height="56"
103
+ role="presentation"
104
+ viewBox="0 0 245 56"
105
+ width="245px"
106
+ xmlns="http://www.w3.org/2000/svg"
107
+ >
108
+ <path
109
+ d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"
110
+ fill="#000091"
111
+ />
112
+ <path
113
+ d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"
114
+ fill="#e1000f"
115
+ />
116
+ <path
117
+ d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"
118
+ fill="#0063cb"
119
+ />
120
+ <path
121
+ d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"
122
+ fill="#fff"
123
+ />
124
+ <path
125
+ d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"
126
+ fill="#000091"
127
+ />
128
+ <path
129
+ d="M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"
130
+ fill="#000091"
131
+ />
132
+ </svg></a>
133
+ <a
134
+ aria-label="Qu’est-ce que FranceConnect+ ? (nouvelle fenêtre)"
135
+ class="
136
+ mt-3
137
+ sy-france-connect-info-link
138
+ text-decoration-none
139
+ "
140
+ href="https://franceconnect.gouv.fr/france-connect-plus"
141
+ rel="noopener noreferrer"
142
+ target="_blank"
143
+ >Qu’est-ce que FranceConnect+ ? <i
144
+ aria-hidden="true"
145
+ class="
146
+ 0
147
+ 0
148
+ 0,0
149
+ 0,0
150
+ 21,19V12H19V19Z
151
+ 3,3.9
152
+ 3,5V19A2,2
153
+ 5,21H19A2,2
154
+ M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3
155
+ mdi
156
+ notranslate
157
+ sy-france-connect-info-link-icon
158
+ v-icon
159
+ v-theme--dark
160
+ "
161
+ style="font-size: 1em; height: 1em; width: 1em;"
162
+ ></i></a>
163
+ </div>
164
+ </div>
25
165
  `;
26
166
 
27
167
  exports[`FranceConnectBtn > renders correctly with connect-plus 1`] = `
28
- "<div data-v-dc72de41="" class="vd-france-connect-btn d-flex flex-column align-start"><a data-v-dc72de41="" href="https://app.franceconnect.gouv.fr/" aria-label="S’identifier avec FranceConnect+" class="vd-france-connect-link d-inline-flex"><svg data-v-dc72de41="" viewBox="0 0 245 56" width="245px" height="56" xmlns="http://www.w3.org/2000/svg">
29
- <path data-v-dc72de41="" fill="#000091" d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"></path>
30
- <path data-v-dc72de41="" fill="#e1000f" d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"></path>
31
- <path data-v-dc72de41="" fill="#0063cb" d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"></path>
32
- <path data-v-dc72de41="" fill="#fff" d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"></path>
33
- <path data-v-dc72de41="" fill="#f5f5fe" d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"></path>
34
- <path data-v-dc72de41="" fill="#f5f5fe" d="M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"></path>
35
- </svg></a><a data-v-dc72de41="" href="https://franceconnect.gouv.fr/france-connect-plus" target="_blank" rel="noopener noreferrer" class="vd-france-connect-info-link text-decoration-none mt-3">Quest-ce que FranceConnect+ ? <i data-v-dc72de41="" class="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z mdi v-icon notranslate v-theme--light ml-1 mb-1" style="font-size: 1em; height: 1em; width: 1em;" aria-hidden="true"></i></a></div>"
168
+ <div class="
169
+ align-start
170
+ d-flex
171
+ flex-column
172
+ sy-france-connect-btn
173
+ ">
174
+ <a
175
+ aria-label="Sidentifier avec FranceConnect+"
176
+ class="
177
+ d-inline-flex
178
+ sy-france-connect-link
179
+ "
180
+ href="https://app.franceconnect.gouv.fr/"
181
+ ><svg
182
+ aria-hidden="true"
183
+ height="56"
184
+ role="presentation"
185
+ viewBox="0 0 245 56"
186
+ width="245px"
187
+ xmlns="http://www.w3.org/2000/svg"
188
+ >
189
+ <path
190
+ d="m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"
191
+ fill="#000091"
192
+ />
193
+ <path
194
+ d="m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"
195
+ fill="#e1000f"
196
+ />
197
+ <path
198
+ d="M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"
199
+ fill="#0063cb"
200
+ />
201
+ <path
202
+ d="M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"
203
+ fill="#fff"
204
+ />
205
+ <path
206
+ d="M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"
207
+ fill="#f5f5fe"
208
+ />
209
+ <path
210
+ d="M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"
211
+ fill="#f5f5fe"
212
+ />
213
+ </svg></a>
214
+ <a
215
+ aria-label="Qu’est-ce que FranceConnect+ ? (nouvelle fenêtre)"
216
+ class="
217
+ mt-3
218
+ sy-france-connect-info-link
219
+ text-decoration-none
220
+ "
221
+ href="https://franceconnect.gouv.fr/france-connect-plus"
222
+ rel="noopener noreferrer"
223
+ target="_blank"
224
+ >Qu’est-ce que FranceConnect+ ? <i
225
+ aria-hidden="true"
226
+ class="
227
+ 0
228
+ 0
229
+ 0,0
230
+ 0,0
231
+ 21,19V12H19V19Z
232
+ 3,3.9
233
+ 3,5V19A2,2
234
+ 5,21H19A2,2
235
+ M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3
236
+ mdi
237
+ notranslate
238
+ sy-france-connect-info-link-icon
239
+ v-icon
240
+ v-theme--light
241
+ "
242
+ style="font-size: 1em; height: 1em; width: 1em;"
243
+ ></i></a>
244
+ </div>
36
245
  `;
@@ -10,6 +10,7 @@
10
10
 
11
11
  <style lang="scss" scoped>
12
12
  @use '@/assets/tokens.scss' as *;
13
+ @use '../menu';
13
14
 
14
15
  .header-menu-item {
15
16
  color: rgb(var(--v-theme-primary));
@@ -37,6 +38,8 @@
37
38
  &::first-letter {
38
39
  text-transform: uppercase;
39
40
  }
41
+
42
+ @include menu.item-focused;
40
43
  }
41
44
  }
42
45
 
@@ -1,3 +1,7 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
- exports[`HeaderMenuItem > should render the component 1`] = `"<li data-v-bc776fc3="" class="header-menu-item"><a>Test</a></li>"`;
3
+ exports[`HeaderMenuItem > should render the component 1`] = `
4
+ <li class="header-menu-item">
5
+ <a>Test</a>
6
+ </li>
7
+ `;
@@ -63,6 +63,7 @@
63
63
  <style lang="scss" scoped>
64
64
  @use '@/assets/tokens.scss' as *;
65
65
  @use '../../consts' as *;
66
+ @use '../menu';
66
67
 
67
68
  .sub-menu-btn {
68
69
  display: flex;
@@ -83,6 +84,8 @@
83
84
  }
84
85
  }
85
86
 
87
+ @include menu.item-focused;
88
+
86
89
  &::first-letter {
87
90
  text-transform: uppercase;
88
91
  }
@@ -0,0 +1,19 @@
1
+ @use 'sass:color';
2
+ @use '@/assets/tokens';
3
+
4
+ $red: color.channel(tokens.$primary-base, 'red');
5
+ $green: color.channel(tokens.$primary-base, 'green');
6
+ $blue: color.channel(tokens.$primary-base, 'blue');
7
+ $primary: $red, $green, $blue;
8
+
9
+ @mixin item-focused() {
10
+ border-top: 2px solid transparent;
11
+ border-bottom: 2px solid transparent;
12
+ transition: border-color 0.1s ease;
13
+
14
+ &:focus-visible {
15
+ outline: 0;
16
+ border-top: 2px solid rgb(var(--v-theme-primary, $primary));
17
+ border-bottom: 2px solid rgb(var(--v-theme-primary, $primary));
18
+ }
19
+ }
@@ -1,13 +1,27 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
3
  exports[`HeaderBurgerMenu > should render the component 1`] = `
4
- "<div data-v-18e6540e="" class="overlay">
5
- <div data-v-18e6540e="" role="menu" class="menu-wrapper" style="left: 0px; top: 0px; height: calc(100vh - 0px - 48px);"><button data-v-18e6540e="">Test</button>
6
- <nav data-v-18e6540e="" id="header-menu-wrapper" class="header-menu-wrapper" role="navigation" aria-label="Menu public">
7
- <div data-v-18e6540e="" class="header-menu">
8
- <div>Default slot</div>
4
+ <div class="overlay">
5
+ <div
6
+ class="menu-wrapper"
7
+ role="menu"
8
+ style="left: 0px; top: 0px; height: calc(100vh - 0px - 48px);"
9
+ >
10
+ <button>
11
+ Test
12
+ </button>
13
+ <nav
14
+ aria-label="Menu public"
15
+ class="header-menu-wrapper"
16
+ id="header-menu-wrapper"
17
+ role="navigation"
18
+ >
19
+ <div class="header-menu">
20
+ <div>
21
+ Default slot
22
+ </div>
9
23
  </div>
10
24
  </nav>
11
25
  </div>
12
- </div>"
26
+ </div>
13
27
  `;
@@ -48,12 +48,22 @@
48
48
  font-weight: 700;
49
49
  background-color: rgb(var(--v-theme-primary));
50
50
  color: tokens.$neutral-white;
51
- border-bottom: solid 1px tokens.$blue-lighten-80;
52
- transition: color 0.15s 0.1s, background-color 0.15s 0.1s, border-bottom 0.15s 0.1s;
51
+ border: 2px solid transparent;
52
+ border-bottom:
53
+ solid 2px linear-gradient(
54
+ 180deg,
55
+ transparent 0%,
56
+ transparent 50%,
57
+ tokens.$blue-lighten-80 50%,
58
+ tokens.$blue-lighten-80 100%
59
+ );
60
+ transition: color 0.15s 0.1s, background-color 0.15s 0.1s, border 0.15s 0.1s;
53
61
 
54
62
  &:focus-visible {
55
63
  background-color: tokens.$neutral-white;
56
64
  color: rgb(var(--v-theme-primary));
65
+ outline: none;
66
+ border: 2px solid rgb(var(--v-theme-primary));
57
67
  }
58
68
  }
59
69