@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
@@ -80,7 +80,10 @@ exports[`AmeliproFirstLogin > render correctly 1`] = `
80
80
  data-no-activator=""
81
81
  >
82
82
  <span
83
- class="d-sr-only"
83
+ class="
84
+ amelipro-btn__label
85
+ d-sr-only
86
+ "
84
87
  id="modified-unique-id-first-login-dialog-close-btn-btn-label"
85
88
  >
86
89
  Fermer la fenêtre modale
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import { type PropType, computed, ref, useSlots } from 'vue'
2
+ import { computed, type PropType, ref, useSlots } from 'vue'
3
3
  import AmeliproBtn from '../AmeliproBtn/AmeliproBtn.vue'
4
4
  import AmeliproHeaderBar from './AmeliproHeaderBar/AmeliproHeaderBar.vue'
5
5
  import type { AmeliproHeaderInfos } from './types'
@@ -489,7 +489,6 @@
489
489
  :deep(.v-btn) {
490
490
  &.text-service-title {
491
491
  display: block;
492
- white-space: unset;
493
492
  }
494
493
  }
495
494
  </style>
@@ -0,0 +1,78 @@
1
+ import { VueWrapper, shallowMount } from '@vue/test-utils'
2
+ import { describe, expect, it } from 'vitest'
3
+ import AmeliproLogoAm from '../AmeliproLogoAm.vue'
4
+ import type { ComponentProps } from 'vue-component-type-helpers'
5
+ import type { ExpectedPropOptions } from '@tests/types'
6
+ import { LogoSizeEnum } from '../LogoSizeEnum'
7
+ import TestHelper from '@tests/helpers/TestHelper'
8
+
9
+ const expectedPropOptions: ExpectedPropOptions<typeof AmeliproLogoAm> = {
10
+ hideSignature: {
11
+ type: Boolean,
12
+ default: false,
13
+ },
14
+ size: {
15
+ default: LogoSizeEnum.NORMAL,
16
+ type: String,
17
+ validator(value: string): boolean {
18
+ return ['x-small', 'small', 'normal'].includes(value.toLowerCase())
19
+ },
20
+ },
21
+ uniqueId: {
22
+ type: String,
23
+ default: undefined,
24
+ },
25
+ }
26
+
27
+ const requiredPropValues = (): ComponentProps<typeof AmeliproLogoAm> => ({})
28
+
29
+ const modifiedPropValues = (): ComponentProps<typeof AmeliproLogoAm> => ({
30
+ hideSignature: true,
31
+ size: LogoSizeEnum.SMALL,
32
+ uniqueId: 'modified-unique-id',
33
+ })
34
+
35
+ const testHelper = new TestHelper(AmeliproLogoAm)
36
+ testHelper.setExpectedPropOptions(expectedPropOptions)
37
+ .setRequiredPropValues(requiredPropValues)
38
+ .setModifiedPropValues(modifiedPropValues)
39
+
40
+ describe('AmeliproLogoAm', () => {
41
+ describe('Snapshots', () => {
42
+ testHelper.snapshots()
43
+ })
44
+
45
+ describe('Properties', () => {
46
+ testHelper.properties()
47
+ })
48
+
49
+ describe('Setting props should update attributes of inner tags', () => {
50
+ let vueWrapper: VueWrapper<InstanceType<typeof AmeliproLogoAm>>
51
+
52
+ it('prop uniqueId sets attribute id', async () => {
53
+ vueWrapper = shallowMount(AmeliproLogoAm, { props: {} })
54
+ expect(vueWrapper.attributes('id')).toBeUndefined()
55
+
56
+ const { uniqueId } = modifiedPropValues()
57
+ await vueWrapper.setProps({ uniqueId })
58
+ expect(vueWrapper.attributes('id')).toBe(testHelper.modified('uniqueId'))
59
+ })
60
+
61
+ it('prop hideSignature sets aria-label', async () => {
62
+ vueWrapper = shallowMount(AmeliproLogoAm, { props: {} })
63
+ const defaultLabel = vueWrapper.attributes('aria-label')
64
+ await vueWrapper.setProps({ hideSignature: true })
65
+ expect(vueWrapper.attributes('aria-label')).not.toBe(defaultLabel)
66
+ })
67
+
68
+ it('prop size sets width/height', async () => {
69
+ vueWrapper = shallowMount(AmeliproLogoAm, { props: {} })
70
+ const defaultWidth = vueWrapper.attributes('width')
71
+ const defaultHeight = vueWrapper.attributes('height')
72
+ const { size } = modifiedPropValues()
73
+ await vueWrapper.setProps({ size })
74
+ expect(vueWrapper.attributes('width')).not.toBe(defaultWidth)
75
+ expect(vueWrapper.attributes('height')).not.toBe(defaultHeight)
76
+ })
77
+ })
78
+ })
@@ -1,13 +1,75 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
- exports[`AmeliproLogoAm > render correctly 1`] = `
3
+ exports[`AmeliproLogoAm > Snapshots > renders the component with all properties filled in 1`] = `
4
+ <svg
5
+ aria-label="Sécurité sociale, L’Assurance Maladie"
6
+ class="logo-am"
7
+ fill="#0C419A"
8
+ focusable="false"
9
+ height="52"
10
+ id="modified-unique-id"
11
+ role="img"
12
+ viewBox="0 0 211 64"
13
+ width="164"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <!-- v-if -->
17
+ <g>
18
+ <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" />
19
+ <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" />
20
+ <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" />
21
+ <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" />
22
+ <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" />
23
+ <path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" />
24
+ <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" />
25
+ <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" />
26
+ <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" />
27
+ <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" />
28
+ <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" />
29
+ <path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" />
30
+ <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" />
31
+ <path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" />
32
+ <path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" />
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" />
52
+ <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" />
53
+ <path
54
+ clip-rule="evenodd"
55
+ 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"
56
+ fill-rule="evenodd"
57
+ />
58
+ <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" />
59
+ <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" />
60
+ <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" />
61
+ <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" />
62
+ <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" />
63
+ </svg>
64
+ `;
65
+
66
+ exports[`AmeliproLogoAm > Snapshots > renders the component with only required properties filled in 1`] = `
4
67
  <svg
5
68
  aria-label="Sécurité sociale, L’Assurance Maladie : Agir ensemble, protéger chacun"
6
69
  class="logo-am"
7
70
  fill="#0C419A"
8
71
  focusable="false"
9
72
  height="64"
10
- id="amelipro-logo-id"
11
73
  role="img"
12
74
  viewBox="0 0 211 64"
13
75
  width="211"
@@ -0,0 +1,358 @@
1
+ import { VueWrapper, mount, shallowMount } from '@vue/test-utils'
2
+ import { beforeEach, describe, expect, it } from 'vitest'
3
+ import AmeliproIcon from '../AmeliproIcon.vue'
4
+ import type { ComponentProps } from 'vue-component-type-helpers'
5
+ import type { ExpectedPropOptions } from '@tests/types'
6
+ import TestHelper from '@tests/helpers/TestHelper'
7
+ import { VIcon } from 'vuetify/components'
8
+ import { attachToApp } from '@tests/helpers/utils'
9
+
10
+ const expectedPropOptions: ExpectedPropOptions<typeof AmeliproIcon> = {
11
+ borderColor: {
12
+ type: String,
13
+ default: undefined,
14
+ },
15
+ bordered: {
16
+ type: Boolean,
17
+ default: false,
18
+ },
19
+ icon: {
20
+ type: String,
21
+ default: undefined,
22
+ },
23
+ iconBgColor: {
24
+ type: String,
25
+ default: 'transparent',
26
+ },
27
+ iconColor: {
28
+ type: String,
29
+ required: true,
30
+ },
31
+ label: {
32
+ type: String,
33
+ default: undefined,
34
+ },
35
+ large: {
36
+ type: Boolean,
37
+ default: false,
38
+ },
39
+ mdiPadding: {
40
+ type: String,
41
+ default: undefined,
42
+ },
43
+ medium: {
44
+ type: Boolean,
45
+ default: false,
46
+ },
47
+ size: {
48
+ type: String,
49
+ default: undefined,
50
+ },
51
+ small: {
52
+ type: Boolean,
53
+ default: false,
54
+ },
55
+ uniqueId: {
56
+ type: String,
57
+ default: undefined,
58
+ },
59
+ widthAuto: {
60
+ type: Boolean,
61
+ default: false,
62
+ },
63
+ xLarge: {
64
+ type: Boolean,
65
+ default: false,
66
+ },
67
+ }
68
+
69
+ // Values pour les props "required"
70
+ const requiredPropValues = (): ComponentProps<typeof AmeliproIcon> => ({ iconColor: 'ap-black' })
71
+
72
+ // Valeurs pour les props "modified"
73
+ const modifiedPropValues = (): ComponentProps<typeof AmeliproIcon> => ({
74
+ borderColor: 'ap-blue',
75
+ bordered: true,
76
+ icon: 'utilisateur',
77
+ iconBgColor: 'ap-yellow',
78
+ iconColor: 'ap-green',
79
+ label: 'Modified label',
80
+ large: true,
81
+ mdiPadding: '3em',
82
+ medium: true,
83
+ size: '4rem',
84
+ small: true,
85
+ uniqueId: 'modified-unique-id',
86
+ widthAuto: true,
87
+ xLarge: true,
88
+ })
89
+
90
+ const testHelper = new TestHelper(AmeliproIcon)
91
+ testHelper.setExpectedPropOptions(expectedPropOptions)
92
+ .setRequiredPropValues(requiredPropValues)
93
+ .setModifiedPropValues(modifiedPropValues)
94
+
95
+ describe('AmeliproIcon', () => {
96
+ describe('Snapshots', () => {
97
+ testHelper.snapshots()
98
+ })
99
+
100
+ describe('Properties', () => {
101
+ testHelper.properties()
102
+ })
103
+
104
+ describe('Setting props should update attributes of inner tags', () => {
105
+ let vueWrapper: VueWrapper<InstanceType<typeof AmeliproIcon>>
106
+
107
+ describe('root', () => {
108
+ beforeEach(() => {
109
+ vueWrapper = shallowMount(AmeliproIcon, { props: requiredPropValues() })
110
+ })
111
+
112
+ it('prop uniqueId sets attribute id', async () => {
113
+ expect(vueWrapper.find('.amelipro-icon').attributes('id')).toBeUndefined()
114
+
115
+ const { uniqueId } = modifiedPropValues()
116
+ await vueWrapper.setProps({ uniqueId })
117
+ expect(vueWrapper.find('.amelipro-icon').attributes('id')).toBe('modified-unique-id')
118
+ })
119
+ })
120
+
121
+ describe('span.amelipro-custom-icon - without slot', () => {
122
+ const findInnerWrapper = () => vueWrapper.find('.amelipro-custom-icon')
123
+
124
+ beforeEach(() => {
125
+ vueWrapper = shallowMount(AmeliproIcon, { props: requiredPropValues() })
126
+ })
127
+
128
+ it('prop label sets attribute aria-label', async () => {
129
+ expect(findInnerWrapper().attributes('aria-label')).toBeUndefined()
130
+
131
+ const { label } = modifiedPropValues()
132
+ await vueWrapper.setProps({ label })
133
+ expect(findInnerWrapper().attributes('aria-label')).toBe('Modified label')
134
+ })
135
+
136
+ it('prop small sets attribute class', async () => {
137
+ expect(findInnerWrapper().classes('small')).toBe(false)
138
+
139
+ const { small } = modifiedPropValues()
140
+ await vueWrapper.setProps({ small })
141
+ expect(findInnerWrapper().classes('small')).toBe(true)
142
+ })
143
+
144
+ it('prop medium sets attribute class', async () => {
145
+ expect(findInnerWrapper().classes('medium')).toBe(false)
146
+
147
+ const { medium } = modifiedPropValues()
148
+ await vueWrapper.setProps({ medium })
149
+ expect(findInnerWrapper().classes('medium')).toBe(true)
150
+ })
151
+
152
+ it('prop large sets attribute class', async () => {
153
+ expect(findInnerWrapper().classes('large')).toBe(false)
154
+
155
+ const { large } = modifiedPropValues()
156
+ await vueWrapper.setProps({ large })
157
+ expect(findInnerWrapper().classes('large')).toBe(true)
158
+ })
159
+
160
+ it('prop xLarge sets attribute class', async () => {
161
+ expect(findInnerWrapper().classes('x-large')).toBe(false)
162
+
163
+ const { xLarge } = modifiedPropValues()
164
+ await vueWrapper.setProps({ xLarge })
165
+ expect(findInnerWrapper().classes('x-large')).toBe(true)
166
+ })
167
+
168
+ it('props iconColor, bordered, borderColor, size & widthAuto set attribute style', async () => {
169
+ expect(findInnerWrapper().attributes('style')).toBe('color: #000000;')
170
+
171
+ await vueWrapper.setProps({ iconColor: 'ap-white' })
172
+ expect(findInnerWrapper().attributes('style')).toBe('color: #FFFFFF;')
173
+
174
+ const { bordered } = modifiedPropValues()
175
+ await vueWrapper.setProps({ bordered })
176
+ expect(findInnerWrapper().attributes('style')).toBe('color: #FFFFFF; border-radius: 50%; border: 1px solid #FFFFFF;')
177
+
178
+ const { borderColor } = modifiedPropValues()
179
+ await vueWrapper.setProps({ borderColor })
180
+ expect(findInnerWrapper().attributes('style')).toBe('color: #FFFFFF; border-radius: 50%; border: 1px solid #0C419A;')
181
+
182
+ const { size } = modifiedPropValues()
183
+ await vueWrapper.setProps({ size })
184
+ expect(findInnerWrapper().attributes('style')).toBe('color: #FFFFFF; border-radius: 50%; border: 1px solid #0C419A; height: 4rem; width: 4rem;')
185
+
186
+ const { widthAuto } = modifiedPropValues()
187
+ await vueWrapper.setProps({ widthAuto })
188
+ expect(findInnerWrapper().attributes('style')).toBe('color: #FFFFFF; border-radius: 50%; border: 1px solid #0C419A; height: 4rem; width: auto;')
189
+ })
190
+ })
191
+
192
+ describe('span.amelipro-custom-icon - with slot', () => {
193
+ const findInnerWrapper = () => vueWrapper.find('.amelipro-external-icon')
194
+
195
+ beforeEach(() => {
196
+ vueWrapper = shallowMount(AmeliproIcon, {
197
+ props: requiredPropValues(),
198
+ slots: { default: 'Default slot' },
199
+ })
200
+ })
201
+
202
+ it('prop small sets attribute class', async () => {
203
+ expect(findInnerWrapper().classes('small')).toBe(false)
204
+
205
+ const { small } = modifiedPropValues()
206
+ await vueWrapper.setProps({ small })
207
+ expect(findInnerWrapper().classes('small')).toBe(true)
208
+ })
209
+
210
+ it('prop medium sets attribute class', async () => {
211
+ expect(findInnerWrapper().classes('medium')).toBe(false)
212
+
213
+ const { medium } = modifiedPropValues()
214
+ await vueWrapper.setProps({ medium })
215
+ expect(findInnerWrapper().classes('medium')).toBe(true)
216
+ })
217
+
218
+ it('prop large sets attribute class', async () => {
219
+ expect(findInnerWrapper().classes('large')).toBe(false)
220
+
221
+ const { large } = modifiedPropValues()
222
+ await vueWrapper.setProps({ large })
223
+ expect(findInnerWrapper().classes('large')).toBe(true)
224
+ })
225
+ it('prop xLarge sets attribute class', async () => {
226
+ expect(findInnerWrapper().classes('x-large')).toBe(false)
227
+
228
+ const { xLarge } = modifiedPropValues()
229
+ await vueWrapper.setProps({ xLarge })
230
+ expect(findInnerWrapper().classes('x-large')).toBe(true)
231
+ })
232
+
233
+ it('props iconColor, iconBgColor, bordered, borderColor & size set attribute style', async () => {
234
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
235
+
236
+ const { iconBgColor } = modifiedPropValues()
237
+ await vueWrapper.setProps({ iconBgColor })
238
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: #F0B323; border-radius: 50%; color: #000000; padding: 2px;')
239
+
240
+ const { bordered } = modifiedPropValues()
241
+ await vueWrapper.setProps({ bordered })
242
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: #F0B323; border-radius: 50%; color: #000000; padding: 2px; border: 1px solid #000000;')
243
+
244
+ await vueWrapper.setProps({ iconColor: 'ap-white' })
245
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: #F0B323; border-radius: 50%; color: #FFFFFF; padding: 2px; border: 1px solid #FFFFFF;')
246
+
247
+ const { borderColor } = modifiedPropValues()
248
+ await vueWrapper.setProps({ borderColor })
249
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: #F0B323; border-radius: 50%; color: #FFFFFF; padding: 2px; border: 1px solid #0C419A;')
250
+
251
+ const { size } = modifiedPropValues()
252
+ await vueWrapper.setProps({ size })
253
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: #F0B323; border-radius: 50%; color: #FFFFFF; padding: 5px; border: 1px solid #0C419A; height: 4rem; width: 4rem;')
254
+ })
255
+
256
+ it('prop small sets padding in attribute style', async () => {
257
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
258
+
259
+ const { small } = modifiedPropValues()
260
+ await vueWrapper.setProps({ small })
261
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 1px;')
262
+ })
263
+
264
+ it('prop large sets padding in attribute style', async () => {
265
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
266
+
267
+ const { large } = modifiedPropValues()
268
+ await vueWrapper.setProps({ large })
269
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 4px;')
270
+ })
271
+ it('prop xLarge sets padding in attribute style', async () => {
272
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
273
+
274
+ const { xLarge } = modifiedPropValues()
275
+ await vueWrapper.setProps({ xLarge })
276
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 5px;')
277
+ })
278
+
279
+ it('prop size sets padding in attribute style', async () => {
280
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
281
+
282
+ const { size } = modifiedPropValues()
283
+ await vueWrapper.setProps({ size })
284
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 5px; height: 4rem; width: 4rem;')
285
+ })
286
+
287
+ it('prop mdiPadding set padding in attribute style', async () => {
288
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 2px;')
289
+
290
+ const { mdiPadding } = modifiedPropValues()
291
+ await vueWrapper.setProps({ mdiPadding })
292
+ expect(findInnerWrapper().attributes('style')).toBe('background-color: transparent; border-radius: 50%; color: #000000; padding: 3em;')
293
+ })
294
+ })
295
+ })
296
+
297
+ describe('Setting props should update props or attributes of inner components', () => {
298
+ let vueWrapper: VueWrapper<InstanceType<typeof AmeliproIcon>>
299
+
300
+ describe('VIcon', () => {
301
+ beforeEach(() => {
302
+ vueWrapper = shallowMount(AmeliproIcon, {
303
+ props: requiredPropValues(),
304
+ slots: { default: 'Default slot' },
305
+ })
306
+ })
307
+
308
+ it('prop iconColor sets prop color', async () => {
309
+ expect(vueWrapper.findComponent(VIcon).props('color')).toBe('ap-black')
310
+
311
+ const { iconColor } = modifiedPropValues()
312
+ await vueWrapper.setProps({ iconColor })
313
+ expect(vueWrapper.findComponent(VIcon).props('color')).toBe('ap-green')
314
+ })
315
+ })
316
+ })
317
+
318
+ // TODO: pourquoi le slot de VIcon est toujours vide ?
319
+ describe.skip('Slots', () => {
320
+ let vueWrapper: VueWrapper<InstanceType<typeof AmeliproIcon>>
321
+
322
+ describe('#default', () => {
323
+ it('slot #default without content', () => {
324
+ vueWrapper = shallowMount(AmeliproIcon, { props: requiredPropValues() })
325
+ expect(vueWrapper.findComponent(VIcon).exists()).toBe(false)
326
+ })
327
+
328
+ it('slot #default with content', () => {
329
+ // vueWrapper = shallowMount(AmeliproIcon, {
330
+ vueWrapper = mount(AmeliproIcon, {
331
+ props: requiredPropValues(),
332
+ slots: { default: 'Default slot content' },
333
+ stubs: { VIcon },
334
+ })
335
+ expect(vueWrapper.find('.amelipro-external-icon').text()).toBe('Default slot content')
336
+ })
337
+ })
338
+ })
339
+
340
+ describe('Computed', () => {
341
+ const vueWrapper = mount(AmeliproIcon, {
342
+ autoAttach: attachToApp(),
343
+ props: {
344
+ ...modifiedPropValues(),
345
+ icon: 'utilisateur',
346
+ iconColor: 'ap-blue-darken-1',
347
+ },
348
+ })
349
+
350
+ it('themeIcon returns the good values', () => {
351
+ const expectedResult = `<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 1823 1823" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd">
352
+ <circle class="circle-color" cx="912" cy="912" r="912"></circle>
353
+ <path class="shape-color" 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"></path>
354
+ </svg>`
355
+ expect(vueWrapper.find('svg').html()).toContain(expectedResult)
356
+ })
357
+ })
358
+ })
@@ -1,20 +1,30 @@
1
1
  // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
 
3
- exports[`AmeliproIcon > render correctly 1`] = `
3
+ exports[`AmeliproIcon > Snapshots > renders the component with all properties filled in 1`] = `
4
4
  <span
5
5
  class="amelipro-icon"
6
- id="amelipro-icon-id"
6
+ id="modified-unique-id"
7
7
  >
8
8
  <span
9
9
  aria-hidden="true"
10
+ aria-label="Modified label"
10
11
  class="
11
12
  amelipro-custom-icon
12
13
  custom-color
14
+ large
15
+ medium
16
+ small
13
17
  x-large
14
18
  "
15
19
  focusable="false"
16
20
  role="img"
17
- style="color: #FFFFFF;"
21
+ style="
22
+ color: #56C271;
23
+ border-radius: 50%;
24
+ border: 1px solid #0C419A;
25
+ height: 4rem;
26
+ width: auto;
27
+ "
18
28
  >
19
29
  <span>
20
30
  <svg
@@ -44,3 +54,20 @@ exports[`AmeliproIcon > render correctly 1`] = `
44
54
  </span>
45
55
  </span>
46
56
  `;
57
+
58
+ exports[`AmeliproIcon > Snapshots > renders the component with only required properties filled in 1`] = `
59
+ <span class="amelipro-icon">
60
+ <span
61
+ aria-hidden="true"
62
+ class="
63
+ amelipro-custom-icon
64
+ custom-color
65
+ "
66
+ focusable="false"
67
+ role="img"
68
+ style="color: #000000;"
69
+ >
70
+ <!-- v-if -->
71
+ </span>
72
+ </span>
73
+ `;
@@ -109,6 +109,7 @@ export const iconList: IconItem[] = [
109
109
  { name: 'signature2' },
110
110
  { name: 'shieldPlus' },
111
111
  { name: 'delegation' },
112
+ { name: 'attele' },
112
113
  {
113
114
  name: 'chevronLeft',
114
115
  noBackground: true,
@@ -197,7 +197,7 @@
197
197
  <span
198
198
  v-if="!hasSlot && btnLabel !== undefined"
199
199
  :id="uniqueId ? `${uniqueId}-btn-label` : undefined"
200
- class="d-sr-only"
200
+ class="d-sr-only amelipro-btn__label"
201
201
  >
202
202
  {{ btnLabel }}
203
203
  </span>