@cnamts/synapse 0.0.13-alpha → 0.0.14-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (611) hide show
  1. package/dist/{src/components → components}/BackBtn/BackBtn.d.ts +4 -1
  2. package/dist/components/CookiesSelection/CookiesSelection.d.ts +611 -0
  3. package/dist/{src/components → components}/CopyBtn/config.d.ts +1 -0
  4. package/dist/{src/components → components}/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
  5. package/dist/components/Customs/SySelect/SySelect.d.ts +1534 -0
  6. package/dist/{src/components → components}/Customs/SyTextField/SyTextField.d.ts +4 -4
  7. package/dist/{src/components → components}/DatePicker/DatePicker.d.ts +25 -23
  8. package/dist/{src/components → components}/DatePicker/DateTextInput.d.ts +15 -15
  9. package/dist/components/DialogBox/DialogBox.d.ts +274 -0
  10. package/dist/{src/components → components}/DownloadBtn/DownloadBtn.d.ts +7 -0
  11. package/dist/components/DownloadBtn/locales.d.ts +3 -0
  12. package/dist/{src/components → components}/FilterInline/FilterInline.d.ts +2 -3
  13. package/dist/{src/components → components}/FilterSideBar/FilterSideBar.d.ts +1 -1
  14. package/dist/{src/components → components}/FranceConnectBtn/locales.d.ts +1 -0
  15. package/dist/{src/components → components}/HeaderToolbar/HeaderToolbar.d.ts +5 -1
  16. package/dist/{src/components → components}/NirField/NirField.d.ts +27 -28
  17. package/dist/{src/components → components}/PasswordField/PasswordField.d.ts +4 -4
  18. package/dist/{src/components → components}/PeriodField/PeriodField.d.ts +66 -56
  19. package/dist/{src/components → components}/PhoneField/PhoneField.d.ts +27 -0
  20. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +783 -0
  21. package/dist/{src/components → components}/index.d.ts +1 -0
  22. package/dist/{src/composables → composables}/date/useDatePickerAccessibility.d.ts +2 -1
  23. package/dist/design-system-v3.js +4162 -3997
  24. package/dist/design-system-v3.umd.cjs +1 -1
  25. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamColors.d.ts +5 -10
  26. package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamLightTheme.d.ts +0 -2
  27. package/dist/{src/designTokens → designTokens}/tokens/pa/paColors.d.ts +5 -10
  28. package/dist/{src/designTokens → designTokens}/tokens/pa/paLightTheme.d.ts +4 -5
  29. package/dist/style.css +1 -1
  30. package/dist/{src/vuetifyConfig.d.ts → vuetifyConfig.d.ts} +1 -0
  31. package/package.json +9 -8
  32. package/src/components/BackBtn/BackBtn.stories.ts +34 -6
  33. package/src/components/BackBtn/BackBtn.vue +17 -8
  34. package/src/components/BackBtn/tests/BackBtn.spec.ts +2 -2
  35. package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +39 -3
  36. package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +98 -6
  37. package/src/components/ChipList/ChipList.vue +1 -0
  38. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +31 -5
  39. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +570 -101
  40. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +28 -2
  41. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +13 -1
  42. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +568 -99
  43. package/src/components/CopyBtn/CopyBtn.stories.ts +2 -2
  44. package/src/components/CopyBtn/CopyBtn.vue +28 -22
  45. package/src/components/CopyBtn/config.ts +2 -1
  46. package/src/components/CopyBtn/tests/__snapshots__/CopyBtn.spec.ts.snap +28 -3
  47. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +6 -5
  48. package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +2 -2
  49. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -0
  50. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -0
  51. package/src/components/Customs/SySelect/SySelect.vue +12 -2
  52. package/src/components/Customs/SyTextField/SyTextField.stories.ts +2 -2
  53. package/src/components/Customs/SyTextField/SyTextField.vue +6 -6
  54. package/src/components/DataList/DataList.vue +2 -2
  55. package/src/components/DataList/DataListLoading/DataListLoading.vue +2 -2
  56. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +1 -1
  57. package/src/components/DataList/tests/DataList.spec.ts +10 -10
  58. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +1 -1
  59. package/src/components/DataListItem/DataListItem.vue +9 -9
  60. package/src/components/DataListItem/tests/DataListItem.spec.ts +5 -5
  61. package/src/components/DatePicker/DatePicker.mdx +1 -1
  62. package/src/components/DatePicker/DatePicker.stories.ts +11 -11
  63. package/src/components/DatePicker/DatePicker.vue +14 -9
  64. package/src/components/DatePicker/DateTextInput.vue +6 -6
  65. package/src/components/DatePicker/tests/DateTextInput.spec.ts +4 -4
  66. package/src/components/DialogBox/DialogBox.vue +4 -4
  67. package/src/components/DialogBox/tests/DialogBox.spec.ts +1 -1
  68. package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +158 -19
  69. package/src/components/DownloadBtn/DownloadBtn.stories.ts +18 -4
  70. package/src/components/DownloadBtn/DownloadBtn.vue +37 -3
  71. package/src/components/DownloadBtn/locales.ts +3 -0
  72. package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +77 -6
  73. package/src/components/ErrorPage/ErrorPage.vue +2 -2
  74. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +212 -38
  75. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +796 -86
  76. package/src/components/FilePreview/tests/FilePreview.spec.ts +1 -1
  77. package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +27 -5
  78. package/src/components/FilterInline/FilterInline.stories.ts +308 -2
  79. package/src/components/FilterInline/FilterInline.vue +3 -3
  80. package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +235 -21
  81. package/src/components/FilterSideBar/FilterSideBar.vue +1 -1
  82. package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +144 -15
  83. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +92 -18
  84. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +18 -21
  85. package/src/components/FranceConnectBtn/locales.ts +2 -0
  86. package/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.ts +1 -1
  87. package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +235 -26
  88. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +5 -1
  89. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +20 -6
  90. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +68 -37
  91. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  92. package/src/components/HeaderToolbar/HeaderToolbar.vue +346 -117
  93. package/src/components/HeaderToolbar/tests/{HeaderToolbar.spec.ts → HeaderToolBar.spec.ts} +2 -2
  94. package/src/components/LangBtn/LangBtn.vue +1 -0
  95. package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +41 -3
  96. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +55 -8
  97. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +10 -1
  98. package/src/components/NirField/NirField.stories.ts +7 -7
  99. package/src/components/NirField/NirField.vue +10 -12
  100. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +229 -37
  101. package/src/components/NotificationBar/tests/__snapshots__/NotificationBar.spec.ts.snap +30 -3
  102. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +16 -3
  103. package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +731 -94
  104. package/src/components/PasswordField/PasswordField.stories.ts +13 -13
  105. package/src/components/PasswordField/PasswordField.vue +6 -6
  106. package/src/components/PeriodField/PeriodField.stories.ts +13 -13
  107. package/src/components/PeriodField/PeriodField.vue +8 -4
  108. package/src/components/PhoneField/PhoneField.stories.ts +73 -0
  109. package/src/components/PhoneField/PhoneField.vue +8 -0
  110. package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +80 -17
  111. package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +981 -162
  112. package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +634 -25
  113. package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +477 -38
  114. package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +218 -10
  115. package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +476 -41
  116. package/src/components/SearchListField/SearchListField.stories.ts +1 -1
  117. package/src/components/SelectBtnField/SelectBtnField.stories.ts +1 -1
  118. package/src/components/SelectBtnField/SelectBtnField.vue +11 -15
  119. package/src/components/SelectBtnField/config.ts +1 -1
  120. package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +881 -65
  121. package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +15 -1
  122. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +110 -16
  123. package/src/components/SubHeader/SubHeader.stories.ts +1 -1
  124. package/src/components/SubHeader/tests/SubHeader.spec.ts +1 -1
  125. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +78 -6
  126. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +1034 -124
  127. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +11 -11
  128. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +328 -29
  129. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +8 -8
  130. package/src/components/index.ts +1 -0
  131. package/src/composables/date/tests/useDatePickerAccessibility.spec.ts +83 -5
  132. package/src/composables/date/useDatePickerAccessibility.ts +48 -3
  133. package/src/designTokens/tokens/cnam/cnamColors.ts +5 -10
  134. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +0 -2
  135. package/src/designTokens/tokens/cnam/cnamSemantic.ts +3 -3
  136. package/src/designTokens/tokens/pa/paColors.ts +5 -10
  137. package/src/designTokens/tokens/pa/paLightTheme.ts +4 -5
  138. package/src/designTokens/tokens/pa/paSemantic.ts +3 -3
  139. package/src/stories/DesignTokens/ColorDisplay.vue +58 -0
  140. package/src/stories/DesignTokens/Colors.mdx +81 -212
  141. package/src/stories/DesignTokens/colors.stories.ts +1078 -0
  142. package/src/stories/GuideDuDev/UtiliserLesRules.mdx +30 -8
  143. package/dist/src/components/Amelipro/types/types.d.ts +0 -38
  144. package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +0 -1
  145. package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +0 -1
  146. package/dist/src/components/ChipList/tests/chipList.spec.d.ts +0 -1
  147. package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +0 -1
  148. package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +0 -1
  149. package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +0 -1
  150. package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +0 -1
  151. package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +0 -1
  152. package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +0 -1
  153. package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +0 -1
  154. package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +0 -1
  155. package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +0 -1
  156. package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +0 -1
  157. package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +0 -1
  158. package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +0 -1
  159. package/dist/src/components/DataList/tests/DataList.spec.d.ts +0 -1
  160. package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +0 -1
  161. package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +0 -1
  162. package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +0 -1
  163. package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +0 -1
  164. package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +0 -1
  165. package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +0 -1
  166. package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +0 -1
  167. package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +0 -1
  168. package/dist/src/components/FileList/tests/FileList.spec.d.ts +0 -1
  169. package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +0 -1
  170. package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +0 -1
  171. package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +0 -1
  172. package/dist/src/components/FilterSideBar/tests/FilterSideBar.spec.d.ts +0 -1
  173. package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +0 -1
  174. package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +0 -1
  175. package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +0 -1
  176. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +0 -1
  177. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +0 -1
  178. package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +0 -1
  179. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +0 -1
  180. package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +0 -1
  181. package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +0 -1
  182. package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +0 -1
  183. package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +0 -1
  184. package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +0 -1
  185. package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +0 -1
  186. package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +0 -1
  187. package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +0 -1
  188. package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +0 -1
  189. package/dist/src/components/LangBtn/tests/Config.spec.d.ts +0 -1
  190. package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +0 -1
  191. package/dist/src/components/Logo/tests/Logo.spec.d.ts +0 -1
  192. package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +0 -1
  193. package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +0 -1
  194. package/dist/src/components/NirField/config.d.ts +0 -15
  195. package/dist/src/components/NirField/tests/NirField.spec.d.ts +0 -1
  196. package/dist/src/components/NirField/tests/config.spec.d.ts +0 -1
  197. package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +0 -1
  198. package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +0 -1
  199. package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +0 -1
  200. package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +0 -1
  201. package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +0 -1
  202. package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +0 -1
  203. package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +0 -1
  204. package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +0 -1
  205. package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +0 -1
  206. package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +0 -1
  207. package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +0 -1
  208. package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +0 -1
  209. package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +0 -1
  210. package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +0 -1
  211. package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +0 -1
  212. package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +0 -1
  213. package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +0 -1
  214. package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +0 -1
  215. package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +0 -1
  216. package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +0 -1
  217. package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +0 -1
  218. package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +0 -1
  219. package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +0 -1
  220. package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +0 -1
  221. package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +0 -1
  222. package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +0 -1
  223. package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +0 -1
  224. package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +0 -1
  225. package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +0 -1
  226. package/dist/src/components/UploadWorkflow/tests/UploadWorkflow.spec.d.ts +0 -1
  227. package/dist/src/components/Usages/Usages.d.ts +0 -10
  228. package/dist/src/components/Usages/tests/Usages.spec.d.ts +0 -1
  229. package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +0 -1
  230. package/dist/src/composables/date/tests/useDateFormat.spec.d.ts +0 -1
  231. package/dist/src/composables/date/tests/useDateInitialization.spec.d.ts +0 -1
  232. package/dist/src/composables/date/tests/useDatePickerAccessibility.spec.d.ts +0 -1
  233. package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +0 -1
  234. package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +0 -1
  235. package/dist/src/composables/validation/tests/useValidation.spec.d.ts +0 -1
  236. package/dist/src/composables/widthable/tests/widthable.spec.d.ts +0 -1
  237. package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +0 -1
  238. package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +0 -1
  239. package/dist/src/utils/formatDate/tests/formatDate.spec.d.ts +0 -1
  240. package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +0 -1
  241. package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +0 -1
  242. package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +0 -1
  243. package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +0 -1
  244. package/dist/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.d.ts +0 -1
  245. package/dist/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.d.ts +0 -1
  246. package/dist/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.d.ts +0 -1
  247. package/dist/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  248. package/dist/src/utils/functions/validation/isEmailValid/tests/isEmailValid.spec.d.ts +0 -1
  249. package/dist/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.d.ts +0 -1
  250. package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +0 -1
  251. package/dist/src/utils/parseDate/tests/parseDate.spec.d.ts +0 -1
  252. package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +0 -1
  253. package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +0 -1
  254. package/dist/src/utils/rules/doMatchPattern/tests/matchPattern.spec.d.ts +0 -1
  255. package/dist/src/utils/rules/isDateValid/tests/isDateValid.spec.d.ts +0 -1
  256. package/dist/src/utils/rules/isExactLength/tests/exactLength.spec.d.ts +0 -1
  257. package/dist/src/utils/rules/isMaxLength/tests/isMaxLength.spec.d.ts +0 -1
  258. package/dist/src/utils/rules/isMinLength/tests/isMinLength.spec.d.ts +0 -1
  259. package/dist/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.d.ts +0 -1
  260. package/dist/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.d.ts +0 -1
  261. package/dist/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.d.ts +0 -1
  262. package/dist/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.d.ts +0 -1
  263. package/dist/src/utils/rules/isRequired/tests/isRequred.spec.d.ts +0 -1
  264. package/dist/src/utils/rules/isValidEmail/tests/isValidEmail.spec.d.ts +0 -1
  265. package/src/components/Amelipro/types/types.ts +0 -40
  266. package/src/components/NirField/config.ts +0 -16
  267. package/src/components/NirField/tests/config.spec.ts +0 -65
  268. /package/dist/{src/components → components}/BackBtn/AccessibiliteItems.d.ts +0 -0
  269. /package/dist/{src/components → components}/BackBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  270. /package/dist/{src/components → components}/BackBtn/locales.d.ts +0 -0
  271. /package/dist/{src/components → components}/BackToTopBtn/AccessibiliteItems.d.ts +0 -0
  272. /package/dist/{src/components → components}/BackToTopBtn/BackToTopBtn.d.ts +0 -0
  273. /package/dist/{src/components → components}/BackToTopBtn/config.d.ts +0 -0
  274. /package/dist/{src/components → components}/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  275. /package/dist/{src/components → components}/BackToTopBtn/locales.d.ts +0 -0
  276. /package/dist/{src/components → components}/ChipList/AccessibiliteItems.d.ts +0 -0
  277. /package/dist/{src/components → components}/ChipList/ChipList.d.ts +0 -0
  278. /package/dist/{src/components → components}/ChipList/config.d.ts +0 -0
  279. /package/dist/{src/components → components}/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -0
  280. /package/dist/{src/components → components}/ChipList/locales.d.ts +0 -0
  281. /package/dist/{src/components → components}/ChipList/types.d.ts +0 -0
  282. /package/dist/{src/components → components}/CollapsibleList/AccessibiliteItems.d.ts +0 -0
  283. /package/dist/{src/components → components}/CollapsibleList/CollapsibleList.d.ts +0 -0
  284. /package/dist/{src/components → components}/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -0
  285. /package/dist/{src/components → components}/CollapsibleList/types.d.ts +0 -0
  286. /package/dist/{src/components → components}/ContextualMenu/AccessibiliteItems.d.ts +0 -0
  287. /package/dist/{src/components → components}/ContextualMenu/ContextualMenu.d.ts +0 -0
  288. /package/dist/{src/components → components}/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  289. /package/dist/{src/components → components}/ContextualMenu/types.d.ts +0 -0
  290. /package/dist/{src/components → components}/CookieBanner/AccessibiliteItems.d.ts +0 -0
  291. /package/dist/{src/components → components}/CookieBanner/CookieBanner.d.ts +0 -0
  292. /package/dist/{src/components → components}/CookieBanner/config.d.ts +0 -0
  293. /package/dist/{src/components → components}/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -0
  294. /package/dist/{src/components → components}/CookieBanner/locales.d.ts +0 -0
  295. /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +0 -0
  296. /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/locales.d.ts +0 -0
  297. /package/dist/{src/components → components}/CookiesSelection/CookiesTable/CookiesTable.d.ts +0 -0
  298. /package/dist/{src/components → components}/CookiesSelection/CookiesTable/headers.d.ts +0 -0
  299. /package/dist/{src/components → components}/CookiesSelection/locales.d.ts +0 -0
  300. /package/dist/{src/components → components}/CookiesSelection/types.d.ts +0 -0
  301. /package/dist/{src/components → components}/CopyBtn/AccessibiliteItems.d.ts +0 -0
  302. /package/dist/{src/components → components}/CopyBtn/CopyBtn.d.ts +0 -0
  303. /package/dist/{src/components → components}/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  304. /package/dist/{src/components → components}/CopyBtn/locales.d.ts +0 -0
  305. /package/dist/{src/components → components}/Customs/SyBtnSelect/AccessibiliteItems.d.ts +0 -0
  306. /package/dist/{src/components → components}/Customs/SyBtnSelect/SyBtnSelect.d.ts +0 -0
  307. /package/dist/{src/components → components}/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  308. /package/dist/{src/components → components}/Customs/SyInputSelect/AccessibiliteItems.d.ts +0 -0
  309. /package/dist/{src/components → components}/Customs/SyInputSelect/config.d.ts +0 -0
  310. /package/dist/{src/components → components}/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  311. /package/dist/{src/components → components}/Customs/SySelect/AccessibiliteItems.d.ts +0 -0
  312. /package/dist/{src/components → components}/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -0
  313. /package/dist/{src/components → components}/Customs/SyTextField/AccessibiliteItems.d.ts +0 -0
  314. /package/dist/{src/components → components}/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -0
  315. /package/dist/{src/components → components}/Customs/SyTextField/types.d.ts +0 -0
  316. /package/dist/{src/components → components}/DataList/AccessibiliteItems.d.ts +0 -0
  317. /package/dist/{src/components → components}/DataList/DataList.d.ts +0 -0
  318. /package/dist/{src/components → components}/DataList/DataListLoading/DataListLoading.d.ts +0 -0
  319. /package/dist/{src/components → components}/DataList/constants/ExpertiseLevelEnum.d.ts +0 -0
  320. /package/dist/{src/components → components}/DataList/locales.d.ts +0 -0
  321. /package/dist/{src/components → components}/DataList/types.d.ts +0 -0
  322. /package/dist/{src/components → components}/DataListGroup/AccessibiliteItems.d.ts +0 -0
  323. /package/dist/{src/components → components}/DataListGroup/DataListGroup.d.ts +0 -0
  324. /package/dist/{src/components → components}/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -0
  325. /package/dist/{src/components → components}/DataListGroup/tests/data/dataListGroupItems.d.ts +0 -0
  326. /package/dist/{src/components → components}/DataListGroup/types.d.ts +0 -0
  327. /package/dist/{src/components → components}/DataListItem/DataListItem.d.ts +0 -0
  328. /package/dist/{src/components → components}/DataListItem/config.d.ts +0 -0
  329. /package/dist/{src/components → components}/DataListItem/locales.d.ts +0 -0
  330. /package/dist/{src/components → components}/DataListItem/types.d.ts +0 -0
  331. /package/dist/{src/components → components}/DatePicker/AccessibiliteItems.d.ts +0 -0
  332. /package/dist/{src/components → components}/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  333. /package/dist/{src/components → components}/DialogBox/AccessibiliteItems.d.ts +0 -0
  334. /package/dist/{src/components → components}/DialogBox/config.d.ts +0 -0
  335. /package/dist/{src/components → components}/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -0
  336. /package/dist/{src/components → components}/DialogBox/locales.d.ts +0 -0
  337. /package/dist/{src/components → components}/DownloadBtn/AccessibiliteItems.d.ts +0 -0
  338. /package/dist/{src/components → components}/DownloadBtn/config.d.ts +0 -0
  339. /package/dist/{src/components → components}/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  340. /package/dist/{src/components → components}/DownloadBtn/tests/data/filePromise.d.ts +0 -0
  341. /package/dist/{src/components → components}/ErrorPage/AccessibiliteItems.d.ts +0 -0
  342. /package/dist/{src/components → components}/ErrorPage/ErrorPage.d.ts +0 -0
  343. /package/dist/{src/components → components}/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  344. /package/dist/{src/components → components}/ErrorPage/locales.d.ts +0 -0
  345. /package/dist/{src/components → components}/ExternalLinks/AccessibiliteItems.d.ts +0 -0
  346. /package/dist/{src/components → components}/ExternalLinks/ExternalLinks.d.ts +0 -0
  347. /package/dist/{src/components → components}/ExternalLinks/config.d.ts +0 -0
  348. /package/dist/{src/components → components}/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  349. /package/dist/{src/components → components}/ExternalLinks/locales.d.ts +0 -0
  350. /package/dist/{src/components → components}/FileList/AccessibiliteItems.d.ts +0 -0
  351. /package/dist/{src/components → components}/FileList/FileList.d.ts +0 -0
  352. /package/dist/{src/components → components}/FileList/UploadItem/UploadItem.d.ts +0 -0
  353. /package/dist/{src/components → components}/FileList/UploadItem/locales.d.ts +0 -0
  354. /package/dist/{src/components → components}/FileList/constants/ExpertiseLevelEnum.d.ts +0 -0
  355. /package/dist/{src/components → components}/FilePreview/AccessibiliteItems.d.ts +0 -0
  356. /package/dist/{src/components → components}/FilePreview/FilePreview.d.ts +0 -0
  357. /package/dist/{src/components → components}/FilePreview/config.d.ts +0 -0
  358. /package/dist/{src/components → components}/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -0
  359. /package/dist/{src/components → components}/FilePreview/locales.d.ts +0 -0
  360. /package/dist/{src/components → components}/FileUpload/AccessibiliteItems.d.ts +0 -0
  361. /package/dist/{src/components → components}/FileUpload/FileUpload.d.ts +0 -0
  362. /package/dist/{src/components → components}/FileUpload/FileUploadContent.d.ts +0 -0
  363. /package/dist/{src/components → components}/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -0
  364. /package/dist/{src/components → components}/FileUpload/locales.d.ts +0 -0
  365. /package/dist/{src/components → components}/FileUpload/useFileDrop.d.ts +0 -0
  366. /package/dist/{src/components → components}/FileUpload/validateFiles.d.ts +0 -0
  367. /package/dist/{src/components → components}/FilterInline/AccessibiliteItems.d.ts +0 -0
  368. /package/dist/{src/components → components}/FilterInline/constants/ExpertiseLevelEnum.d.ts +0 -0
  369. /package/dist/{src/components → components}/FilterInline/locales.d.ts +0 -0
  370. /package/dist/{src/components → components}/FilterSideBar/AccessibiliteItems.d.ts +0 -0
  371. /package/dist/{src/components → components}/FilterSideBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  372. /package/dist/{src/components → components}/FilterSideBar/locales.d.ts +0 -0
  373. /package/dist/{src/components → components}/FooterBar/A11yCompliance.d.ts +0 -0
  374. /package/dist/{src/components → components}/FooterBar/AccessibiliteItems.d.ts +0 -0
  375. /package/dist/{src/components → components}/FooterBar/FooterBar.d.ts +0 -0
  376. /package/dist/{src/components → components}/FooterBar/config.d.ts +0 -0
  377. /package/dist/{src/components → components}/FooterBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  378. /package/dist/{src/components → components}/FooterBar/defaultSocialMediaLinks.d.ts +0 -0
  379. /package/dist/{src/components → components}/FooterBar/locales.d.ts +0 -0
  380. /package/dist/{src/components → components}/FooterBar/types.d.ts +0 -0
  381. /package/dist/{src/components → components}/FranceConnectBtn/AccessibiliteItems.d.ts +0 -0
  382. /package/dist/{src/components → components}/FranceConnectBtn/FranceConnectBtn.d.ts +0 -0
  383. /package/dist/{src/components → components}/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  384. /package/dist/{src/components → components}/HeaderBar/AccessibiliteItems.d.ts +0 -0
  385. /package/dist/{src/components → components}/HeaderBar/HeaderBar.d.ts +0 -0
  386. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +0 -0
  387. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +0 -0
  388. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +0 -0
  389. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +0 -0
  390. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +0 -0
  391. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
  392. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/conts.d.ts +0 -0
  393. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/locals.d.ts +0 -0
  394. /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +0 -0
  395. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/HeaderLogo.d.ts +0 -0
  396. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/locales.d.ts +0 -0
  397. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +0 -0
  398. /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo.d.ts +0 -0
  399. /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +0 -0
  400. /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/locals.d.ts +0 -0
  401. /package/dist/{src/components → components}/HeaderBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  402. /package/dist/{src/components → components}/HeaderBar/consts.d.ts +0 -0
  403. /package/dist/{src/components → components}/HeaderBar/locales.d.ts +0 -0
  404. /package/dist/{src/components → components}/HeaderBar/useHeaderResponsiveMode.d.ts +0 -0
  405. /package/dist/{src/components → components}/HeaderBar/useScrollDirection.d.ts +0 -0
  406. /package/dist/{src/components → components}/HeaderLoading/AccessibiliteItems.d.ts +0 -0
  407. /package/dist/{src/components → components}/HeaderLoading/HeaderLoading.d.ts +0 -0
  408. /package/dist/{src/components → components}/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +0 -0
  409. /package/dist/{src/components → components}/HeaderNavigationBar/HeaderNavigationBar.d.ts +0 -0
  410. /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +0 -0
  411. /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/config.d.ts +0 -0
  412. /package/dist/{src/components → components}/HeaderNavigationBar/types.d.ts +0 -0
  413. /package/dist/{src/components → components}/HeaderToolbar/AccessibiliteItems.d.ts +0 -0
  414. /package/dist/{src/components → components}/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  415. /package/dist/{src/components → components}/HeaderToolbar/types.d.ts +0 -0
  416. /package/dist/{src/components → components}/LangBtn/AccessibiliteItems.d.ts +0 -0
  417. /package/dist/{src/components → components}/LangBtn/LangBtn.d.ts +0 -0
  418. /package/dist/{src/components → components}/LangBtn/config.d.ts +0 -0
  419. /package/dist/{src/components → components}/LangBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  420. /package/dist/{src/components → components}/LangBtn/locales.d.ts +0 -0
  421. /package/dist/{src/components → components}/LangBtn/types.d.ts +0 -0
  422. /package/dist/{src/components → components}/Logo/AccessibiliteItems.d.ts +0 -0
  423. /package/dist/{src/components → components}/Logo/Logo.d.ts +0 -0
  424. /package/dist/{src/components → components}/Logo/LogoSize.d.ts +0 -0
  425. /package/dist/{src/components → components}/Logo/constants/ExpertiseLevelEnum.d.ts +0 -0
  426. /package/dist/{src/components → components}/Logo/locales.d.ts +0 -0
  427. /package/dist/{src/components → components}/Logo/logoDimensionsMapping.d.ts +0 -0
  428. /package/dist/{src/components → components}/Logo/types.d.ts +0 -0
  429. /package/dist/{src/components → components}/LogoBrandSection/AccessibiliteItems.d.ts +0 -0
  430. /package/dist/{src/components → components}/LogoBrandSection/LogoBrandSection.d.ts +0 -0
  431. /package/dist/{src/components → components}/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +0 -0
  432. /package/dist/{src/components → components}/LogoBrandSection/dividerDimensionsMapping.d.ts +0 -0
  433. /package/dist/{src/components → components}/LogoBrandSection/locales.d.ts +0 -0
  434. /package/dist/{src/components → components}/LogoBrandSection/secondaryLogoMapping.d.ts +0 -0
  435. /package/dist/{src/components → components}/LogoBrandSection/types.d.ts +0 -0
  436. /package/dist/{src/components → components}/MaintenancePage/AccessibiliteItems.d.ts +0 -0
  437. /package/dist/{src/components → components}/MaintenancePage/MaintenancePage.d.ts +0 -0
  438. /package/dist/{src/components → components}/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +0 -0
  439. /package/dist/{src/components → components}/MaintenancePage/index.d.ts +0 -0
  440. /package/dist/{src/components → components}/MaintenancePage/locales.d.ts +0 -0
  441. /package/dist/{src/components → components}/NirField/AccessibiliteItems.d.ts +0 -0
  442. /package/dist/{src/components → components}/NirField/constants/ExpertiseLevelEnum.d.ts +0 -0
  443. /package/dist/{src/components → components}/NirField/locales.d.ts +0 -0
  444. /package/dist/{src/components → components}/NirField/nirValidation.d.ts +0 -0
  445. /package/dist/{src/components → components}/NotFoundPage/AccessibiliteItems.d.ts +0 -0
  446. /package/dist/{src/components → components}/NotFoundPage/NotFoundPage.d.ts +0 -0
  447. /package/dist/{src/components → components}/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +0 -0
  448. /package/dist/{src/components → components}/NotFoundPage/locales.d.ts +0 -0
  449. /package/dist/{src/components → components}/NotificationBar/AccessibiliteItems.d.ts +0 -0
  450. /package/dist/{src/components → components}/NotificationBar/NotificationBar.d.ts +0 -0
  451. /package/dist/{src/components → components}/NotificationBar/constants/ExpertiseLevelEnum.d.ts +0 -0
  452. /package/dist/{src/components → components}/NotificationBar/options.d.ts +0 -0
  453. /package/dist/{src/components → components}/NotificationBar/types.d.ts +0 -0
  454. /package/dist/{src/components → components}/PageContainer/AccessibiliteItems.d.ts +0 -0
  455. /package/dist/{src/components → components}/PageContainer/PageContainer.d.ts +0 -0
  456. /package/dist/{src/components → components}/PageContainer/constants/ExpertiseLevelEnum.d.ts +0 -0
  457. /package/dist/{src/components → components}/PaginatedTable/AccessibiliteItems.d.ts +0 -0
  458. /package/dist/{src/components → components}/PaginatedTable/PaginatedTable.d.ts +0 -0
  459. /package/dist/{src/components → components}/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +0 -0
  460. /package/dist/{src/components → components}/PaginatedTable/constants/StateEnum.d.ts +0 -0
  461. /package/dist/{src/components → components}/PaginatedTable/types.d.ts +0 -0
  462. /package/dist/{src/components → components}/PasswordField/AccessibiliteItems.d.ts +0 -0
  463. /package/dist/{src/components → components}/PasswordField/config.d.ts +0 -0
  464. /package/dist/{src/components → components}/PasswordField/constants/ExpertiseLevelEnum.d.ts +0 -0
  465. /package/dist/{src/components → components}/PasswordField/locales.d.ts +0 -0
  466. /package/dist/{src/components → components}/PeriodField/AccessibiliteItems.d.ts +0 -0
  467. /package/dist/{src/components → components}/PeriodField/constants/ExpertiseLevelEnum.d.ts +0 -0
  468. /package/dist/{src/components → components}/PhoneField/AccessibiliteItems.d.ts +0 -0
  469. /package/dist/{src/components → components}/PhoneField/constants/ExpertiseLevelEnum.d.ts +0 -0
  470. /package/dist/{src/components → components}/PhoneField/indicatifs.d.ts +0 -0
  471. /package/dist/{src/components → components}/PhoneField/locales.d.ts +0 -0
  472. /package/dist/{src/components → components}/RangeField/AccessibiliteItems.d.ts +0 -0
  473. /package/dist/{src/components → components}/RangeField/RangeField.d.ts +0 -0
  474. /package/dist/{src/components → components}/RangeField/RangeSlider/RangeSlider.d.ts +0 -0
  475. /package/dist/{src/components → components}/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +0 -0
  476. /package/dist/{src/components → components}/RangeField/RangeSlider/types.d.ts +0 -0
  477. /package/dist/{src/components → components}/RangeField/RangeSlider/useMouseSlide.d.ts +0 -0
  478. /package/dist/{src/components → components}/RangeField/RangeSlider/useRangeSlider.d.ts +0 -0
  479. /package/dist/{src/components → components}/RangeField/RangeSlider/useThumb.d.ts +0 -0
  480. /package/dist/{src/components → components}/RangeField/RangeSlider/useThumbKeyboard.d.ts +0 -0
  481. /package/dist/{src/components → components}/RangeField/RangeSlider/useTooltipsNudge.d.ts +0 -0
  482. /package/dist/{src/components → components}/RangeField/RangeSlider/useTrack.d.ts +0 -0
  483. /package/dist/{src/components → components}/RangeField/RangeSlider/vAnimateClick.d.ts +0 -0
  484. /package/dist/{src/components → components}/RangeField/config.d.ts +0 -0
  485. /package/dist/{src/components → components}/RangeField/constants/ExpertiseLevelEnum.d.ts +0 -0
  486. /package/dist/{src/components → components}/RangeField/locales.d.ts +0 -0
  487. /package/dist/{src/components → components}/RatingPicker/AccessibiliteItems.d.ts +0 -0
  488. /package/dist/{src/components → components}/RatingPicker/EmotionPicker/EmotionPicker.d.ts +0 -0
  489. /package/dist/{src/components → components}/RatingPicker/EmotionPicker/locales.d.ts +0 -0
  490. /package/dist/{src/components → components}/RatingPicker/NumberPicker/NumberPicker.d.ts +0 -0
  491. /package/dist/{src/components → components}/RatingPicker/NumberPicker/locales.d.ts +0 -0
  492. /package/dist/{src/components → components}/RatingPicker/Rating.d.ts +0 -0
  493. /package/dist/{src/components → components}/RatingPicker/RatingPicker.d.ts +0 -0
  494. /package/dist/{src/components → components}/RatingPicker/StarsPicker/StarsPicker.d.ts +0 -0
  495. /package/dist/{src/components → components}/RatingPicker/constants/ExpertiseLevelEnum.d.ts +0 -0
  496. /package/dist/{src/components → components}/RatingPicker/locales.d.ts +0 -0
  497. /package/dist/{src/components → components}/SearchListField/AccessibiliteItems.d.ts +0 -0
  498. /package/dist/{src/components → components}/SearchListField/SearchListField.d.ts +0 -0
  499. /package/dist/{src/components → components}/SearchListField/constants/ExpertiseLevelEnum.d.ts +0 -0
  500. /package/dist/{src/components → components}/SearchListField/locales.d.ts +0 -0
  501. /package/dist/{src/components → components}/SearchListField/types.d.ts +0 -0
  502. /package/dist/{src/components → components}/SelectBtnField/AccessibiliteItems.d.ts +0 -0
  503. /package/dist/{src/components → components}/SelectBtnField/SelectBtnField.d.ts +0 -0
  504. /package/dist/{src/components → components}/SelectBtnField/config.d.ts +0 -0
  505. /package/dist/{src/components → components}/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +0 -0
  506. /package/dist/{src/components → components}/SelectBtnField/types.d.ts +0 -0
  507. /package/dist/{src/components → components}/SkipLink/AccessibiliteItems.d.ts +0 -0
  508. /package/dist/{src/components → components}/SkipLink/SkipLink.d.ts +0 -0
  509. /package/dist/{src/components → components}/SkipLink/constants/ExpertiseLevelEnum.d.ts +0 -0
  510. /package/dist/{src/components → components}/SkipLink/locales.d.ts +0 -0
  511. /package/dist/{src/components → components}/SocialMediaLinks/AccessibiliteItems.d.ts +0 -0
  512. /package/dist/{src/components → components}/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +0 -0
  513. /package/dist/{src/components → components}/SocialMediaLinks/SocialMediaLinks.d.ts +0 -0
  514. /package/dist/{src/components → components}/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
  515. /package/dist/{src/components → components}/SocialMediaLinks/locales.d.ts +0 -0
  516. /package/dist/{src/components → components}/SocialMediaLinks/types.d.ts +0 -0
  517. /package/dist/{src/components → components}/SubHeader/AccessibiliteItems.d.ts +0 -0
  518. /package/dist/{src/components → components}/SubHeader/SubHeader.d.ts +0 -0
  519. /package/dist/{src/components → components}/SubHeader/config.d.ts +0 -0
  520. /package/dist/{src/components → components}/SubHeader/constants/ExpertiseLevelEnum.d.ts +0 -0
  521. /package/dist/{src/components → components}/SubHeader/locales.d.ts +0 -0
  522. /package/dist/{src/components → components}/SyAlert/AccessibiliteItems.d.ts +0 -0
  523. /package/dist/{src/components → components}/SyAlert/SyAlert.d.ts +0 -0
  524. /package/dist/{src/components → components}/SyAlert/constants/ExpertiseLevelEnum.d.ts +0 -0
  525. /package/dist/{src/components → components}/SyAlert/locales.d.ts +0 -0
  526. /package/dist/{src/components → components}/TableToolbar/AccessibiliteItems.d.ts +0 -0
  527. /package/dist/{src/components → components}/TableToolbar/TableToolbar.d.ts +0 -0
  528. /package/dist/{src/components → components}/TableToolbar/config.d.ts +0 -0
  529. /package/dist/{src/components → components}/TableToolbar/constants/ExpertiseLevelEnum.d.ts +0 -0
  530. /package/dist/{src/components → components}/TableToolbar/locales.d.ts +0 -0
  531. /package/dist/{src/components → components}/UploadWorkflow/AccessibiliteItems.d.ts +0 -0
  532. /package/dist/{src/components → components}/UploadWorkflow/config.d.ts +0 -0
  533. /package/dist/{src/components → components}/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +0 -0
  534. /package/dist/{src/components → components}/UploadWorkflow/locales.d.ts +0 -0
  535. /package/dist/{src/components → components}/UploadWorkflow/types.d.ts +0 -0
  536. /package/dist/{src/components → components}/UploadWorkflow/useFileList.d.ts +0 -0
  537. /package/dist/{src/components → components}/UploadWorkflow/useFileUploadJourney.d.ts +0 -0
  538. /package/dist/{src/components → components}/UserMenuBtn/AccessibiliteItems.d.ts +0 -0
  539. /package/dist/{src/components → components}/UserMenuBtn/UserMenuBtn.d.ts +0 -0
  540. /package/dist/{src/components → components}/UserMenuBtn/config.d.ts +0 -0
  541. /package/dist/{src/components → components}/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
  542. /package/dist/{src/composables → composables}/date/useDateFormat.d.ts +0 -0
  543. /package/dist/{src/composables → composables}/date/useDateInitialization.d.ts +0 -0
  544. /package/dist/{src/composables → composables}/index.d.ts +0 -0
  545. /package/dist/{src/composables → composables}/rules/useFieldValidation.d.ts +0 -0
  546. /package/dist/{src/composables → composables}/useCustomizableOptions.d.ts +0 -0
  547. /package/dist/{src/composables → composables}/useFilterable/useFilterable.d.ts +0 -0
  548. /package/dist/{src/composables → composables}/validation/useValidation.d.ts +0 -0
  549. /package/dist/{src/composables → composables}/widthable/index.d.ts +0 -0
  550. /package/dist/{src/constants → constants}/icons.d.ts +0 -0
  551. /package/dist/{src/designTokens → designTokens}/index.d.ts +0 -0
  552. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamContextual.d.ts +0 -0
  553. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamDarkTheme.d.ts +0 -0
  554. /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamSemantic.d.ts +0 -0
  555. /package/dist/{src/designTokens → designTokens}/tokens/pa/paContextual.d.ts +0 -0
  556. /package/dist/{src/designTokens → designTokens}/tokens/pa/paDarkTheme.d.ts +0 -0
  557. /package/dist/{src/designTokens → designTokens}/tokens/pa/paSemantic.d.ts +0 -0
  558. /package/dist/{src/designTokens → designTokens}/utils/convertGaps.d.ts +0 -0
  559. /package/dist/{src/designTokens → designTokens}/utils/convertSemanticsToken.d.ts +0 -0
  560. /package/dist/{src/designTokens → designTokens}/utils/createFlattenTheme.d.ts +0 -0
  561. /package/dist/{src/designTokens → designTokens}/utils/index.d.ts +0 -0
  562. /package/dist/{src/directives → directives}/clickOutside.d.ts +0 -0
  563. /package/dist/{src/main.d.ts → main.d.ts} +0 -0
  564. /package/dist/{src/modules.d.ts → modules.d.ts} +0 -0
  565. /package/dist/{src/services → services}/NotificationService.d.ts +0 -0
  566. /package/dist/{src/services → services}/index.d.ts +0 -0
  567. /package/dist/{src/stories → stories}/Accessibilite/Vuetify/VuetifyItems.d.ts +0 -0
  568. /package/dist/{src/stories → stories}/EcoConception/ecoDesignItems.d.ts +0 -0
  569. /package/dist/{src/types → types}/vuetifyTypes.d.ts +0 -0
  570. /package/dist/{src/utils → utils}/calcHumanFileSize/index.d.ts +0 -0
  571. /package/dist/{src/utils → utils}/convertToUnit/index.d.ts +0 -0
  572. /package/dist/{src/utils → utils}/formatDate/index.d.ts +0 -0
  573. /package/dist/{src/utils → utils}/functions/copyToClipboard/index.d.ts +0 -0
  574. /package/dist/{src/utils → utils}/functions/deepCopy/index.d.ts +0 -0
  575. /package/dist/{src/utils → utils}/functions/downloadFile/index.d.ts +0 -0
  576. /package/dist/{src/utils → utils}/functions/downloadFile/types.d.ts +0 -0
  577. /package/dist/{src/utils → utils}/functions/throttleDisplayFn/throttleDisplayFn.d.ts +0 -0
  578. /package/dist/{src/utils → utils}/functions/validation/isDateAfter/index.d.ts +0 -0
  579. /package/dist/{src/utils → utils}/functions/validation/isDateBefore/index.d.ts +0 -0
  580. /package/dist/{src/utils → utils}/functions/validation/isDateInRange/index.d.ts +0 -0
  581. /package/dist/{src/utils → utils}/functions/validation/isDateValid/index.d.ts +0 -0
  582. /package/dist/{src/utils → utils}/functions/validation/isEmailValid/index.d.ts +0 -0
  583. /package/dist/{src/utils → utils}/functions/validation/isWeekend/index.d.ts +0 -0
  584. /package/dist/{src/utils → utils}/localStorageUtility/index.d.ts +0 -0
  585. /package/dist/{src/utils → utils}/parseDate/index.d.ts +0 -0
  586. /package/dist/{src/utils → utils}/propValidator/index.d.ts +0 -0
  587. /package/dist/{src/utils → utils}/ruleMessage/index.d.ts +0 -0
  588. /package/dist/{src/utils → utils}/rules/doMatchPattern/index.d.ts +0 -0
  589. /package/dist/{src/utils → utils}/rules/doMatchPattern/locales.d.ts +0 -0
  590. /package/dist/{src/utils → utils}/rules/index.d.ts +0 -0
  591. /package/dist/{src/utils → utils}/rules/isDateValid/index.d.ts +0 -0
  592. /package/dist/{src/utils → utils}/rules/isDateValid/locales.d.ts +0 -0
  593. /package/dist/{src/utils → utils}/rules/isExactLength/index.d.ts +0 -0
  594. /package/dist/{src/utils → utils}/rules/isExactLength/locales.d.ts +0 -0
  595. /package/dist/{src/utils → utils}/rules/isMaxLength/index.d.ts +0 -0
  596. /package/dist/{src/utils → utils}/rules/isMaxLength/locales.d.ts +0 -0
  597. /package/dist/{src/utils → utils}/rules/isMinLength/index.d.ts +0 -0
  598. /package/dist/{src/utils → utils}/rules/isMinLength/locales.d.ts +0 -0
  599. /package/dist/{src/utils → utils}/rules/isNotAfterDate/index.d.ts +0 -0
  600. /package/dist/{src/utils → utils}/rules/isNotAfterDate/locales.d.ts +0 -0
  601. /package/dist/{src/utils → utils}/rules/isNotAfterToday/index.d.ts +0 -0
  602. /package/dist/{src/utils → utils}/rules/isNotAfterToday/locales.d.ts +0 -0
  603. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/index.d.ts +0 -0
  604. /package/dist/{src/utils → utils}/rules/isNotBeforeDate/locales.d.ts +0 -0
  605. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/index.d.ts +0 -0
  606. /package/dist/{src/utils → utils}/rules/isNotBeforeToday/locales.d.ts +0 -0
  607. /package/dist/{src/utils → utils}/rules/isRequired/index.d.ts +0 -0
  608. /package/dist/{src/utils → utils}/rules/isRequired/locales.d.ts +0 -0
  609. /package/dist/{src/utils → utils}/rules/isValidEmail/index.d.ts +0 -0
  610. /package/dist/{src/utils → utils}/rules/isValidEmail/locales.d.ts +0 -0
  611. /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
  `;
@@ -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
+ `;
@@ -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
  `;
@@ -1,45 +1,76 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
3
  exports[`HeaderBar > should render the component 1`] = `
