@cnamts/synapse 1.0.13 → 1.0.15

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 (254) hide show
  1. package/README.md +72 -72
  2. package/dist/{DateFilter-_EFzsvvM.js → DateFilter-isr8mXVb.js} +1 -1
  3. package/dist/{NumberFilter-CUxEbKJh.js → NumberFilter-BOe7DqWX.js} +1 -1
  4. package/dist/{PeriodFilter-D5ueqtKy.js → PeriodFilter-WTprpO40.js} +1 -1
  5. package/dist/{SelectFilter-BciBNydy.js → SelectFilter-CqlG5dmI.js} +1 -1
  6. package/dist/{TextFilter-DMN_WAQB.js → TextFilter-fVW5bsRw.js} +1 -1
  7. package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +60 -28
  8. package/dist/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.d.ts +3 -3
  9. package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +60 -28
  10. package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +61 -29
  11. package/dist/components/Amelipro/AmeliproTextArea/AmeliproTextArea.d.ts +5 -1
  12. package/dist/components/Amelipro/AmeliproTextField/AmeliproTextField.d.ts +3 -1
  13. package/dist/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.d.ts +1 -1
  14. package/dist/components/Captcha/Captcha.d.ts +2 -0
  15. package/dist/components/Captcha/CaptchaBase.d.ts +1 -0
  16. package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +29 -17
  17. package/dist/components/Customs/SyTabs/SyTabs.d.ts +20 -0
  18. package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +100 -10
  19. package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +108 -21
  20. package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +6 -6
  21. package/dist/components/DatePicker/composables/useDateFormatDisplay.d.ts +3 -0
  22. package/dist/components/DatePicker/tests/setup.d.ts +768 -48
  23. package/dist/components/FilterSideBar/FilterSideBar.d.ts +8 -0
  24. package/dist/components/HeaderToolbar/HeaderToolbar.d.ts +58 -34
  25. package/dist/components/LangBtn/LangBtn.d.ts +4 -0
  26. package/dist/components/PeriodField/PeriodField.d.ts +192 -12
  27. package/dist/components/RatingPicker/RatingPicker.d.ts +9 -0
  28. package/dist/components/SearchListField/SearchListField.d.ts +42 -413
  29. package/dist/components/SearchListField/locales.d.ts +1 -2
  30. package/dist/components/SyAlert/SyAlert.d.ts +1 -1
  31. package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
  32. package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +15 -8
  33. package/dist/components/Tables/SyTable/SyTable.d.ts +15 -8
  34. package/dist/components/Tables/common/SyTablePagination.d.ts +29 -17
  35. package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +4 -0
  36. package/dist/components/Tables/common/types.d.ts +2 -0
  37. package/dist/design-system-v3.js +1 -1
  38. package/dist/design-system-v3.umd.cjs +32 -16
  39. package/dist/{main-DISHlqcd.js → main-CbBVJ_le.js} +9911 -9751
  40. package/dist/style.css +1 -1
  41. package/package.json +5 -2
  42. package/src/assets/amelipro/icons.ts +17 -0
  43. package/src/components/Amelipro/AmeliproAccordionFrieze/AmeliproAccordionFrieze.stories.ts +40 -36
  44. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/AmeliproAccordionGroup.spec.ts +226 -26
  45. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/__snapshots__/AmeliproAccordionGroup.spec.ts.snap +55 -506
  46. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.stories.ts +1 -1
  47. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.vue +7 -2
  48. package/src/components/Amelipro/AmeliproAccordionList/__tests__/__snapshots__/AmeliproAccordionList.spec.ts.snap +2 -1
  49. package/src/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResultTemplate/__tests__/__snapshots__/AmeliproAccordionResultTemplate.spec.ts.snap +4 -1
  50. package/src/components/Amelipro/AmeliproAccordionResult/__tests__/__snapshots__/AmeliproAccordionResult.spec.ts.snap +4 -1
  51. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.stories.ts +1 -1
  52. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.vue +9 -3
  53. package/src/components/Amelipro/AmeliproAccordionResultList/__tests__/__snapshots__/AmeliproAccordionResultList.spec.ts.snap +42 -11
  54. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.stories.ts +4 -4
  55. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.vue +7 -5
  56. package/src/components/Amelipro/AmeliproAutoCompleteField/__tests__/__snapshots__/AmeliproAutoCompleteField.spec.ts.snap +4 -2
  57. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.stories.ts +1 -40
  58. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.vue +4 -0
  59. package/src/components/Amelipro/AmeliproCallback/AmeliproCallback.stories.ts +4 -2
  60. package/src/components/Amelipro/AmeliproCaptcha/__tests__/__snapshots__/AmeliproCaptcha.spec.ts.snap +2 -1
  61. package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.stories.ts +39 -29
  62. package/src/components/Amelipro/AmeliproCopyBtn/__tests__/__snapshots__/AmeliproCopyBtn.spec.ts.snap +4 -1
  63. package/src/components/Amelipro/AmeliproCustomSelector/AmeliproCustomSelector.vue +3 -3
  64. package/src/components/Amelipro/AmeliproCustomSelector/__tests__/__snapshots__/AmeliproCustomSelector.spec.ts.snap +8 -6
  65. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.mdx +3 -1
  66. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.stories.ts +23 -5
  67. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.vue +5 -6
  68. package/src/components/Amelipro/AmeliproFilePreview/__tests__/AmeliproFilePreview.spec.ts +2 -2
  69. package/src/components/Amelipro/AmeliproFilePreview/__tests__/__snapshots__/AmeliproFilePreview.spec.ts.snap +5 -6
  70. package/src/components/Amelipro/AmeliproFirstLogin/__tests__/__snapshots__/AmeliproFirstLogin.spec.ts.snap +4 -1
  71. package/src/components/Amelipro/AmeliproHeader/AmeliproHeader.vue +1 -2
  72. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/__tests__/AmeliproLogoAm.spec.ts +78 -0
  73. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/{tests → __tests__}/__snapshots__/AmeliproLogoAm.spec.ts.snap +64 -2
  74. package/src/components/Amelipro/AmeliproIcon/__tests__/AmeliproIcon.spec.ts +358 -0
  75. package/src/components/Amelipro/AmeliproIcon/{tests → __tests__}/__snapshots__/AmeliproIcon.spec.ts.snap +30 -3
  76. package/src/components/Amelipro/AmeliproIcon/iconList.ts +1 -0
  77. package/src/components/Amelipro/AmeliproIconBtn/AmeliproIconBtn.vue +1 -1
  78. package/src/components/Amelipro/AmeliproIconBtn/__tests__/AmeliproIconBtn.spec.ts +459 -0
  79. package/src/components/Amelipro/AmeliproIconBtn/__tests__/__snapshots__/AmeliproIconBtn.spec.ts.snap +58 -0
  80. package/src/components/Amelipro/AmeliproIllustratedDataTile/AmeliproIllustratedDataTile.stories.ts +38 -26
  81. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/AmeliproIllustratedDataTile.spec.ts +321 -0
  82. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +148 -0
  83. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.stories.ts +14 -5
  84. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.vue +1 -1
  85. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/AmeliproIllustratedRadioGroup.spec.ts +498 -0
  86. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +325 -0
  87. package/src/components/Amelipro/AmeliproMailTile/__tests__/AmeliproMailTile.spec.ts +210 -0
  88. package/src/components/Amelipro/AmeliproMailTile/__tests__/__snapshots__/AmeliproMailTile.spec.ts.snap +98 -0
  89. package/src/components/Amelipro/AmeliproMessage/__tests__/AmeliproMessage.spec.ts +446 -0
  90. package/src/components/Amelipro/AmeliproMessage/__tests__/__snapshots__/AmeliproMessage.spec.ts.snap +60 -0
  91. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/AmeliproMessagingLayout.spec.ts +300 -0
  92. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +197 -0
  93. package/src/components/Amelipro/AmeliproNumberedCard/__tests__/AmeliproNumberedCard.spec.ts +117 -0
  94. package/src/components/Amelipro/AmeliproNumberedCard/{tests → __tests__}/__snapshots__/AmeliproNumberedCard.spec.ts.snap +47 -45
  95. package/src/components/Amelipro/AmeliproOnboarding/__tests__/AmeliproOnboarding.spec.ts +219 -0
  96. package/src/components/Amelipro/AmeliproOnboarding/__tests__/__snapshots__/AmeliproOnboarding.spec.ts.snap +41 -0
  97. package/src/components/Amelipro/AmeliproPageLayout/__tests__/AmeliproPageLayout.spec.ts +129 -0
  98. package/src/components/Amelipro/AmeliproPageLayout/__tests__/__snapshots__/AmeliproPageLayout.spec.ts.snap +189 -0
  99. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/AmeliproPaginationBtn.spec.ts +92 -0
  100. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +56 -0
  101. package/src/components/Amelipro/AmeliproPagination/__tests__/AmeliproPagination.spec.ts +165 -0
  102. package/src/components/Amelipro/AmeliproPagination/__tests__/__snapshots__/AmeliproPagination.spec.ts.snap +83 -0
  103. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/AmeliproPatientBanner.spec.ts +208 -0
  104. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/__snapshots__/AmeliproPatientBanner.spec.ts.snap +285 -0
  105. package/src/components/Amelipro/AmeliproPatientLogged/__tests__/__snapshots__/AmeliproPatientLogged.spec.ts.snap +26 -7
  106. package/src/components/Amelipro/AmeliproPostalAddressField/AmeliproPostalAddressCityRow/__tests__/__snapshots__/AmeliproPostalAddressCityRow.spec.ts.snap +12 -4
  107. package/src/components/Amelipro/AmeliproRadioGroup/AmeliproRadioGroup.stories.ts +28 -8
  108. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/AmeliproRadioGroup.spec.ts +332 -0
  109. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/__snapshots__/AmeliproRadioGroup.spec.ts.snap +255 -0
  110. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.stories.ts +1 -2
  111. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.vue +3 -1
  112. package/src/components/Amelipro/AmeliproResultList/__tests__/__snapshots__/AmeliproResultList.spec.ts.snap +2 -1
  113. package/src/components/Amelipro/AmeliproSelect/AmeliproSelect.vue +11 -5
  114. package/src/components/Amelipro/AmeliproSelect/__tests__/AmeliproSelect.spec.ts +481 -0
  115. package/src/components/Amelipro/AmeliproSelect/__tests__/__snapshots__/AmeliproSelect.spec.ts.snap +117 -0
  116. package/src/components/Amelipro/AmeliproStateTile/AmeliproStateTile.vue +5 -2
  117. package/src/components/Amelipro/AmeliproStateTile/__tests__/AmeliproStateTile.spec.ts +206 -0
  118. package/src/components/Amelipro/AmeliproStateTile/__tests__/__snapshots__/AmeliproStateTile.spec.ts.snap +158 -0
  119. package/src/components/Amelipro/AmeliproStatus/__tests__/AmeliproStatus.spec.ts +120 -0
  120. package/src/components/Amelipro/AmeliproStatus/__tests__/__snapshots__/AmeliproStatus.spec.ts.snap +39 -0
  121. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/AmeliproStepBtn.spec.ts +97 -0
  122. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/__snapshots__/AmeliproStepBtn.spec.ts.snap +61 -0
  123. package/src/components/Amelipro/AmeliproStepper/__tests__/AmeliproStepper.spec.ts +248 -0
  124. package/src/components/Amelipro/AmeliproStepper/__tests__/__snapshots__/AmeliproStepper.spec.ts.snap +179 -0
  125. package/src/components/Amelipro/AmeliproTable/AmeliproTable.stories.ts +14 -13
  126. package/src/components/Amelipro/AmeliproTable/AmeliproTable.vue +2 -1
  127. package/src/components/Amelipro/AmeliproTable/__tests__/__snapshots__/AmeliproTable.spec.ts.snap +10 -3
  128. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/AmeliproTabBtn.spec.ts +129 -0
  129. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/__snapshots__/AmeliproTabBtn.spec.ts.snap +81 -0
  130. package/src/components/Amelipro/AmeliproTabs/AmeliproTabs.vue +2 -2
  131. package/src/components/Amelipro/AmeliproTabs/__tests__/AmeliproTabs.spec.ts +234 -0
  132. package/src/components/Amelipro/AmeliproTabs/__tests__/__snapshots__/AmeliproTabs.spec.ts.snap +122 -0
  133. package/src/components/Amelipro/AmeliproTextArea/AmeliproTextArea.vue +7 -5
  134. package/src/components/Amelipro/AmeliproTextArea/__tests__/AmeliproTextArea.spec.ts +265 -9
  135. package/src/components/Amelipro/AmeliproTextArea/__tests__/__snapshots__/AmeliproTextArea.spec.ts.snap +98 -155
  136. package/src/components/Amelipro/AmeliproTextField/AmeliproTextField.vue +7 -5
  137. package/src/components/Amelipro/AmeliproTextField/__tests__/AmeliproTextField.spec.ts +375 -0
  138. package/src/components/Amelipro/AmeliproTextField/__tests__/__snapshots__/AmeliproTextField.spec.ts.snap +143 -0
  139. package/src/components/Amelipro/AmeliproTileBtn/__tests__/AmeliproTileBtn.spec.ts +241 -0
  140. package/src/components/Amelipro/AmeliproTileBtn/__tests__/__snapshots__/AmeliproTileBtn.spec.ts.snap +74 -0
  141. package/src/components/Amelipro/AmeliproTooltips/__tests__/AmeliproTooltips.spec.ts +212 -0
  142. package/src/components/Amelipro/AmeliproTooltips/__tests__/__snapshots__/AmeliproTooltips.spec.ts.snap +71 -0
  143. package/src/components/Amelipro/AmeliproTransmission/__tests__/AmeliproTransmission.spec.ts +155 -0
  144. package/src/components/Amelipro/AmeliproTransmission/__tests__/__snapshots__/AmeliproTransmission.spec.ts.snap +240 -0
  145. package/src/components/Amelipro/AmeliproUpload/AmeliproUpload.stories.ts +0 -1
  146. package/src/components/Amelipro/ServiceMenu/tests/__snapshots__/ServiceMenu.spec.ts.snap +4 -1
  147. package/src/components/Amelipro/StructureMenu/StructureBtn/StructureBtn.vue +4 -0
  148. package/src/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.vue +4 -5
  149. package/src/components/Amelipro/StructureMenu/StructureTabs/tests/__snapshots__/StructureTabs.spec.ts.snap +5 -4
  150. package/src/components/Amelipro/StructureMenu/tests/__snapshots__/StructureMenu.spec.ts.snap +13 -6
  151. package/src/components/Amelipro/UserMenu/UserMenu.vue +2 -1
  152. package/src/components/Amelipro/UserMenu/tests/__snapshots__/UserMenu.spec.ts.snap +4 -1
  153. package/src/components/Captcha/Captcha.mdx +4 -4
  154. package/src/components/Captcha/Captcha.stories.ts +8 -1
  155. package/src/components/Captcha/Captcha.vue +3 -0
  156. package/src/components/Captcha/CaptchaBase.vue +3 -0
  157. package/src/components/Captcha/captchaApi.ts +0 -1
  158. package/src/components/Customs/Selects/SySelect/SySelect.vue +2 -2
  159. package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +5 -0
  160. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +1 -1
  161. package/src/components/Customs/SyTabs/SyTabs.stories.ts +174 -10
  162. package/src/components/Customs/SyTabs/SyTabs.vue +62 -0
  163. package/src/components/Customs/SyTabs/tests/SyTabs.spec.ts +98 -0
  164. package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +13 -13
  165. package/src/components/DatePicker/CalendarMode/DatePicker.vue +13 -0
  166. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +11 -11
  167. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +5 -0
  168. package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.mdx +7 -0
  169. package/src/components/DatePicker/DateTextInput/DateTextInput.range.spec.ts +1 -1
  170. package/src/components/DatePicker/DateTextInput/DateTextInput.spec.ts +3 -3
  171. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +50 -2
  172. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +15 -15
  173. package/src/components/DatePicker/composables/tests/useDateFormatValidation.spec.ts +2 -2
  174. package/src/components/DatePicker/composables/tests/useManualDateValidation.spec.ts +1 -1
  175. package/src/components/DatePicker/composables/useDateFormatDisplay.ts +25 -0
  176. package/src/components/DatePicker/composables/useDateFormatValidation.ts +5 -2
  177. package/src/components/DatePicker/composables/useManualDateValidation.ts +5 -1
  178. package/src/components/DatePicker/tests/DatePicker.validation.spec.ts +1 -1
  179. package/src/components/ErrorPage/ErrorPage.vue +54 -7
  180. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +6 -2
  181. package/src/components/ExternalLinks/ExternalLinks.vue +2 -4
  182. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +6 -2
  183. package/src/components/PasswordField/PasswordField.vue +6 -6
  184. package/src/components/RangeField/RangeSlider/RangeSlider.vue +3 -2
  185. package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +2 -1
  186. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -0
  187. package/src/components/RatingPicker/RatingPicker.stories.ts +10 -0
  188. package/src/components/RatingPicker/RatingPicker.vue +23 -1
  189. package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +2 -0
  190. package/src/components/SearchListField/Accessibilite.stories.ts +4 -0
  191. package/src/components/SearchListField/SearchListField.stories.ts +16 -0
  192. package/src/components/SearchListField/SearchListField.vue +121 -109
  193. package/src/components/SearchListField/locales.ts +11 -2
  194. package/src/components/SearchListField/tests/SearchListField.spec.ts +91 -25
  195. package/src/components/SyAlert/SyAlert.vue +8 -0
  196. package/src/components/SyAlert/tests/SyAlert.spec.ts +1 -22
  197. package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +304 -0
  198. package/src/components/Tables/SyServerTable/SyServerTable.vue +12 -4
  199. package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +67 -0
  200. package/src/components/Tables/SyTable/SyTable.stories.ts +186 -0
  201. package/src/components/Tables/SyTable/SyTable.vue +12 -4
  202. package/src/components/Tables/SyTable/tests/SyTable.spec.ts +65 -1
  203. package/src/components/Tables/common/types.ts +2 -0
  204. package/src/composables/rules/useFieldValidation.ts +47 -7
  205. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/tests/AmeliproLogoAm.spec.ts +0 -15
  206. package/src/components/Amelipro/AmeliproIcon/tests/AmeliproIcon.spec.ts +0 -19
  207. package/src/components/Amelipro/AmeliproIconBtn/tests/AmeliproIconBtn.spec.ts +0 -22
  208. package/src/components/Amelipro/AmeliproIconBtn/tests/__snapshots__/AmeliproIconBtn.spec.ts.snap +0 -87
  209. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/AmeliproIllustratedDataTile.spec.ts +0 -20
  210. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +0 -69
  211. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/AmeliproIllustratedRadioGroup.spec.ts +0 -53
  212. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +0 -544
  213. package/src/components/Amelipro/AmeliproMailTile/tests/AmeliproMailTile.spec.ts +0 -25
  214. package/src/components/Amelipro/AmeliproMailTile/tests/__snapshots__/AmeliproMailTile.spec.ts.snap +0 -164
  215. package/src/components/Amelipro/AmeliproMessage/tests/AmeliproMessage.spec.ts +0 -18
  216. package/src/components/Amelipro/AmeliproMessage/tests/__snapshots__/AmeliproMessage.spec.ts.snap +0 -94
  217. package/src/components/Amelipro/AmeliproMessagingLayout/tests/AmeliproMessagingLayout.spec.ts +0 -30
  218. package/src/components/Amelipro/AmeliproMessagingLayout/tests/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +0 -439
  219. package/src/components/Amelipro/AmeliproNumberedCard/tests/AmeliproNumberedCard.spec.ts +0 -23
  220. package/src/components/Amelipro/AmeliproOnboarding/tests/AmeliproOnboarding.spec.ts +0 -41
  221. package/src/components/Amelipro/AmeliproOnboarding/tests/__snapshots__/AmeliproOnboarding.spec.ts.snap +0 -3
  222. package/src/components/Amelipro/AmeliproPageLayout/tests/AmeliproPageLayout.spec.ts +0 -183
  223. package/src/components/Amelipro/AmeliproPageLayout/tests/__snapshots__/AmeliproPageLayout.spec.ts.snap +0 -1602
  224. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/AmeliproPaginationBtn.spec.ts +0 -15
  225. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +0 -46
  226. package/src/components/Amelipro/AmeliproPagination/tests/AmeliproPagination.spec.ts +0 -15
  227. package/src/components/Amelipro/AmeliproPagination/tests/__snapshots__/AmeliproPagination.spec.ts.snap +0 -116
  228. package/src/components/Amelipro/AmeliproPatientBanner/tests/AmeliproPatientBanner.spec.ts +0 -24
  229. package/src/components/Amelipro/AmeliproPatientBanner/tests/__snapshots__/AmeliproPatientBanner.spec.ts.snap +0 -268
  230. package/src/components/Amelipro/AmeliproRadioGroup/tests/AmeliproRadioGroup.spec.ts +0 -43
  231. package/src/components/Amelipro/AmeliproRadioGroup/tests/__snapshots__/AmeliproRadioGroup.spec.ts.snap +0 -262
  232. package/src/components/Amelipro/AmeliproSelect/tests/AmeliproSelect.spec.ts +0 -38
  233. package/src/components/Amelipro/AmeliproSelect/tests/__snapshots__/AmeliproSelect.spec.ts.snap +0 -196
  234. package/src/components/Amelipro/AmeliproStateTile/tests/AmeliproStateTile.spec.ts +0 -20
  235. package/src/components/Amelipro/AmeliproStateTile/tests/__snapshots__/AmeliproStateTile.spec.ts.snap +0 -90
  236. package/src/components/Amelipro/AmeliproStatus/tests/AmeliproStatus.spec.ts +0 -16
  237. package/src/components/Amelipro/AmeliproStatus/tests/__snapshots__/AmeliproStatus.spec.ts.snap +0 -21
  238. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/AmeliproStepBtn.spec.ts +0 -18
  239. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/__snapshots__/AmeliproStepBtn.spec.ts.snap +0 -34
  240. package/src/components/Amelipro/AmeliproStepper/tests/AmeliproStepper.spec.ts +0 -36
  241. package/src/components/Amelipro/AmeliproStepper/tests/__snapshots__/AmeliproStepper.spec.ts.snap +0 -354
  242. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/AmeliproTabBtn.spec.ts +0 -20
  243. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/__snapshots__/AmeliproTabBtn.spec.ts.snap +0 -34
  244. package/src/components/Amelipro/AmeliproTabs/tests/AmeliproTabs.spec.ts +0 -39
  245. package/src/components/Amelipro/AmeliproTabs/tests/__snapshots__/AmeliproTabs.spec.ts.snap +0 -217
  246. package/src/components/Amelipro/AmeliproTextField/tests/AmeliproTextField.spec.ts +0 -16
  247. package/src/components/Amelipro/AmeliproTextField/tests/__snapshots__/AmeliproTextField.spec.ts.snap +0 -162
  248. package/src/components/Amelipro/AmeliproTileBtn/tests/AmeliproTileBtn.spec.ts +0 -17
  249. package/src/components/Amelipro/AmeliproTileBtn/tests/__snapshots__/AmeliproTileBtn.spec.ts.snap +0 -65
  250. package/src/components/Amelipro/AmeliproTooltips/tests/AmeliproTooltips.spec.ts +0 -16
  251. package/src/components/Amelipro/AmeliproTooltips/tests/__snapshots__/AmeliproTooltips.spec.ts.snap +0 -105
  252. package/src/components/Amelipro/AmeliproTransmission/tests/AmeliproTransmission.spec.ts +0 -16
  253. package/src/components/Amelipro/AmeliproTransmission/tests/__snapshots__/AmeliproTransmission.spec.ts.snap +0 -246
  254. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +0 -99