4
- "<header data-v-efdbe191="" class="header" style="min-height: auto;">
5
- <div data-v-efdbe191="" class="sticky-header" style="position: relative; width: 100%; top: auto; transform: none; transition: none;">
6
- <!--v-if-->
7
- <div data-v-efdbe191="" class="inner-header">
8
- <div data-v-efdbe191="" class="header-logo pl-xl-0 pl-md-14 pl-4"><a data-v-a3ce97de="" data-v-efdbe191="" href="/" class="logo"><svg data-v-d1ac2910="" data-v-a3ce97de="" fill="#0c419a" width="141" height="42" viewBox="0 0 211 64" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-label="Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil">
9
- <g data-v-d1ac2910="">
10
- <path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-d1ac2910=""></path>
11
- <path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-d1ac2910=""></path>
12
- <path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-d1ac2910=""></path>
13
- <path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-d1ac2910=""></path>
14
- <path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-d1ac2910=""></path>
15
- <path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-d1ac2910=""></path>
16
- <path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-d1ac2910=""></path>
17
- <path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-d1ac2910=""></path>
18
- <path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-d1ac2910=""></path>
19
- <path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-d1ac2910=""></path>
20
- <path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-d1ac2910=""></path>
21
- <path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-d1ac2910=""></path>
22
- <path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-d1ac2910=""></path>
23
- <path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-d1ac2910=""></path>
24
- <path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-d1ac2910=""></path>
25
- <path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-d1ac2910=""></path>
26
- <path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-d1ac2910=""></path>
27
- <path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-d1ac2910=""></path>
4
+ <header
5
+ class="header"
6
+ style="min-height: auto;"
7
+ >
8
+ <div
9
+ class="sticky-header"
10
+ style="position: relative; width: 100%; top: auto; transform: none; transition: none;"
11
+ >
12
+ <!-- v-if -->
13
+ <div class="inner-header">
14
+ <div class="
15
+ header-logo
16
+ pl-4
17
+ pl-md-14
18
+ pl-xl-0
19
+ ">
20
+ <a
21
+ class="logo"
22
+ href="/"
23
+ ><svg
24
+ aria-label="Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"
25
+ fill="#0c419a"
26
+ focusable="false"
27
+ height="42"
28
+ role="img"
29
+ viewBox="0 0 211 64"
30
+ width="141"
31
+ xmlns="http://www.w3.org/2000/svg"
32
+ >
33
+ <g>
34
+ <path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" />
35
+ <path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" />
36
+ <path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" />
37
+ <path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" />
38
+ <path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" />
39
+ <path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" />
40
+ <path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" />
41
+ <path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" />
42
+ <path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" />
43
+ <path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" />
44
+ <path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" />
45
+ <path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" />
46
+ <path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" />
47
+ <path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" />
48
+ <path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" />
49
+ <path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" />
50
+ <path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" />
51
+ <path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" />
28
52
  </g>
29
- <path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-d1ac2910=""></path>
30
- <path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-d1ac2910=""></path>
31
- <path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-d1ac2910=""></path>
32
- <path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-d1ac2910=""></path>
33
- <path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-d1ac2910=""></path>
34
- <path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-d1ac2910=""></path>
35
- <path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-d1ac2910=""></path>
53
+ <path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" />
54
+ <path
55
+ clip-rule="evenodd"
56
+ d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"
57
+ fill-rule="evenodd"
58
+ />
59
+ <path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" />
60
+ <path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" />
61
+ <path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" />
62
+ <path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" />
63
+ <path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" />
36
64
  </svg>
37
- <!--v-if-->
38
- <!--v-if-->
39
- </a></div>
40
- <!--v-if-->
65
+
66
+ <!-- v-if -->
67
+
68
+ <!-- v-if -->
69
+ </a>
70
+ </div>
71
+ <!-- v-if -->
41
72
  </div>
42
- <!--v-if-->
73
+ <!-- v-if -->
43
74
  </div>
44
- </header>"
75
+ </header>
45
76
  `;
@@ -10,7 +10,7 @@ L’élément `HeaderToolbar` est utilisé pour afficher une barre d'outils en h
10
10
  <Canvas
11
11
  of={HeaderToolbar.Default}
12
12
  story={{
13
- height: '500px',
13
+ height: '550px',
14
14
  }}
15
15
  />
16
16