@@ -1,1602 +0,0 @@
1
- // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
-
3
- exports[`AmeliproPageLayout > render correctly 1`] = `
4
- <div
5
- class="
6
- amelipro-page-layout
7
- bg-ap-grey-lighten-6
8
- d-flex
9
- flex-column
10
- w-100
11
- "
12
- id="my-page-layout-id-container"
13
- >
14
- <div
15
- class="
16
- body-content
17
- d-flex
18
- flex-column
19
- w-100
20
- "
21
- id="my-page-layout-id-content"
22
- >
23
- <nav
24
- aria-label="liens d'évitement"
25
- class="skip-link__nav"
26
- id="my-page-layout-id-focus-navigation"
27
- >
28
- <ul
29
- class="
30
- list-style-none
31
- skip-link__list
32
- "
33
- id="my-page-layout-id-focus-navigation-list"
34
- >
35
- <li
36
- class="skip-link__item"
37
- id="my-page-layout-id-focus-navigation-item-main"
38
- >
39
- <a
40
- class="
41
- d-sr-only-focusable
42
- pa-2
43
- skip-link
44
- "
45
- href="#main-content"
46
- id="my-page-layout-id-focus-navigation-main-link"
47
- >Contenu principal</a>
48
- </li>
49
- </ul>
50
- </nav>
51
- <div id="my-page-layout-id-header-wrapper">
52
- <header
53
- class="
54
- header-bar-container
55
- w-100
56
- "
57
- id="my-page-layout-id-header-container"
58
- role="banner"
59
- style="z-index: 1;"
60
- >
61
- <div
62
- class="
63
- bg-ap-white
64
- d-block
65
- header-bar
66
- w-100
67
- "
68
- id="my-page-layout-id-header-main-bar"
69
- >
70
- <div class="
71
- d-flex
72
- header-bar-content
73
- justify-center
74
- px-14
75
- py-2
76
- ">
77
- <div
78
- class="
79
- align-center
80
- d-flex
81
- header-bar-content__container
82
- "
83
- style="
84
- width: 100%;
85
- max-width: 100%;
86
- "
87
- >
88
- <div
89
- class="
90
- d-flex
91
- header-brand-section
92
- "
93
- id="my-page-layout-id-header-brand-section-container"
94
- >
95
- <button
96
- aria-label="Retour à l’accueil"
97
- class="
98
- align-center
99
- d-flex
100
- header-home-link
101
- w-100
102
- "
103
- id="my-page-layout-id-header-brand-section-logo-link"
104
- title="Retour à l’accueil"
105
- >
106
- <svg
107
- aria-label="Sécurité sociale, L’Assurance Maladie : Agir ensemble, protéger chacun"
108
- class="logo-am"
109
- fill="#0C419A"
110
- focusable="false"
111
- height="64"
112
- id="my-page-layout-id-header-brand-section-logo-am"
113
- role="img"
114
- viewBox="0 0 211 64"
115
- width="211"
116
- xmlns="http://www.w3.org/2000/svg"
117
- >
118
- <g>
119
- <path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" />
120
- <path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" />
121
- <path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" />
122
- <path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" />
123
- <path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" />
124
- <path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" />
125
- <path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" />
126
- <path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" />
127
- <path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" />
128
- <path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" />
129
- <path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" />
130
- <path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" />
131
- <path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" />
132
- <path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" />
133
- <path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" />
134
- <path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" />
135
- <path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" />
136
- <path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" />
137
- <path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" />
138
- <path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" />
139
- <path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" />
140
- <path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" />
141
- <path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" />
142
- <path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" />
143
- <path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" />
144
- <path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" />
145
- <path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" />
146
- </g>
147
- <g>
148
- <path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" />
149
- <path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" />
150
- <path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" />
151
- <path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" />
152
- <path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" />
153
- <path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" />
154
- <path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" />
155
- <path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" />
156
- <path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" />
157
- <path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" />
158
- <path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" />
159
- <path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" />
160
- <path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" />
161
- <path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" />
162
- <path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" />
163
- </g>
164
- <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" />
165
- <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" />
166
- <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" />
167
- <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" />
168
- <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" />
169
- <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" />
170
- <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" />
171
- <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" />
172
- <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" />
173
- <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" />
174
- <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" />
175
- <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" />
176
- <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" />
177
- <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" />
178
- <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" />
179
- <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" />
180
- <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" />
181
- <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" />
182
- <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" />
183
- <path
184
- clip-rule="evenodd"
185
- 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"
186
- fill-rule="evenodd"
187
- />
188
- <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" />
189
- <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" />
190
- <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" />
191
- <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" />
192
- <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" />
193
- </svg>
194
- <svg
195
- aria-hidden="true"
196
- class="header-home-link__divider"
197
- fill="#006386"
198
- focusable="false"
199
- height="64"
200
- role="img"
201
- viewBox="0 0 22 64"
202
- width="22"
203
- xmlns="http://www.w3.org/2000/svg"
204
- >
205
- <path d="M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z" />
206
- </svg>
207
- <img
208
- alt="AmeliPro"
209
- class="logo-amelipro"
210
- id="my-page-layout-id-header-brand-section-logo-amelipro"
211
- src="/src/assets/amelipro/img/amelipro.svg"
212
- />
213
- </button>
214
- </div>
215
- <div class="
216
- h-100
217
- mr-4
218
- mr-md-16
219
- v-spacer
220
- "></div>
221
- <div class="amelipro-header__right-part">
222
- <!-- v-if -->
223
- <nav
224
- class="
225
- align-center
226
- amelipro-header__nav
227
- d-flex
228
- "
229
- id="my-page-layout-id-header-navigation-wrapper"
230
- role="navigation"
231
- >
232
- <div
233
- class="
234
- amelipro-header__infos
235
- d-md-block
236
- d-none
237
- text-right
238
- "
239
- id="my-page-layout-id-header-information-wrapper"
240
- >
241
- <div class="
242
- font-size-xs
243
- text-ap-grey-darken-1
244
- ">
245
- <div>
246
- <div
247
- class="user-information-summary"
248
- id="my-page-layout-id-header-user-information-summary-container"
249
- >
250
- <p
251
- class="
252
- font-weight-bold
253
- mb-0
254
- text-body-2
255
- user-information-summary__name
256
- "
257
- id="my-page-layout-id-header-user-information-summary-user-name"
258
- >
259
- Jean Martin
260
- </p>
261
- <p
262
- class="
263
- mb-0
264
- text-body-2
265
- user-information-summary__denomination
266
- "
267
- id="my-page-layout-id-header-user-information-summary-denomination"
268
- >
269
- Docteur
270
- </p>
271
- <p
272
- class="
273
- mb-0
274
- text-body-2
275
- user-information-summary__specialty
276
- "
277
- id="my-page-layout-id-header-user-information-summary-specialty"
278
- >
279
- Médecin généraliste
280
- </p>
281
- <!-- v-if -->
282
- <p
283
- class="
284
- mb-0
285
- text-body-2
286
- user-information-summary__office
287
- "
288
- id="my-page-layout-id-header-user-information-summary-office"
289
- >
290
- Cabinet des fleurs
291
- </p>
292
- <p
293
- class="
294
- mb-0
295
- text-body-2
296
- user-information-summary__address-1
297
- "
298
- id="my-page-layout-id-header-user-information-summary-address-line-1"
299
- >
300
- 31 Boulevard des champs
301
- </p>
302
- <p
303
- class="
304
- mb-0
305
- text-body-2
306
- user-information-summary__address-2
307
- "
308
- id="my-page-layout-id-header-user-information-summary-address-line-2"
309
- >
310
- 75730 Fleurie
311
- </p>
312
- </div>
313
- </div>
314
- </div>
315
- </div>
316
- <hr class="
317
- border-0
318
- d-md-block
319
- d-none
320
- header-separator
321
- mx-6
322
- " />
323
- <ul
324
- class="
325
- amelipro-header__nav__list
326
- d-flex
327
- list-style-none
328
- "
329
- id="my-page-layout-id-header-navigation-list"
330
- >
331
- <li
332
- class="
333
- amelipro-header__nav__item
334
- mr-2
335
- mr-sm-4
336
- "
337
- id="my-page-layout-id-header-navigation-user-menu"
338
- >
339
- <div>
340
- <div
341
- class="user-menu"
342
- id="my-page-layout-id-header-user-menu"
343
- >
344
- <button
345
- class="
346
- btn--icon
347
- elevation-0
348
- rounded-0
349
- v-btn
350
- v-btn--density-default
351
- v-btn--elevated
352
- v-btn--icon
353
- v-btn--size-default
354
- v-btn--variant-elevated
355
- v-theme--light
356
- "
357
- id="my-page-layout-id-header-user-menu-open-btn"
358
- plain=""
359
- style="
360
- height: auto;
361
- width: auto;
362
- "
363
- type="button"
364
- >
365
- <span class="v-btn__overlay"></span>
366
- <span class="v-btn__underlay"></span>
367
- <!---->
368
- <span
369
- class="v-btn__content"
370
- data-no-activator=""
371
- >
372
- <span
373
- class="d-sr-only"
374
- id="my-page-layout-id-header-user-menu-open-btn-btn-label"
375
- >
376
- infos utilisateur
377
- </span>
378
- <span
379
- class="
380
- amelipro-icon
381
- icon-custom
382
- "
383
- id="my-page-layout-id-header-user-menu-open-btn-icon"
384
- >
385
- <span
386
- aria-hidden="true"
387
- class="
388
- amelipro-custom-icon
389
- custom-color
390
- "
391
- focusable="false"
392
- role="img"
393
- style="
394
- color: #FFFFFF;
395
- height: 2rem;
396
- width: 2rem;
397
- "
398
- >
399
- <span>
400
- <svg
401
- aria-hidden="true"
402
- clip-rule="evenodd"
403
- fill-rule="evenodd"
404
- height="34"
405
- image-rendering="optimizeQuality"
406
- shape-rendering="geometricPrecision"
407
- text-rendering="geometricPrecision"
408
- viewBox="0 0 1823 1823"
409
- width="34"
410
- xmlns="http://www.w3.org/2000/svg"
411
- >
412
- <circle
413
- class="circle-color"
414
- cx="912"
415
- cy="912"
416
- r="912"
417
- />
418
- <path
419
- class="shape-color"
420
- d="M962 454c117 0 125 154 125 154v145s1 111-73 152c-2 10-3 20-1 30 4-2-21 146 106 165 92 15 178 57 247 120 23 23 40 186 40 186H418s-2-132 40-186c73-62 162-104 257-120 128-19 85-160 89-158 2-10 1-21-1-31 0 0-69-89-68-169 1-81 0-134 0-134s-4-190 126-190l101 36z"
421
- />
422
- </svg>
423
- </span>
424
- </span>
425
- </span>
426
- </span>
427
- <!---->
428
- <!---->
429
- </button>
430
- <!---->
431
- <!---->
432
- </div>
433
- </div>
434
- </li>
435
- <li
436
- class="
437
- amelipro-header__nav__item
438
- d-md-block
439
- d-none
440
- mr-2
441
- mr-sm-4
442
- "
443
- id="my-page-layout-id-header-navigation-structure-menu"
444
- >
445
- <button
446
- class="
447
- btn--icon
448
- elevation-0
449
- rounded-0
450
- v-btn
451
- v-btn--density-default
452
- v-btn--elevated
453
- v-btn--icon
454
- v-btn--size-default
455
- v-btn--variant-elevated
456
- v-theme--light
457
- "
458
- id="structures-open-btn"
459
- plain=""
460
- style="
461
- height: auto;
462
- width: auto;
463
- "
464
- type="button"
465
- >
466
- <span class="v-btn__overlay"></span>
467
- <span class="v-btn__underlay"></span>
468
- <!---->
469
- <span
470
- class="v-btn__content"
471
- data-no-activator=""
472
- >
473
- <span
474
- class="d-sr-only"
475
- id="structures-open-btn-btn-label"
476
- >
477
- Sélection de structure
478
- </span>
479
- <span
480
- class="
481
- amelipro-icon
482
- icon-custom
483
- "
484
- id="structures-open-btn-icon"
485
- >
486
- <span
487
- aria-hidden="true"
488
- class="
489
- amelipro-custom-icon
490
- custom-color
491
- "
492
- focusable="false"
493
- role="img"
494
- style="
495
- color: #FFFFFF;
496
- height: 2rem;
497
- width: 2rem;
498
- "
499
- >
500
- <span>
501
- <svg
502
- aria-hidden="true"
503
- style="enable-background:new 0 0 60 60;"
504
- version="1.1"
505
- viewBox="0 0 60 60"
506
- x="0px"
507
- xml:space="preserve"
508
- xmlns="http://www.w3.org/2000/svg"
509
- xmlns:xlink="http://www.w3.org/1999/xlink"
510
- y="0px"
511
- >
512
- <circle
513
- class="circle-color"
514
- cx="30"
515
- cy="30"
516
- r="30"
517
- />
518
- <path
519
- class="shape-color"
520
- d="M30,30.5c-2.7,0-4.8-2.2-4.8-4.8c0-2.7,2.1-4.9,4.8-4.9c2.7,0,4.8,2.2,4.8,4.9C34.8,28.3,32.7,30.5,30,30.5L30,30.5z M30,15c-5.9,0-10.6,4.8-10.6,10.7c0,5.6,4.8,12.7,8,16.2C28.6,43.2,30,45,30,45s1.5-1.8,2.8-3.1c3.1-3.4,7.8-10.2,7.8-16.2C40.6,19.8,35.9,15,30,15z"
521
- />
522
- </svg>
523
- </span>
524
- </span>
525
- </span>
526
- </span>
527
- <!---->
528
- <!---->
529
- </button>
530
- </li>
531
- <li
532
- class="
533
- amelipro-header__nav__item
534
- mr-2
535
- mr-sm-4
536
- "
537
- id="my-page-layout-id-header-navigation-service-menu"
538
- >
539
- <div>
540
- <div
541
- class="service-menu"
542
- id="service-menu-container"
543
- >
544
- <button
545
- class="
546
- btn--icon
547
- elevation-0
548
- rounded-0
549
- service-menu__btn
550
- v-btn
551
- v-btn--density-default
552
- v-btn--elevated
553
- v-btn--icon
554
- v-btn--size-default
555
- v-btn--variant-elevated
556
- v-theme--light
557
- "
558
- id="service-menu-service-menu-btn"
559
- plain=""
560
- style="
561
- height: auto;
562
- width: auto;
563
- "
564
- type="button"
565
- >
566
- <span class="v-btn__overlay"></span>
567
- <span class="v-btn__underlay"></span>
568
- <!---->
569
- <span
570
- class="v-btn__content"
571
- data-no-activator=""
572
- >
573
- <span
574
- class="d-sr-only"
575
- id="service-menu-service-menu-btn-btn-label"
576
- >
577
- Bouquet de services
578
- </span>
579
- <span
580
- class="
581
- amelipro-icon
582
- icon-custom
583
- "
584
- id="service-menu-service-menu-btn-icon"
585
- >
586
- <span
587
- aria-hidden="true"
588
- class="
589
- amelipro-custom-icon
590
- custom-color
591
- "
592
- focusable="false"
593
- role="img"
594
- style="
595
- color: #FFFFFF;
596
- height: 2rem;
597
- width: 2rem;
598
- "
599
- >
600
- <span>
601
- <svg
602
- aria-hidden="true"
603
- style="enable-background:new 0 0 34 34;"
604
- viewBox="0 0 34 34"
605
- x="0px"
606
- xml:space="preserve"
607
- xmlns="http://www.w3.org/2000/svg"
608
- xmlns:xlink="http://www.w3.org/1999/xlink"
609
- y="0px"
610
- >
611
- <path
612
- class="circle-color"
613
- d="M34,17c0-4.7-1.9-8.9-5-12C26,1.9,21.7,0,17,0S8,1.9,5,5C1.9,8,0,12.3,0,17s1.9,8.9,5,12c3.1,3.1,7.3,5,12,5 s8.9-1.9,12-5C32.1,25.9,34,21.7,34,17z"
614
- />
615
- <g class="shape-color">
616
- <path d="M10.2,8L10.2,8c1.4,0,2.5,1.1,2.5,2.4l0,0c0,1.4-1.1,2.4-2.5,2.4l0,0c-1.3,0-2.4-1.1-2.4-2.4l0,0 C7.7,9.1,8.8,8,10.2,8z" />
617
- <path d="M17,8L17,8c1.3,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.4-2.4,2.4l0,0c-1.4,0-2.5-1.1-2.5-2.4l0,0 C14.5,9.1,15.6,8,17,8z" />
618
- <path d="M23.8,8L23.8,8c1.4,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.4-2.4,2.4l0,0c-1.3,0-2.4-1.1-2.4-2.4l0,0 C21.4,9.1,22.5,8,23.8,8z" />
619
- <path d="M10.2,14.8L10.2,14.8c1.4,0,2.5,1.1,2.5,2.4l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0c-1.3,0-2.4-1.1-2.4-2.5l0,0 C7.7,15.9,8.8,14.8,10.2,14.8z" />
620
- <path d="M17,14.8L17,14.8c1.3,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.5-2.4,2.5l0,0c-1.4,0-2.5-1.1-2.5-2.5l0,0 C14.5,15.9,15.6,14.8,17,14.8z" />
621
- <path d="M23.8,14.8L23.8,14.8c1.4,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.5-2.4,2.5l0,0c-1.3,0-2.4-1.1-2.4-2.5l0,0 C21.4,15.9,22.5,14.8,23.8,14.8z" />
622
- <path d="M10.2,21.5L10.2,21.5c1.4,0,2.5,1.1,2.5,2.4l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0c-1.3,0-2.4-1.1-2.4-2.5l0,0 C7.7,22.6,8.8,21.5,10.2,21.5z" />
623
- <path d="M17,21.5L17,21.5c1.3,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.5-2.4,2.5l0,0c-1.4,0-2.5-1.1-2.5-2.5l0,0 C14.5,22.6,15.6,21.5,17,21.5z" />
624
- <path d="M23.8,21.5L23.8,21.5c1.4,0,2.4,1.1,2.4,2.4l0,0c0,1.4-1.1,2.5-2.4,2.5l0,0c-1.3,0-2.4-1.1-2.4-2.5l0,0 C21.4,22.6,22.5,21.5,23.8,21.5z" />
625
- </g>
626
- </svg>
627
- </span>
628
- </span>
629
- </span>
630
- </span>
631
- <!---->
632
- <!---->
633
- </button>
634
- <div
635
- class="service-menu__wrapper"
636
- id="service-menu-service-menu"
637
- >
638
- <!---->
639
- <!-- teleport start -->
640
- <!-- teleport end -->
641
- </div>
642
- <!-- v-if -->
643
- </div>
644
- </div>
645
- </li>
646
- <!-- v-if -->
647
- <li
648
- class="amelipro-header__nav__item"
649
- id="my-page-layout-id-header-signature-menu"
650
- >
651
- <a
652
- class="
653
- btn--icon
654
- elevation-0
655
- rounded-0
656
- v-btn
657
- v-btn--density-default
658
- v-btn--elevated
659
- v-btn--icon
660
- v-btn--size-default
661
- v-btn--variant-elevated
662
- v-theme--light
663
- "
664
- href="#"
665
- id="my-page-layout-id-header-signature-btn"
666
- plain=""
667
- style="
668
- height: auto;
669
- width: auto;
670
- "
671
- title="Gérer ma signature"
672
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
673
-
674
- <!----><span
675
- class="v-btn__content"
676
- data-no-activator=""
677
- >
678
- <!-- v-if --><span
679
- class="
680
- amelipro-icon
681
- icon-custom
682
- "
683
- id="my-page-layout-id-header-signature-btn-icon"
684
- ><span
685
- aria-hidden="true"
686
- class="
687
- amelipro-custom-icon
688
- custom-color
689
- "
690
- focusable="false"
691
- role="img"
692
- style="
693
- color: #FFFFFF;
694
- height: 2rem;
695
- width: 2rem;
696
- "
697
- ><span>
698
- <svg
699
- aria-hidden="true"
700
- version="1.1"
701
- viewBox="0 0 32 32"
702
- xmlns="http://www.w3.org/2000/svg"
703
- >
704
- <path
705
- class="circle-color"
706
- d="M16,32c8.8,0,16-7.2,16-16S24.8,0,16,0,0,7.2,0,16s7.2,16,16,16Z"
707
- />
708
- <g class="shape-color">
709
- <path d="M14.5,22.1h10.7v1.9h-10.7v-1.9Z" />
710
- <path d="M17.6,14.6l-6,8.7-3,.6-.6-2.9,6-8.7,3.5,2.4ZM21.2,12.7c0,.4.4.8.1,1.3l-2.6,3.8-1.4-.9,2.7-4-.9-.6-.7,1.1-3.5-2.4,2.3-3.2c.2-.3.7-.4,1.2-.2l2.1,1.5c.3.2.4.7.2,1.2-.2.3-.4.6-.4.9,0,.3.4.5.7.7.5.3.3.6.2,1Z" />
711
- </g>
712
- </svg></span></span></span></span>
713
-
714
- <!---->
715
-
716
- <!---->
717
- </a>
718
- </li>
719
- </ul>
720
- <!---->
721
- <!---->
722
- </nav>
723
- </div>
724
- </div>
725
- </div>
726
- <div
727
- class="
728
- align-center
729
- d-flex
730
- justify-center
731
- navigation-bar
732
- px-14
733
- py-2
734
- "
735
- id="my-page-layout-id-header-navigation-bar"
736
- >
737
- <div
738
- class="d-flex"
739
- style="
740
- width: 100%;
741
- max-width: 100%;
742
- "
743
- >
744
- <div
745
- class="
746
- amelipro-header__sub-bar
747
- d-flex
748
- justify-center
749
- navigation-bar-content-wrapper
750
- w-100
751
- "
752
- id="my-page-layout-id-header-sub-bar"
753
- >
754
- <button
755
- class="
756
- btn--icon
757
- elevation-0
758
- navigation-bar-left-btn
759
- rounded-0
760
- v-btn
761
- v-btn--density-default
762
- v-btn--elevated
763
- v-btn--icon
764
- v-btn--size-default
765
- v-btn--variant-elevated
766
- v-theme--light
767
- "
768
- id="my-page-layout-id-header-back-btn"
769
- plain=""
770
- style="
771
- height: auto;
772
- width: auto;
773
- "
774
- title="Retour"
775
- type="button"
776
- >
777
- <span class="v-btn__overlay"></span>
778
- <span class="v-btn__underlay"></span>
779
- <!---->
780
- <span
781
- class="v-btn__content"
782
- data-no-activator=""
783
- >
784
- <span
785
- class="d-sr-only"
786
- id="my-page-layout-id-header-back-btn-btn-label"
787
- >
788
- Retour
789
- </span>
790
- <span
791
- class="
792
- amelipro-icon
793
- icon-custom
794
- "
795
- id="my-page-layout-id-header-back-btn-icon"
796
- >
797
- <span
798
- aria-hidden="true"
799
- class="
800
- amelipro-custom-icon
801
- custom-color
802
- large
803
- "
804
- focusable="false"
805
- role="img"
806
- style="color: #FFFFFF;"
807
- >
808
- <span>
809
- <svg
810
- aria-hidden="true"
811
- style="enable-background:new 0 0 14.8 24;"
812
- version="1.1"
813
- viewBox="0 0 14.8 24"
814
- x="0px"
815
- xml:space="preserve"
816
- xmlns="http://www.w3.org/2000/svg"
817
- xmlns:xlink="http://www.w3.org/1999/xlink"
818
- y="0px"
819
- >
820
- <path
821
- class="shape-color"
822
- d="M14.8,21.2L5.7,12l9.2-9.2L12,0L0,12l12,12L14.8,21.2z"
823
- />
824
- </svg>
825
- </span>
826
- </span>
827
- </span>
828
- </span>
829
- <!---->
830
- <!---->
831
- </button>
832
- <h1
833
- class="
834
- text-ap-white
835
- text-service-title
836
- "
837
- id="my-page-layout-id-header-sub-bar-title"
838
- >
839
- <button
840
- class="
841
- amelipro-btn
842
- elevation-0
843
- text-ap-white
844
- text-service-title
845
- text-service-title
846
- v-btn
847
- v-btn--density-default
848
- v-btn--flat
849
- v-btn--size-default
850
- v-btn--variant-text
851
- v-theme--light
852
- "
853
- id="my-page-layout-id-header-sub-bar-title-btn"
854
- style="
855
- height: auto;
856
- min-height: auto;
857
- padding: 0px;
858
- "
859
- type="button"
860
- >
861
- <span class="v-btn__overlay"></span>
862
- <span class="v-btn__underlay"></span>
863
- <!---->
864
- <span
865
- class="v-btn__content"
866
- data-no-activator=""
867
- >
868
- <span class="
869
- align-center
870
- amelipro-custom-btn
871
- d-flex
872
- flex-row
873
- ">
874
- Titre du service
875
- <!-- v-if -->
876
- <!-- v-if -->
877
- <!-- v-if -->
878
- </span>
879
- </span>
880
- <!---->
881
- <!---->
882
- </button>
883
- </h1>
884
- </div>
885
- </div>
886
- </div>
887
- </div>
888
- </header>
889
- </div>
890
- <main
891
- class="amelipro-main"
892
- id="my-page-layout-id-main"
893
- role="main"
894
- style="min-height: 1px;"
895
- >
896
- <div id="my-page-layout-id-patient-banner-wrapper">
897
- <div
898
- class="
899
- amelipro-patient-banner
900
- bg-ap-white
901
- d-flex
902
- justify-center
903
- px-8
904
- py-4
905
- w-100
906
- "
907
- id="my-page-layout-id-patient-banner-container"
908
- style="position: relative;"
909
- >
910
- <div
911
- class="amelipro-patient-banner__content"
912
- id="my-page-layout-id-patient-banner-wrapper"
913
- style="width: 100%;"
914
- >
915
- <div class="
916
- align-center
917
- d-flex
918
- justify-space-between
919
- ">
920
- <div
921
- class="
922
- align-center
923
- amelipro-patient-banner__patient-infos
924
- d-inline-flex
925
- flex-wrap
926
- "
927
- id="my-page-layout-id-patient-banner-patient-infos"
928
- >
929
- <p
930
- class="
931
- amelipro-patient-banner__patient-info__name
932
- mb-4
933
- mb-md-0
934
- "
935
- id="my-page-layout-id-patient-banner-identity"
936
- >
937
- <span class="
938
- d-block
939
- d-sm-inline
940
- font-weight-bold
941
- text-h3
942
- ">
943
- Jeanne
944
- </span>
945
- né(e)
946
- <span>
947
- Dupont
948
- </span>
949
- le 09/11/1992
950
- </p>
951
- <button
952
- class="
953
- amelipro-btn
954
- amelipro-patient-banner__patient-change__btn
955
- amelipro-patient-banner__patient-change__btn
956
- elevation-0
957
- mb-4
958
- mb-4
959
- mb-md-0
960
- mb-md-0
961
- mx-4
962
- mx-4
963
- text-ap-blue-darken-1
964
- text-none
965
- text-none
966
- v-btn
967
- v-btn--density-default
968
- v-btn--flat
969
- v-btn--size-default
970
- v-btn--variant-text
971
- v-theme--light
972
- "
973
- id="my-page-layout-id-patient-banner-patient-change-btn"
974
- style="
975
- height: auto;
976
- min-height: auto;
977
- padding: 0px;
978
- "
979
- type="button"
980
- >
981
- <span class="v-btn__overlay"></span>
982
- <span class="v-btn__underlay"></span>
983
- <!---->
984
- <span
985
- class="v-btn__content"
986
- data-no-activator=""
987
- >
988
- <span class="
989
- align-center
990
- amelipro-custom-btn
991
- d-flex
992
- flex-row
993
- ">
994
- Changer de patient
995
- <span
996
- class="
997
- amelipro-btn__icon--right
998
- amelipro-icon
999
- d-block
1000
- "
1001
- id="my-page-layout-id-patient-banner-patient-change-btn-icon"
1002
- >
1003
- <span
1004
- class="amelipro-external-icon"
1005
- style="
1006
- background-color: transparent;
1007
- border-radius: 50%;
1008
- color: #00749C;
1009
- padding: 0px;
1010
- height: 1.5rem;
1011
- width: 1.5rem;
1012
- "
1013
- >
1014
- <i
1015
- aria-hidden="true"
1016
- class="
1017
- M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z
1018
- mdi
1019
- notranslate
1020
- text-ap-blue-darken-1
1021
- v-icon
1022
- v-theme--light
1023
- "
1024
- style="
1025
- font-size: 100%;
1026
- height: 100%;
1027
- width: 100%;
1028
- display: block;
1029
- "
1030
- ></i>
1031
- </span>
1032
- </span>
1033
- <!-- v-if -->
1034
- </span>
1035
- </span>
1036
- <!---->
1037
- <!---->
1038
- </button>
1039
- </div>
1040
- <p
1041
- class="
1042
- amelipro-patient-banner__patient-info__doctor
1043
- font-weight-bold
1044
- mb-0
1045
- text-ap-blue-darken-1
1046
- "
1047
- id="my-page-layout-id-patient-banner-patient-doctor-infos"
1048
- >
1049
- Vous êtes le médecin traitant
1050
- </p>
1051
- </div>
1052
- <hr class="patient-banner__separator" />
1053
- <div
1054
- class="
1055
- align-center
1056
- d-flex
1057
- justify-space-between
1058
- patient-banner-main
1059
- "
1060
- id="my-page-layout-id-patient-banner-main-content"
1061
- >
1062
- <div class="
1063
- d-flex
1064
- flex-column
1065
- flex-sm-row
1066
- ">
1067
- <div class="mr-16">
1068
- <p
1069
- class="
1070
- font-weight-regular
1071
- mb-4
1072
- text-h5
1073
- "
1074
- id="my-page-layout-id-patient-banner-patient-status"
1075
- >
1076
- Statut :
1077
- <span class="font-weight-bold">
1078
- Assuré(e)
1079
- </span>
1080
- </p>
1081
- <p
1082
- class="
1083
- font-weight-regular
1084
- mb-4
1085
- mb-md-0
1086
- "
1087
- id="my-page-layout-id-patient-banner-patient-number"
1088
- >
1089
- NIR :
1090
- <span class="font-weight-bold">
1091
- NIR patient
1092
- </span>
1093
- </p>
1094
- </div>
1095
- <div class="mr-3">
1096
- <p
1097
- class="
1098
- font-weight-bold
1099
- mb-4
1100
- "
1101
- id="my-page-layout-id-patient-banner-patient-system"
1102
- >
1103
- Régime Général
1104
- </p>
1105
- <p
1106
- class="
1107
- font-weight-bold
1108
- mb-4
1109
- mb-md-0
1110
- "
1111
- id="my-page-layout-id-patient-banner-patient-organism"
1112
- >
1113
- CPAM des Alpes de Haute Provence - Centre 103
1114
- </p>
1115
- </div>
1116
- </div>
1117
- <a
1118
- class="
1119
- amelipro-btn
1120
- amelipro-btn--style
1121
- bg-ap-white
1122
- elevation-0
1123
- v-btn
1124
- v-btn--density-default
1125
- v-btn--flat
1126
- v-btn--size-default
1127
- v-btn--variant-flat
1128
- v-theme--light
1129
- "
1130
- href="#"
1131
- id="my-page-layout-id-patient-banner-more-info-btn"
1132
- style="
1133
- height: auto;
1134
- min-height: 2.5rem;
1135
- color: #00749C !important;
1136
- border: 2px solid #00749C !important;
1137
- background-color: white;
1138
- "
1139
- type="button"
1140
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1141
-
1142
- <!----><span
1143
- class="v-btn__content"
1144
- data-no-activator=""
1145
- ><span class="
1146
- align-center
1147
- amelipro-custom-btn
1148
- d-flex
1149
- flex-row
1150
- ">Plus d’informations
1151
- <!-- v-if -->
1152
- <!-- v-if --></span></span>
1153
-
1154
- <!---->
1155
-
1156
- <!---->
1157
- </a>
1158
- </div>
1159
- </div>
1160
- </div>
1161
- </div>
1162
- <div
1163
- class="
1164
- main-content__content
1165
- mx-auto
1166
- "
1167
- id="my-page-layout-id-main-content"
1168
- style="
1169
- max-width: 100%;
1170
- padding: 30px 10px;
1171
- "
1172
- ></div>
1173
- </main>
1174
- <div class="mt-auto">
1175
- <div id="my-page-layout-id-footer-wrapper">
1176
- <footer
1177
- class="
1178
- amelipro-footer
1179
- bg-ap-blue-darken-2
1180
- d-block
1181
- justify-center
1182
- px-8
1183
- py-3
1184
- w-100
1185
- "
1186
- id="my-page-layout-id-footer-container"
1187
- role="contentinfo"
1188
- style="position: relative;"
1189
- >
1190
- <div
1191
- class="
1192
- align-center
1193
- amelipro-footer__content
1194
- d-flex
1195
- flex-row
1196
- justify-space-between
1197
- "
1198
- id="my-page-layout-id-footer-content"
1199
- style="width: 100%;"
1200
- >
1201
- <p
1202
- class="
1203
- font-weight-bold
1204
- footer-version
1205
- mb-0
1206
- mr-4
1207
- text-ap-white
1208
- text-caption
1209
- "
1210
- id="my-page-layout-id-footer-version"
1211
- >
1212
- X.X.X
1213
- </p>
1214
- <div
1215
- class="
1216
- amelipro-footer__contact
1217
- mr-4
1218
- mt-1
1219
- "
1220
- id="my-page-layout-id-footer-contact"
1221
- >
1222
- <a
1223
- class="
1224
- amelipro-btn
1225
- amelipro-footer__contact__link
1226
- amelipro-footer__contact__link
1227
- elevation-0
1228
- text-ap-blue-darken-1
1229
- text-ap-white
1230
- text-ap-white
1231
- text-decoration-none
1232
- text-decoration-none
1233
- v-btn
1234
- v-btn--density-default
1235
- v-btn--flat
1236
- v-btn--size-default
1237
- v-btn--variant-text
1238
- v-theme--light
1239
- "
1240
- href="tel:3608"
1241
- id="my-page-layout-id-footer-contact-link"
1242
- style="
1243
- height: auto;
1244
- min-height: auto;
1245
- padding: 0px;
1246
- "
1247
- type="button"
1248
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1249
-
1250
- <!----><span
1251
- class="v-btn__content"
1252
- data-no-activator=""
1253
- ><span class="
1254
- align-center
1255
- amelipro-custom-btn
1256
- d-flex
1257
- flex-row
1258
- "><span
1259
- class="
1260
- d-sr-only
1261
- text-button
1262
- text-uppercase
1263
- "
1264
- id="my-page-layout-id-footer-contact-link-text"
1265
- >Nous contacter</span><img
1266
- alt="au 3608 : Service gratuit + prix appel"
1267
- id="my-page-layout-id-footer-contact-link-img"
1268
- src="/src/assets/amelipro/img/cartouche_nouveauTEL.svg"
1269
- />
1270
-
1271
- <!-- v-if -->
1272
-
1273
- <!-- v-if --></span></span>
1274
-
1275
- <!---->
1276
-
1277
- <!---->
1278
- </a>
1279
- </div>
1280
- <ul
1281
- class="
1282
- align-center
1283
- amelipro-footer__list
1284
- d-flex
1285
- flex-wrap
1286
- justify-end
1287
- list-style-none
1288
- mt-2
1289
- mt-sm-0
1290
- "
1291
- id="my-page-layout-id-footer-list"
1292
- >
1293
- <li class="
1294
- footer-list-item
1295
- pa-2
1296
- ">
1297
- <a
1298
- class="
1299
- amelipro-btn
1300
- amelipro-footer__site-map-btn
1301
- amelipro-footer__site-map-btn
1302
- elevation-0
1303
- text-ap-white
1304
- text-none
1305
- text-none
1306
- v-btn
1307
- v-btn--density-default
1308
- v-btn--flat
1309
- v-btn--size-default
1310
- v-btn--variant-text
1311
- v-theme--light
1312
- "
1313
- href="#"
1314
- id="my-page-layout-id-footer-site-map-btn"
1315
- style="
1316
- height: auto;
1317
- min-height: auto;
1318
- padding: 0px;
1319
- "
1320
- type="button"
1321
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1322
-
1323
- <!----><span
1324
- class="v-btn__content"
1325
- data-no-activator=""
1326
- ><span class="
1327
- align-center
1328
- amelipro-custom-btn
1329
- d-flex
1330
- flex-row
1331
- ">Plan de site
1332
- <!-- v-if -->
1333
- <!-- v-if --></span></span>
1334
-
1335
- <!---->
1336
-
1337
- <!---->
1338
- </a>
1339
- </li>
1340
- <li class="
1341
- footer-list-item
1342
- pa-2
1343
- ">
1344
- <a
1345
- class="
1346
- amelipro-btn
1347
- amelipro-footer__about-btn
1348
- amelipro-footer__about-btn
1349
- elevation-0
1350
- text-ap-white
1351
- text-none
1352
- text-none
1353
- v-btn
1354
- v-btn--density-default
1355
- v-btn--flat
1356
- v-btn--size-default
1357
- v-btn--variant-text
1358
- v-theme--light
1359
- "
1360
- href="#"
1361
- id="my-page-layout-id-footer-about-btn"
1362
- style="
1363
- height: auto;
1364
- min-height: auto;
1365
- padding: 0px;
1366
- "
1367
- type="button"
1368
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1369
-
1370
- <!----><span
1371
- class="v-btn__content"
1372
- data-no-activator=""
1373
- ><span class="
1374
- align-center
1375
- amelipro-custom-btn
1376
- d-flex
1377
- flex-row
1378
- ">À propos
1379
- <!-- v-if -->
1380
- <!-- v-if --></span></span>
1381
-
1382
- <!---->
1383
-
1384
- <!---->
1385
- </a>
1386
- </li>
1387
- <li class="
1388
- footer-list-item
1389
- pa-2
1390
- ">
1391
- <a
1392
- class="
1393
- amelipro-btn
1394
- amelipro-footer__config-btn
1395
- amelipro-footer__config-btn
1396
- elevation-0
1397
- text-ap-white
1398
- text-none
1399
- text-none
1400
- v-btn
1401
- v-btn--density-default
1402
- v-btn--flat
1403
- v-btn--size-default
1404
- v-btn--variant-text
1405
- v-theme--light
1406
- "
1407
- href="#"
1408
- id="my-page-layout-id-footer-config-btn"
1409
- style="
1410
- height: auto;
1411
- min-height: auto;
1412
- padding: 0px;
1413
- "
1414
- type="button"
1415
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1416
-
1417
- <!----><span
1418
- class="v-btn__content"
1419
- data-no-activator=""
1420
- ><span class="
1421
- align-center
1422
- amelipro-custom-btn
1423
- d-flex
1424
- flex-row
1425
- ">Configuration
1426
- <!-- v-if -->
1427
- <!-- v-if --></span></span>
1428
-
1429
- <!---->
1430
-
1431
- <!---->
1432
- </a>
1433
- </li>
1434
- <li class="
1435
- footer-list-item
1436
- pa-2
1437
- ">
1438
- <a
1439
- class="
1440
- amelipro-btn
1441
- amelipro-footer__legal-notice-btn
1442
- amelipro-footer__legal-notice-btn
1443
- elevation-0
1444
- text-ap-white
1445
- text-none
1446
- text-none
1447
- v-btn
1448
- v-btn--density-default
1449
- v-btn--flat
1450
- v-btn--size-default
1451
- v-btn--variant-text
1452
- v-theme--light
1453
- "
1454
- href="#"
1455
- id="my-page-layout-id-footer-legal-notice-btn"
1456
- style="
1457
- height: auto;
1458
- min-height: auto;
1459
- padding: 0px;
1460
- "
1461
- type="button"
1462
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1463
-
1464
- <!----><span
1465
- class="v-btn__content"
1466
- data-no-activator=""
1467
- ><span class="
1468
- align-center
1469
- amelipro-custom-btn
1470
- d-flex
1471
- flex-row
1472
- ">Mentions légales
1473
- <!-- v-if -->
1474
- <!-- v-if --></span></span>
1475
-
1476
- <!---->
1477
-
1478
- <!---->
1479
- </a>
1480
- </li>
1481
- <li class="
1482
- footer-list-item
1483
- pa-2
1484
- ">
1485
- <a
1486
- class="
1487
- amelipro-btn
1488
- amelipro-footer__cgu-btn
1489
- amelipro-footer__cgu-btn
1490
- elevation-0
1491
- text-ap-white
1492
- text-none
1493
- text-none
1494
- v-btn
1495
- v-btn--density-default
1496
- v-btn--flat
1497
- v-btn--size-default
1498
- v-btn--variant-text
1499
- v-theme--light
1500
- "
1501
- href="#"
1502
- id="my-page-layout-id-footer-cgu-btn"
1503
- style="
1504
- height: auto;
1505
- min-height: auto;
1506
- padding: 0px;
1507
- "
1508
- type="button"
1509
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1510
-
1511
- <!----><span
1512
- class="v-btn__content"
1513
- data-no-activator=""
1514
- ><span class="
1515
- align-center
1516
- amelipro-custom-btn
1517
- d-flex
1518
- flex-row
1519
- ">CGU
1520
- <!-- v-if -->
1521
- <!-- v-if --></span></span>
1522
-
1523
- <!---->
1524
-
1525
- <!---->
1526
- </a>
1527
- </li>
1528
- <li class="
1529
- footer-list-item
1530
- pa-2
1531
- ">
1532
- <a
1533
- class="
1534
- amelipro-btn
1535
- amelipro-footer__a11y-btn
1536
- amelipro-footer__a11y-btn
1537
- elevation-0
1538
- text-ap-white
1539
- text-none
1540
- text-none
1541
- v-btn
1542
- v-btn--density-default
1543
- v-btn--flat
1544
- v-btn--size-default
1545
- v-btn--variant-text
1546
- v-theme--light
1547
- "
1548
- href="#"
1549
- id="my-page-layout-id-footer-a11y-btn"
1550
- style="
1551
- height: auto;
1552
- min-height: auto;
1553
- padding: 0px;
1554
- "
1555
- type="button"
1556
- ><span class="v-btn__overlay"></span><span class="v-btn__underlay"></span>
1557
-
1558
- <!----><span
1559
- class="v-btn__content"
1560
- data-no-activator=""
1561
- ><span class="
1562
- align-center
1563
- amelipro-custom-btn
1564
- d-flex
1565
- flex-row
1566
- ">Accessibilité&nbsp;: non conforme
1567
- <!-- v-if -->
1568
- <!-- v-if --></span></span>
1569
-
1570
- <!---->
1571
-
1572
- <!---->
1573
- </a>
1574
- </li>
1575
- </ul>
1576
- <!-- v-if -->
1577
- </div>
1578
- <div class="
1579
- align-center
1580
- d-none
1581
- flex-column
1582
- footer-version--mobile
1583
- ">
1584
- <p
1585
- class="
1586
- font-weight-bold
1587
- mb-0
1588
- mt-2
1589
- text-ap-white
1590
- text-caption
1591
- "
1592
- id="my-page-layout-id-footer-version-mobile"
1593
- >
1594
- X.X.X
1595
- </p>
1596
- </div>
1597
- </footer>
1598
- </div>
1599
- </div>
1600
- </div>
1601
- </div>
1602
- `;