@cnamts/synapse 0.0.3-alpha → 0.0.4-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/dist/design-system-v3.d.ts +712 -27
  2. package/dist/design-system-v3.js +2715 -1485
  3. package/dist/design-system-v3.umd.cjs +10 -1
  4. package/dist/style.css +1 -1
  5. package/package.json +5 -2
  6. package/src/components/Alert/Alert.mdx +1 -1
  7. package/src/components/Alert/Alert.stories.ts +91 -1
  8. package/src/components/BackBtn/BackBtn.mdx +1 -1
  9. package/src/components/BackBtn/BackBtn.stories.ts +84 -1
  10. package/src/components/BackToTopBtn/BackToTopBtn.mdx +3 -3
  11. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +172 -11
  12. package/src/components/CollapsibleList/CollapsibleList.mdx +2 -2
  13. package/src/components/CollapsibleList/CollapsibleList.stories.ts +37 -1
  14. package/src/components/CopyBtn/CopyBtn.mdx +1 -1
  15. package/src/components/CopyBtn/CopyBtn.stories.ts +120 -1
  16. package/src/components/CopyBtn/CopyBtn.vue +1 -1
  17. package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +6 -8
  18. package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +270 -4
  19. package/src/components/Customs/CustomInputSelect/CustomInputSelect.vue +80 -53
  20. package/src/components/Customs/CustomInputSelect/config.ts +10 -0
  21. package/src/components/Customs/CustomSelect/CustomSelect.mdx +3 -3
  22. package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +158 -2
  23. package/src/components/Customs/CustomSelect/CustomSelect.vue +25 -6
  24. package/src/components/Customs/CustomTextField/CustomTextField.mdx +44 -0
  25. package/src/components/Customs/CustomTextField/CustomTextField.stories.ts +403 -0
  26. package/src/components/Customs/CustomTextField/CustomTextField.vue +110 -0
  27. package/src/components/Customs/CustomTextField/tests/CustomTextField.spec.ts +93 -0
  28. package/src/components/Customs/CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap +59 -0
  29. package/src/components/Customs/CustomTextField/types.d.ts +3 -0
  30. package/src/components/DataList/DataList.mdx +77 -0
  31. package/src/components/DataList/DataList.stories.ts +960 -0
  32. package/src/components/DataList/DataList.vue +140 -0
  33. package/src/components/DataList/DataListLoading/DataListLoading.vue +56 -0
  34. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +23 -0
  35. package/src/components/DataList/locales.ts +3 -0
  36. package/src/components/DataList/tests/DataList.spec.ts +194 -0
  37. package/src/components/DataList/types.d.ts +23 -0
  38. package/src/components/DataListGroup/DataListGroup.mdx +77 -0
  39. package/src/components/DataListGroup/DataListGroup.stories.ts +987 -0
  40. package/src/components/DataListGroup/DataListGroup.vue +59 -0
  41. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +54 -0
  42. package/src/components/DataListGroup/tests/data/dataListGroupItems.ts +41 -0
  43. package/src/components/DataListGroup/types.d.ts +15 -0
  44. package/src/components/DataListItem/DataListItem.vue +135 -0
  45. package/src/components/DataListItem/config.ts +17 -0
  46. package/src/components/DataListItem/locales.ts +3 -0
  47. package/src/components/DataListItem/tests/DataListItem.spec.ts +156 -0
  48. package/src/components/DataListItem/types.d.ts +23 -0
  49. package/src/components/DownloadBtn/Accessibilite.mdx +14 -0
  50. package/src/components/DownloadBtn/Accessibilite.stories.ts +166 -0
  51. package/src/components/DownloadBtn/AccessibiliteItems.ts +129 -0
  52. package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
  53. package/src/components/DownloadBtn/DownloadBtn.stories.ts +207 -2
  54. package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +4 -0
  55. package/src/components/FooterBar/FooterBar.mdx +2 -2
  56. package/src/components/FooterBar/FooterBar.stories.ts +1 -1
  57. package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
  58. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +58 -1
  59. package/src/components/HeaderBar/HeaderBar.mdx +164 -45
  60. package/src/components/HeaderBar/HeaderBar.stories.ts +559 -15
  61. package/src/components/HeaderBar/HeaderBar.vue +60 -22
  62. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.mdx +433 -0
  63. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.stories.ts +1089 -0
  64. package/src/components/HeaderBar/{HeaderComplexMenu/HeaderComplexMenu.vue → HeaderBurgerMenu/HeaderBurgerMenu.vue} +74 -45
  65. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.mdx +38 -0
  66. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +89 -0
  67. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +1 -1
  68. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.mdx +17 -0
  69. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +121 -0
  70. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/HeaderMenuSection.vue +2 -2
  71. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/tests/HeaderMenuSection.spec.ts +1 -3
  72. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.mdx +43 -0
  73. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +261 -0
  74. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/HeaderSubMenu.vue +17 -3
  75. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/tests/HeaderSubMenu.spec.ts +1 -1
  76. package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +180 -0
  77. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +13 -0
  78. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +13 -0
  79. package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +62 -25
  80. package/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.ts +49 -1
  81. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +19 -23
  82. package/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.ts +70 -0
  83. package/src/components/HeaderBar/Usages.mdx +85 -0
  84. package/src/components/HeaderBar/consts.scss +0 -1
  85. package/src/components/HeaderBar/tests/HeaderBar.spec.ts +8 -2
  86. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +5 -10
  87. package/src/components/HeaderLoading/HeaderLoading.mdx +28 -0
  88. package/src/components/HeaderLoading/HeaderLoading.stories.ts +62 -0
  89. package/src/components/HeaderLoading/HeaderLoading.vue +45 -0
  90. package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +22 -0
  91. package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +128 -0
  92. package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +784 -0
  93. package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +194 -0
  94. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +74 -0
  95. package/src/components/HeaderNavigationBar/HorizontalNavbar/config.ts +18 -0
  96. package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +127 -0
  97. package/src/components/HeaderNavigationBar/types.ts +7 -0
  98. package/src/components/HeaderToolbar/HeaderToolbar.mdx +31 -0
  99. package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +343 -0
  100. package/src/components/HeaderToolbar/HeaderToolbar.vue +487 -0
  101. package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +196 -0
  102. package/src/components/HeaderToolbar/types.d.ts +20 -0
  103. package/src/components/LangBtn/LangBtn.mdx +1 -1
  104. package/src/components/LangBtn/LangBtn.stories.ts +125 -8
  105. package/src/components/Logo/Logo.mdx +2 -2
  106. package/src/components/Logo/Logo.stories.ts +147 -1
  107. package/src/components/LogoBrandSection/LogoBrandSection.mdx +14 -0
  108. package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +158 -0
  109. package/src/components/LogoBrandSection/LogoBrandSection.vue +312 -0
  110. package/src/components/LogoBrandSection/assets/ameli-pro.svg +1 -0
  111. package/src/components/LogoBrandSection/assets/ameli.svg +1 -0
  112. package/src/components/LogoBrandSection/assets/cnam.svg +1 -0
  113. package/src/components/LogoBrandSection/assets/compte-ameli.svg +1 -0
  114. package/src/components/LogoBrandSection/dividerDimensionsMapping.ts +14 -0
  115. package/src/components/LogoBrandSection/locales.ts +14 -0
  116. package/src/components/LogoBrandSection/secondaryLogoMapping.ts +24 -0
  117. package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +365 -0
  118. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +14 -0
  119. package/src/components/LogoBrandSection/types.ts +8 -0
  120. package/src/components/NotificationBar/NotificationBar.mdx +6 -6
  121. package/src/components/NotificationBar/NotificationBar.stories.ts +1 -1
  122. package/src/components/NotificationBar/NotificationBar.vue +2 -2
  123. package/src/components/NotificationBar/tests/NotificationBar.spec.ts +1 -1
  124. package/src/components/PageContainer/PageContainer.mdx +1 -1
  125. package/src/components/PageContainer/PageContainer.stories.ts +86 -1
  126. package/src/components/PhoneField/PhoneField.mdx +49 -0
  127. package/src/components/PhoneField/PhoneField.stories.ts +869 -0
  128. package/src/components/PhoneField/PhoneField.vue +230 -0
  129. package/src/components/PhoneField/indicatifs.ts +104 -0
  130. package/src/components/PhoneField/locales.ts +4 -0
  131. package/src/components/PhoneField/tests/PhoneField.spec.ts +179 -0
  132. package/src/components/SkipLink/SkipLink.stories.ts +50 -1
  133. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +28 -1
  134. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +37 -1
  135. package/src/components/SubHeader/SubHeader.mdx +31 -0
  136. package/src/components/SubHeader/SubHeader.stories.ts +1032 -0
  137. package/src/components/SubHeader/SubHeader.vue +185 -0
  138. package/src/components/SubHeader/config.ts +12 -0
  139. package/src/components/SubHeader/locales.ts +3 -0
  140. package/src/components/SubHeader/tests/SubHeader.spec.ts +144 -0
  141. package/src/components/index.ts +24 -7
  142. package/src/composables/widthable/index.ts +29 -0
  143. package/src/composables/widthable/tests/widthable.spec.ts +52 -0
  144. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -2
  145. package/src/main.ts +1 -0
  146. package/src/modules.d.ts +4 -0
  147. package/src/services/index.ts +1 -0
  148. package/src/stories/Demarrer/Accueil.mdx +10 -0
  149. package/src/stories/Demarrer/Accueil.stories.ts +76 -0
  150. package/src/stories/Demarrer/PolitiqueDeConfidentialite.mdx +9 -0
  151. package/src/stories/Demarrer/PolitiqueDeConfidentialite.stories.ts +20 -0
  152. package/src/stories/Fondamentaux/Accessibilite/Accessibilite.mdx +1 -2
  153. package/src/stories/Fondamentaux/Accessibilite/Accessibilite.stories.ts +1 -1
  154. package/src/stories/Fondamentaux/EcoConception/Econception.stories.ts +1 -1
  155. package/src/stories/GuideDuDev/moduleDeNotification.mdx +52 -48
  156. package/src/stories/GuideDuDev/vuetifyOptions.mdx +31 -28
  157. package/src/stories/Guidelines/CustomisationEtThemes.mdx +1 -1
  158. package/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.ts +47 -0
  159. package/src/utils/functions/throttleDisplayFn/throttleDisplayFn.ts +26 -0
  160. package/src/utils/rules/exactLength/index.ts +33 -0
  161. package/src/utils/rules/exactLength/locales.ts +6 -0
  162. package/src/utils/rules/required/index.ts +25 -0
  163. package/src/utils/rules/required/locales.ts +5 -0
  164. package/src/utils/rules/required/ruleMessageHelper.ts +14 -0
  165. package/src/utils/rules/required/tests/index.spec.ts +47 -0
  166. package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +22 -0
  167. package/src/utils/rules/types.d.ts +15 -0
  168. package/src/components/Beta/beta.mdx +0 -5
  169. package/src/components/Deprecated/deprecated.mdx +0 -5
  170. package/src/components/HeaderBar/HeaderComplexMenu/HeaderComplexMenu.stories.ts +0 -272
  171. package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +0 -49
  172. package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +0 -56
  173. package/src/components/HeaderBar/HeaderComplexMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +0 -137
  174. package/src/components/HeaderBar/HeaderComplexMenu/tests/HeaderComplexMenu.spec.ts +0 -129
  175. package/src/components/HeaderBar/HeaderComplexMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +0 -18
  176. package/src/stories/Home/Accueil.mdx +0 -7
  177. package/src/stories/Home/PolitiqueDeConfidentialite.mdx +0 -4
  178. package/src/stories/Home/synapse.webp +0 -0
  179. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/HeaderMenuItem.vue +0 -0
  180. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/HeaderMenuItem.spec.ts +0 -0
  181. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/conts.ts +0 -0
  182. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/locals.ts +0 -0
  183. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/tests/useHandleSubMenus.spec.ts +0 -0
  184. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/useHandleSubMenus.ts +0 -0
  185. /package/src/components/Logo/{types.d.ts → types.ts} +0 -0
@@ -1,68 +1,31 @@
1
- import { defineComponent as O, computed as v, openBlock as d, createElementBlock as g, normalizeClass as D, createVNode as N, withCtx as f, renderSlot as _, mergeModels as ze, useModel as Ee, createBlock as S, createSlots as Pe, createTextVNode as C, toDisplayString as b, unref as u, createElementVNode as L, toRaw as Re, ref as $, mergeProps as Z, normalizeProps as re, guardReactiveProps as ce, onMounted as Ne, getCurrentInstance as ye, nextTick as je, watch as Y, onUnmounted as Fe, withDirectives as Ue, vShow as Ge, createCommentVNode as x, useAttrs as Ke, Fragment as K, renderList as ee, createStaticVNode as te, useSlots as We, resolveDynamicComponent as qe } from "vue";
2
- import { useDisplay as ne, useTheme as Qe } from "vuetify";
3
- import { VSheet as Xe } from "vuetify/lib/components/VSheet/index.mjs";
4
- import { VAlert as Ye } from "vuetify/lib/components/VAlert/index.mjs";
5
- import { VBtn as F } from "vuetify/lib/components/VBtn/index.mjs";
6
- import { VIcon as I } from "vuetify/lib/components/VIcon/index.mjs";
7
- import { VMenu as Je, VBtn as Le, VIcon as we } from "vuetify/components";
8
- import { VFadeTransition as e1 } from "vuetify/lib/components/transitions/index.mjs";
9
- import { Scroll as a1 } from "vuetify/lib/directives/index.mjs";
10
- import { VSnackbar as n1 } from "vuetify/lib/components/VSnackbar/index.mjs";
11
- import { VList as t1, VListItem as o1, VListItemTitle as l1 } from "vuetify/lib/components/VList/index.mjs";
12
- import { VMenu as i1 } from "vuetify/lib/components/VMenu/index.mjs";
13
- import { VExpansionPanels as r1, VExpansionPanel as c1, VExpansionPanelTitle as s1, VExpansionPanelText as d1 } from "vuetify/lib/components/VExpansionPanel/index.mjs";
14
- import { VDivider as fe } from "vuetify/lib/components/VDivider/index.mjs";
15
- import { VFooter as u1 } from "vuetify/lib/components/VFooter/index.mjs";
16
- import { VSpacer as m1 } from "vuetify/lib/components/VGrid/index.mjs";
17
- const v1 = /* @__PURE__ */ O({
18
- __name: "PageContainer",
19
- props: {
20
- size: { default: "xl" },
21
- spacing: { default: void 0 },
22
- color: { default: "transparent" }
23
- },
24
- setup(n, { expose: e }) {
25
- const a = n, t = ne(), o = {
26
- xs: "px-0",
27
- sm: "px-4",
28
- md: "px-8",
29
- lg: "px-8",
30
- xl: "px-8"
31
- }, m = o[t.name.value], c = v(() => a.spacing ? `py-10 ${o[a.spacing]}` : `py-10 ${m}`), i = {
32
- xl: 1440,
33
- l: 960,
34
- m: 800,
35
- s: 600
36
- }, r = v(() => i[a.size]);
37
- return e({
38
- spacingClass: c,
39
- containerSize: r
40
- }), (h, w) => (d(), g("div", {
41
- class: D([c.value, "vd-page-container d-flex justify-center"])
42
- }, [
43
- N(Xe, {
44
- width: r.value,
45
- color: h.color
46
- }, {
47
- default: f(() => [
48
- _(h.$slots, "default", {}, void 0, !0)
49
- ]),
50
- _: 3
51
- }, 8, ["width", "color"])
52
- ], 2));
53
- }
54
- }), T = (n, e) => {
55
- const a = n.__vccOpts || n;
56
- for (const [t, o] of e)
57
- a[t] = o;
58
- return a;
59
- }, mn = /* @__PURE__ */ T(v1, [["__scopeId", "data-v-773c0ca7"]]), h1 = {
1
+ import { defineComponent as A, useModel as Ye, computed as m, openBlock as s, createBlock as y, normalizeClass as O, createSlots as A1, withCtx as v, renderSlot as k, createVNode as $, createTextVNode as C, toDisplayString as Z, unref as u, createElementVNode as N, mergeModels as H1, ref as L, mergeProps as I, createCommentVNode as _, toRaw as I1, watch as z, onMounted as le, onUnmounted as me, withDirectives as we, normalizeProps as Y, guardReactiveProps as he, vShow as Qe, createElementBlock as h, Fragment as D, renderList as R, withKeys as ee, withModifiers as ae, normalizeStyle as Q, useAttrs as x1, reactive as B1, inject as ue, getCurrentInstance as Ae, watchEffect as T1, h as O1, createStaticVNode as J, useSlots as E1, resolveDynamicComponent as z1, useCssVars as D1, provide as Xe, nextTick as Je, readonly as e1, Teleport as R1, Transition as a1, useId as t1 } from "vue";
2
+ import { VAlert as j1 } from "vuetify/lib/components/VAlert/index.mjs";
3
+ import { VBtn as P } from "vuetify/lib/components/VBtn/index.mjs";
4
+ import { VIcon as T } from "vuetify/lib/components/VIcon/index.mjs";
5
+ import { VBtn as n1, VIcon as de, VMenu as P1, VList as l1, VListItem as o1, VListItemTitle as i1, VTextField as K1, VTabs as F1 } from "vuetify/components";
6
+ import { useDisplay as pe, useTheme as Ze } from "vuetify";
7
+ import { VFadeTransition as ie } from "vuetify/lib/components/transitions/index.mjs";
8
+ import { Scroll as U1, ClickOutside as s1 } from "vuetify/lib/directives/index.mjs";
9
+ import { VExpansionPanels as W1, VExpansionPanel as G1, VExpansionPanelTitle as q1, VExpansionPanelText as Y1 } from "vuetify/lib/components/VExpansionPanel/index.mjs";
10
+ import { VInput as Q1 } from "vuetify/lib/components/VInput/index.mjs";
11
+ import { VDivider as Ce } from "vuetify/lib/components/VDivider/index.mjs";
12
+ import { VTextField as X1 } from "vuetify/lib/components/VTextField/index.mjs";
13
+ import { VChip as J1 } from "vuetify/lib/components/VChip/index.mjs";
14
+ import { VSkeletonLoader as c1 } from "vuetify/components/VSkeletonLoader";
15
+ import { VFooter as ea } from "vuetify/lib/components/VFooter/index.mjs";
16
+ import { VSpacer as aa } from "vuetify/lib/components/VGrid/index.mjs";
17
+ import { VSheet as He } from "vuetify/lib/components/VSheet/index.mjs";
18
+ import { VTab as ta } from "vuetify/lib/components/VTabs/index.mjs";
19
+ import { VList as na, VListItem as la, VListItemTitle as oa } from "vuetify/lib/components/VList/index.mjs";
20
+ import { VMenu as ia } from "vuetify/lib/components/VMenu/index.mjs";
21
+ import { VSnackbar as sa } from "vuetify/lib/components/VSnackbar/index.mjs";
22
+ const ca = {
60
23
  close: "Fermer"
61
24
  };
62
- var f1 = "M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z", Me = "M8.27,3L3,8.27V15.73L8.27,21H15.73C17.5,19.24 21,15.73 21,15.73V8.27L15.73,3M9.1,5H14.9L19,9.1V14.9L14.9,19H9.1L5,14.9V9.1M11,15H13V17H11V15M11,7H13V13H11V7", p1 = "M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16", b1 = "M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z", Ce = "M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z", Ve = "M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M16.59 7.58L10 14.17L7.41 11.59L6 13L10 17L18 9L16.59 7.58Z", Ze = "M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z", g1 = "M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z", k1 = "M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z", N1 = "M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z", Ae = "M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z", y1 = "M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z", L1 = "M7,10L12,15L17,10H7Z", w1 = "M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z", M1 = "M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z";
63
- const C1 = /* @__PURE__ */ O({
25
+ var ra = "M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z", r1 = "M8.27,3L3,8.27V15.73L8.27,21H15.73C17.5,19.24 21,15.73 21,15.73V8.27L15.73,3M9.1,5H14.9L19,9.1V14.9L14.9,19H9.1L5,14.9V9.1M11,15H13V17H11V15M11,7H13V13H11V7", u1 = "M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16", ua = "M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z", d1 = "M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z", da = "M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z", v1 = "M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M16.59 7.58L10 14.17L7.41 11.59L6 13L10 17L18 9L16.59 7.58Z", va = "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", ma = "M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z", ha = "M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z", Ne = "M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z", pa = "M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z", fa = "M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z", ba = "M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z", m1 = "M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z", Ie = "M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z", ga = "M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z", ya = "M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z", ka = "M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z", h1 = "M7,10L12,15L17,10H7Z", Ma = "M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z", wa = "M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z";
26
+ const Za = /* @__PURE__ */ A({
64
27
  __name: "Alert",
65
- props: /* @__PURE__ */ ze({
28
+ props: /* @__PURE__ */ H1({
66
29
  type: { default: "info" },
67
30
  closable: { type: Boolean, default: !1 },
68
31
  variant: { default: "tonal" }
@@ -71,67 +34,67 @@ const C1 = /* @__PURE__ */ O({
71
34
  modelModifiers: {}
72
35
  }),
73
36
  emits: ["update:modelValue"],
74
- setup(n, { expose: e }) {
75
- const a = Ee(n, "modelValue"), t = n, o = v(() => ({
76
- info: Ae,
77
- success: Ve,
78
- warning: p1,
79
- error: Me
80
- })[t.type]);
81
- function m() {
37
+ setup(e, { expose: t }) {
38
+ const a = Ye(e, "modelValue"), l = e, n = m(() => ({
39
+ info: Ie,
40
+ success: v1,
41
+ warning: u1,
42
+ error: r1
43
+ })[l.type]);
44
+ function o() {
82
45
  a.value = !1;
83
46
  }
84
- return e({
85
- prependIcon: o,
86
- dismissAlert: m
87
- }), (c, i) => (d(), S(Ye, {
47
+ return t({
48
+ prependIcon: n,
49
+ dismissAlert: o
50
+ }), (r, c) => (s(), y(j1, {
88
51
  modelValue: a.value,
89
- "onUpdate:modelValue": i[0] || (i[0] = (r) => a.value = r),
90
- type: c.type,
91
- closable: c.closable,
92
- variant: c.variant,
93
- class: D(`alert alert--${c.type}`),
94
- color: c.type,
95
- border: c.variant === "tonal" ? "start" : !1
96
- }, Pe({
97
- prepend: f(() => [
98
- N(I, {
52
+ "onUpdate:modelValue": c[0] || (c[0] = (i) => a.value = i),
53
+ type: r.type,
54
+ closable: r.closable,
55
+ variant: r.variant,
56
+ class: O(`alert alert--${r.type}`),
57
+ color: r.type,
58
+ border: r.variant === "tonal" ? "start" : !1
59
+ }, A1({
60
+ prepend: v(() => [
61
+ $(T, {
99
62
  class: "alert-icon",
100
63
  size: "1.5rem"
101
64
  }, {
102
- default: f(() => [
103
- _(c.$slots, "icon", {}, () => [
104
- C(b(o.value), 1)
65
+ default: v(() => [
66
+ k(r.$slots, "icon", {}, () => [
67
+ C(Z(n.value), 1)
105
68
  ], !0)
106
69
  ]),
107
70
  _: 3
108
71
  })
109
72
  ]),
110
- default: f(() => [
111
- _(c.$slots, "default", {}, void 0, !0)
73
+ default: v(() => [
74
+ k(r.$slots, "default", {}, void 0, !0)
112
75
  ]),
113
76
  _: 2
114
77
  }, [
115
- c.closable ? {
78
+ r.closable ? {
116
79
  name: "close",
117
- fn: f(() => [
118
- N(F, {
119
- color: c.variant === "outlined" ? void 0 : "primary",
80
+ fn: v(() => [
81
+ $(P, {
82
+ color: r.variant === "outlined" ? void 0 : "primary",
120
83
  ripple: !1,
121
84
  variant: "text",
122
85
  width: "auto",
123
86
  height: "100%",
124
87
  class: "alert-close-btn",
125
- onClick: m
88
+ onClick: o
126
89
  }, {
127
- default: f(() => [
128
- N(I, { size: "small" }, {
129
- default: f(() => [
130
- C(b(u(Ze)), 1)
90
+ default: v(() => [
91
+ $(T, { size: "small" }, {
92
+ default: v(() => [
93
+ C(Z(u(Ne)), 1)
131
94
  ]),
132
95
  _: 1
133
96
  }),
134
- L("span", null, b(u(h1).close), 1)
97
+ N("span", null, Z(u(ca).close), 1)
135
98
  ]),
136
99
  _: 1
137
100
  }, 8, ["color"])
@@ -140,94 +103,300 @@ const C1 = /* @__PURE__ */ O({
140
103
  } : void 0
141
104
  ]), 1032, ["modelValue", "type", "closable", "variant", "class", "color", "border"]));
142
105
  }
143
- }), vn = /* @__PURE__ */ T(C1, [["__scopeId", "data-v-6f216856"]]);
144
- function Se(n) {
145
- return n && n.__esModule && Object.prototype.hasOwnProperty.call(n, "default") ? n.default : n;
106
+ }), H = (e, t) => {
107
+ const a = e.__vccOpts || e;
108
+ for (const [l, n] of t)
109
+ a[l] = n;
110
+ return a;
111
+ }, Jn = /* @__PURE__ */ H(Za, [["__scopeId", "data-v-6f216856"]]), Na = {
112
+ label: "Retour"
113
+ }, La = /* @__PURE__ */ A({
114
+ __name: "BackBtn",
115
+ props: {
116
+ hideBackIcon: { type: Boolean },
117
+ dark: { type: Boolean }
118
+ },
119
+ setup(e) {
120
+ const t = e, a = L(ua), l = m(() => t.dark ?? !1), n = m(() => l.value ? "white" : "primary"), o = m(() => l.value ? "outlined" : "text"), r = m(() => l.value ? "dark" : "light"), c = m(() => l.value ? "white" : "primary"), i = m(() => ({
121
+ "px-0": !l.value,
122
+ "pr-1": !l.value && !t.hideBackIcon
123
+ }));
124
+ return (d, f) => (s(), y(u(n1), I(d.$attrs, {
125
+ variant: o.value,
126
+ theme: r.value,
127
+ color: c.value,
128
+ outlined: l.value,
129
+ class: ["vd-back-btn", "text-none", i.value]
130
+ }), {
131
+ default: v(() => [
132
+ k(d.$slots, "icon", {}, () => [
133
+ t.hideBackIcon ? _("", !0) : (s(), y(u(de), {
134
+ key: 0,
135
+ color: n.value,
136
+ class: O([{ "ml-n1": l.value }, "mr-1"])
137
+ }, {
138
+ default: v(() => [
139
+ C(Z(a.value), 1)
140
+ ]),
141
+ _: 1
142
+ }, 8, ["color", "class"]))
143
+ ], !0),
144
+ k(d.$slots, "default", {}, () => [
145
+ C(Z(u(Na).label), 1)
146
+ ], !0)
147
+ ]),
148
+ _: 3
149
+ }, 16, ["variant", "theme", "color", "outlined", "class"]));
150
+ }
151
+ }), el = /* @__PURE__ */ H(La, [["__scopeId", "data-v-b9c7d584"]]);
152
+ function p1(e) {
153
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
146
154
  }
147
- var V1 = function(e) {
148
- return Z1(e) && !A1(e);
155
+ var _a = function(t) {
156
+ return Va(t) && !$a(t);
149
157
  };
150
- function Z1(n) {
151
- return !!n && typeof n == "object";
158
+ function Va(e) {
159
+ return !!e && typeof e == "object";
152
160
  }
153
- function A1(n) {
154
- var e = Object.prototype.toString.call(n);
155
- return e === "[object RegExp]" || e === "[object Date]" || x1(n);
161
+ function $a(e) {
162
+ var t = Object.prototype.toString.call(e);
163
+ return t === "[object RegExp]" || t === "[object Date]" || Aa(e);
156
164
  }
157
- var S1 = typeof Symbol == "function" && Symbol.for, _1 = S1 ? Symbol.for("react.element") : 60103;
158
- function x1(n) {
159
- return n.$$typeof === _1;
165
+ var Sa = typeof Symbol == "function" && Symbol.for, Ca = Sa ? Symbol.for("react.element") : 60103;
166
+ function Aa(e) {
167
+ return e.$$typeof === Ca;
160
168
  }
161
- function O1(n) {
162
- return Array.isArray(n) ? [] : {};
169
+ function Ha(e) {
170
+ return Array.isArray(e) ? [] : {};
163
171
  }
164
- function ae(n, e) {
165
- return e.clone !== !1 && e.isMergeableObject(n) ? W(O1(n), n, e) : n;
172
+ function ve(e, t) {
173
+ return t.clone !== !1 && t.isMergeableObject(e) ? ne(Ha(e), e, t) : e;
166
174
  }
167
- function $1(n, e, a) {
168
- return n.concat(e).map(function(t) {
169
- return ae(t, a);
175
+ function Ia(e, t, a) {
176
+ return e.concat(t).map(function(l) {
177
+ return ve(l, a);
170
178
  });
171
179
  }
172
- function B1(n, e) {
173
- if (!e.customMerge)
174
- return W;
175
- var a = e.customMerge(n);
176
- return typeof a == "function" ? a : W;
180
+ function xa(e, t) {
181
+ if (!t.customMerge)
182
+ return ne;
183
+ var a = t.customMerge(e);
184
+ return typeof a == "function" ? a : ne;
177
185
  }
178
- function T1(n) {
179
- return Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(n).filter(function(e) {
180
- return Object.propertyIsEnumerable.call(n, e);
186
+ function Ba(e) {
187
+ return Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(e).filter(function(t) {
188
+ return Object.propertyIsEnumerable.call(e, t);
181
189
  }) : [];
182
190
  }
183
- function pe(n) {
184
- return Object.keys(n).concat(T1(n));
191
+ function xe(e) {
192
+ return Object.keys(e).concat(Ba(e));
185
193
  }
186
- function _e(n, e) {
194
+ function f1(e, t) {
187
195
  try {
188
- return e in n;
196
+ return t in e;
189
197
  } catch {
190
198
  return !1;
191
199
  }
192
200
  }
193
- function H1(n, e) {
194
- return _e(n, e) && !(Object.hasOwnProperty.call(n, e) && Object.propertyIsEnumerable.call(n, e));
201
+ function Ta(e, t) {
202
+ return f1(e, t) && !(Object.hasOwnProperty.call(e, t) && Object.propertyIsEnumerable.call(e, t));
195
203
  }
196
- function D1(n, e, a) {
197
- var t = {};
198
- return a.isMergeableObject(n) && pe(n).forEach(function(o) {
199
- t[o] = ae(n[o], a);
200
- }), pe(e).forEach(function(o) {
201
- H1(n, o) || (_e(n, o) && a.isMergeableObject(e[o]) ? t[o] = B1(o, a)(n[o], e[o], a) : t[o] = ae(e[o], a));
202
- }), t;
204
+ function Oa(e, t, a) {
205
+ var l = {};
206
+ return a.isMergeableObject(e) && xe(e).forEach(function(n) {
207
+ l[n] = ve(e[n], a);
208
+ }), xe(t).forEach(function(n) {
209
+ Ta(e, n) || (f1(e, n) && a.isMergeableObject(t[n]) ? l[n] = xa(n, a)(e[n], t[n], a) : l[n] = ve(t[n], a));
210
+ }), l;
203
211
  }
204
- function W(n, e, a) {
205
- a = a || {}, a.arrayMerge = a.arrayMerge || $1, a.isMergeableObject = a.isMergeableObject || V1, a.cloneUnlessOtherwiseSpecified = ae;
206
- var t = Array.isArray(e), o = Array.isArray(n), m = t === o;
207
- return m ? t ? a.arrayMerge(n, e, a) : D1(n, e, a) : ae(e, a);
212
+ function ne(e, t, a) {
213
+ a = a || {}, a.arrayMerge = a.arrayMerge || Ia, a.isMergeableObject = a.isMergeableObject || _a, a.cloneUnlessOtherwiseSpecified = ve;
214
+ var l = Array.isArray(t), n = Array.isArray(e), o = l === n;
215
+ return o ? l ? a.arrayMerge(e, t, a) : Oa(e, t, a) : ve(t, a);
208
216
  }
209
- W.all = function(e, a) {
210
- if (!Array.isArray(e))
217
+ ne.all = function(t, a) {
218
+ if (!Array.isArray(t))
211
219
  throw new Error("first argument should be an array");
212
- return e.reduce(function(t, o) {
213
- return W(t, o, a);
220
+ return t.reduce(function(l, n) {
221
+ return ne(l, n, a);
214
222
  }, {});
215
223
  };
216
- var I1 = W, z1 = I1;
217
- const xe = /* @__PURE__ */ Se(z1);
218
- function q(n, e) {
219
- return v(() => xe(n, Re(e.vuetifyOptions) ?? {}));
224
+ var Ea = ne, za = Ea;
225
+ const b1 = /* @__PURE__ */ p1(za);
226
+ function K(e, t) {
227
+ return m(() => b1(e, I1(t.vuetifyOptions) ?? {}));
228
+ }
229
+ function se(e, t = "px") {
230
+ if (!(e == null || e === ""))
231
+ return isNaN(+e) ? String(e) : `${Number(e)}${t}`;
220
232
  }
221
- function E1(n) {
222
- const e = document.createElement("textarea");
223
- e.value = n, e.setAttribute("readonly", ""), e.style.position = "absolute", e.style.left = "-9999px", document.body.appendChild(e);
233
+ const Da = {
234
+ label: "Retour en haut"
235
+ }, Ra = {
236
+ btn: {
237
+ variant: "outlined",
238
+ color: "primary",
239
+ class: "text-wrap px-0 px-md-4"
240
+ },
241
+ icon: {
242
+ color: "primary",
243
+ size: "small",
244
+ class: "ml-0 ml-md-1"
245
+ }
246
+ }, ja = /* @__PURE__ */ A({
247
+ __name: "BackToTopBtn",
248
+ props: {
249
+ threshold: { default: 120 },
250
+ nudgeRight: { default: "16px" },
251
+ nudgeBottom: { default: "16px" },
252
+ target: { default: void 0 },
253
+ vuetifyOptions: {}
254
+ },
255
+ setup(e) {
256
+ const t = e, a = K(Ra, t), l = L(!1), n = L(!1), o = m(() => t.target ? `#${t.target}` : null), r = m(() => {
257
+ const g = se(t.nudgeRight) || "0";
258
+ return {
259
+ bottom: se(t.nudgeBottom) || "0",
260
+ marginRight: g
261
+ };
262
+ }), c = m(() => n.value ? "36px" : void 0), i = m(() => ({
263
+ "d-sr-only": n.value
264
+ })), d = pe();
265
+ z(
266
+ () => d.smAndDown.value,
267
+ (g) => {
268
+ n.value = g;
269
+ },
270
+ { immediate: !0 }
271
+ );
272
+ const f = (g) => {
273
+ const w = g.currentTarget;
274
+ w instanceof Window ? l.value = window.scrollY > t.threshold : l.value = w.scrollTop > t.threshold;
275
+ }, M = () => {
276
+ t.target ? (document.getElementById(t.target) || window).scrollTo(0, 0) : window.scrollTo(0, 0);
277
+ }, S = m(() => t.target ? document.getElementById(t.target) : window);
278
+ return le(() => {
279
+ var g;
280
+ (g = S.value) == null || g.addEventListener("scroll", f);
281
+ }), me(() => {
282
+ var g;
283
+ (g = S.value) == null || g.removeEventListener("scroll", f);
284
+ }), (g, w) => (s(), y(ie, null, {
285
+ default: v(() => [
286
+ we((s(), y(P, I({
287
+ ...u(a).btn,
288
+ ...g.$attrs
289
+ }, {
290
+ style: r.value,
291
+ "min-width": c.value,
292
+ class: "vd-back-to-top-btn",
293
+ onClick: M
294
+ }), {
295
+ default: v(() => [
296
+ N("span", {
297
+ class: O(i.value)
298
+ }, [
299
+ k(g.$slots, "default", {}, () => [
300
+ C(Z(u(Da).label), 1)
301
+ ], !0)
302
+ ], 2),
303
+ k(g.$slots, "icon", {}, () => [
304
+ $(T, Y(he(u(a).icon)), {
305
+ default: v(() => [
306
+ C(Z(u(d1)), 1)
307
+ ]),
308
+ _: 1
309
+ }, 16)
310
+ ], !0)
311
+ ]),
312
+ _: 3
313
+ }, 16, ["style", "min-width"])), [
314
+ [Qe, l.value],
315
+ [U1, f, o.value]
316
+ ])
317
+ ]),
318
+ _: 3
319
+ }));
320
+ }
321
+ }), al = /* @__PURE__ */ H(ja, [["__scopeId", "data-v-c019b012"]]), Pa = { class: "pl-0" }, Ka = ["href", "aria-label"], Fa = {
322
+ key: 1,
323
+ class: "vd-collapse-list"
324
+ }, Ua = { class: "text-subtitle-1 font-weight-bold mb-3" }, Wa = { class: "pl-0" }, Ga = ["href", "aria-label"], qa = /* @__PURE__ */ A({
325
+ __name: "CollapsibleList",
326
+ props: {
327
+ listTitle: {},
328
+ items: {}
329
+ },
330
+ setup(e) {
331
+ const t = e, { smAndDown: a } = pe(), l = m(() => a.value);
332
+ return (n, o) => l.value ? (s(), y(W1, {
333
+ key: 0,
334
+ class: "vd-collapse-list-mobile",
335
+ variant: "accordion",
336
+ flat: ""
337
+ }, {
338
+ default: v(() => [
339
+ $(G1, {
340
+ class: "vd-panel",
341
+ elevation: "0",
342
+ "bg-color": "transparent"
343
+ }, {
344
+ default: v(() => [
345
+ $(q1, { class: "vd-panel-title text-subtitle-2 pl-0 py-4" }, {
346
+ default: v(() => [
347
+ C(Z(t.listTitle), 1)
348
+ ]),
349
+ _: 1
350
+ }),
351
+ $(Y1, { class: "vd-panel-text" }, {
352
+ default: v(() => [
353
+ N("ul", Pa, [
354
+ (s(!0), h(D, null, R(t.items, (r, c) => (s(), h("li", {
355
+ key: c,
356
+ class: "py-3"
357
+ }, [
358
+ N("a", {
359
+ href: r.href,
360
+ "aria-label": r.text,
361
+ class: "text-body-2 text-decoration-none"
362
+ }, Z(r.text), 9, Ka)
363
+ ]))), 128))
364
+ ])
365
+ ]),
366
+ _: 1
367
+ })
368
+ ]),
369
+ _: 1
370
+ })
371
+ ]),
372
+ _: 1
373
+ })) : (s(), h("div", Fa, [
374
+ N("h4", Ua, Z(n.listTitle), 1),
375
+ N("ul", Wa, [
376
+ (s(!0), h(D, null, R(n.items, (r, c) => (s(), h("li", {
377
+ key: c,
378
+ class: O({ "mb-2": c < n.items.length - 1 })
379
+ }, [
380
+ N("a", {
381
+ href: r.href,
382
+ "aria-label": r.ariaLabel,
383
+ class: "text-body-2 text-decoration-none text--primary"
384
+ }, Z(r.text), 9, Ga)
385
+ ], 2))), 128))
386
+ ])
387
+ ]));
388
+ }
389
+ }), tl = /* @__PURE__ */ H(qa, [["__scopeId", "data-v-8456c2b9"]]);
390
+ function Ya(e) {
391
+ const t = document.createElement("textarea");
392
+ t.value = e, t.setAttribute("readonly", ""), t.style.position = "absolute", t.style.left = "-9999px", document.body.appendChild(t);
224
393
  const a = document.getSelection();
225
- let t = !1;
226
- a && (t = a.rangeCount > 0 ? a.getRangeAt(0) : !1), e.select(), navigator.clipboard ? navigator.clipboard.writeText(n) : document.execCommand("copy"), document.body.removeChild(e), a && t && (a.removeAllRanges(), a.addRange(t));
394
+ let l = !1;
395
+ a && (l = a.rangeCount > 0 ? a.getRangeAt(0) : !1), t.select(), navigator.clipboard ? navigator.clipboard.writeText(e) : document.execCommand("copy"), document.body.removeChild(t), a && l && (a.removeAllRanges(), a.addRange(l));
227
396
  }
228
- const P1 = {
397
+ const Qa = {
229
398
  tooltip: "Texte copié !"
230
- }, R1 = {
399
+ }, Xa = {
231
400
  menu: {
232
401
  location: "end center",
233
402
  offset: 16,
@@ -242,7 +411,7 @@ const P1 = {
242
411
  icon: {
243
412
  color: "grey-darken-20"
244
413
  }
245
- }, j1 = ["id"], hn = /* @__PURE__ */ O({
414
+ }, Ja = ["id"], nl = /* @__PURE__ */ A({
246
415
  __name: "CopyBtn",
247
416
  props: {
248
417
  vuetifyOptions: {},
@@ -252,40 +421,40 @@ const P1 = {
252
421
  hideTooltip: { type: Boolean, default: !1 },
253
422
  tooltipDuration: { default: 2500 }
254
423
  },
255
- setup(n, { expose: e }) {
256
- const a = n, t = q(R1, a), o = $(!1), m = g1;
257
- function c() {
258
- const i = typeof a.textToCopy == "function" ? a.textToCopy() : a.textToCopy;
259
- E1(i), !a.hideTooltip && setTimeout(() => {
260
- o.value = !1;
424
+ setup(e, { expose: t }) {
425
+ const a = e, l = K(Xa, a), n = L(!1), o = pa;
426
+ function r() {
427
+ const c = typeof a.textToCopy == "function" ? a.textToCopy() : a.textToCopy;
428
+ Ya(c), !a.hideTooltip && setTimeout(() => {
429
+ n.value = !1;
261
430
  }, a.tooltipDuration);
262
431
  }
263
- return e({
264
- copy: c,
265
- tooltip: o
266
- }), (i, r) => (d(), g("div", {
432
+ return t({
433
+ copy: r,
434
+ tooltip: n
435
+ }), (c, i) => (s(), h("div", {
267
436
  id: a.ariaOwns,
268
437
  class: "vd-copy-btn"
269
438
  }, [
270
- N(u(Je), Z(u(t).menu, {
439
+ $(u(P1), I(u(l).menu, {
271
440
  id: a.ariaOwns,
272
- modelValue: o.value,
273
- "onUpdate:modelValue": r[0] || (r[0] = (h) => o.value = h),
441
+ modelValue: n.value,
442
+ "onUpdate:modelValue": i[0] || (i[0] = (d) => n.value = d),
274
443
  disabled: a.hideTooltip,
275
444
  transition: "fade-transition"
276
445
  }), {
277
- activator: f(({ props: h }) => [
278
- N(u(Le), Z({ ...h, ...u(t).btn }, {
446
+ activator: v(({ props: d }) => [
447
+ $(u(n1), I({ ...d, ...u(l).btn }, {
279
448
  "aria-label": a.ariaLabel,
280
449
  "aria-owns": a.ariaOwns,
281
450
  "data-test-id": a.ariaOwns,
282
- onClick: c
451
+ onClick: r
283
452
  }), {
284
- default: f(() => [
285
- _(i.$slots, "icon", {}, () => [
286
- N(u(we), re(ce(u(t).icon)), {
287
- default: f(() => [
288
- C(b(u(m)), 1)
453
+ default: v(() => [
454
+ k(c.$slots, "icon", {}, () => [
455
+ $(u(de), Y(he(u(l).icon)), {
456
+ default: v(() => [
457
+ C(Z(u(o)), 1)
289
458
  ]),
290
459
  _: 1
291
460
  }, 16)
@@ -294,199 +463,657 @@ const P1 = {
294
463
  _: 2
295
464
  }, 1040, ["aria-label", "aria-owns", "data-test-id"])
296
465
  ]),
297
- default: f(() => [
298
- _(i.$slots, "tooltip", {}, () => [
299
- C(b(u(P1).tooltip), 1)
466
+ default: v(() => [
467
+ k(c.$slots, "tooltip", {}, () => [
468
+ C(Z(u(Qa).tooltip), 1)
300
469
  ])
301
470
  ]),
302
471
  _: 3
303
472
  }, 16, ["id", "modelValue", "disabled"])
304
- ], 8, j1));
473
+ ], 8, Ja));
305
474
  }
306
- }), F1 = {
307
- label: "Aller au contenu principal"
308
- }, U1 = { class: "vd-skip-link-container" }, G1 = ["href"], K1 = /* @__PURE__ */ O({
309
- __name: "SkipLink",
310
- props: {
311
- label: { default: F1.label },
312
- target: { default: "#main" }
475
+ }), et = {
476
+ menu: {
477
+ color: "primary"
313
478
  },
314
- setup(n) {
315
- const e = $(null);
316
- return Ne(() => {
317
- var c, i;
318
- const a = ye();
319
- if (!a) return;
320
- const t = (c = a == null ? void 0 : a.appContext.app) == null ? void 0 : c.$nuxt;
321
- let o;
322
- t && t.$router && (o = t.$router);
323
- const m = (i = a.appContext.app.config.globalProperties) == null ? void 0 : i.$router;
324
- m && (o = m), o && o.afterEach && o.afterEach((r, h, w) => {
325
- w || r.path !== h.path && je(() => {
326
- var k;
327
- (k = e.value) == null || k.focus();
328
- });
329
- });
330
- }), (a, t) => (d(), g("div", U1, [
331
- L("span", {
332
- ref_key: "skipLinkSpan",
333
- ref: e,
334
- tabindex: "-1"
335
- }, null, 512),
336
- L("a", {
337
- href: a.target,
338
- class: "vd-skip-link text-primary d-block d-sr-only-focusable px-2"
339
- }, [
340
- _(a.$slots, "default", {}, () => [
341
- C(b(a.label), 1)
342
- ], !0)
343
- ], 8, G1)
344
- ]));
479
+ option: {
480
+ color: "primary"
345
481
  }
346
- }), fn = /* @__PURE__ */ T(K1, [["__scopeId", "data-v-2bd5b004"]]);
347
- function be(n, e = "px") {
348
- if (!(n == null || n === ""))
349
- return isNaN(+n) ? String(n) : `${Number(n)}${e}`;
350
- }
351
- const W1 = {
352
- label: "Retour en haut"
353
- }, q1 = {
354
- btn: {
355
- variant: "outlined",
356
- color: "primary",
357
- class: "text-wrap px-0 px-md-4"
482
+ }, at = ["onKeydown"], tt = /* @__PURE__ */ A({
483
+ __name: "CustomInputSelect",
484
+ props: {
485
+ vuetifyOptions: {},
486
+ modelValue: { default: null },
487
+ items: { default: () => [] },
488
+ textKey: { default: "text" },
489
+ valueKey: { default: "value" },
490
+ label: { default: "Sélectionnez une option" },
491
+ outlined: { type: Boolean, default: !1 },
492
+ required: { type: Boolean, default: !1 },
493
+ errorMessages: { default: () => [] }
358
494
  },
359
- icon: {
360
- color: "primary",
361
- size: "small",
362
- class: "ml-0 ml-md-1"
495
+ emits: ["update:modelValue"],
496
+ setup(e, { emit: t }) {
497
+ const a = e, l = K(et, a), n = t, o = L(!1), r = L(a.modelValue), c = () => {
498
+ o.value = !o.value;
499
+ }, i = () => {
500
+ o.value = !1;
501
+ }, d = L(`custom-input-select-${Math.random().toString(36).substring(7)}`), f = (V) => {
502
+ r.value = V, n("update:modelValue", V), o.value = !1;
503
+ }, M = (V) => V[a.textKey], S = m(() => r.value && typeof r.value == "object" ? r.value[a.textKey] : a.label);
504
+ z(() => a.modelValue, (V) => {
505
+ r.value = V;
506
+ }), z(() => a.errorMessages, (V) => {
507
+ b.value = V;
508
+ });
509
+ const g = m(() => a.outlined ? "v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined" : "text-color"), w = m(() => a.items.map((V) => typeof V == "string" ? { [a.textKey]: V, [a.valueKey]: V } : V)), b = L(a.errorMessages), p = () => a.required && !r.value ? (b.value = ["Le champ est requis."], !1) : a.errorMessages.length > 0 ? (b.value = a.errorMessages, !1) : (b.value = [], !0);
510
+ return (V, x) => (s(), y(Q1, {
511
+ id: d.value,
512
+ modelValue: r.value,
513
+ "onUpdate:modelValue": x[1] || (x[1] = (E) => r.value = E),
514
+ label: a.label,
515
+ title: a.label,
516
+ role: "menu",
517
+ "error-messages": b.value,
518
+ onClick: p
519
+ }, {
520
+ default: v(() => [
521
+ we((s(), h("div", {
522
+ ref: "menu",
523
+ class: O(["custom-select", g.value, "text-" + u(l).menu.color]),
524
+ role: "menu",
525
+ tabindex: "0",
526
+ onClick: c,
527
+ onKeydown: [
528
+ ee(ae(c, ["prevent"]), ["enter"]),
529
+ ee(ae(c, ["prevent"]), ["space"])
530
+ ]
531
+ }, [
532
+ N("span", null, Z(S.value), 1),
533
+ $(u(de), null, {
534
+ default: v(() => [
535
+ C(Z(u(va)), 1)
536
+ ]),
537
+ _: 1
538
+ })
539
+ ], 42, at)), [
540
+ [s1, i]
541
+ ]),
542
+ o.value ? (s(), y(u(l1), I({ key: 0 }, u(l).list, {
543
+ class: "v-list",
544
+ style: `max-width: ${V.$refs.menu ? V.$refs.menu.getBoundingClientRect().width : 0}px; ${a.outlined ? "top: 36px;" : "top: 30px;"}`,
545
+ "aria-label": a.label,
546
+ title: a.label,
547
+ onKeydown: x[0] || (x[0] = ee(ae((E) => o.value = !1, ["prevent"]), ["esc"]))
548
+ }), {
549
+ default: v(() => [
550
+ (s(!0), h(D, null, R(w.value, (E, F) => (s(), y(u(o1), I({ ref_for: !0 }, u(l).option, {
551
+ key: F,
552
+ ref_for: !0,
553
+ ref: "options-" + F,
554
+ "base-color": u(l).option.color,
555
+ role: "option",
556
+ class: "v-list-item",
557
+ "aria-selected": r.value === E,
558
+ tabindex: F + 1,
559
+ onClick: (_e) => f(E)
560
+ }), {
561
+ default: v(() => [
562
+ $(u(i1), null, {
563
+ default: v(() => [
564
+ C(Z(M(E)), 1)
565
+ ]),
566
+ _: 2
567
+ }, 1024)
568
+ ]),
569
+ _: 2
570
+ }, 1040, ["base-color", "aria-selected", "tabindex", "onClick"]))), 128))
571
+ ]),
572
+ _: 1
573
+ }, 16, ["style", "aria-label", "title"])) : _("", !0)
574
+ ]),
575
+ _: 1
576
+ }, 8, ["id", "modelValue", "label", "title", "error-messages"]));
363
577
  }
364
- }, Q1 = /* @__PURE__ */ O({
365
- __name: "BackToTopBtn",
578
+ }), ll = /* @__PURE__ */ H(tt, [["__scopeId", "data-v-4858239a"]]), nt = /* @__PURE__ */ A({
579
+ __name: "CustomSelect",
366
580
  props: {
367
- threshold: { default: 120 },
368
- nudgeRight: { default: "16px" },
369
- nudgeBottom: { default: "16px" },
370
- target: { default: void 0 },
371
- vuetifyOptions: {}
581
+ modelValue: {
582
+ type: [Object, String],
583
+ default: null
584
+ },
585
+ items: {
586
+ type: Array,
587
+ default: () => []
588
+ },
589
+ label: {
590
+ type: String,
591
+ default: "Sélectionnez une option"
592
+ },
593
+ errorMessages: {
594
+ type: [String, Array],
595
+ default: () => []
596
+ },
597
+ required: {
598
+ type: Boolean,
599
+ default: !1
600
+ },
601
+ menuId: {
602
+ type: String,
603
+ default: "custom-select-menu"
604
+ },
605
+ outlined: {
606
+ type: Boolean,
607
+ default: !1
608
+ },
609
+ textKey: {
610
+ type: String,
611
+ default: "text"
612
+ },
613
+ valueKey: {
614
+ type: String,
615
+ default: "value"
616
+ }
372
617
  },
373
- setup(n) {
374
- const e = n, a = q(q1, e), t = $(!1), o = $(!1), m = v(() => e.target ? `#${e.target}` : null), c = v(() => {
375
- const s = be(e.nudgeRight) || "0";
376
- return {
377
- bottom: be(e.nudgeBottom) || "0",
378
- marginRight: s
379
- };
380
- }), i = v(() => o.value ? "36px" : void 0), r = v(() => ({
381
- "d-sr-only": o.value
382
- })), h = ne();
383
- Y(
384
- () => h.smAndDown.value,
385
- (s) => {
386
- o.value = s;
387
- },
388
- { immediate: !0 }
389
- );
390
- const w = (s) => {
391
- const p = s.currentTarget;
392
- p instanceof Window ? t.value = window.scrollY > e.threshold : t.value = p.scrollTop > e.threshold;
393
- }, k = () => {
394
- e.target ? (document.getElementById(e.target) || window).scrollTo(0, 0) : window.scrollTo(0, 0);
395
- }, M = v(() => e.target ? document.getElementById(e.target) : window);
396
- return Ne(() => {
397
- var s;
398
- (s = M.value) == null || s.addEventListener("scroll", w);
399
- }), Fe(() => {
400
- var s;
401
- (s = M.value) == null || s.removeEventListener("scroll", w);
402
- }), (s, p) => (d(), S(e1, null, {
403
- default: f(() => [
404
- Ue((d(), S(F, Z({
405
- ...u(a).btn,
406
- ...s.$attrs
618
+ emits: ["update:modelValue"],
619
+ setup(e, { emit: t }) {
620
+ const a = e, l = t, n = L(!1), o = L(a.modelValue), r = L(!1), c = () => {
621
+ n.value = !n.value;
622
+ }, i = () => {
623
+ n.value = !1;
624
+ }, d = L(`custom-select-${Math.random().toString(36).substring(7)}`), f = (b) => {
625
+ o.value = b, l("update:modelValue", b), n.value = !1;
626
+ }, M = (b) => b[a.textKey], S = m(() => o.value && typeof o.value == "object" ? o.value[a.textKey] : a.label), g = m(() => a.items.map((b) => typeof b == "string" ? { [a.textKey]: b, [a.valueKey]: b } : b)), w = m(() => (a.required || a.errorMessages.length > 0) && !o.value);
627
+ return z(() => a.modelValue, (b) => {
628
+ o.value = b;
629
+ }), z(n, (b) => {
630
+ r.value = !b && !o.value && w.value;
631
+ }), (b, p) => {
632
+ var V;
633
+ return s(), h("div", null, [
634
+ we((s(), y(u(K1), {
635
+ id: d.value,
636
+ ref: "input",
637
+ modelValue: S.value,
638
+ "onUpdate:modelValue": p[0] || (p[0] = (x) => S.value = x),
639
+ title: "Sélectionnez une option",
640
+ color: "primary",
641
+ tabindex: "0",
642
+ readonly: "",
643
+ label: o.value ? e.label : "",
644
+ "aria-label": o.value ? e.label : "Sélectionnez une option",
645
+ "error-messages": e.errorMessages,
646
+ variant: e.outlined ? "outlined" : "underlined",
647
+ rules: w.value ? ["Le champ est requis."] : [],
648
+ class: "custom-select",
649
+ onClick: c,
650
+ onKeydown: [
651
+ ee(ae(c, ["prevent"]), ["enter"]),
652
+ ee(ae(c, ["prevent"]), ["space"])
653
+ ]
407
654
  }, {
408
- style: c.value,
409
- "min-width": i.value,
410
- class: "vd-back-to-top-btn",
411
- onClick: k
412
- }), {
413
- default: f(() => [
414
- L("span", {
415
- class: D(r.value)
416
- }, [
417
- _(s.$slots, "default", {}, () => [
418
- C(b(u(W1).label), 1)
419
- ], !0)
420
- ], 2),
421
- _(s.$slots, "icon", {}, () => [
422
- N(I, re(ce(u(a).icon)), {
423
- default: f(() => [
424
- C(b(u(Ce)), 1)
425
- ]),
426
- _: 1
427
- }, 16)
428
- ], !0)
655
+ "append-inner": v(() => [
656
+ r.value ? (s(), y(u(de), {
657
+ key: 0,
658
+ class: "mr-6"
659
+ }, {
660
+ default: v(() => [
661
+ C(Z(u(m1)), 1)
662
+ ]),
663
+ _: 1
664
+ })) : _("", !0),
665
+ $(u(de), null, {
666
+ default: v(() => [
667
+ C(Z(u(h1)), 1)
668
+ ]),
669
+ _: 1
670
+ })
429
671
  ]),
430
- _: 3
431
- }, 16, ["style", "min-width"])), [
432
- [Ge, t.value],
433
- [a1, w, m.value]
672
+ _: 1
673
+ }, 8, ["id", "modelValue", "label", "aria-label", "error-messages", "variant", "rules", "onKeydown"])), [
674
+ [s1, i]
675
+ ]),
676
+ n.value ? (s(), y(u(l1), {
677
+ key: 0,
678
+ class: "v-list",
679
+ style: Q(`min-width: ${(V = b.$refs.input) == null ? void 0 : V.$el.offsetWidth}px`),
680
+ onKeydown: p[1] || (p[1] = ee(ae((x) => n.value = !1, ["prevent"]), ["esc"]))
681
+ }, {
682
+ default: v(() => [
683
+ (s(!0), h(D, null, R(g.value, (x, E) => (s(), y(u(o1), {
684
+ key: E,
685
+ ref_for: !0,
686
+ ref: "options-" + E,
687
+ role: "option",
688
+ class: "v-list-item",
689
+ "aria-selected": o.value === x,
690
+ tabindex: E + 1,
691
+ onClick: (F) => f(x)
692
+ }, {
693
+ default: v(() => [
694
+ $(u(i1), null, {
695
+ default: v(() => [
696
+ C(Z(M(x)), 1)
697
+ ]),
698
+ _: 2
699
+ }, 1024)
700
+ ]),
701
+ _: 2
702
+ }, 1032, ["aria-selected", "tabindex", "onClick"]))), 128))
703
+ ]),
704
+ _: 1
705
+ }, 8, ["style"])) : _("", !0)
706
+ ]);
707
+ };
708
+ }
709
+ }), ol = /* @__PURE__ */ H(nt, [["__scopeId", "data-v-8e832a54"]]), il = /* @__PURE__ */ A({
710
+ __name: "CustomTextField",
711
+ props: {
712
+ prependIcon: {},
713
+ appendIcon: {},
714
+ prependInnerIcon: {},
715
+ appendInnerIcon: {},
716
+ variantStyle: { default: "outlined" },
717
+ color: {},
718
+ isClearable: { type: Boolean },
719
+ showDivider: { type: Boolean },
720
+ label: {}
721
+ },
722
+ setup(e, { expose: t }) {
723
+ const a = e, l = {
724
+ info: Ie,
725
+ success: da,
726
+ warning: u1,
727
+ error: m1,
728
+ close: Ne
729
+ }, n = L(""), o = m(() => a.appendInnerIcon === "error" || a.appendInnerIcon === "success" ? a.appendInnerIcon : "black"), r = {
730
+ thickness: 2,
731
+ length: "25px",
732
+ color: "primary",
733
+ opacity: "1"
734
+ };
735
+ return t({
736
+ appendInnerIconColor: o
737
+ }), (c, i) => (s(), y(X1, {
738
+ modelValue: n.value,
739
+ "onUpdate:modelValue": i[0] || (i[0] = (d) => n.value = d),
740
+ variant: a.variantStyle,
741
+ color: a.color,
742
+ clearable: a.isClearable,
743
+ "clear-icon": l.close,
744
+ "aria-label": a.label,
745
+ label: a.label
746
+ }, {
747
+ prepend: v(() => [
748
+ k(c.$slots, "prepend", {}, () => [
749
+ a.prependIcon ? (s(), y(T, {
750
+ key: 0,
751
+ icon: l[a.prependIcon]
752
+ }, null, 8, ["icon"])) : _("", !0)
753
+ ])
754
+ ]),
755
+ append: v(() => [
756
+ k(c.$slots, "append", {}, () => [
757
+ a.appendIcon ? (s(), y(T, {
758
+ key: 0,
759
+ icon: l[a.appendIcon]
760
+ }, null, 8, ["icon"])) : _("", !0)
761
+ ])
762
+ ]),
763
+ "prepend-inner": v(() => [
764
+ k(c.$slots, "prepend-inner", {}, () => [
765
+ a.prependInnerIcon ? (s(), y(T, {
766
+ key: 0,
767
+ icon: l[a.prependInnerIcon]
768
+ }, null, 8, ["icon"])) : _("", !0)
769
+ ]),
770
+ a.showDivider ? (s(), y(Ce, I({ key: 0 }, r, {
771
+ class: "mt-4 pa-1",
772
+ vertical: ""
773
+ }), null, 16)) : _("", !0)
774
+ ]),
775
+ "append-inner": v(() => [
776
+ k(c.$slots, "append-inner", {}, () => [
777
+ a.appendInnerIcon ? (s(), y(T, {
778
+ key: 0,
779
+ icon: l[a.appendInnerIcon],
780
+ class: O({ "error-icon": a.appendInnerIcon === "error" }),
781
+ color: o.value
782
+ }, null, 8, ["icon", "class", "color"])) : _("", !0)
434
783
  ])
435
784
  ]),
436
785
  _: 3
437
- }));
786
+ }, 8, ["modelValue", "variant", "color", "clearable", "clear-icon", "aria-label", "label"]));
438
787
  }
439
- }), pn = /* @__PURE__ */ T(Q1, [["__scopeId", "data-v-c019b012"]]), X1 = {
440
- label: "Retour"
441
- }, Y1 = /* @__PURE__ */ O({
442
- __name: "BackBtn",
443
- props: {
444
- hideBackIcon: { type: Boolean },
445
- dark: { type: Boolean }
788
+ }), lt = {
789
+ loadingLabel: "Le contenu est en cours de chargement."
790
+ }, ot = {
791
+ icon: {
792
+ size: 24,
793
+ class: "mr-4 mt-2"
446
794
  },
447
- setup(n) {
448
- const e = n, a = $(b1), t = v(() => e.dark ?? !1), o = v(() => t.value ? "white" : "primary"), m = v(() => t.value ? "outlined" : "text"), c = v(() => t.value ? "dark" : "light"), i = v(() => t.value ? "white" : "primary"), r = v(() => ({
449
- "px-0": !t.value,
450
- "pr-1": !t.value && !e.hideBackIcon
451
- }));
452
- return (h, w) => (d(), S(u(Le), Z(h.$attrs, {
453
- variant: m.value,
454
- theme: c.value,
455
- color: i.value,
456
- outlined: t.value,
457
- class: ["vd-back-btn", "text-none", r.value]
458
- }), {
459
- default: f(() => [
460
- _(h.$slots, "icon", {}, () => [
461
- e.hideBackIcon ? x("", !0) : (d(), S(u(we), {
462
- key: 0,
463
- color: o.value,
464
- class: D([{ "ml-n1": t.value }, "mr-1"])
465
- }, {
466
- default: f(() => [
467
- C(b(a.value), 1)
468
- ]),
469
- _: 1
470
- }, 8, ["color", "class"]))
471
- ], !0),
472
- _(h.$slots, "default", {}, () => [
473
- C(b(u(X1).label), 1)
795
+ chip: {
796
+ class: "mt-1"
797
+ },
798
+ actionBtn: {
799
+ variant: "text",
800
+ size: "small",
801
+ color: "secondary",
802
+ class: "text-body-1 pa-0"
803
+ }
804
+ }, it = {
805
+ placeholder: ""
806
+ }, st = { class: "vd-data-list-item d-flex flex-wrap" }, ct = { class: "vd-data-list-item-content" }, rt = { class: "vd-data-list-item-value" }, ut = ["innerHTML"], dt = ["textContent"], vt = /* @__PURE__ */ A({
807
+ __name: "DataListItem",
808
+ props: {
809
+ vuetifyOptions: {},
810
+ label: { default: "" },
811
+ value: { default: void 0 },
812
+ action: { default: void 0 },
813
+ placeholder: { default: it.placeholder },
814
+ chip: { type: Boolean, default: !1 },
815
+ icon: { default: void 0 },
816
+ row: { type: Boolean, default: !1 },
817
+ renderHtmlValue: { type: Boolean, default: !1 }
818
+ },
819
+ emits: ["click:action"],
820
+ setup(e, { emit: t }) {
821
+ const a = e, l = t, n = K(ot, a), o = Ze(), r = m(() => o.current.value.dark ? "rgba(255, 255, 255, .7)" : "rgba(0, 0, 0, .6)"), c = m(() => typeof a.value == "number" ? isNaN(a.value) ? a.placeholder : a.value.toString() : a.value || a.placeholder);
822
+ return (i, d) => (s(), h("li", st, [
823
+ k(i.$slots, "icon", {}, () => [
824
+ i.icon ? (s(), y(T, Y(I({ key: 0 }, u(n).icon)), {
825
+ default: v(() => [
826
+ C(Z(i.icon), 1)
827
+ ]),
828
+ _: 1
829
+ }, 16)) : _("", !0)
830
+ ], !0),
831
+ N("div", ct, [
832
+ N("div", {
833
+ class: O({ "vd-row": i.row })
834
+ }, [
835
+ N("div", {
836
+ class: "vd-data-list-item-label text-caption",
837
+ style: Q({ color: r.value })
838
+ }, Z(i.label), 5),
839
+ N("div", rt, [
840
+ k(i.$slots, "value", Y(he({ itemValue: c.value })), () => [
841
+ i.chip ? (s(), y(J1, Y(I({ key: 0 }, u(n).chip)), {
842
+ default: v(() => [
843
+ C(Z(c.value), 1)
844
+ ]),
845
+ _: 1
846
+ }, 16)) : i.renderHtmlValue ? (s(), h("span", {
847
+ key: 1,
848
+ class: "text-body-1",
849
+ innerHTML: c.value
850
+ }, null, 8, ut)) : (s(), h("span", {
851
+ key: 2,
852
+ class: "text-body-1",
853
+ textContent: Z(c.value)
854
+ }, null, 8, dt))
855
+ ], !0)
856
+ ])
857
+ ], 2),
858
+ k(i.$slots, "action", {}, () => [
859
+ i.action ? (s(), y(P, I({ key: 0 }, u(n).actionBtn, {
860
+ class: "vd-data-list-item-action-btn",
861
+ onClick: d[0] || (d[0] = (f) => l("click:action"))
862
+ }), {
863
+ default: v(() => [
864
+ C(Z(i.action), 1)
865
+ ]),
866
+ _: 1
867
+ }, 16)) : _("", !0)
474
868
  ], !0)
475
- ]),
476
- _: 3
477
- }, 16, ["variant", "theme", "color", "outlined", "class"]));
869
+ ])
870
+ ]));
871
+ }
872
+ }), mt = /* @__PURE__ */ H(vt, [["__scopeId", "data-v-ac4bdcda"]]), ht = /* @__PURE__ */ A({
873
+ __name: "HeaderLoading",
874
+ props: {
875
+ width: {
876
+ type: String,
877
+ default: "100px"
878
+ },
879
+ height: {
880
+ type: String,
881
+ default: "1rem"
882
+ }
883
+ },
884
+ setup(e) {
885
+ const t = e;
886
+ return (a, l) => (s(), y(u(c1), I(a.$attrs, {
887
+ width: t.width,
888
+ height: t.height,
889
+ type: "heading",
890
+ "aria-hidden": "true",
891
+ class: "vd-header-loading"
892
+ }), null, 16, ["width", "height"]));
893
+ }
894
+ }), ce = /* @__PURE__ */ H(ht, [["__scopeId", "data-v-7d435f46"]]), pt = {
895
+ "aria-hidden": "true",
896
+ class: "vd-data-list-loading"
897
+ }, ft = /* @__PURE__ */ A({
898
+ __name: "DataListLoading",
899
+ props: {
900
+ itemsNumber: {
901
+ type: Number,
902
+ default: 1
903
+ },
904
+ heading: {
905
+ type: Boolean,
906
+ default: !1
907
+ },
908
+ row: {
909
+ type: Boolean,
910
+ default: !1
911
+ }
912
+ },
913
+ setup(e) {
914
+ const t = e, a = m(() => t.row ? "150px" : "90px");
915
+ return (l, n) => (s(), h("div", pt, [
916
+ e.heading ? (s(), y(ce, {
917
+ key: 0,
918
+ width: "100px",
919
+ height: "1.5rem",
920
+ class: "mb-4"
921
+ })) : _("", !0),
922
+ N("ul", null, [
923
+ (s(!0), h(D, null, R(e.itemsNumber, (o) => (s(), h("li", {
924
+ key: o + "-loading-item",
925
+ class: O([{ "mb-4": o !== e.itemsNumber }, "vd-data-list-loading-item"])
926
+ }, [
927
+ e.row ? _("", !0) : (s(), y(ce, {
928
+ key: 0,
929
+ width: "60px",
930
+ height: "1rem",
931
+ class: "mb-1"
932
+ })),
933
+ $(ce, {
934
+ width: a.value,
935
+ height: "1.5rem"
936
+ }, null, 8, ["width"])
937
+ ], 2))), 128))
938
+ ])
939
+ ]));
940
+ }
941
+ });
942
+ function g1(e) {
943
+ return {
944
+ widthStyles: m(() => ({
945
+ maxWidth: se(e.maxWidth),
946
+ minWidth: se(e.minWidth),
947
+ width: se(e.width ?? "100%")
948
+ }))
949
+ };
950
+ }
951
+ const bt = ["aria-label"], gt = { key: 1 }, yt = { key: 0 }, kt = /* @__PURE__ */ A({
952
+ __name: "DataList",
953
+ props: {
954
+ items: {
955
+ type: Array,
956
+ required: !0
957
+ },
958
+ icons: {
959
+ type: Object,
960
+ default: void 0
961
+ },
962
+ listTitle: {
963
+ type: String,
964
+ default: void 0
965
+ },
966
+ titleClass: {
967
+ type: String,
968
+ default: "text-subtitle-1 font-weight-bold mb-3"
969
+ },
970
+ row: {
971
+ type: Boolean,
972
+ default: !1
973
+ },
974
+ placeholder: {
975
+ type: String,
976
+ default: void 0
977
+ },
978
+ loading: {
979
+ type: Boolean,
980
+ default: !1
981
+ },
982
+ itemsNumberLoading: {
983
+ type: Number,
984
+ default: 1
985
+ },
986
+ headingLoading: {
987
+ type: Boolean,
988
+ default: !1
989
+ },
990
+ renderHtmlValue: {
991
+ type: Boolean,
992
+ default: !1
993
+ },
994
+ maxWidth: {
995
+ type: String,
996
+ default: void 0
997
+ },
998
+ minWidth: {
999
+ type: String,
1000
+ default: void 0
1001
+ },
1002
+ width: {
1003
+ type: String,
1004
+ default: void 0
1005
+ }
1006
+ },
1007
+ emits: ["click:item-action"],
1008
+ setup(e, { emit: t }) {
1009
+ const a = e, { widthStyles: l } = g1(a), n = t, o = m(() => a.loading ? lt.loadingLabel : void 0), r = (i) => {
1010
+ var d;
1011
+ if (!(!i || !a.icons))
1012
+ return (d = a.icons) == null ? void 0 : d[i];
1013
+ }, c = (i, d) => [{
1014
+ "mb-2": i !== a.items.length - 1
1015
+ }, d];
1016
+ return (i, d) => (s(), h("div", {
1017
+ "aria-label": o.value,
1018
+ style: Q(u(l)),
1019
+ class: "vd-data-list"
1020
+ }, [
1021
+ $(ie, { mode: "out-in" }, {
1022
+ default: v(() => [
1023
+ e.loading ? (s(), y(ft, {
1024
+ key: 0,
1025
+ "items-number": e.itemsNumberLoading,
1026
+ heading: e.headingLoading,
1027
+ "title-class": e.titleClass,
1028
+ row: e.row
1029
+ }, null, 8, ["items-number", "heading", "title-class", "row"])) : (s(), h("div", gt, [
1030
+ k(i.$slots, "title", {}, () => [
1031
+ e.listTitle ? (s(), h("h4", {
1032
+ key: 0,
1033
+ class: O(e.titleClass)
1034
+ }, Z(e.listTitle), 3)) : _("", !0)
1035
+ ], !0),
1036
+ e.items.length ? (s(), h("ul", yt, [
1037
+ (s(!0), h(D, null, R(e.items, (f, M) => (s(), y(mt, {
1038
+ key: M,
1039
+ label: f.key,
1040
+ value: f.value,
1041
+ action: f.action,
1042
+ chip: f.chip,
1043
+ row: e.row,
1044
+ "render-html-value": e.renderHtmlValue,
1045
+ icon: r(f.icon),
1046
+ placeholder: e.placeholder,
1047
+ "vuetify-options": f.options,
1048
+ class: O([c(M, f.class), "vd-data-list-item text-body-1"]),
1049
+ "onClick:action": (S) => n("click:item-action", M)
1050
+ }, null, 8, ["label", "value", "action", "chip", "row", "render-html-value", "icon", "placeholder", "vuetify-options", "class", "onClick:action"]))), 128))
1051
+ ])) : _("", !0)
1052
+ ]))
1053
+ ]),
1054
+ _: 3
1055
+ })
1056
+ ], 12, bt));
1057
+ }
1058
+ }), Mt = /* @__PURE__ */ H(kt, [["__scopeId", "data-v-ec7b0098"]]), wt = { class: "vd-data-list-group d-flex flex-wrap max-width-none ma-n4" }, Zt = /* @__PURE__ */ A({
1059
+ __name: "DataListGroup",
1060
+ props: {
1061
+ items: {
1062
+ type: Array,
1063
+ required: !0
1064
+ },
1065
+ icons: {
1066
+ type: Object,
1067
+ default: void 0
1068
+ },
1069
+ itemWidth: {
1070
+ type: String,
1071
+ default: "200px"
1072
+ },
1073
+ loading: {
1074
+ type: Boolean,
1075
+ default: !1
1076
+ },
1077
+ renderHtmlValue: {
1078
+ type: Boolean,
1079
+ default: !1
1080
+ }
1081
+ },
1082
+ emits: ["click:list-item"],
1083
+ setup(e, { emit: t }) {
1084
+ const a = e, l = t, n = (o, r) => {
1085
+ l("click:list-item", {
1086
+ dataListIndex: o,
1087
+ itemIndex: r
1088
+ });
1089
+ };
1090
+ return (o, r) => (s(), h("div", wt, [
1091
+ (s(!0), h(D, null, R(a.items, (c, i) => (s(), y(Mt, {
1092
+ key: `vd-data-list-${i}`,
1093
+ loading: a.loading,
1094
+ "render-html-value": a.renderHtmlValue,
1095
+ "list-title": c.title,
1096
+ items: c.items,
1097
+ "items-number-loading": c.itemsNumberLoading,
1098
+ "heading-loading": c.headingLoading,
1099
+ width: a.itemWidth,
1100
+ icons: a.icons,
1101
+ class: "ma-4",
1102
+ "onClick:itemAction": (d) => n(i, d)
1103
+ }, null, 8, ["loading", "render-html-value", "list-title", "items", "items-number-loading", "heading-loading", "width", "icons", "onClick:itemAction"]))), 128))
1104
+ ]));
478
1105
  }
479
- }), bn = /* @__PURE__ */ T(Y1, [["__scopeId", "data-v-b9c7d584"]]);
480
- function J1(n, e, a, t = !1) {
481
- const o = t ? ["\uFEFF", n] : [n], m = window.navigator, c = new Blob(o, { type: a });
482
- if (m.msSaveOrOpenBlob)
483
- m.msSaveOrOpenBlob(c, e);
1106
+ });
1107
+ function Nt(e, t, a, l = !1) {
1108
+ const n = l ? ["\uFEFF", e] : [e], o = window.navigator, r = new Blob(n, { type: a });
1109
+ if (o.msSaveOrOpenBlob)
1110
+ o.msSaveOrOpenBlob(r, t);
484
1111
  else {
485
- const i = document.createElement("a");
486
- i.target = "_blank", i.style.display = "none", i.rel = "noopener noreferrer", i.href = window.URL.createObjectURL(c), i.download = e, document.body.appendChild(i), i.click(), document.body.removeChild(i), window.URL.revokeObjectURL(i.href);
1112
+ const c = document.createElement("a");
1113
+ c.target = "_blank", c.style.display = "none", c.rel = "noopener noreferrer", c.href = window.URL.createObjectURL(r), c.download = t, document.body.appendChild(c), c.click(), document.body.removeChild(c), window.URL.revokeObjectURL(c.href);
487
1114
  }
488
1115
  }
489
- const ea = {
1116
+ const Lt = {
490
1117
  btn: {
491
1118
  variant: "outlined",
492
1119
  color: "primary",
@@ -498,7 +1125,7 @@ const ea = {
498
1125
  color: "primary",
499
1126
  class: "mr-3"
500
1127
  }
501
- }, aa = /* @__PURE__ */ O({
1128
+ }, _t = /* @__PURE__ */ A({
502
1129
  inheritAttrs: !1,
503
1130
  __name: "DownloadBtn",
504
1131
  props: {
@@ -507,314 +1134,1278 @@ const ea = {
507
1134
  vuetifyOptions: {}
508
1135
  },
509
1136
  emits: ["error", "success"],
510
- setup(n, { expose: e, emit: a }) {
511
- const t = n, o = a, m = Ke(), c = $("idle"), i = q(ea, t), r = v(() => xe(i.value.btn, m));
512
- function h(k) {
513
- var y, A, H;
514
- const M = k["content-type"], s = k["content-disposition"];
515
- let p;
516
- return p = (H = (A = (y = s == null ? void 0 : s.split(";")) == null ? void 0 : y.find((Q) => Q.includes("filename="))) == null ? void 0 : A.split("=")) == null ? void 0 : H[1], p || (p = t.fallbackFilename || "file"), {
517
- name: p,
518
- type: M
1137
+ setup(e, { expose: t, emit: a }) {
1138
+ const l = e, n = a, o = x1(), r = L("idle"), c = K(Lt, l), i = m(() => b1(c.value.btn, o));
1139
+ function d(M) {
1140
+ var b, p, V;
1141
+ const S = M["content-type"], g = M["content-disposition"];
1142
+ let w;
1143
+ return w = (V = (p = (b = g == null ? void 0 : g.split(";")) == null ? void 0 : b.find((x) => x.includes("filename="))) == null ? void 0 : p.split("=")) == null ? void 0 : V[1], w || (w = l.fallbackFilename || "file"), {
1144
+ name: w,
1145
+ type: S
519
1146
  };
520
1147
  }
521
- async function w() {
522
- c.value = "loading";
1148
+ async function f() {
1149
+ r.value = "loading";
523
1150
  try {
524
- const { data: k, headers: M } = await t.filePromise(), { name: s, type: p } = h(M);
525
- J1(k, s, p);
526
- } catch (k) {
527
- c.value = "error", o("error", k);
1151
+ const { data: M, headers: S } = await l.filePromise(), { name: g, type: w } = d(S);
1152
+ Nt(M, g, w);
1153
+ } catch (M) {
1154
+ r.value = "error", n("error", M);
528
1155
  return;
529
1156
  }
530
- c.value = "success", o("success");
1157
+ r.value = "success", n("success");
531
1158
  }
532
- return e({
533
- getFileInfo: h,
534
- download: w,
535
- state: c
536
- }), (k, M) => (d(), S(F, Z(r.value, {
537
- loading: c.value === "loading",
538
- class: [r.value.variant === "outlined" ? "outlined-style" : "", "vd-download-btn"],
1159
+ return t({
1160
+ getFileInfo: d,
1161
+ download: f,
1162
+ state: r
1163
+ }), (M, S) => (s(), y(P, I(i.value, {
1164
+ loading: r.value === "loading",
1165
+ class: [i.value.variant === "outlined" ? "outlined-style" : "", "vd-download-btn"],
539
1166
  "data-testid": "download-btn",
540
- onClick: w
1167
+ onClick: f
541
1168
  }), {
542
- default: f(() => [
543
- _(k.$slots, "icon", {}, () => [
544
- N(I, re(ce(u(i).icon)), {
545
- default: f(() => [
546
- C(b(u(k1)), 1)
1169
+ default: v(() => [
1170
+ k(M.$slots, "icon", {}, () => [
1171
+ $(T, Y(he(u(c).icon)), {
1172
+ default: v(() => [
1173
+ C(Z(u(fa)), 1)
547
1174
  ]),
548
1175
  _: 1
549
1176
  }, 16)
550
1177
  ], !0),
551
- _(k.$slots, "default", {}, void 0, !0)
1178
+ k(M.$slots, "default", {}, void 0, !0)
552
1179
  ]),
553
1180
  _: 3
554
1181
  }, 16, ["loading", "class"]));
555
1182
  }
556
- }), gn = /* @__PURE__ */ T(aa, [["__scopeId", "data-v-ef3f6e33"]]), ge = {
557
- btnLabel: (n) => `S’identifier avec FranceConnect${n ? "+" : ""}`,
558
- infoLinkLabel: (n) => `Qu’est-ce que FranceConnect${n ? "+" : ""} ?`
559
- }, na = ["href", "aria-label"], ta = ["viewBox", "width"], oa = ["fill"], la = ["fill"], ia = ["href"], ra = /* @__PURE__ */ O({
560
- __name: "FranceConnectBtn",
561
- props: {
562
- href: {},
563
- isConnectPlus: { type: Boolean, default: !1 },
564
- dark: { type: Boolean, default: !1 }
565
- },
566
- setup(n) {
567
- const e = n, a = Qe(), t = v(() => a.current.value.dark || e.dark), o = e.isConnectPlus ? "https://franceconnect.gouv.fr/france-connect-plus" : "https://franceconnect.gouv.fr/", m = v(() => e.isConnectPlus ? "245px" : "209px"), c = v(() => o);
568
- return (i, r) => (d(), g("div", {
569
- class: D(["vd-france-connect-btn d-flex flex-column align-start", {
570
- "vd-france-connect-btn--dark": t.value
571
- }])
572
- }, [
573
- L("a", {
574
- href: i.href,
575
- "aria-label": u(ge).btnLabel(i.isConnectPlus),
576
- class: "vd-france-connect-link d-inline-flex"
577
- }, [
578
- (d(), g("svg", {
579
- viewBox: `0 0 ${e.isConnectPlus ? "245" : "209"} 56`,
580
- width: m.value,
581
- height: "56",
582
- xmlns: "http://www.w3.org/2000/svg"
583
- }, [
584
- r[0] || (r[0] = L("path", {
585
- fill: "#000091",
586
- d: "m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"
587
- }, null, -1)),
588
- r[1] || (r[1] = L("path", {
589
- fill: "#e1000f",
590
- d: "m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"
591
- }, null, -1)),
592
- r[2] || (r[2] = L("path", {
593
- fill: "#0063cb",
594
- d: "M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"
595
- }, null, -1)),
596
- r[3] || (r[3] = L("path", {
597
- fill: "#fff",
598
- d: "M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"
599
- }, null, -1)),
600
- L("path", {
601
- fill: t.value ? "#000091" : "#f5f5fe",
602
- d: "M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"
603
- }, null, 8, oa),
604
- i.isConnectPlus ? (d(), g("path", {
605
- key: 0,
606
- fill: t.value ? "#000091" : "#f5f5fe",
607
- d: "M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"
608
- }, null, 8, la)) : x("", !0)
609
- ], 8, ta))
610
- ], 8, na),
611
- L("a", {
612
- href: c.value,
613
- target: "_blank",
614
- rel: "noopener noreferrer",
615
- class: "vd-france-connect-info-link text-decoration-none mt-3"
616
- }, [
617
- C(b(u(ge).infoLinkLabel(i.isConnectPlus)) + " ", 1),
618
- N(I, {
619
- size: "1em",
620
- class: "ml-1 mb-1"
621
- }, {
622
- default: f(() => [
623
- C(b(u(w1)), 1)
624
- ]),
625
- _: 1
626
- })
627
- ], 8, ia)
628
- ], 2));
1183
+ }), sl = /* @__PURE__ */ H(_t, [["__scopeId", "data-v-ef3f6e33"]]);
1184
+ /*!
1185
+ * vue-router v4.4.5
1186
+ * (c) 2024 Eduardo San Martin Morote
1187
+ * @license MIT
1188
+ */
1189
+ const Vt = typeof document < "u", $t = () => {
1190
+ }, ye = Array.isArray;
1191
+ function Be(e) {
1192
+ const t = Array.from(arguments).slice(1);
1193
+ console.warn.apply(console, ["[Vue Router warn]: " + e].concat(t));
1194
+ }
1195
+ function Te(e, t) {
1196
+ return (e.aliasOf || e) === (t.aliasOf || t);
1197
+ }
1198
+ function St(e, t) {
1199
+ if (Object.keys(e).length !== Object.keys(t).length)
1200
+ return !1;
1201
+ for (const a in e)
1202
+ if (!Ct(e[a], t[a]))
1203
+ return !1;
1204
+ return !0;
1205
+ }
1206
+ function Ct(e, t) {
1207
+ return ye(e) ? Oe(e, t) : ye(t) ? Oe(t, e) : e === t;
1208
+ }
1209
+ function Oe(e, t) {
1210
+ return ye(t) ? e.length === t.length && e.every((a, l) => a === t[l]) : e.length === 1 && e[0] === t;
1211
+ }
1212
+ var Ee;
1213
+ (function(e) {
1214
+ e.pop = "pop", e.push = "push";
1215
+ })(Ee || (Ee = {}));
1216
+ var ze;
1217
+ (function(e) {
1218
+ e.back = "back", e.forward = "forward", e.unknown = "";
1219
+ })(ze || (ze = {}));
1220
+ function De(e) {
1221
+ return typeof e == "string" || e && typeof e == "object";
1222
+ }
1223
+ Symbol(process.env.NODE_ENV !== "production" ? "navigation failure" : "");
1224
+ var Re;
1225
+ (function(e) {
1226
+ e[e.aborted = 4] = "aborted", e[e.cancelled = 8] = "cancelled", e[e.duplicated = 16] = "duplicated";
1227
+ })(Re || (Re = {}));
1228
+ Symbol(process.env.NODE_ENV !== "production" ? "router view location matched" : "");
1229
+ Symbol(process.env.NODE_ENV !== "production" ? "router view depth" : "");
1230
+ const y1 = Symbol(process.env.NODE_ENV !== "production" ? "router" : ""), At = Symbol(process.env.NODE_ENV !== "production" ? "route location" : "");
1231
+ Symbol(process.env.NODE_ENV !== "production" ? "router view location" : "");
1232
+ function je(e) {
1233
+ const t = ue(y1), a = ue(At);
1234
+ let l = !1, n = null;
1235
+ const o = m(() => {
1236
+ const f = u(e.to);
1237
+ return process.env.NODE_ENV !== "production" && (!l || f !== n) && (De(f) || (l ? Be(`Invalid value for prop "to" in useLink()
1238
+ - to:`, f, `
1239
+ - previous to:`, n, `
1240
+ - props:`, e) : Be(`Invalid value for prop "to" in useLink()
1241
+ - to:`, f, `
1242
+ - props:`, e)), n = f, l = !0), t.resolve(f);
1243
+ }), r = m(() => {
1244
+ const { matched: f } = o.value, { length: M } = f, S = f[M - 1], g = a.matched;
1245
+ if (!S || !g.length)
1246
+ return -1;
1247
+ const w = g.findIndex(Te.bind(null, S));
1248
+ if (w > -1)
1249
+ return w;
1250
+ const b = Pe(f[M - 2]);
1251
+ return (
1252
+ // we are dealing with nested routes
1253
+ M > 1 && // if the parent and matched route have the same path, this link is
1254
+ // referring to the empty child. Or we currently are on a different
1255
+ // child of the same parent
1256
+ Pe(S) === b && // avoid comparing the child with its parent
1257
+ g[g.length - 1].path !== b ? g.findIndex(Te.bind(null, f[M - 2])) : w
1258
+ );
1259
+ }), c = m(() => r.value > -1 && Bt(a.params, o.value.params)), i = m(() => r.value > -1 && r.value === a.matched.length - 1 && St(a.params, o.value.params));
1260
+ function d(f = {}) {
1261
+ return xt(f) ? t[u(e.replace) ? "replace" : "push"](
1262
+ u(e.to)
1263
+ // avoid uncaught errors are they are logged anyway
1264
+ ).catch($t) : Promise.resolve();
629
1265
  }
630
- }), kn = /* @__PURE__ */ T(ra, [["__scopeId", "data-v-7d3bb666"]]), U = $([]);
631
- function ca() {
632
- return {
633
- notificationQueue: U,
634
- addNotification: (t) => {
635
- U.value.some((o) => o.id === t.id) || U.value.push(t);
636
- },
637
- removeNotification: (t) => {
638
- U.value = U.value.filter((o) => o.id !== t);
639
- },
640
- clearQueue: () => {
641
- U.value = [];
1266
+ if (process.env.NODE_ENV !== "production" && Vt) {
1267
+ const f = Ae();
1268
+ if (f) {
1269
+ const M = {
1270
+ route: o.value,
1271
+ isActive: c.value,
1272
+ isExactActive: i.value,
1273
+ error: null
1274
+ };
1275
+ f.__vrl_devtools = f.__vrl_devtools || [], f.__vrl_devtools.push(M), T1(() => {
1276
+ M.route = o.value, M.isActive = c.value, M.isExactActive = i.value, M.error = De(u(e.to)) ? null : 'Invalid "to" value';
1277
+ }, { flush: "post" });
642
1278
  }
1279
+ }
1280
+ return {
1281
+ route: o,
1282
+ href: m(() => o.value.href),
1283
+ isActive: c,
1284
+ isExactActive: i,
1285
+ navigate: d
643
1286
  };
644
1287
  }
645
- const sa = {
646
- snackBar: {
647
- timeout: -1
648
- },
649
- icon: {
650
- class: "mr-2"
651
- },
652
- btn: {
653
- variant: "text"
654
- }
655
- }, da = { key: 0 }, ua = { class: "d-flex align-center ga-2" }, ma = /* @__PURE__ */ O({
656
- __name: "NotificationBar",
1288
+ const Ht = /* @__PURE__ */ A({
1289
+ name: "RouterLink",
1290
+ compatConfig: { MODE: 3 },
657
1291
  props: {
658
- vuetifyOptions: {},
659
- closeBtnText: { default: "Fermer" },
660
- rounded: { type: [Number, String, Boolean], default: 4 },
661
- bottom: { type: Boolean, default: !1 }
1292
+ to: {
1293
+ type: [String, Object],
1294
+ required: !0
1295
+ },
1296
+ replace: Boolean,
1297
+ activeClass: String,
1298
+ // inactiveClass: String,
1299
+ exactActiveClass: String,
1300
+ custom: Boolean,
1301
+ ariaCurrentValue: {
1302
+ type: String,
1303
+ default: "page"
1304
+ }
662
1305
  },
663
- setup(n, { expose: e }) {
664
- const a = n, t = q(sa, a), o = ne(), { notificationQueue: m, removeNotification: c } = ca(), i = ye(), r = $(), h = $(!1), w = $(!1), k = v(() => !!(i != null && i.slots.action)), M = v(() => o.name.value === "xs"), s = v(() => o.name.value === "sm"), p = v(() => {
665
- var V, E;
666
- return (((E = (V = r.value) == null ? void 0 : V.message) == null ? void 0 : E.length) ?? 0) > 50;
667
- }), y = {
668
- info: Ae,
669
- success: Ve,
670
- warning: f1,
671
- error: Me
672
- }, A = v(() => r.value ? y[r.value.type] : null), H = v(() => r.value && {
673
- info: "info",
674
- success: "success",
675
- warning: "warning",
676
- error: "error"
677
- }[r.value.type] || "info"), Q = v(() => r.value ? {
678
- contentColor: r.value.type === "success" || r.value.type === "warning" ? "grey-darken-80" : "white"
679
- } : {
680
- contentColor: "white"
681
- }), se = v(() => M.value && !p.value && !k.value), de = (V) => {
682
- r.value = { ...V };
683
- }, he = async () => {
684
- for (w.value = !0; m.value.length > 0; ) {
685
- const V = m.value[0];
686
- de(V), h.value = !0;
687
- let E = V.timeout ?? -1;
688
- E <= 0 ? await new Promise((j) => {
689
- const P = Y(h, (me) => {
690
- me || (P(), j());
691
- });
692
- }) : await new Promise((j) => {
693
- const P = setTimeout(() => {
694
- ue(), j();
695
- }, E), me = Y(h, (Ie) => {
696
- Ie || (clearTimeout(P), me(), j());
697
- });
698
- }), c(V.id);
699
- }
700
- w.value = !1;
701
- }, ue = () => {
702
- h.value = !1, r.value && (c(r.value.id), r.value = void 0);
703
- }, He = (V) => {
704
- de(V), h.value = !0;
705
- }, De = () => {
706
- if (m.value.length > 0) {
707
- const V = m.value[0];
708
- de(V), h.value = !0;
709
- }
710
- };
711
- return Y(
712
- () => m.value.length,
713
- (V) => {
714
- V > 0 && !w.value && he();
715
- }
716
- ), e({
717
- openNotification: He,
718
- handleClearNotification: ue,
719
- showNextNotification: De,
720
- processNotificationQueue: he,
721
- currentNotification: r,
722
- isNotificationVisible: h,
723
- hasActionSlot: k,
724
- isMobileVersion: M,
725
- hasLongContent: p,
726
- color: H,
727
- icon: A,
728
- contentStyle: Q,
729
- smallCloseBtn: se,
730
- isVertical: v(() => p.value && M.value)
731
- }), (V, E) => {
732
- var j;
733
- return r.value ? (d(), g("div", da, [
734
- N(n1, Z(u(t).snackbar, {
735
- modelValue: h.value,
736
- "onUpdate:modelValue": E[0] || (E[0] = (P) => h.value = P),
737
- role: "status",
738
- color: H.value,
739
- location: a.bottom ? "bottom" : "top",
740
- vertical: p.value,
741
- "multi-line": p.value,
742
- timeout: ((j = r.value) == null ? void 0 : j.timeout) ?? -1,
743
- width: M.value || s.value ? "auto" : "960px",
744
- rounded: a.rounded,
745
- class: [{ "long-text": p.value }]
746
- }), {
747
- actions: f(() => [
748
- L("div", {
749
- class: D(["d-flex ga-2", p.value ? "action-section-longText" : "action-section-shortText"]),
750
- style: { width: "100%" }
751
- }, [
752
- _(V.$slots, "action", {}, void 0, !0),
753
- N(F, Z({
754
- class: ["notification-bar__close", { "ma-0": se.value }],
755
- "aria-label": "Fermer la notification"
756
- }, u(t).btn, { onClick: ue }), {
757
- default: f(() => [
758
- se.value ? (d(), S(I, {
759
- key: 1,
760
- icon: u(Ze)
761
- }, null, 8, ["icon"])) : (d(), g(K, { key: 0 }, [
762
- C(b(V.closeBtnText), 1)
763
- ], 64))
764
- ]),
765
- _: 1
766
- }, 16, ["class"])
767
- ], 2)
768
- ]),
769
- default: f(() => {
770
- var P;
771
- return [
772
- L("div", ua, [
773
- !M.value && A.value ? (d(), S(I, Z({ key: 0 }, u(t).icon, {
774
- icon: A.value,
775
- size: "24",
776
- "aria-hidden": "true"
777
- }), null, 16, ["icon"])) : x("", !0),
778
- L("p", {
779
- class: D("text-" + Q.value.contentColor)
780
- }, b((P = r.value) == null ? void 0 : P.message), 3)
781
- ])
782
- ];
783
- }),
784
- _: 3
785
- }, 16, ["modelValue", "color", "location", "vertical", "multi-line", "timeout", "width", "rounded", "class"])
786
- ])) : x("", !0);
1306
+ useLink: je,
1307
+ setup(e, { slots: t }) {
1308
+ const a = B1(je(e)), { options: l } = ue(y1), n = m(() => ({
1309
+ [Ke(e.activeClass, l.linkActiveClass, "router-link-active")]: a.isActive,
1310
+ // [getLinkClass(
1311
+ // props.inactiveClass,
1312
+ // options.linkInactiveClass,
1313
+ // 'router-link-inactive'
1314
+ // )]: !link.isExactActive,
1315
+ [Ke(e.exactActiveClass, l.linkExactActiveClass, "router-link-exact-active")]: a.isExactActive
1316
+ }));
1317
+ return () => {
1318
+ const o = t.default && t.default(a);
1319
+ return e.custom ? o : O1("a", {
1320
+ "aria-current": a.isExactActive ? e.ariaCurrentValue : null,
1321
+ href: a.href,
1322
+ // this would override user added attrs but Vue will still add
1323
+ // the listener, so we end up triggering both
1324
+ onClick: a.navigate,
1325
+ class: n.value
1326
+ }, o);
787
1327
  };
788
1328
  }
789
- }), Nn = /* @__PURE__ */ T(ma, [["__scopeId", "data-v-e6faa2ec"]]), va = {
790
- label: "Choix de la langue. Actuellement"
791
- }, ha = {
792
- aa: {
793
- name: "Afar",
794
- nativeName: "Afaraf"
795
- },
796
- ab: {
797
- name: "Abkhaz",
798
- nativeName: "аҧсуа бызшәа"
799
- },
800
- ae: {
801
- name: "Avestan",
802
- nativeName: "avesta"
803
- },
804
- af: {
805
- name: "Afrikaans",
806
- nativeName: "Afrikaans"
807
- },
808
- ak: {
809
- name: "Akan",
810
- nativeName: "Akan"
1329
+ }), It = Ht;
1330
+ function xt(e) {
1331
+ if (!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) && !e.defaultPrevented && !(e.button !== void 0 && e.button !== 0)) {
1332
+ if (e.currentTarget && e.currentTarget.getAttribute) {
1333
+ const t = e.currentTarget.getAttribute("target");
1334
+ if (/\b_blank\b/i.test(t))
1335
+ return;
1336
+ }
1337
+ return e.preventDefault && e.preventDefault(), !0;
1338
+ }
1339
+ }
1340
+ function Bt(e, t) {
1341
+ for (const a in t) {
1342
+ const l = t[a], n = e[a];
1343
+ if (typeof l == "string") {
1344
+ if (l !== n)
1345
+ return !1;
1346
+ } else if (!ye(n) || n.length !== l.length || l.some((o, r) => o !== n[r]))
1347
+ return !1;
1348
+ }
1349
+ return !0;
1350
+ }
1351
+ function Pe(e) {
1352
+ return e ? e.aliasOf ? e.aliasOf.path : e.path : "";
1353
+ }
1354
+ const Ke = (e, t, a) => e ?? t ?? a, oe = {
1355
+ organism: "Sécurité sociale",
1356
+ assuranceMaladie: "l’Assurance Maladie",
1357
+ signature: "Agir ensemble, protéger chacun",
1358
+ risquePro: "Risques Professionnels"
1359
+ }, j = {
1360
+ X_SMALL: "x-small",
1361
+ SMALL: "small",
1362
+ NORMAL: "normal"
1363
+ }, Tt = Object.values(j), ke = {
1364
+ blue: {
1365
+ base: "#0c419a"
811
1366
  },
812
- am: {
813
- name: "Amharic",
814
- nativeName: "አማርኛ"
1367
+ parma: {
1368
+ darken60: "#2f384d"
815
1369
  },
816
- an: {
817
- name: "Aragonese",
1370
+ brick: {
1371
+ base: "#cd545b"
1372
+ }
1373
+ }, Fe = {
1374
+ colors: {
1375
+ background: {
1376
+ accentContrasted: "#07275c"
1377
+ },
1378
+ text: {
1379
+ subduedOnDark: "rgba(255, 255, 255, 0.7)"
1380
+ }
1381
+ }
1382
+ }, Ue = {
1383
+ primary: ke.blue.base,
1384
+ risquePro: ke.brick.base
1385
+ }, te = (e, t) => ({ width: e, height: t }), Ot = {
1386
+ [j.X_SMALL]: te("105", "32"),
1387
+ [j.SMALL]: te("131", "40"),
1388
+ [j.NORMAL]: te("211", "64")
1389
+ }, Et = {
1390
+ [j.X_SMALL]: te("32", "32"),
1391
+ [j.SMALL]: te("40", "40"),
1392
+ [j.NORMAL]: te("64", "64")
1393
+ };
1394
+ function zt(e, t, a) {
1395
+ const n = `(${t.join("|")})`, o = new RegExp(`^${n}$`);
1396
+ return a.match(o) !== null || console.error(
1397
+ `Invalid value for the \`${e}\` prop. Received: "${a}", expected one of: [${t.join(", ")}].`
1398
+ ), !0;
1399
+ }
1400
+ const Dt = ["fill", "aria-label", "width", "height", "viewBox", "aria-hidden"], Rt = ["fill"], jt = {
1401
+ key: 1,
1402
+ "aria-hidden": "true",
1403
+ role: "presentation"
1404
+ }, Pt = {
1405
+ key: 2,
1406
+ role: "presentation",
1407
+ "aria-hidden": "true"
1408
+ }, Kt = { key: 3 }, Ft = /* @__PURE__ */ A({
1409
+ __name: "Logo",
1410
+ props: {
1411
+ hideSignature: {
1412
+ type: Boolean,
1413
+ default: !1
1414
+ },
1415
+ hideOrganism: {
1416
+ type: Boolean,
1417
+ default: !1
1418
+ },
1419
+ risquePro: {
1420
+ type: Boolean,
1421
+ default: !1
1422
+ },
1423
+ ariaLabel: {
1424
+ type: String,
1425
+ default: void 0
1426
+ },
1427
+ avatar: {
1428
+ type: Boolean,
1429
+ default: !1
1430
+ },
1431
+ dark: {
1432
+ type: Boolean,
1433
+ default: !1
1434
+ },
1435
+ size: {
1436
+ type: String,
1437
+ default: j.NORMAL,
1438
+ validator: (e) => zt("size", Tt, e)
1439
+ }
1440
+ },
1441
+ setup(e) {
1442
+ const t = e, a = L(Ue.risquePro), l = m(() => t.dark ? "#fff" : Ue.primary), n = m(() => t.avatar ? Et[t.size] : Ot[t.size]), o = m(() => t.avatar ? "0 0 64 64" : t.hideSignature ? "0 0 206 64" : "0 0 211 64"), r = m(() => {
1443
+ if (t.ariaLabel)
1444
+ return t.ariaLabel;
1445
+ if (t.avatar)
1446
+ return "";
1447
+ const c = " : ", i = ", ";
1448
+ let d = `${oe.assuranceMaladie}`;
1449
+ return t.hideOrganism || (d = oe.organism.concat(i, d)), t.hideSignature || (d = d.concat(c, oe.signature)), t.risquePro && (d = oe.assuranceMaladie + ": " + oe.risquePro), d;
1450
+ });
1451
+ return (c, i) => (s(), h("svg", {
1452
+ fill: l.value,
1453
+ "aria-label": r.value,
1454
+ width: n.value.width,
1455
+ height: n.value.height,
1456
+ viewBox: o.value,
1457
+ role: "img",
1458
+ focusable: "false",
1459
+ xmlns: "http://www.w3.org/2000/svg",
1460
+ "aria-hidden": e.avatar ? "true" : "false"
1461
+ }, [
1462
+ e.risquePro && !e.avatar ? (s(), h("path", {
1463
+ key: 0,
1464
+ fill: a.value,
1465
+ d: "M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"
1466
+ }, null, 8, Rt)) : !e.hideSignature && !e.avatar ? (s(), h("g", jt, i[0] || (i[0] = [
1467
+ J('<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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 27)
1468
+ ]))) : _("", !0),
1469
+ !e.hideOrganism && !e.avatar ? (s(), h("g", Pt, i[1] || (i[1] = [
1470
+ J('<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"></path><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"></path><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"></path><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"></path><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"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><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"></path><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"></path><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"></path><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"></path><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"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><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"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>', 15)
1471
+ ]))) : _("", !0),
1472
+ e.avatar ? _("", !0) : (s(), h("g", Kt, i[2] || (i[2] = [
1473
+ J('<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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 18)
1474
+ ]))),
1475
+ i[3] || (i[3] = J('<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"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 7))
1476
+ ], 8, Dt));
1477
+ }
1478
+ }), Ut = {
1479
+ followUs: "Suivez-nous :"
1480
+ }, Wt = { class: "d-flex flex-column" }, Gt = { class: "vd-social-media-links-label text-subtitle-2 text--primary" }, qt = { class: "d-flex max-width-none" }, Yt = /* @__PURE__ */ A({
1481
+ __name: "SocialMediaLinks",
1482
+ props: {
1483
+ links: {
1484
+ type: Array,
1485
+ default: null
1486
+ }
1487
+ },
1488
+ setup(e) {
1489
+ const t = e;
1490
+ return (a, l) => (s(), h("div", Wt, [
1491
+ N("span", Gt, Z(u(Ut).followUs), 1),
1492
+ N("ul", qt, [
1493
+ (s(!0), h(D, null, R(t.links, (n, o) => (s(), h("li", { key: o }, [
1494
+ $(P, {
1495
+ id: `social-btn-${o}`,
1496
+ href: n.href,
1497
+ target: "_blank",
1498
+ rel: "noopener noreferrer",
1499
+ icon: !0,
1500
+ "aria-label": `Lien vers ${n.name}`,
1501
+ variant: "text"
1502
+ }, {
1503
+ default: v(() => [
1504
+ $(T, {
1505
+ size: "30px",
1506
+ class: "vd-social-media-links-icon"
1507
+ }, {
1508
+ default: v(() => [
1509
+ C(Z(n.icon), 1)
1510
+ ]),
1511
+ _: 2
1512
+ }, 1024)
1513
+ ]),
1514
+ _: 2
1515
+ }, 1032, ["id", "href", "aria-label"])
1516
+ ]))), 128))
1517
+ ])
1518
+ ]));
1519
+ }
1520
+ }), Qt = /* @__PURE__ */ H(Yt, [["__scopeId", "data-v-82e1e286"]]), Se = {
1521
+ "non-compliant": "non-compliant",
1522
+ "partially-compliant": "partially-compliant",
1523
+ "fully-compliant": "fully-compliant"
1524
+ }, Xt = [
1525
+ {
1526
+ icon: ya,
1527
+ name: "LinkedIn",
1528
+ href: "https://www.linkedin.com/company/assurance-maladie/"
1529
+ },
1530
+ {
1531
+ icon: ba,
1532
+ name: "Facebook",
1533
+ href: "https://www.facebook.com/AssurMaladie/"
1534
+ },
1535
+ {
1536
+ icon: wa,
1537
+ name: "Twitter",
1538
+ href: "https://twitter.com/Assur_Maladie"
1539
+ }
1540
+ ], Jt = {
1541
+ footer: {
1542
+ elevation: 3,
1543
+ color: ke.parma.darken60,
1544
+ height: "auto"
1545
+ },
1546
+ goTopBtn: {
1547
+ elevation: 0,
1548
+ density: "compact",
1549
+ icon: "true",
1550
+ variant: "text",
1551
+ color: ke.parma.darken60
1552
+ },
1553
+ goTopBtnIcon: {
1554
+ color: "white"
1555
+ }
1556
+ }, G = {
1557
+ goTopBtnLabel: "Retour en haut de la page",
1558
+ sitemapLabel: "Plan du site",
1559
+ cguLabel: "Conditions générales d’utilisation",
1560
+ cookiesLabel: "Gestion des cookies",
1561
+ legalNoticeLabel: "Mentions légales",
1562
+ versionLabel: "Version",
1563
+ followUs: "Suivez-nous",
1564
+ [Se["non-compliant"]]: "non conforme",
1565
+ [Se["partially-compliant"]]: "partiellement conforme",
1566
+ [Se["fully-compliant"]]: "totalement conforme",
1567
+ a11yLabel: (e) => `Accessibilité : ${e}`
1568
+ }, e2 = {
1569
+ key: 0,
1570
+ class: "d-flex align-start align-sm-center mb-6"
1571
+ }, a2 = { class: "d-flex flex-grow-1 flex-column flex-sm-row" }, t2 = {
1572
+ key: 0,
1573
+ class: "text-primary my-3 mx-4"
1574
+ }, n2 = /* @__PURE__ */ A({
1575
+ __name: "FooterBar",
1576
+ props: {
1577
+ vuetifyOptions: {},
1578
+ a11yCompliance: { default: "non-compliant" },
1579
+ linkItems: { default: null },
1580
+ items: { default: null },
1581
+ sitemapRoute: { default: () => ({ name: "sitemap" }) },
1582
+ cguRoute: { default: () => ({ name: "cgu" }) },
1583
+ cookiesRoute: { default: () => ({ name: "cookies" }) },
1584
+ legalNoticeRoute: { default: () => ({ name: "legalNotice" }) },
1585
+ a11yStatementRoute: { default: () => ({ name: "a11yStatement" }) },
1586
+ hideSitemapLink: { type: Boolean, default: !1 },
1587
+ hideCguLink: { type: Boolean, default: !1 },
1588
+ hideCookiesLink: { type: Boolean, default: !1 },
1589
+ hideLegalNoticeLink: { type: Boolean, default: !1 },
1590
+ hideA11yLink: { type: Boolean, default: !1 },
1591
+ version: { default: void 0 },
1592
+ hideLogo: { type: Boolean, default: !1 },
1593
+ hideSocialMediaLinks: { type: Boolean, default: !1 },
1594
+ socialMediaLinks: { default: () => Xt },
1595
+ light: { type: Boolean, default: !1 }
1596
+ },
1597
+ setup(e, { expose: t }) {
1598
+ const a = e, l = d1, n = j, o = E1(), r = pe(), c = K(Jt, a), i = (w) => w.href ? "a" : "RouterLink", d = () => {
1599
+ window.scrollTo({
1600
+ top: 0,
1601
+ behavior: "smooth"
1602
+ });
1603
+ }, f = m(() => {
1604
+ const w = G[a.a11yCompliance];
1605
+ return typeof w == "string" ? G.a11yLabel(w) : "";
1606
+ }), M = m(() => !!o.default), S = m(() => r.smAndDown.value ? n.SMALL : n.NORMAL), g = m(() => a.linkItems ? a.linkItems : [
1607
+ {
1608
+ text: G.sitemapLabel,
1609
+ to: a.sitemapRoute,
1610
+ hidden: a.hideSitemapLink
1611
+ },
1612
+ {
1613
+ text: G.cguLabel,
1614
+ to: a.cguRoute,
1615
+ hidden: a.hideCguLink
1616
+ },
1617
+ {
1618
+ text: G.cookiesLabel,
1619
+ to: a.cookiesRoute,
1620
+ hidden: a.hideCookiesLink
1621
+ },
1622
+ {
1623
+ text: G.legalNoticeLabel,
1624
+ to: a.legalNoticeRoute,
1625
+ hidden: a.hideLegalNoticeLink
1626
+ },
1627
+ {
1628
+ text: f.value,
1629
+ to: a.a11yStatementRoute,
1630
+ hidden: a.hideA11yLink
1631
+ }
1632
+ ].filter((b) => !b.hidden));
1633
+ return t({
1634
+ logoSize: S
1635
+ }), (w, b) => (s(), y(ea, I({
1636
+ ...u(c).footer,
1637
+ ...w.$attrs
1638
+ }, {
1639
+ color: a.light ? "white" : u(c).footer.color,
1640
+ class: ["vd-footer-bar flex-column align-stretch pa-3 w-100", {
1641
+ "py-4 py-sm-7 px-4 px-md-14": M.value,
1642
+ "v-theme--light": a.light,
1643
+ "v-theme--dark": !a.light
1644
+ }],
1645
+ role: "contentinfo"
1646
+ }), {
1647
+ default: v(() => [
1648
+ M.value ? (s(), h("div", e2, [
1649
+ N("div", a2, [
1650
+ k(w.$slots, "logo", {}, () => [
1651
+ a.hideLogo ? _("", !0) : (s(), y(Ft, {
1652
+ key: 0,
1653
+ size: S.value,
1654
+ class: O([{ "mb-2 mb-sm-0": !a.hideSocialMediaLinks }, "logo"])
1655
+ }, null, 8, ["size", "class"]))
1656
+ ], !0),
1657
+ $(aa, Y(he(u(c).spacer)), null, 16),
1658
+ a.hideSocialMediaLinks ? _("", !0) : (s(), y(Qt, {
1659
+ key: 0,
1660
+ links: a.socialMediaLinks,
1661
+ class: "mr-8 social"
1662
+ }, null, 8, ["links"]))
1663
+ ]),
1664
+ $(P, I({ id: "scroll-btn" }, u(c).goTopBtn, {
1665
+ "aria-label": u(G).goTopBtnLabel,
1666
+ onClick: d
1667
+ }), {
1668
+ default: v(() => [
1669
+ $(T, I(u(c).goTopBtnIcon, { class: "scroll" }), {
1670
+ default: v(() => [
1671
+ C(Z(u(l)), 1)
1672
+ ]),
1673
+ _: 1
1674
+ }, 16)
1675
+ ]),
1676
+ _: 1
1677
+ }, 16, ["aria-label"])
1678
+ ])) : _("", !0),
1679
+ M.value ? (s(), y(Ce, I({ key: 1 }, u(c).divider, { class: "mb-3" }), null, 16)) : _("", !0),
1680
+ k(w.$slots, "default", {}, void 0, !0),
1681
+ M.value ? (s(), y(Ce, I({ key: 2 }, u(c).divider, { class: "mt-3 mb-6" }), null, 16)) : _("", !0),
1682
+ N("ul", {
1683
+ class: O([{ "py-2 py-sm-0": !M.value }, "vd-footer-bar-links text-sm-center d-flex flex-column flex-sm-row flex-wrap align-start justify-center max-width-none mx-n3 my-n3"])
1684
+ }, [
1685
+ k(w.$slots, "prepend", {}, void 0, !0),
1686
+ (s(!0), h(D, null, R(g.value, (p, V) => (s(), h("li", { key: V }, [
1687
+ (s(), y(z1(i(p)), {
1688
+ href: p.href,
1689
+ to: p.to,
1690
+ "aria-label": p.ariaLabel,
1691
+ target: p.openInNewTab ? "_blank" : void 0,
1692
+ tabindex: V,
1693
+ rel: p.openInNewTab ? "noopener noreferrer" : void 0,
1694
+ class: "my-3 mx-4"
1695
+ }, {
1696
+ default: v(() => [
1697
+ C(Z(p.text), 1)
1698
+ ]),
1699
+ _: 2
1700
+ }, 1032, ["href", "to", "aria-label", "target", "tabindex", "rel"]))
1701
+ ]))), 128)),
1702
+ a.version ? (s(), h("li", t2, Z(u(G).versionLabel) + " " + Z(a.version), 1)) : _("", !0),
1703
+ k(w.$slots, "append", {}, void 0, !0)
1704
+ ], 2)
1705
+ ]),
1706
+ _: 3
1707
+ }, 16, ["color", "class"]));
1708
+ }
1709
+ }), cl = /* @__PURE__ */ H(n2, [["__scopeId", "data-v-ccd9e76e"]]), We = {
1710
+ btnLabel: (e) => `S’identifier avec FranceConnect${e ? "+" : ""}`,
1711
+ infoLinkLabel: (e) => `Qu’est-ce que FranceConnect${e ? "+" : ""} ?`
1712
+ }, l2 = ["href", "aria-label"], o2 = ["viewBox", "width"], i2 = ["fill"], s2 = ["fill"], c2 = ["href"], r2 = /* @__PURE__ */ A({
1713
+ __name: "FranceConnectBtn",
1714
+ props: {
1715
+ href: {},
1716
+ isConnectPlus: { type: Boolean, default: !1 },
1717
+ dark: { type: Boolean, default: !1 }
1718
+ },
1719
+ setup(e) {
1720
+ const t = e, a = Ze(), l = m(() => a.current.value.dark || t.dark), n = t.isConnectPlus ? "https://franceconnect.gouv.fr/france-connect-plus" : "https://franceconnect.gouv.fr/", o = m(() => t.isConnectPlus ? "245px" : "209px"), r = m(() => n);
1721
+ return (c, i) => (s(), h("div", {
1722
+ class: O(["vd-france-connect-btn d-flex flex-column align-start", {
1723
+ "vd-france-connect-btn--dark": l.value
1724
+ }])
1725
+ }, [
1726
+ N("a", {
1727
+ href: c.href,
1728
+ "aria-label": u(We).btnLabel(c.isConnectPlus),
1729
+ class: "vd-france-connect-link d-inline-flex"
1730
+ }, [
1731
+ (s(), h("svg", {
1732
+ viewBox: `0 0 ${t.isConnectPlus ? "245" : "209"} 56`,
1733
+ width: o.value,
1734
+ height: "56",
1735
+ xmlns: "http://www.w3.org/2000/svg"
1736
+ }, [
1737
+ i[0] || (i[0] = N("path", {
1738
+ fill: "#000091",
1739
+ d: "m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"
1740
+ }, null, -1)),
1741
+ i[1] || (i[1] = N("path", {
1742
+ fill: "#e1000f",
1743
+ d: "m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"
1744
+ }, null, -1)),
1745
+ i[2] || (i[2] = N("path", {
1746
+ fill: "#0063cb",
1747
+ d: "M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"
1748
+ }, null, -1)),
1749
+ i[3] || (i[3] = N("path", {
1750
+ fill: "#fff",
1751
+ d: "M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"
1752
+ }, null, -1)),
1753
+ N("path", {
1754
+ fill: l.value ? "#000091" : "#f5f5fe",
1755
+ d: "M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"
1756
+ }, null, 8, i2),
1757
+ c.isConnectPlus ? (s(), h("path", {
1758
+ key: 0,
1759
+ fill: l.value ? "#000091" : "#f5f5fe",
1760
+ d: "M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"
1761
+ }, null, 8, s2)) : _("", !0)
1762
+ ], 8, o2))
1763
+ ], 8, l2),
1764
+ N("a", {
1765
+ href: r.value,
1766
+ target: "_blank",
1767
+ rel: "noopener noreferrer",
1768
+ class: "vd-france-connect-info-link text-decoration-none mt-3"
1769
+ }, [
1770
+ C(Z(u(We).infoLinkLabel(c.isConnectPlus)) + " ", 1),
1771
+ $(T, {
1772
+ size: "1em",
1773
+ class: "ml-1 mb-1"
1774
+ }, {
1775
+ default: v(() => [
1776
+ C(Z(u(Ma)), 1)
1777
+ ]),
1778
+ _: 1
1779
+ })
1780
+ ], 8, c2)
1781
+ ], 2));
1782
+ }
1783
+ }), rl = /* @__PURE__ */ H(r2, [["__scopeId", "data-v-7d3bb666"]]), u2 = 990, k1 = Symbol("registerHeaderMenu");
1784
+ function Le() {
1785
+ const e = L(!1);
1786
+ let t;
1787
+ function a(l) {
1788
+ e.value = l.matches;
1789
+ }
1790
+ return le(() => {
1791
+ t = window.matchMedia(`(min-width: ${u2}px)`), e.value = t.matches, t.addEventListener("change", a);
1792
+ }), me(() => {
1793
+ t.removeEventListener("change", a);
1794
+ }), { isDesktop: e };
1795
+ }
1796
+ const d2 = {
1797
+ ariaLabel: "Ouvrir le menu"
1798
+ }, v2 = {}, m2 = {
1799
+ fill: "#0c419a",
1800
+ width: 141,
1801
+ height: 42,
1802
+ viewBox: "0 0 211 64",
1803
+ role: "img",
1804
+ focusable: "false",
1805
+ xmlns: "http://www.w3.org/2000/svg"
1806
+ };
1807
+ function h2(e, t) {
1808
+ return s(), h("svg", m2, t[0] || (t[0] = [
1809
+ J('<g data-v-c84a4cb8><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-c84a4cb8></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-c84a4cb8></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-c84a4cb8></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-c84a4cb8></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-c84a4cb8></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-c84a4cb8></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-c84a4cb8></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-c84a4cb8></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-c84a4cb8></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-c84a4cb8></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-c84a4cb8></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-c84a4cb8></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-c84a4cb8></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-c84a4cb8></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-c84a4cb8></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-c84a4cb8></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-c84a4cb8></path>', 8)
1810
+ ]));
1811
+ }
1812
+ const p2 = /* @__PURE__ */ H(v2, [["render", h2], ["__scopeId", "data-v-c84a4cb8"]]), f2 = {}, b2 = {
1813
+ fill: "#0c419a",
1814
+ width: 211,
1815
+ height: 63,
1816
+ viewBox: "0 0 211 64",
1817
+ role: "img",
1818
+ focusable: "false",
1819
+ xmlns: "http://www.w3.org/2000/svg"
1820
+ };
1821
+ function g2(e, t) {
1822
+ return s(), h("svg", b2, t[0] || (t[0] = [
1823
+ J('<g data-v-3e4cb924><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path></g><g data-v-3e4cb924><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><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" data-v-3e4cb924></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-3e4cb924></path><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" data-v-3e4cb924></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-3e4cb924></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-3e4cb924></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-3e4cb924></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-3e4cb924></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-3e4cb924></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-3e4cb924></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-3e4cb924></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-3e4cb924></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-3e4cb924></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-3e4cb924></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-3e4cb924></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-3e4cb924></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-3e4cb924></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-3e4cb924></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-3e4cb924></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-3e4cb924></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-3e4cb924></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-3e4cb924></path>', 10)
1824
+ ]));
1825
+ }
1826
+ const y2 = /* @__PURE__ */ H(f2, [["render", g2], ["__scopeId", "data-v-3e4cb924"]]), k2 = { class: "logo" }, M2 = ["fill"], w2 = { if: "serviceTitle" }, Z2 = { class: "service-title" }, N2 = {
1827
+ key: 0,
1828
+ class: "service-subtitle"
1829
+ }, L2 = /* @__PURE__ */ A({
1830
+ __name: "HeaderLogo",
1831
+ props: {
1832
+ ariaLabel: { default: d2.ariaLabel },
1833
+ serviceTitle: { default: void 0 },
1834
+ serviceSubtitle: { default: void 0 }
1835
+ },
1836
+ setup(e) {
1837
+ D1((n) => ({
1838
+ "4db05cc3": u(a)
1839
+ }));
1840
+ const a = Ze().current.value.colors.primary, { isDesktop: l } = Le();
1841
+ return (n, o) => (s(), h("div", k2, [
1842
+ u(l) ? (s(), y(y2, {
1843
+ key: 0,
1844
+ "aria-label": n.ariaLabel
1845
+ }, null, 8, ["aria-label"])) : (s(), y(p2, {
1846
+ key: 1,
1847
+ "aria-label": n.ariaLabel
1848
+ }, null, 8, ["aria-label"])),
1849
+ k(n.$slots, "brand-content", {}, () => [
1850
+ n.serviceTitle ? (s(), h("svg", {
1851
+ key: 0,
1852
+ width: 22,
1853
+ height: 64,
1854
+ fill: u(a),
1855
+ role: "img",
1856
+ focusable: "false",
1857
+ "aria-hidden": "true",
1858
+ xmlns: "http://www.w3.org/2000/svg",
1859
+ viewBox: "0 0 22 64",
1860
+ class: "vd-divider"
1861
+ }, o[0] || (o[0] = [
1862
+ N("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" }, null, -1)
1863
+ ]), 8, M2)) : _("", !0),
1864
+ N("div", w2, [
1865
+ N("div", Z2, Z(n.serviceTitle), 1),
1866
+ n.serviceSubtitle ? (s(), h("div", N2, Z(n.serviceSubtitle), 1)) : _("", !0)
1867
+ ])
1868
+ ], !0)
1869
+ ]));
1870
+ }
1871
+ }), _2 = /* @__PURE__ */ H(L2, [["__scopeId", "data-v-6dde3a6b"]]), V2 = {
1872
+ homeAriaLabel: "Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"
1873
+ };
1874
+ function $2() {
1875
+ const e = L(null), t = L("");
1876
+ function a() {
1877
+ const l = document.documentElement.scrollTop;
1878
+ if (e.value === null)
1879
+ return e.value = l, "";
1880
+ t.value = l >= e.value ? "bottom" : "top", e.value = l;
1881
+ }
1882
+ return le(() => {
1883
+ window.addEventListener("scroll", a);
1884
+ }), me(() => {
1885
+ window.removeEventListener("scroll", a);
1886
+ }), { scrollDirection: t };
1887
+ }
1888
+ const S2 = {
1889
+ key: 0,
1890
+ class: "header-prepend"
1891
+ }, C2 = { class: "inner-header" }, A2 = { class: "header-logo" }, H2 = {
1892
+ key: 0,
1893
+ class: "header-side"
1894
+ }, I2 = {
1895
+ key: 1,
1896
+ class: "header-append"
1897
+ }, x2 = /* @__PURE__ */ A({
1898
+ __name: "HeaderBar",
1899
+ props: {
1900
+ sticky: { type: Boolean, default: !0 },
1901
+ hideWhenDown: { type: Boolean, default: !1 },
1902
+ homeAriaLabel: { default: V2.homeAriaLabel },
1903
+ serviceTitle: { default: void 0 },
1904
+ serviceSubtitle: { default: void 0 }
1905
+ },
1906
+ setup(e) {
1907
+ const t = L(), a = e;
1908
+ function l(p) {
1909
+ z(p, (V) => {
1910
+ t.value = V;
1911
+ });
1912
+ }
1913
+ Xe(k1, l);
1914
+ const n = L(null), o = L(null), r = L("auto"), c = L(0), i = L(!0), d = L(!1), f = L(!1);
1915
+ function M() {
1916
+ const p = n.value.getBoundingClientRect();
1917
+ c.value = p.top + window.scrollY, r.value = `${o.value.offsetHeight}px`, i.value = window.scrollY <= c.value, d.value = window.scrollY > c.value + p.height, f.value = window.scrollY > c.value + p.height * 2;
1918
+ }
1919
+ le(() => {
1920
+ M(), window.addEventListener("scroll", M), window.addEventListener("resize", M);
1921
+ }), me(() => {
1922
+ window.removeEventListener("scroll", M), window.removeEventListener("resize", M);
1923
+ });
1924
+ const S = m(() => ({
1925
+ minHeight: r.value
1926
+ })), { scrollDirection: g } = $2(), { isDesktop: w } = Le(), b = m(() => {
1927
+ if (a.hideWhenDown && !w.value && !t.value) {
1928
+ const V = g.value === "" && i.value || g.value === "bottom" && !d.value || g.value === "top" && i.value, x = g.value === "bottom" && d.value;
1929
+ return {
1930
+ position: V ? "relative" : "fixed",
1931
+ width: V ? "100%" : n.value.offsetWidth + "px",
1932
+ top: V ? "auto" : "0",
1933
+ transform: x ? "translateY(-100%)" : "none",
1934
+ transition: f.value ? "transform 0.3s ease" : "none"
1935
+ };
1936
+ }
1937
+ const p = !i.value && a.sticky;
1938
+ return {
1939
+ position: p ? "fixed" : "relative",
1940
+ width: p ? n.value.offsetWidth + "px" : "100%",
1941
+ top: p ? "0" : "auto",
1942
+ transform: "none",
1943
+ transition: "none"
1944
+ };
1945
+ });
1946
+ return (p, V) => (s(), h("header", {
1947
+ ref_key: "header",
1948
+ ref: n,
1949
+ class: "header",
1950
+ style: Q(S.value)
1951
+ }, [
1952
+ N("div", {
1953
+ ref_key: "headerSticky",
1954
+ ref: o,
1955
+ class: "sticky-header",
1956
+ style: Q(b.value)
1957
+ }, [
1958
+ p.$slots.prepend ? (s(), h("div", S2, [
1959
+ k(p.$slots, "prepend", { menuOpen: t.value }, void 0, !0)
1960
+ ])) : _("", !0),
1961
+ N("div", C2, [
1962
+ k(p.$slots, "menu", { menuOpen: t.value }, void 0, !0),
1963
+ N("div", A2, [
1964
+ k(p.$slots, "logo", {
1965
+ menuOpen: t.value,
1966
+ homeAriaLabel: p.homeAriaLabel,
1967
+ serviceTitle: p.serviceTitle,
1968
+ serviceSubtitle: p.serviceSubtitle
1969
+ }, () => [
1970
+ $(_2, {
1971
+ "aria-label": p.homeAriaLabel,
1972
+ "service-title": p.serviceTitle,
1973
+ "service-subtitle": p.serviceSubtitle
1974
+ }, {
1975
+ "brand-content": v(() => [
1976
+ k(p.$slots, "logo-brand-content", {
1977
+ menuOpen: t.value,
1978
+ homeAriaLabel: p.homeAriaLabel,
1979
+ serviceTitle: p.serviceTitle,
1980
+ serviceSubtitle: p.serviceSubtitle
1981
+ }, void 0, !0)
1982
+ ]),
1983
+ _: 3
1984
+ }, 8, ["aria-label", "service-title", "service-subtitle"])
1985
+ ], !0)
1986
+ ]),
1987
+ p.$slots["header-side"] ? (s(), h("div", H2, [
1988
+ k(p.$slots, "header-side", { menuOpen: t.value }, void 0, !0)
1989
+ ])) : _("", !0)
1990
+ ]),
1991
+ p.$slots.append ? (s(), h("div", I2, [
1992
+ k(p.$slots, "append", { menuOpen: t.value }, void 0, !0)
1993
+ ])) : _("", !0)
1994
+ ], 4)
1995
+ ], 4));
1996
+ }
1997
+ }), B2 = /* @__PURE__ */ H(x2, [["__scopeId", "data-v-a7767594"]]), fe = {
1998
+ closeMenu: "Fermer le menu",
1999
+ openMenu: "Ouvrir le menu"
2000
+ }, T2 = ["aria-label", "title"], O2 = /* @__PURE__ */ A({
2001
+ __name: "HeaderMenuBtn",
2002
+ props: {
2003
+ modelValue: { type: Boolean },
2004
+ modelModifiers: {}
2005
+ },
2006
+ emits: ["update:modelValue"],
2007
+ setup(e, { expose: t }) {
2008
+ const a = Ze(), l = L(null), n = L(!1), o = Ye(e, "modelValue"), r = m(() => {
2009
+ const i = o.value || n.value;
2010
+ return {
2011
+ backgroundColor: i ? "#fff" : a.current.value.colors.primary,
2012
+ color: i ? a.current.value.colors.primary : "#fff"
2013
+ };
2014
+ });
2015
+ function c() {
2016
+ var i;
2017
+ (i = l.value) == null || i.focus();
2018
+ }
2019
+ return t({ focus: c }), (i, d) => (s(), h("button", {
2020
+ ref_key: "btn",
2021
+ ref: l,
2022
+ class: "header-menu-btn",
2023
+ style: Q(r.value),
2024
+ type: "button",
2025
+ "aria-label": o.value ? u(fe).closeMenu : u(fe).openMenu,
2026
+ title: o.value ? u(fe).closeMenu : u(fe).openMenu,
2027
+ onClick: d[0] || (d[0] = () => o.value = !o.value),
2028
+ onFocus: d[1] || (d[1] = (f) => n.value = !0),
2029
+ onBlur: d[2] || (d[2] = (f) => n.value = !1)
2030
+ }, [
2031
+ $(T, { size: "48" }, {
2032
+ default: v(() => [
2033
+ C(Z(o.value ? u(Ne) : u(ka)), 1)
2034
+ ]),
2035
+ _: 1
2036
+ }),
2037
+ d[3] || (d[3] = N("span", { class: "header-menu-btn__label" }, "Menu", -1))
2038
+ ], 44, T2));
2039
+ }
2040
+ }), Ge = /* @__PURE__ */ H(O2, [["__scopeId", "data-v-cbbf13b1"]]), qe = {
2041
+ mainMenu: "Menu principal",
2042
+ publicMenu: "Menu public"
2043
+ }, M1 = Symbol("registerSubMenu");
2044
+ function w1(e) {
2045
+ const t = L([]);
2046
+ function a(o, r) {
2047
+ const i = { id: String(t.value.length), status: o, close: r };
2048
+ t.value.push(i), z(o, (d) => {
2049
+ d && l(i);
2050
+ });
2051
+ }
2052
+ function l(o) {
2053
+ t.value.forEach((r) => {
2054
+ r.id !== o.id && r.status && r.close();
2055
+ });
2056
+ }
2057
+ z(e, (o) => {
2058
+ o || t.value.forEach((r) => {
2059
+ r.status && r.close();
2060
+ });
2061
+ });
2062
+ const n = m(() => t.value.some((o) => o.status));
2063
+ return Xe(M1, a), {
2064
+ haveOpenSubMenu: n
2065
+ };
2066
+ }
2067
+ const E2 = ["aria-label"], z2 = {
2068
+ key: 0,
2069
+ class: "overlay"
2070
+ }, D2 = ["aria-label"], R2 = { class: "header-menu" }, j2 = /* @__PURE__ */ A({
2071
+ __name: "HeaderBurgerMenu",
2072
+ setup(e) {
2073
+ const t = L(null), a = L(null), l = L(null), n = L(null), o = L(0), r = L(0), c = L("70vh");
2074
+ function i() {
2075
+ const b = a.value.getBoundingClientRect();
2076
+ o.value = b.left, r.value = b.top, c.value = `calc(100vh - ${b.top}px - 48px)`;
2077
+ }
2078
+ le(() => {
2079
+ i(), window.addEventListener("scroll", i), window.addEventListener("resize", i), window.addEventListener("click", S, { capture: !0 });
2080
+ }), me(() => {
2081
+ window.removeEventListener("scroll", i), window.removeEventListener("resize", i), window.removeEventListener("click", S, { capture: !0 });
2082
+ });
2083
+ const d = L(!1);
2084
+ z(d, async (b) => {
2085
+ document.documentElement.style.overflow = b ? "hidden" : "auto", document.body.style.overflow = b ? "hidden" : "auto", b ? (i(), await Je(), n.value.focus()) : l.value.focus();
2086
+ });
2087
+ const { isDesktop: f } = Le(), M = m(() => ({
2088
+ left: `${o.value}px`,
2089
+ top: `${r.value}px`,
2090
+ height: f.value ? c.value : void 0
2091
+ }));
2092
+ function S(b) {
2093
+ if (!d.value) return;
2094
+ let p = b.target;
2095
+ for (; p && p !== document.body; ) {
2096
+ if (p === t.value) return;
2097
+ p = p.parentElement;
2098
+ }
2099
+ d.value = !1;
2100
+ }
2101
+ const { haveOpenSubMenu: g } = w1(e1(d)), w = ue(k1);
2102
+ return w && w(d), (b, p) => (s(), h("div", {
2103
+ role: "dialog",
2104
+ "aria-modal": "true",
2105
+ "aria-label": u(qe).mainMenu
2106
+ }, [
2107
+ N("div", {
2108
+ ref_key: "menuBtnWrapper",
2109
+ ref: a
2110
+ }, [
2111
+ $(Ge, {
2112
+ ref_key: "outerBtn",
2113
+ ref: l,
2114
+ modelValue: d.value,
2115
+ "onUpdate:modelValue": p[0] || (p[0] = (V) => d.value = V)
2116
+ }, null, 8, ["modelValue"])
2117
+ ], 512),
2118
+ (s(), y(R1, { to: "body" }, [
2119
+ $(a1, { name: "menu" }, {
2120
+ default: v(() => [
2121
+ d.value ? (s(), h("div", z2, [
2122
+ N("div", {
2123
+ ref_key: "menuWrapper",
2124
+ ref: t,
2125
+ role: "menu",
2126
+ class: "menu-wrapper",
2127
+ style: Q(M.value)
2128
+ }, [
2129
+ $(Ge, {
2130
+ ref_key: "innerBtn",
2131
+ ref: n,
2132
+ modelValue: d.value,
2133
+ "onUpdate:modelValue": p[1] || (p[1] = (V) => d.value = V)
2134
+ }, null, 8, ["modelValue"]),
2135
+ N("nav", {
2136
+ id: "header-menu-wrapper",
2137
+ class: O(["header-menu-wrapper", {
2138
+ "header-menu-wrapper--submenu-open": u(g)
2139
+ }]),
2140
+ role: "navigation",
2141
+ "aria-label": u(qe).publicMenu
2142
+ }, [
2143
+ N("div", R2, [
2144
+ k(b.$slots, "default", {}, void 0, !0)
2145
+ ])
2146
+ ], 10, D2)
2147
+ ], 4)
2148
+ ])) : _("", !0)
2149
+ ]),
2150
+ _: 3
2151
+ })
2152
+ ]))
2153
+ ], 8, E2));
2154
+ }
2155
+ }), P2 = /* @__PURE__ */ H(j2, [["__scopeId", "data-v-3e36a465"]]), K2 = {}, F2 = { class: "header-menu-item" };
2156
+ function U2(e, t) {
2157
+ return s(), h("li", F2, [
2158
+ k(e.$slots, "default", {}, void 0, !0)
2159
+ ]);
2160
+ }
2161
+ const W2 = /* @__PURE__ */ H(K2, [["render", U2], ["__scopeId", "data-v-753dd5aa"]]), G2 = { class: "header-menu-section" }, q2 = /* @__PURE__ */ A({
2162
+ __name: "HeaderMenuSection",
2163
+ props: {
2164
+ title: {}
2165
+ },
2166
+ setup(e) {
2167
+ const t = t1(), a = `${t}-group`, l = `${t}-group-title`;
2168
+ return (n, o) => (s(), h("div", G2, [
2169
+ n.title ? (s(), h("div", {
2170
+ key: 0,
2171
+ id: l,
2172
+ class: "header-menu-section-title"
2173
+ }, Z(n.title), 1)) : _("", !0),
2174
+ N("ul", {
2175
+ id: a,
2176
+ role: "group",
2177
+ class: "header-menu-section-list"
2178
+ }, [
2179
+ k(n.$slots, "default", {}, void 0, !0)
2180
+ ])
2181
+ ]));
2182
+ }
2183
+ }), Y2 = /* @__PURE__ */ H(q2, [["__scopeId", "data-v-c7879d24"]]), Q2 = ["aria-expanded", "aria-controls", "title"], X2 = ["id"], J2 = { class: "sub-menu-content" }, en = /* @__PURE__ */ A({
2184
+ __name: "HeaderSubMenu",
2185
+ setup(e) {
2186
+ const t = L(!1), a = t1(), l = `${a}-btn`, n = ue(M1, void 0);
2187
+ if (!n) throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");
2188
+ n(t, () => {
2189
+ t.value = !1;
2190
+ });
2191
+ const { haveOpenSubMenu: o } = w1(e1(t));
2192
+ return (r, c) => (s(), h("div", {
2193
+ class: O(["sub-menu", {
2194
+ "sub-menu--open": t.value,
2195
+ "sub-menu--child-open": u(o)
2196
+ }])
2197
+ }, [
2198
+ N("button", {
2199
+ id: l,
2200
+ class: "sub-menu-btn",
2201
+ type: "button",
2202
+ "aria-expanded": t.value ? "true" : "false",
2203
+ "aria-controls": u(a),
2204
+ title: t.value ? "Close submenu" : "Open submenu",
2205
+ onClick: c[0] || (c[0] = (i) => t.value = !t.value)
2206
+ }, [
2207
+ k(r.$slots, "title", {}, void 0, !0),
2208
+ $(T, {
2209
+ size: "36",
2210
+ class: "sub-menu-btn__icon"
2211
+ }, {
2212
+ default: v(() => [
2213
+ C(Z(t.value ? u(ma) : u(ha)), 1)
2214
+ ]),
2215
+ _: 1
2216
+ })
2217
+ ], 8, Q2),
2218
+ $(a1, { name: "slide-fade" }, {
2219
+ default: v(() => [
2220
+ we(N("div", {
2221
+ id: u(a),
2222
+ class: "sub-menu-content-wrapper",
2223
+ "aria-labelledby": l
2224
+ }, [
2225
+ N("div", J2, [
2226
+ k(r.$slots, "default", {}, void 0, !0)
2227
+ ])
2228
+ ], 8, X2), [
2229
+ [Qe, t.value]
2230
+ ])
2231
+ ]),
2232
+ _: 3
2233
+ })
2234
+ ], 2));
2235
+ }
2236
+ }), ul = /* @__PURE__ */ H(en, [["__scopeId", "data-v-5b9763a6"]]), an = { class: "horizontal-menu__item-link" }, tn = /* @__PURE__ */ A({
2237
+ __name: "HorizontalNavbar",
2238
+ props: {
2239
+ items: {}
2240
+ },
2241
+ setup(e) {
2242
+ const t = Fe.colors.background.accentContrasted, a = Fe.colors.text.subduedOnDark;
2243
+ return (l, n) => (s(), y(He, {
2244
+ class: "horizontal-menu px-12",
2245
+ dense: "",
2246
+ theme: "dark",
2247
+ color: u(t)
2248
+ }, {
2249
+ default: v(() => [
2250
+ k(l.$slots, "navigation-bar-prepend", {}, void 0, !0),
2251
+ k(l.$slots, "default", {}, () => [
2252
+ $(u(F1), {
2253
+ height: "53",
2254
+ class: "horizontal-menu__tabs",
2255
+ "show-arrows": ""
2256
+ }, {
2257
+ default: v(() => [
2258
+ (s(!0), h(D, null, R(l.items, (o, r) => (s(), y(ta, {
2259
+ key: r,
2260
+ href: o.href,
2261
+ to: o.to,
2262
+ "slider-color": "#fff",
2263
+ "base-color": u(a),
2264
+ ripple: !1,
2265
+ tabindex: "0",
2266
+ class: "horizontal-menu__item"
2267
+ }, {
2268
+ default: v(() => [
2269
+ N("span", an, Z(o.label), 1)
2270
+ ]),
2271
+ _: 2
2272
+ }, 1032, ["href", "to", "base-color"]))), 128))
2273
+ ]),
2274
+ _: 1
2275
+ })
2276
+ ], !0),
2277
+ k(l.$slots, "navigation-bar-append", {}, void 0, !0)
2278
+ ]),
2279
+ _: 3
2280
+ }, 8, ["color"]));
2281
+ }
2282
+ }), nn = /* @__PURE__ */ H(tn, [["__scopeId", "data-v-22407376"]]), ln = { class: "inner-vertical-menu" }, on = { class: "inner-vertical-menu__main-content" }, sn = ["href"], cn = /* @__PURE__ */ A({
2283
+ __name: "HeaderNavbar",
2284
+ props: {
2285
+ homeAriaLabel: { default: void 0 },
2286
+ serviceTitle: { default: void 0 },
2287
+ serviceSubtitle: { default: void 0 },
2288
+ sticky: { type: Boolean },
2289
+ hideWhenDown: { type: Boolean, default: !1 },
2290
+ maxHorizontalMenuItems: { default: 6 },
2291
+ items: { default: void 0 }
2292
+ },
2293
+ setup(e) {
2294
+ const t = e, { isDesktop: a } = Le(), l = m(() => !a.value || t.items !== void 0 && t.items.length > 0 && t.items.length > t.maxHorizontalMenuItems), n = L();
2295
+ return (o, r) => (s(), y(B2, {
2296
+ sticky: o.sticky,
2297
+ "hide-when-down": o.hideWhenDown,
2298
+ "home-aria-label": o.homeAriaLabel,
2299
+ "service-title": o.serviceTitle,
2300
+ "service-subtitle": o.serviceSubtitle
2301
+ }, {
2302
+ menu: v(() => [
2303
+ l.value ? (s(), y(P2, { key: 0 }, {
2304
+ default: v(() => [
2305
+ N("div", ln, [
2306
+ k(o.$slots, "navigation-menu-prepend", { menuOpen: n.value }, void 0, !0),
2307
+ N("div", on, [
2308
+ k(o.$slots, "navigation-menu-content", { menuOpen: n.value }, () => [
2309
+ $(Y2, null, {
2310
+ default: v(() => [
2311
+ (s(!0), h(D, null, R(o.items, (c) => (s(), y(W2, {
2312
+ key: c.label
2313
+ }, {
2314
+ default: v(() => [
2315
+ c.href ? (s(), h("a", {
2316
+ key: 0,
2317
+ href: c.href
2318
+ }, Z(c.label), 9, sn)) : c.to ? (s(), y(u(It), {
2319
+ key: 1,
2320
+ to: c.to
2321
+ }, {
2322
+ default: v(() => [
2323
+ C(Z(c.label), 1)
2324
+ ]),
2325
+ _: 2
2326
+ }, 1032, ["to"])) : _("", !0)
2327
+ ]),
2328
+ _: 2
2329
+ }, 1024))), 128))
2330
+ ]),
2331
+ _: 1
2332
+ })
2333
+ ], !0)
2334
+ ]),
2335
+ k(o.$slots, "navigation-menu-append", { menuOpen: n.value }, void 0, !0)
2336
+ ])
2337
+ ]),
2338
+ _: 3
2339
+ })) : _("", !0)
2340
+ ]),
2341
+ "logo-brand-content": v(() => [
2342
+ k(o.$slots, "logo-brand-content", {
2343
+ menuOpen: n.value,
2344
+ homeAriaLabel: o.homeAriaLabel,
2345
+ serviceTitle: o.serviceTitle,
2346
+ serviceSubtitle: o.serviceSubtitle
2347
+ }, void 0, !0)
2348
+ ]),
2349
+ logo: v(() => [
2350
+ k(o.$slots, "logo", {
2351
+ menuOpen: n.value,
2352
+ homeAriaLabel: o.homeAriaLabel,
2353
+ serviceTitle: o.serviceTitle,
2354
+ serviceSubtitle: o.serviceSubtitle
2355
+ }, void 0, !0)
2356
+ ]),
2357
+ "header-side": v(() => [
2358
+ k(o.$slots, "header-side", { menuOpen: n.value }, void 0, !0)
2359
+ ]),
2360
+ append: v(() => [
2361
+ t.items && !l.value ? (s(), y(nn, {
2362
+ key: 0,
2363
+ items: o.items
2364
+ }, {
2365
+ "navigation-bar-prepend": v(() => [
2366
+ k(o.$slots, "navigation-bar-prepend", {}, void 0, !0)
2367
+ ]),
2368
+ "navigation-bar-append": v(() => [
2369
+ k(o.$slots, "navigation-bar-append", {}, void 0, !0)
2370
+ ]),
2371
+ default: v(() => [
2372
+ k(o.$slots, "navigation-bar-content", {}, void 0, !0)
2373
+ ]),
2374
+ _: 3
2375
+ }, 8, ["items"])) : _("", !0)
2376
+ ]),
2377
+ _: 3
2378
+ }, 8, ["sticky", "hide-when-down", "home-aria-label", "service-title", "service-subtitle"]));
2379
+ }
2380
+ }), dl = /* @__PURE__ */ H(cn, [["__scopeId", "data-v-542c3eaa"]]), rn = {
2381
+ label: "Choix de la langue. Actuellement"
2382
+ }, un = {
2383
+ aa: {
2384
+ name: "Afar",
2385
+ nativeName: "Afaraf"
2386
+ },
2387
+ ab: {
2388
+ name: "Abkhaz",
2389
+ nativeName: "аҧсуа бызшәа"
2390
+ },
2391
+ ae: {
2392
+ name: "Avestan",
2393
+ nativeName: "avesta"
2394
+ },
2395
+ af: {
2396
+ name: "Afrikaans",
2397
+ nativeName: "Afrikaans"
2398
+ },
2399
+ ak: {
2400
+ name: "Akan",
2401
+ nativeName: "Akan"
2402
+ },
2403
+ am: {
2404
+ name: "Amharic",
2405
+ nativeName: "አማርኛ"
2406
+ },
2407
+ an: {
2408
+ name: "Aragonese",
818
2409
  nativeName: "aragonés"
819
2410
  },
820
2411
  ar: {
@@ -1522,41 +3113,41 @@ const sa = {
1522
3113
  nativeName: "isiZulu"
1523
3114
  }
1524
3115
  };
1525
- var fa = ha;
1526
- const J = fa, Oe = {}, ie = {}, $e = [], Be = [], Te = [];
1527
- for (const n in J) {
1528
- const { name: e, nativeName: a } = J[n];
1529
- Oe[n] = ie[e.toLowerCase()] = ie[a.toLowerCase()] = { code: n, name: e, nativeName: a }, $e.push(n), Be.push(e), Te.push(a);
3116
+ var dn = un;
3117
+ const re = dn, Z1 = {}, Me = {}, N1 = [], L1 = [], _1 = [];
3118
+ for (const e in re) {
3119
+ const { name: t, nativeName: a } = re[e];
3120
+ Z1[e] = Me[t.toLowerCase()] = Me[a.toLowerCase()] = { code: e, name: t, nativeName: a }, N1.push(e), L1.push(t), _1.push(a);
1530
3121
  }
1531
- var pa = class le {
1532
- static getLanguages(e = []) {
1533
- return e.map(
1534
- (a) => le.validate(a) ? Object.assign({}, Oe[a]) : { code: a, name: "", nativeName: "" }
3122
+ var vn = class ge {
3123
+ static getLanguages(t = []) {
3124
+ return t.map(
3125
+ (a) => ge.validate(a) ? Object.assign({}, Z1[a]) : { code: a, name: "", nativeName: "" }
1535
3126
  );
1536
3127
  }
1537
- static getName(e) {
1538
- return le.validate(e) ? J[e].name : "";
3128
+ static getName(t) {
3129
+ return ge.validate(t) ? re[t].name : "";
1539
3130
  }
1540
3131
  static getAllNames() {
1541
- return Be.slice();
3132
+ return L1.slice();
1542
3133
  }
1543
- static getNativeName(e) {
1544
- return le.validate(e) ? J[e].nativeName : "";
3134
+ static getNativeName(t) {
3135
+ return ge.validate(t) ? re[t].nativeName : "";
1545
3136
  }
1546
3137
  static getAllNativeNames() {
1547
- return Te.slice();
3138
+ return _1.slice();
1548
3139
  }
1549
- static getCode(e) {
1550
- return e = e.toLowerCase(), ie.hasOwnProperty(e) ? ie[e].code : "";
3140
+ static getCode(t) {
3141
+ return t = t.toLowerCase(), Me.hasOwnProperty(t) ? Me[t].code : "";
1551
3142
  }
1552
3143
  static getAllCodes() {
1553
- return $e.slice();
3144
+ return N1.slice();
1554
3145
  }
1555
- static validate(e) {
1556
- return J.hasOwnProperty(e);
3146
+ static validate(t) {
3147
+ return re.hasOwnProperty(t);
1557
3148
  }
1558
3149
  };
1559
- const oe = /* @__PURE__ */ Se(pa), ba = {
3150
+ const be = /* @__PURE__ */ p1(vn), mn = {
1560
3151
  menu: {
1561
3152
  offsetY: !0
1562
3153
  },
@@ -1568,867 +3159,506 @@ const oe = /* @__PURE__ */ Se(pa), ba = {
1568
3159
  icon: {
1569
3160
  class: "ml-1"
1570
3161
  }
1571
- }, ga = ["id"], ka = /* @__PURE__ */ O({
3162
+ }, hn = ["id"], pn = /* @__PURE__ */ A({
1572
3163
  __name: "LangBtn",
1573
3164
  props: {
1574
3165
  vuetifyOptions: {},
1575
3166
  modelValue: { default: "fr" },
1576
3167
  hideDownArrow: { type: Boolean, default: !1 },
1577
- ariaLabel: { default: va.label },
3168
+ ariaLabel: { default: rn.label },
1578
3169
  ariaOwns: { default: "lang-btn" },
1579
3170
  availableLanguages: { default: () => ["fr", "en"] }
1580
3171
  },
1581
3172
  emits: ["update:modelValue", "change"],
1582
- setup(n, { expose: e, emit: a }) {
1583
- const t = n, o = q(ba, t), m = a, c = $(!1), i = $(t.modelValue);
1584
- Y(
1585
- () => t.modelValue,
1586
- (s) => {
1587
- i.value = s;
1588
- }
1589
- );
1590
- function r(s) {
1591
- i.value = s, m("update:modelValue", s), m("change", s), c.value = !1;
1592
- }
1593
- const h = v(() => c.value), w = v(() => "lang-menu-id"), k = v(() => {
1594
- const s = {};
1595
- let p;
1596
- return t.availableLanguages === "*" ? p = oe.getAllCodes() : p = t.availableLanguages, p.forEach((y) => {
1597
- s[y] = {
1598
- code: y,
1599
- name: oe.getName(y) || y,
1600
- nativeName: oe.getNativeName(y) || oe.getName(y) || y
1601
- };
1602
- }), s;
1603
- }), M = v(() => {
1604
- const s = k.value[i.value];
1605
- return {
1606
- name: (s == null ? void 0 : s.nativeName) || i.value,
1607
- label: `${t.ariaLabel} ${(s == null ? void 0 : s.nativeName) || i.value}`
1608
- };
1609
- });
1610
- return e({
1611
- currentLangData: M,
1612
- updateLang: r,
1613
- selectedLanguage: i
1614
- }), (s, p) => (d(), g("div", { id: w.value }, [
1615
- N(i1, Z(u(o).menu, {
1616
- id: h.value ? "lang-menu" : w.value,
1617
- modelValue: c.value,
1618
- "onUpdate:modelValue": p[0] || (p[0] = (y) => c.value = y),
1619
- role: "menu",
1620
- location: "bottom"
1621
- }), {
1622
- activator: f(({ props: y }) => [
1623
- N(F, Z({
1624
- id: "lang-menu-btn",
1625
- "aria-label": `${t.ariaLabel} ${M.value.name}`,
1626
- "aria-haspopup": "menu",
1627
- "aria-controls": w.value,
1628
- "aria-owns": w.value,
1629
- "aria-expanded": h.value
1630
- }, {
1631
- ...u(o).btn,
1632
- ...y
1633
- }, { class: "vd-lang-btn" }), {
1634
- default: f(() => [
1635
- C(b(M.value.name) + " ", 1),
1636
- s.hideDownArrow ? x("", !0) : (d(), S(I, Z({ key: 0 }, u(o).icon, { class: "ml-1" }), {
1637
- default: f(() => [
1638
- C(b(u(L1)), 1)
1639
- ]),
1640
- _: 1
1641
- }, 16))
1642
- ]),
1643
- _: 2
1644
- }, 1040, ["aria-label", "aria-controls", "aria-owns", "aria-expanded"])
1645
- ]),
1646
- default: f(() => [
1647
- N(t1, Z(u(o).list, { "aria-labelledby": "lang-menu-btn" }), {
1648
- default: f(() => [
1649
- (d(!0), g(K, null, ee(k.value, (y, A, H) => (d(), S(o1, Z({ ref_for: !0 }, u(o).listTile, {
1650
- key: A,
1651
- role: "menuitem",
1652
- tabindex: H + 1,
1653
- "aria-label": `${t.ariaLabel} ${y.nativeName}`,
1654
- "aria-labelledby": `${w.value} ${y.nativeName}`,
1655
- onClick: (Q) => r(A)
1656
- }), {
1657
- default: f(() => [
1658
- N(l1, Z({ ref_for: !0 }, u(o).listTileTitle), {
1659
- default: f(() => [
1660
- C(b(y.nativeName), 1)
1661
- ]),
1662
- _: 2
1663
- }, 1040)
1664
- ]),
1665
- _: 2
1666
- }, 1040, ["tabindex", "aria-label", "aria-labelledby", "onClick"]))), 128))
1667
- ]),
1668
- _: 1
1669
- }, 16)
1670
- ]),
1671
- _: 1
1672
- }, 16, ["id", "modelValue"])
1673
- ], 8, ga));
1674
- }
1675
- }), yn = /* @__PURE__ */ T(ka, [["__scopeId", "data-v-40aa801b"]]), X = {
1676
- organism: "Sécurité sociale",
1677
- assuranceMaladie: "l’Assurance Maladie",
1678
- signature: "Agir ensemble, protéger chacun",
1679
- risquePro: "Risques Professionnels"
1680
- }, z = {
1681
- X_SMALL: "x-small",
1682
- SMALL: "small",
1683
- NORMAL: "normal"
1684
- }, Na = Object.values(z), B = {
1685
- orange: {
1686
- darken80: "#2d100b",
1687
- darken60: "#5a2017",
1688
- darken40: "#862f22",
1689
- darken20: "#b33f2e",
1690
- base: "#e04f39",
1691
- lighten20: "#e67261",
1692
- lighten40: "#ec9588",
1693
- lighten60: "#f3b9b0",
1694
- lighten80: "#f9dcd7",
1695
- lighten90: "#fcedeb",
1696
- lighten97: "#fefaf9"
1697
- },
1698
- yellow: {
1699
- darken80: "#302407",
1700
- darken60: "#60480e",
1701
- darken40: "#906b15",
1702
- darken20: "#c08f1c",
1703
- base: "#f0b323",
1704
- lighten20: "#f3c24f",
1705
- lighten40: "#f6d17b",
1706
- lighten60: "#f9e1a7",
1707
- lighten80: "#fcf0d3",
1708
- lighten90: "#fdf7e9",
1709
- lighten97: "#fffdf8"
1710
- },
1711
- green: {
1712
- darken80: "#112717",
1713
- darken60: "#224e2d",
1714
- darken40: "#347444",
1715
- darken20: "#459b5a",
1716
- base: "#56c271",
1717
- lighten20: "#78ce8d",
1718
- lighten40: "#9adaaa",
1719
- lighten60: "#bbe7c6",
1720
- lighten80: "#ddf3e3",
1721
- lighten90: "#eef9f1",
1722
- lighten97: "#fafdfb"
1723
- },
1724
- turquoise: {
1725
- darken80: "#00221c",
1726
- darken60: "#004439",
1727
- darken40: "#006755",
1728
- darken20: "#008972",
1729
- base: "#00ab8e",
1730
- lighten20: "#33bca5",
1731
- lighten40: "#66cdbb",
1732
- lighten60: "#99ddd2",
1733
- lighten80: "#cceee8",
1734
- lighten90: "#e5f7f4",
1735
- lighten97: "#f7fcfc"
1736
- },
1737
- blue: {
1738
- darken80: "#020d1f",
1739
- darken60: "#051a3e",
1740
- darken40: "#07275c",
1741
- darken20: "#0a347b",
1742
- base: "#0c419a",
1743
- lighten20: "#3d67ae",
1744
- lighten40: "#6d8dc2",
1745
- lighten60: "#9eb3d7",
1746
- lighten80: "#ced9eb",
1747
- lighten90: "#e7ecf5",
1748
- lighten97: "#f8f9fc"
1749
- },
1750
- cyan: {
1751
- darken80: "#00212d",
1752
- darken60: "#004259",
1753
- darken40: "#006386",
1754
- darken20: "#0084b2",
1755
- base: "#00a5df",
1756
- lighten20: "#33b7e5",
1757
- lighten40: "#66c9ec",
1758
- lighten60: "#99dbf2",
1759
- lighten80: "#ccedf9",
1760
- lighten90: "#e5f6fc",
1761
- lighten97: "#f7fcfe"
1762
- },
1763
- frostedBlue: {
1764
- darken80: "#142327",
1765
- darken60: "#28464d",
1766
- darken40: "#3d6874",
1767
- darken20: "#518b9a",
1768
- base: "#65aec1",
1769
- lighten20: "#84becd",
1770
- lighten40: "#a3ceda",
1771
- lighten60: "#c1dfe6",
1772
- lighten80: "#e0eff3",
1773
- lighten90: "#f0f7f9",
1774
- lighten97: "#fafdfd"
1775
- },
1776
- parma: {
1777
- darken80: "#171c26",
1778
- darken60: "#2f384d",
1779
- darken40: "#465473",
1780
- darken20: "#5e709a",
1781
- base: "#758cc0",
1782
- lighten20: "#91a3cd",
1783
- lighten40: "#acbad9",
1784
- lighten60: "#c8d1e6",
1785
- lighten80: "#e3e8f2",
1786
- lighten90: "#f1f3f9",
1787
- lighten97: "#fbfcfd"
1788
- },
1789
- mauve: {
1790
- darken80: "#201224",
1791
- darken60: "#402449",
1792
- darken40: "#60376d",
1793
- darken20: "#804992",
1794
- base: "#a05bb6",
1795
- lighten20: "#b37cc5",
1796
- lighten40: "#c69dd3",
1797
- lighten60: "#d9bde2",
1798
- lighten80: "#ecdef0",
1799
- lighten90: "#f5eff8",
1800
- lighten97: "#fcfafd"
1801
- },
1802
- pink: {
1803
- darken80: "#2d051a",
1804
- darken60: "#5a0a34",
1805
- darken40: "#87104d",
1806
- darken20: "#b41567",
1807
- base: "#e11a81",
1808
- lighten20: "#e7489a",
1809
- lighten40: "#ed76b3",
1810
- lighten60: "#f3a3cd",
1811
- lighten80: "#f9d1e6",
1812
- lighten90: "#fce8f2",
1813
- lighten97: "#fef8fb"
1814
- },
1815
- brick: {
1816
- darken80: "#291112",
1817
- darken60: "#522224",
1818
- darken40: "#7b3237",
1819
- darken20: "#a44349",
1820
- base: "#cd545b",
1821
- lighten20: "#d7767c",
1822
- lighten40: "#e1989d",
1823
- lighten60: "#ebbbbd",
1824
- lighten80: "#f5ddde",
1825
- lighten90: "#faeeef",
1826
- lighten97: "#fdfafa"
1827
- },
1828
- grey: {
1829
- darken80: "#111212",
1830
- darken60: "#222324",
1831
- darken40: "#323535",
1832
- darken20: "#434647",
1833
- base: "#545859",
1834
- lighten20: "#76797a",
1835
- lighten40: "#989b9b",
1836
- lighten60: "#bbbcbd",
1837
- lighten80: "#dddede",
1838
- lighten90: "#eeeeee",
1839
- lighten97: "#fafafa"
1840
- },
1841
- white: {
1842
- 20: "rgba(255, 255, 255, 0.2000)",
1843
- 38: "rgba(255, 255, 255, 0.3800)",
1844
- 40: "rgba(255, 255, 255, 0.4000)",
1845
- 70: "rgba(255, 255, 255, 0.7000)",
1846
- 8: "rgba(255, 255, 255, 0.0800)",
1847
- 0: "rgba(255, 255, 255, 0.0000)",
1848
- base: "#ffffff"
1849
- },
1850
- transparentBlue: {
1851
- transparentBlue18: "#a6d4eb",
1852
- transparentBlue8: "#ebf0f7"
1853
- }
1854
- }, l = {
1855
- colors: {
1856
- background: {
1857
- main: "#e7ecf5",
1858
- surface: "#ffffff",
1859
- mainAlt: "#ffffff",
1860
- surfaceAlt: "#e7ecf5",
1861
- raised: "#f8f9fc",
1862
- accent: "#0c419a",
1863
- accentContrasted: "#07275c",
1864
- accentAlt: "#111212",
1865
- info: "#ced9eb",
1866
- infoSubdued: "#e7ecf5",
1867
- infoContrasted: "#0c419a",
1868
- success: "#cceee8",
1869
- successSubdued: "#e5f7f4",
1870
- successContrasted: "#56c271",
1871
- warning: "#fcf0d3",
1872
- warningSubdued: "#fdf7e9",
1873
- warningContrasted: "#f0b323",
1874
- error: "#f9dcd7",
1875
- errorSubdued: "#fcedeb",
1876
- errorContrasted: "#b33f2e",
1877
- disabled: "#dddede",
1878
- disabledOnDark: "rgba(255, 255, 255, 0.0800)",
1879
- assure: "#ed76b3",
1880
- professionnel: "#66c9ec",
1881
- entreprise: "#f0b323"
1882
- },
1883
- border: {
1884
- darker: "#222324",
1885
- base: "#989b9b",
1886
- subdued: "#dddede",
1887
- accent: "#0c419a",
1888
- accentContrasted: "#07275c",
1889
- accentOnDark: "#ffffff",
1890
- info: "#0c419a",
1891
- success: "#224e2d",
1892
- warning: "#60480e",
1893
- error: "#b33f2e",
1894
- onDark: "rgba(255, 255, 255, 0.7)",
1895
- disabled: "#dddede",
1896
- disabledOnDark: "rgba(255, 255, 255, 0.4)"
1897
- },
1898
- text: {
1899
- base: "#222324",
1900
- accent: "#0c419a",
1901
- accentContrasted: "#07275c",
1902
- subdued: "#545859",
1903
- info: "#0c419a",
1904
- success: "#224e2d",
1905
- warning: "#60480e",
1906
- error: "#b33f2e",
1907
- disabled: "#989b9b",
1908
- onDark: "#ffffff",
1909
- subduedOnDark: "rgba(255, 255, 255, 0.7)",
1910
- disabledOnDark: "rgba(255, 255, 255, 0.4)"
1911
- },
1912
- icon: {
1913
- base: "#222324",
1914
- subdued: "#545859",
1915
- subduedOnDark: "rgba(255, 255, 255, 0.7)",
1916
- accent: "#0c419a",
1917
- accentContrasted: "#07275c",
1918
- info: "#0c419a",
1919
- success: "#224e2d",
1920
- warning: "#60480e",
1921
- error: "#b33f2e",
1922
- onDark: "#ffffff",
1923
- disabled: "#989b9b",
1924
- disabledOnDark: "rgba(255, 255, 255, 0.4)"
1925
- },
1926
- overlay: {
1927
- fullpage: "#989b9b",
1928
- onDark: "#ffffff",
1929
- onLight: "#0c419a"
1930
- },
1931
- interactive: {
1932
- default: "rgba(255, 255, 255, 0.0000)",
1933
- hover: "#e7ecf5",
1934
- pressed: "#ced9eb",
1935
- focus: "#e7ecf5",
1936
- disabled: "rgba(255, 255, 255, 0.0000)",
1937
- hoverOnSelected: "#ced9eb"
1938
- }
1939
- }
1940
- }, ke = {
1941
- primary: B.blue.base,
1942
- secondary: B.cyan.darken40,
1943
- accent: B.cyan.base,
1944
- error: B.orange.darken20,
1945
- info: B.blue.base,
1946
- success: B.green.base,
1947
- warning: B.yellow.base,
1948
- risquePro: B.brick.base,
1949
- onBackground: l.colors.background.surface,
1950
- onSurfaceAlt: l.colors.background.surfaceAlt,
1951
- onSurface: l.colors.background.surface,
1952
- onWarning: l.colors.background.warning,
1953
- overlayFullpage: l.colors.overlay.fullpage,
1954
- overlayOnDark: l.colors.overlay.onDark,
1955
- overlayOnLight: l.colors.overlay.onLight,
1956
- interactiveDefault: l.colors.interactive.default,
1957
- interactiveHover: l.colors.interactive.hover,
1958
- interactivePressed: l.colors.interactive.pressed,
1959
- interactiveFocus: l.colors.interactive.focus,
1960
- interactiveDisabled: l.colors.interactive.disabled,
1961
- interactiveHoverOnSelected: l.colors.interactive.hoverOnSelected,
1962
- backgroundMain: l.colors.background.main,
1963
- backgroundSurface: l.colors.background.surface,
1964
- backgroundSurfaceAlt: l.colors.background.surfaceAlt,
1965
- backgroungMainAlt: l.colors.background.mainAlt,
1966
- backgroungRaised: l.colors.background.raised,
1967
- backgroundAccent: l.colors.background.accent,
1968
- backgroungAccentContrasted: l.colors.background.accentContrasted,
1969
- backgroundAccentAlt: l.colors.background.accentAlt,
1970
- backgroundInfo: l.colors.background.info,
1971
- backgroundInfoSubdued: l.colors.background.infoSubdued,
1972
- backgroundInfoContrasted: l.colors.background.infoContrasted,
1973
- backgroundSuccess: l.colors.background.success,
1974
- backgroundSuccessSubdued: l.colors.background.successSubdued,
1975
- backgroundSuccessContrasted: l.colors.background.successContrasted,
1976
- backgroundWarning: l.colors.background.warning,
1977
- backgroundWarningSubdued: l.colors.background.warningSubdued,
1978
- backgroundWarningContrasted: l.colors.background.warningContrasted,
1979
- backgroundError: l.colors.background.error,
1980
- backgroundErrorSubdued: l.colors.background.errorSubdued,
1981
- backgroundErrorContrasted: l.colors.background.errorContrasted,
1982
- backgroundDisabled: l.colors.background.disabled,
1983
- backgroundDisabledOnDark: l.colors.background.disabledOnDark,
1984
- backgroundAssure: l.colors.background.assure,
1985
- backgroundProfessionnel: l.colors.background.professionnel,
1986
- backgroundEntreprise: l.colors.background.entreprise,
1987
- borderDarker: l.colors.border.darker,
1988
- borderBase: l.colors.border.base,
1989
- borderSubdued: l.colors.border.subdued,
1990
- borderAccent: l.colors.border.accent,
1991
- borderAccentContrasted: l.colors.border.accentContrasted,
1992
- borderAccentOnDark: l.colors.border.accentOnDark,
1993
- borderInfo: l.colors.border.info,
1994
- borderSuccess: l.colors.border.success,
1995
- borderWarning: l.colors.border.warning,
1996
- borderError: l.colors.border.error,
1997
- borderOnDark: l.colors.border.onDark,
1998
- borderDisabled: l.colors.border.disabled,
1999
- borderDisabledOnDark: l.colors.border.disabledOnDark,
2000
- textBase: l.colors.text.base,
2001
- textAccent: l.colors.text.accent,
2002
- textAccentContrasted: l.colors.text.accentContrasted,
2003
- textSubdued: l.colors.text.subdued,
2004
- textInfo: l.colors.text.info,
2005
- textSuccess: l.colors.text.success,
2006
- textWarning: l.colors.text.warning,
2007
- textError: l.colors.text.error,
2008
- textDisabled: l.colors.text.disabled,
2009
- textOnDark: l.colors.text.onDark,
2010
- textSubduedOnDark: l.colors.text.subduedOnDark,
2011
- textDisabledOnDark: l.colors.text.disabledOnDark,
2012
- iconBase: l.colors.icon.base,
2013
- iconSubdued: l.colors.icon.subdued,
2014
- iconSubduedOnDark: l.colors.icon.subduedOnDark,
2015
- iconAccent: l.colors.icon.accent,
2016
- iconAccentContrasted: l.colors.icon.accentContrasted,
2017
- iconInfo: l.colors.icon.info,
2018
- iconSuccess: l.colors.icon.success,
2019
- iconWarning: l.colors.icon.warning,
2020
- iconError: l.colors.icon.error,
2021
- iconOnDark: l.colors.icon.onDark,
2022
- iconDisabled: l.colors.icon.disabled,
2023
- iconDisabledOnDark: l.colors.icon.disabledOnDark,
2024
- transparentBlue18: B.blue.base,
2025
- transparentBlue8: B.transparentBlue.transparentBlue8
2026
- }, G = (n, e) => ({ width: n, height: e }), ya = {
2027
- [z.X_SMALL]: G("105", "32"),
2028
- [z.SMALL]: G("131", "40"),
2029
- [z.NORMAL]: G("211", "64")
2030
- }, La = {
2031
- [z.X_SMALL]: G("32", "32"),
2032
- [z.SMALL]: G("40", "40"),
2033
- [z.NORMAL]: G("64", "64")
2034
- };
2035
- function wa(n, e, a) {
2036
- const o = `(${e.join("|")})`, m = new RegExp(`^${o}$`);
2037
- return a.match(m) !== null || console.error(
2038
- `Invalid value for the \`${n}\` prop. Received: "${a}", expected one of: [${e.join(", ")}].`
2039
- ), !0;
2040
- }
2041
- const Ma = ["fill", "aria-label", "width", "height", "viewBox", "aria-hidden"], Ca = ["fill"], Va = {
2042
- key: 1,
2043
- "aria-hidden": "true",
2044
- role: "presentation"
2045
- }, Za = {
2046
- key: 2,
2047
- role: "presentation",
2048
- "aria-hidden": "true"
2049
- }, Aa = { key: 3 }, Sa = /* @__PURE__ */ O({
2050
- __name: "Logo",
2051
- props: {
2052
- hideSignature: {
2053
- type: Boolean,
2054
- default: !1
2055
- },
2056
- hideOrganism: {
2057
- type: Boolean,
2058
- default: !1
2059
- },
2060
- risquePro: {
2061
- type: Boolean,
2062
- default: !1
2063
- },
2064
- ariaLabel: {
2065
- type: String,
2066
- default: void 0
2067
- },
2068
- avatar: {
2069
- type: Boolean,
2070
- default: !1
2071
- },
2072
- dark: {
2073
- type: Boolean,
2074
- default: !1
2075
- },
2076
- size: {
2077
- type: String,
2078
- default: z.NORMAL,
2079
- validator: (n) => wa("size", Na, n)
2080
- }
2081
- },
2082
- setup(n) {
2083
- const e = n, a = $(ke.risquePro), t = v(() => e.dark ? "#fff" : ke.primary), o = v(() => e.avatar ? La[e.size] : ya[e.size]), m = v(() => e.avatar ? "0 0 64 64" : e.hideSignature ? "0 0 206 64" : "0 0 211 64"), c = v(() => {
2084
- if (e.ariaLabel)
2085
- return e.ariaLabel;
2086
- if (e.avatar)
2087
- return "";
2088
- const i = " : ", r = ", ";
2089
- let h = `${X.assuranceMaladie}`;
2090
- return e.hideOrganism || (h = X.organism.concat(r, h)), e.hideSignature || (h = h.concat(i, X.signature)), e.risquePro && (h = X.assuranceMaladie + ": " + X.risquePro), h;
2091
- });
2092
- return (i, r) => (d(), g("svg", {
2093
- fill: t.value,
2094
- "aria-label": c.value,
2095
- width: o.value.width,
2096
- height: o.value.height,
2097
- viewBox: m.value,
2098
- role: "img",
2099
- focusable: "false",
2100
- xmlns: "http://www.w3.org/2000/svg",
2101
- "aria-hidden": n.avatar ? "true" : "false"
2102
- }, [
2103
- n.risquePro && !n.avatar ? (d(), g("path", {
2104
- key: 0,
2105
- fill: a.value,
2106
- d: "M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"
2107
- }, null, 8, Ca)) : !n.hideSignature && !n.avatar ? (d(), g("g", Va, r[0] || (r[0] = [
2108
- te('<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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 27)
2109
- ]))) : x("", !0),
2110
- !n.hideOrganism && !n.avatar ? (d(), g("g", Za, r[1] || (r[1] = [
2111
- te('<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"></path><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"></path><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"></path><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"></path><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"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><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"></path><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"></path><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"></path><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"></path><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"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><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"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>', 15)
2112
- ]))) : x("", !0),
2113
- n.avatar ? x("", !0) : (d(), g("g", Aa, r[2] || (r[2] = [
2114
- te('<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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 18)
2115
- ]))),
2116
- r[3] || (r[3] = te('<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"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"></path><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"></path><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"></path><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"></path><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"></path><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"></path>', 7))
2117
- ], 8, Ma));
2118
- }
2119
- }), _a = { class: "pl-0" }, xa = ["href", "aria-label"], Oa = {
2120
- key: 1,
2121
- class: "vd-collapse-list"
2122
- }, $a = { class: "text-subtitle-1 font-weight-bold mb-3" }, Ba = { class: "pl-0" }, Ta = ["href", "aria-label"], Ha = /* @__PURE__ */ O({
2123
- __name: "CollapsibleList",
2124
- props: {
2125
- listTitle: {},
2126
- items: {}
2127
- },
2128
- setup(n) {
2129
- const e = n, { smAndDown: a } = ne(), t = v(() => a.value);
2130
- return (o, m) => t.value ? (d(), S(r1, {
2131
- key: 0,
2132
- class: "vd-collapse-list-mobile",
2133
- variant: "accordion",
2134
- flat: ""
2135
- }, {
2136
- default: f(() => [
2137
- N(c1, {
2138
- class: "vd-panel",
2139
- elevation: "0",
2140
- "bg-color": "transparent"
2141
- }, {
2142
- default: f(() => [
2143
- N(s1, { class: "vd-panel-title text-subtitle-2 pl-0 py-4" }, {
2144
- default: f(() => [
2145
- C(b(e.listTitle), 1)
2146
- ]),
2147
- _: 1
2148
- }),
2149
- N(d1, { class: "vd-panel-text" }, {
2150
- default: f(() => [
2151
- L("ul", _a, [
2152
- (d(!0), g(K, null, ee(e.items, (c, i) => (d(), g("li", {
2153
- key: i,
2154
- class: "py-3"
2155
- }, [
2156
- L("a", {
2157
- href: c.href,
2158
- "aria-label": c.text,
2159
- class: "text-body-2 text-decoration-none"
2160
- }, b(c.text), 9, xa)
2161
- ]))), 128))
2162
- ])
2163
- ]),
2164
- _: 1
2165
- })
2166
- ]),
2167
- _: 1
2168
- })
2169
- ]),
2170
- _: 1
2171
- })) : (d(), g("div", Oa, [
2172
- L("h4", $a, b(o.listTitle), 1),
2173
- L("ul", Ba, [
2174
- (d(!0), g(K, null, ee(o.items, (c, i) => (d(), g("li", {
2175
- key: i,
2176
- class: D({ "mb-2": i < o.items.length - 1 })
2177
- }, [
2178
- L("a", {
2179
- href: c.href,
2180
- "aria-label": c.ariaLabel,
2181
- class: "text-body-2 text-decoration-none text--primary"
2182
- }, b(c.text), 9, Ta)
2183
- ], 2))), 128))
2184
- ])
2185
- ]));
2186
- }
2187
- }), Ln = /* @__PURE__ */ T(Ha, [["__scopeId", "data-v-8456c2b9"]]), Da = {
2188
- followUs: "Suivez-nous :"
2189
- }, Ia = { class: "d-flex flex-column" }, za = { class: "vd-social-media-links-label text-subtitle-2 text--primary" }, Ea = { class: "d-flex max-width-none" }, Pa = /* @__PURE__ */ O({
2190
- __name: "SocialMediaLinks",
2191
- props: {
2192
- links: {
2193
- type: Array,
2194
- default: null
3173
+ setup(e, { expose: t, emit: a }) {
3174
+ const l = e, n = K(mn, l), o = a, r = L(!1), c = L(l.modelValue);
3175
+ z(
3176
+ () => l.modelValue,
3177
+ (g) => {
3178
+ c.value = g;
3179
+ }
3180
+ );
3181
+ function i(g) {
3182
+ c.value = g, o("update:modelValue", g), o("change", g), r.value = !1;
2195
3183
  }
2196
- },
2197
- setup(n) {
2198
- const e = n;
2199
- return (a, t) => (d(), g("div", Ia, [
2200
- L("span", za, b(u(Da).followUs), 1),
2201
- L("ul", Ea, [
2202
- (d(!0), g(K, null, ee(e.links, (o, m) => (d(), g("li", { key: m }, [
2203
- N(F, {
2204
- id: `social-btn-${m}`,
2205
- href: o.href,
2206
- target: "_blank",
2207
- rel: "noopener noreferrer",
2208
- icon: !0,
2209
- "aria-label": `Lien vers ${o.name}`,
2210
- variant: "text"
3184
+ const d = m(() => r.value), f = m(() => "lang-menu-id"), M = m(() => {
3185
+ const g = {};
3186
+ let w;
3187
+ return l.availableLanguages === "*" ? w = be.getAllCodes() : w = l.availableLanguages, w.forEach((b) => {
3188
+ g[b] = {
3189
+ code: b,
3190
+ name: be.getName(b) || b,
3191
+ nativeName: be.getNativeName(b) || be.getName(b) || b
3192
+ };
3193
+ }), g;
3194
+ }), S = m(() => {
3195
+ const g = M.value[c.value];
3196
+ return {
3197
+ name: (g == null ? void 0 : g.nativeName) || c.value,
3198
+ label: `${l.ariaLabel} ${(g == null ? void 0 : g.nativeName) || c.value}`
3199
+ };
3200
+ });
3201
+ return t({
3202
+ currentLangData: S,
3203
+ updateLang: i,
3204
+ selectedLanguage: c
3205
+ }), (g, w) => (s(), h("div", { id: f.value }, [
3206
+ $(ia, I(u(n).menu, {
3207
+ id: d.value ? "lang-menu" : f.value,
3208
+ modelValue: r.value,
3209
+ "onUpdate:modelValue": w[0] || (w[0] = (b) => r.value = b),
3210
+ role: "menu",
3211
+ location: "bottom"
3212
+ }), {
3213
+ activator: v(({ props: b }) => [
3214
+ $(P, I({
3215
+ id: "lang-menu-btn",
3216
+ "aria-label": `${l.ariaLabel} ${S.value.name}`,
3217
+ "aria-haspopup": "menu",
3218
+ "aria-controls": f.value,
3219
+ "aria-owns": f.value,
3220
+ "aria-expanded": d.value
2211
3221
  }, {
2212
- default: f(() => [
2213
- N(I, {
2214
- size: "30px",
2215
- class: "vd-social-media-links-icon"
2216
- }, {
2217
- default: f(() => [
2218
- C(b(o.icon), 1)
3222
+ ...u(n).btn,
3223
+ ...b
3224
+ }, { class: "vd-lang-btn" }), {
3225
+ default: v(() => [
3226
+ C(Z(S.value.name) + " ", 1),
3227
+ g.hideDownArrow ? _("", !0) : (s(), y(T, I({ key: 0 }, u(n).icon, { class: "ml-1" }), {
3228
+ default: v(() => [
3229
+ C(Z(u(h1)), 1)
2219
3230
  ]),
2220
- _: 2
2221
- }, 1024)
3231
+ _: 1
3232
+ }, 16))
2222
3233
  ]),
2223
3234
  _: 2
2224
- }, 1032, ["id", "href", "aria-label"])
2225
- ]))), 128))
2226
- ])
2227
- ]));
3235
+ }, 1040, ["aria-label", "aria-controls", "aria-owns", "aria-expanded"])
3236
+ ]),
3237
+ default: v(() => [
3238
+ $(na, I(u(n).list, { "aria-labelledby": "lang-menu-btn" }), {
3239
+ default: v(() => [
3240
+ (s(!0), h(D, null, R(M.value, (b, p, V) => (s(), y(la, I({ ref_for: !0 }, u(n).listTile, {
3241
+ key: p,
3242
+ role: "menuitem",
3243
+ tabindex: V + 1,
3244
+ "aria-label": `${l.ariaLabel} ${b.nativeName}`,
3245
+ "aria-labelledby": `${f.value} ${b.nativeName}`,
3246
+ onClick: (x) => i(p)
3247
+ }), {
3248
+ default: v(() => [
3249
+ $(oa, I({ ref_for: !0 }, u(n).listTileTitle), {
3250
+ default: v(() => [
3251
+ C(Z(b.nativeName), 1)
3252
+ ]),
3253
+ _: 2
3254
+ }, 1040)
3255
+ ]),
3256
+ _: 2
3257
+ }, 1040, ["tabindex", "aria-label", "aria-labelledby", "onClick"]))), 128))
3258
+ ]),
3259
+ _: 1
3260
+ }, 16)
3261
+ ]),
3262
+ _: 1
3263
+ }, 16, ["id", "modelValue"])
3264
+ ], 8, hn));
2228
3265
  }
2229
- }), Ra = /* @__PURE__ */ T(Pa, [["__scopeId", "data-v-82e1e286"]]), ve = {
2230
- "non-compliant": "non-compliant",
2231
- "partially-compliant": "partially-compliant",
2232
- "fully-compliant": "fully-compliant"
2233
- }, ja = [
2234
- {
2235
- icon: y1,
2236
- name: "LinkedIn",
2237
- href: "https://www.linkedin.com/company/assurance-maladie/"
3266
+ }), vl = /* @__PURE__ */ H(pn, [["__scopeId", "data-v-40aa801b"]]), X = L([]);
3267
+ function V1() {
3268
+ return {
3269
+ notificationQueue: X,
3270
+ addNotification: (l) => {
3271
+ X.value.some((n) => n.id === l.id) || X.value.push(l);
3272
+ },
3273
+ removeNotification: (l) => {
3274
+ X.value = X.value.filter((n) => n.id !== l);
3275
+ },
3276
+ clearQueue: () => {
3277
+ X.value = [];
3278
+ }
3279
+ };
3280
+ }
3281
+ const ml = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3282
+ __proto__: null,
3283
+ useNotificationService: V1
3284
+ }, Symbol.toStringTag, { value: "Module" })), fn = {
3285
+ snackBar: {
3286
+ timeout: -1
2238
3287
  },
2239
- {
2240
- icon: N1,
2241
- name: "Facebook",
2242
- href: "https://www.facebook.com/AssurMaladie/"
3288
+ icon: {
3289
+ class: "mr-2"
2243
3290
  },
2244
- {
2245
- icon: M1,
2246
- name: "Twitter",
2247
- href: "https://twitter.com/Assur_Maladie"
3291
+ btn: {
3292
+ variant: "text"
2248
3293
  }
2249
- ], Fa = {
2250
- footer: {
2251
- elevation: 3,
2252
- color: B.parma.darken60,
2253
- height: "auto"
3294
+ }, bn = { key: 0 }, gn = { class: "d-flex align-center ga-2" }, yn = /* @__PURE__ */ A({
3295
+ __name: "NotificationBar",
3296
+ props: {
3297
+ vuetifyOptions: {},
3298
+ closeBtnText: { default: "Fermer" },
3299
+ rounded: { type: [Number, String, Boolean], default: 4 },
3300
+ bottom: { type: Boolean, default: !1 }
2254
3301
  },
2255
- goTopBtn: {
2256
- elevation: 0,
2257
- density: "compact",
2258
- icon: "true",
2259
- variant: "text",
2260
- color: B.parma.darken60
3302
+ setup(e, { expose: t }) {
3303
+ const a = e, l = K(fn, a), n = pe(), { notificationQueue: o, removeNotification: r } = V1(), c = Ae(), i = L(), d = L(!1), f = L(!1), M = m(() => !!(c != null && c.slots.action)), S = m(() => n.name.value === "xs"), g = m(() => n.name.value === "sm"), w = m(() => {
3304
+ var B, U;
3305
+ return (((U = (B = i.value) == null ? void 0 : B.message) == null ? void 0 : U.length) ?? 0) > 50;
3306
+ }), b = {
3307
+ info: Ie,
3308
+ success: v1,
3309
+ warning: ra,
3310
+ error: r1
3311
+ }, p = m(() => i.value ? b[i.value.type] : null), V = m(() => i.value && {
3312
+ info: "info",
3313
+ success: "#56C271",
3314
+ warning: "#F0B323",
3315
+ error: "error"
3316
+ }[i.value.type] || "info"), x = m(() => i.value ? {
3317
+ contentColor: i.value.type === "success" || i.value.type === "warning" ? "grey-darken-80" : "white"
3318
+ } : {
3319
+ contentColor: "white"
3320
+ }), E = m(() => S.value && !w.value && !M.value), F = (B) => {
3321
+ i.value = { ...B };
3322
+ }, _e = async () => {
3323
+ for (f.value = !0; o.value.length > 0; ) {
3324
+ const B = o.value[0];
3325
+ F(B), d.value = !0;
3326
+ let U = B.timeout ?? -1;
3327
+ U <= 0 ? await new Promise((q) => {
3328
+ const W = z(d, ($e) => {
3329
+ $e || (W(), q());
3330
+ });
3331
+ }) : await new Promise((q) => {
3332
+ const W = setTimeout(() => {
3333
+ Ve(), q();
3334
+ }, U), $e = z(d, (C1) => {
3335
+ C1 || (clearTimeout(W), $e(), q());
3336
+ });
3337
+ }), r(B.id);
3338
+ }
3339
+ f.value = !1;
3340
+ }, Ve = () => {
3341
+ d.value = !1, i.value && (r(i.value.id), i.value = void 0);
3342
+ }, $1 = (B) => {
3343
+ F(B), d.value = !0;
3344
+ }, S1 = () => {
3345
+ if (o.value.length > 0) {
3346
+ const B = o.value[0];
3347
+ F(B), d.value = !0;
3348
+ }
3349
+ };
3350
+ return z(
3351
+ () => o.value.length,
3352
+ (B) => {
3353
+ B > 0 && !f.value && _e();
3354
+ }
3355
+ ), t({
3356
+ openNotification: $1,
3357
+ handleClearNotification: Ve,
3358
+ showNextNotification: S1,
3359
+ processNotificationQueue: _e,
3360
+ currentNotification: i,
3361
+ isNotificationVisible: d,
3362
+ hasActionSlot: M,
3363
+ isMobileVersion: S,
3364
+ hasLongContent: w,
3365
+ color: V,
3366
+ icon: p,
3367
+ contentStyle: x,
3368
+ smallCloseBtn: E,
3369
+ isVertical: m(() => w.value && S.value)
3370
+ }), (B, U) => {
3371
+ var q;
3372
+ return i.value ? (s(), h("div", bn, [
3373
+ $(sa, I(u(l).snackbar, {
3374
+ modelValue: d.value,
3375
+ "onUpdate:modelValue": U[0] || (U[0] = (W) => d.value = W),
3376
+ role: "status",
3377
+ color: V.value,
3378
+ location: a.bottom ? "bottom" : "top",
3379
+ vertical: w.value,
3380
+ "multi-line": w.value,
3381
+ timeout: ((q = i.value) == null ? void 0 : q.timeout) ?? -1,
3382
+ width: S.value || g.value ? "auto" : "960px",
3383
+ rounded: a.rounded,
3384
+ class: [{ "long-text": w.value }]
3385
+ }), {
3386
+ actions: v(() => [
3387
+ N("div", {
3388
+ class: O(["d-flex ga-2", w.value ? "action-section-longText" : "action-section-shortText"]),
3389
+ style: { width: "100%" }
3390
+ }, [
3391
+ k(B.$slots, "action", {}, void 0, !0),
3392
+ $(P, I({
3393
+ class: ["notification-bar__close", { "ma-0": E.value }],
3394
+ "aria-label": "Fermer la notification"
3395
+ }, u(l).btn, { onClick: Ve }), {
3396
+ default: v(() => [
3397
+ E.value ? (s(), y(T, {
3398
+ key: 1,
3399
+ icon: u(Ne)
3400
+ }, null, 8, ["icon"])) : (s(), h(D, { key: 0 }, [
3401
+ C(Z(B.closeBtnText), 1)
3402
+ ], 64))
3403
+ ]),
3404
+ _: 1
3405
+ }, 16, ["class"])
3406
+ ], 2)
3407
+ ]),
3408
+ default: v(() => {
3409
+ var W;
3410
+ return [
3411
+ N("div", gn, [
3412
+ !S.value && p.value ? (s(), y(T, I({ key: 0 }, u(l).icon, {
3413
+ icon: p.value,
3414
+ size: "24",
3415
+ "aria-hidden": "true"
3416
+ }), null, 16, ["icon"])) : _("", !0),
3417
+ N("p", {
3418
+ class: O("text-" + x.value.contentColor)
3419
+ }, Z((W = i.value) == null ? void 0 : W.message), 3)
3420
+ ])
3421
+ ];
3422
+ }),
3423
+ _: 3
3424
+ }, 16, ["modelValue", "color", "location", "vertical", "multi-line", "timeout", "width", "rounded", "class"])
3425
+ ])) : _("", !0);
3426
+ };
3427
+ }
3428
+ }), hl = /* @__PURE__ */ H(yn, [["__scopeId", "data-v-93d35fbf"]]), kn = /* @__PURE__ */ A({
3429
+ __name: "PageContainer",
3430
+ props: {
3431
+ size: { default: "xl" },
3432
+ spacing: { default: void 0 },
3433
+ color: { default: "transparent" }
2261
3434
  },
2262
- goTopBtnIcon: {
2263
- color: "white"
3435
+ setup(e, { expose: t }) {
3436
+ const a = e, l = pe(), n = {
3437
+ xs: "px-0",
3438
+ sm: "px-4",
3439
+ md: "px-8",
3440
+ lg: "px-8",
3441
+ xl: "px-8"
3442
+ }, o = n[l.name.value], r = m(() => a.spacing ? `py-10 ${n[a.spacing]}` : `py-10 ${o}`), c = {
3443
+ xl: 1440,
3444
+ l: 960,
3445
+ m: 800,
3446
+ s: 600
3447
+ }, i = m(() => c[a.size]);
3448
+ return t({
3449
+ spacingClass: r,
3450
+ containerSize: i
3451
+ }), (d, f) => (s(), h("div", {
3452
+ class: O([r.value, "vd-page-container d-flex justify-center"])
3453
+ }, [
3454
+ $(He, {
3455
+ width: i.value,
3456
+ color: d.color
3457
+ }, {
3458
+ default: v(() => [
3459
+ k(d.$slots, "default", {}, void 0, !0)
3460
+ ]),
3461
+ _: 3
3462
+ }, 8, ["width", "color"])
3463
+ ], 2));
2264
3464
  }
2265
- }, R = {
2266
- goTopBtnLabel: "Retour en haut de la page",
2267
- sitemapLabel: "Plan du site",
2268
- cguLabel: "Conditions générales d’utilisation",
2269
- cookiesLabel: "Gestion des cookies",
2270
- legalNoticeLabel: "Mentions légales",
2271
- versionLabel: "Version",
2272
- followUs: "Suivez-nous",
2273
- [ve["non-compliant"]]: "non conforme",
2274
- [ve["partially-compliant"]]: "partiellement conforme",
2275
- [ve["fully-compliant"]]: "totalement conforme",
2276
- a11yLabel: (n) => `Accessibilité : ${n}`
2277
- }, Ua = {
2278
- key: 0,
2279
- class: "d-flex align-start align-sm-center mb-6"
2280
- }, Ga = { class: "d-flex flex-grow-1 flex-column flex-sm-row" }, Ka = {
2281
- key: 0,
2282
- class: "text-primary my-3 mx-4"
2283
- }, Wa = /* @__PURE__ */ O({
2284
- __name: "FooterBar",
3465
+ }), pl = /* @__PURE__ */ H(kn, [["__scopeId", "data-v-773c0ca7"]]), Mn = {
3466
+ label: "Aller au contenu principal"
3467
+ }, wn = { class: "vd-skip-link-container" }, Zn = ["href"], Nn = /* @__PURE__ */ A({
3468
+ __name: "SkipLink",
2285
3469
  props: {
2286
- vuetifyOptions: {},
2287
- a11yCompliance: { default: "non-compliant" },
2288
- linkItems: { default: null },
2289
- items: { default: null },
2290
- sitemapRoute: { default: () => ({ name: "sitemap" }) },
2291
- cguRoute: { default: () => ({ name: "cgu" }) },
2292
- cookiesRoute: { default: () => ({ name: "cookies" }) },
2293
- legalNoticeRoute: { default: () => ({ name: "legalNotice" }) },
2294
- a11yStatementRoute: { default: () => ({ name: "a11yStatement" }) },
2295
- hideSitemapLink: { type: Boolean, default: !1 },
2296
- hideCguLink: { type: Boolean, default: !1 },
2297
- hideCookiesLink: { type: Boolean, default: !1 },
2298
- hideLegalNoticeLink: { type: Boolean, default: !1 },
2299
- hideA11yLink: { type: Boolean, default: !1 },
2300
- version: { default: void 0 },
2301
- hideLogo: { type: Boolean, default: !1 },
2302
- hideSocialMediaLinks: { type: Boolean, default: !1 },
2303
- socialMediaLinks: { default: () => ja },
2304
- light: { type: Boolean, default: !1 }
3470
+ label: { default: Mn.label },
3471
+ target: { default: "#main" }
2305
3472
  },
2306
- setup(n, { expose: e }) {
2307
- const a = n, t = Ce, o = z, m = We(), c = ne(), i = q(Fa, a), r = (p) => p.href ? "a" : "RouterLink", h = () => {
2308
- window.scrollTo({
2309
- top: 0,
2310
- behavior: "smooth"
3473
+ setup(e) {
3474
+ const t = L(null);
3475
+ return le(() => {
3476
+ var r, c;
3477
+ const a = Ae();
3478
+ if (!a) return;
3479
+ const l = (r = a == null ? void 0 : a.appContext.app) == null ? void 0 : r.$nuxt;
3480
+ let n;
3481
+ l && l.$router && (n = l.$router);
3482
+ const o = (c = a.appContext.app.config.globalProperties) == null ? void 0 : c.$router;
3483
+ o && (n = o), n && n.afterEach && n.afterEach((i, d, f) => {
3484
+ f || i.path !== d.path && Je(() => {
3485
+ var M;
3486
+ (M = t.value) == null || M.focus();
3487
+ });
2311
3488
  });
2312
- }, w = v(() => {
2313
- const p = R[a.a11yCompliance];
2314
- return typeof p == "string" ? R.a11yLabel(p) : "";
2315
- }), k = v(() => !!m.default), M = v(() => c.smAndDown.value ? o.SMALL : o.NORMAL), s = v(() => a.linkItems ? a.linkItems : [
2316
- {
2317
- text: R.sitemapLabel,
2318
- to: a.sitemapRoute,
2319
- hidden: a.hideSitemapLink
2320
- },
2321
- {
2322
- text: R.cguLabel,
2323
- to: a.cguRoute,
2324
- hidden: a.hideCguLink
2325
- },
2326
- {
2327
- text: R.cookiesLabel,
2328
- to: a.cookiesRoute,
2329
- hidden: a.hideCookiesLink
2330
- },
2331
- {
2332
- text: R.legalNoticeLabel,
2333
- to: a.legalNoticeRoute,
2334
- hidden: a.hideLegalNoticeLink
2335
- },
2336
- {
2337
- text: w.value,
2338
- to: a.a11yStatementRoute,
2339
- hidden: a.hideA11yLink
2340
- }
2341
- ].filter((y) => !y.hidden));
2342
- return e({
2343
- logoSize: M
2344
- }), (p, y) => (d(), S(u1, Z({
2345
- ...u(i).footer,
2346
- ...p.$attrs
2347
- }, {
2348
- color: a.light ? "white" : u(i).footer.color,
2349
- class: ["vd-footer-bar flex-column align-stretch pa-3 w-100", {
2350
- "py-4 py-sm-7 px-4 px-md-14": k.value,
2351
- "v-theme--light": a.light,
2352
- "v-theme--dark": !a.light
2353
- }],
2354
- role: "contentinfo"
3489
+ }), (a, l) => (s(), h("div", wn, [
3490
+ N("span", {
3491
+ ref_key: "skipLinkSpan",
3492
+ ref: t,
3493
+ tabindex: "-1"
3494
+ }, null, 512),
3495
+ N("a", {
3496
+ href: a.target,
3497
+ class: "vd-skip-link text-primary d-block d-sr-only-focusable px-2"
3498
+ }, [
3499
+ k(a.$slots, "default", {}, () => [
3500
+ C(Z(a.label), 1)
3501
+ ], !0)
3502
+ ], 8, Zn)
3503
+ ]));
3504
+ }
3505
+ }), fl = /* @__PURE__ */ H(Nn, [["__scopeId", "data-v-2bd5b004"]]), Ln = {
3506
+ sheet: {
3507
+ color: "secondary"
3508
+ },
3509
+ backBtn: {
3510
+ size: "small",
3511
+ variant: "text",
3512
+ class: "font-weight-regular white--text px-1"
3513
+ }
3514
+ }, _n = {
3515
+ backBtnText: "Retour"
3516
+ }, Vn = { class: "vd-sub-header-content d-flex justify-space-between" }, $n = { class: "vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10" }, Sn = {
3517
+ key: 1,
3518
+ class: "text-h5 font-weight-bold"
3519
+ }, Cn = {
3520
+ key: 1,
3521
+ class: "text-h6 font-weight-bold mt-1 mb-0",
3522
+ style: { color: "rgba(255, 255, 255, .7)" }
3523
+ }, An = /* @__PURE__ */ A({
3524
+ __name: "SubHeader",
3525
+ props: {
3526
+ vuetifyOptions: {},
3527
+ maxWidth: {},
3528
+ minWidth: {},
3529
+ width: {},
3530
+ hideBackBtn: { type: Boolean, default: !1 },
3531
+ backBtnText: { default: _n.backBtnText },
3532
+ titleText: { default: void 0 },
3533
+ subTitleText: { default: void 0 },
3534
+ dataListGroupItems: { default: void 0 },
3535
+ loading: { type: Boolean, default: !1 },
3536
+ renderHtmlValue: { type: Boolean, default: !1 }
3537
+ },
3538
+ emits: ["click:list-item", "back"],
3539
+ setup(e, { emit: t }) {
3540
+ const a = e, l = K(Ln, a), { widthStyles: n } = g1(a), o = L(ga), r = t;
3541
+ function c(i) {
3542
+ r("click:list-item", i);
3543
+ }
3544
+ return (i, d) => (s(), y(He, I(u(l).sheet, {
3545
+ style: u(n),
3546
+ class: "vd-sub-header white--text py-6 px-8"
2355
3547
  }), {
2356
- default: f(() => [
2357
- k.value ? (d(), g("div", Ua, [
2358
- L("div", Ga, [
2359
- _(p.$slots, "logo", {}, () => [
2360
- a.hideLogo ? x("", !0) : (d(), S(Sa, {
3548
+ default: v(() => [
3549
+ k(i.$slots, "back-btn", {}, () => [
3550
+ i.hideBackBtn ? _("", !0) : (s(), y(ie, {
3551
+ key: 0,
3552
+ mode: "out-in"
3553
+ }, {
3554
+ default: v(() => [
3555
+ i.loading ? (s(), y(u(c1), {
2361
3556
  key: 0,
2362
- size: M.value,
2363
- class: D([{ "mb-2 mb-sm-0": !a.hideSocialMediaLinks }, "logo"])
2364
- }, null, 8, ["size", "class"]))
3557
+ "max-height": "28",
3558
+ type: "button",
3559
+ color: "secondary",
3560
+ class: "vd-subheader-loading mb-4"
3561
+ })) : (s(), y(P, I({ key: 1 }, u(l).backBtn, {
3562
+ class: "vd-sub-header-back-btn mb-1",
3563
+ onClick: d[0] || (d[0] = (f) => i.$emit("back"))
3564
+ }), {
3565
+ default: v(() => [
3566
+ k(i.$slots, "back-btn-icon", {}, () => [
3567
+ $(T, { class: "mr-2" }, {
3568
+ default: v(() => [
3569
+ C(Z(o.value), 1)
3570
+ ]),
3571
+ _: 1
3572
+ })
3573
+ ], !0),
3574
+ C(" " + Z(i.backBtnText), 1)
3575
+ ]),
3576
+ _: 3
3577
+ }, 16))
3578
+ ]),
3579
+ _: 3
3580
+ }))
3581
+ ], !0),
3582
+ N("div", Vn, [
3583
+ N("div", $n, [
3584
+ k(i.$slots, "title", {}, () => [
3585
+ $(ie, { mode: "out-in" }, {
3586
+ default: v(() => [
3587
+ i.loading ? (s(), y(ce, {
3588
+ key: 0,
3589
+ width: "300",
3590
+ height: "2rem",
3591
+ color: "secondary"
3592
+ })) : i.titleText ? (s(), h("h2", Sn, Z(i.titleText), 1)) : _("", !0)
3593
+ ]),
3594
+ _: 1
3595
+ })
2365
3596
  ], !0),
2366
- N(m1, re(ce(u(i).spacer)), null, 16),
2367
- a.hideSocialMediaLinks ? x("", !0) : (d(), S(Ra, {
2368
- key: 0,
2369
- links: a.socialMediaLinks,
2370
- class: "mr-8 social"
2371
- }, null, 8, ["links"]))
2372
- ]),
2373
- N(F, Z({ id: "scroll-btn" }, u(i).goTopBtn, {
2374
- "aria-label": u(R).goTopBtnLabel,
2375
- onClick: h
2376
- }), {
2377
- default: f(() => [
2378
- N(I, Z(u(i).goTopBtnIcon, { class: "scroll" }), {
2379
- default: f(() => [
2380
- C(b(u(t)), 1)
3597
+ k(i.$slots, "sub-title", {}, () => [
3598
+ i.subTitleText ? (s(), y(ie, {
3599
+ key: 0,
3600
+ mode: "out-in"
3601
+ }, {
3602
+ default: v(() => [
3603
+ i.loading ? (s(), y(ce, {
3604
+ key: 0,
3605
+ class: "mt-1",
3606
+ width: "250",
3607
+ height: "2rem",
3608
+ color: "secondary"
3609
+ })) : (s(), h("p", Cn, Z(i.subTitleText), 1))
2381
3610
  ]),
2382
3611
  _: 1
2383
- }, 16)
2384
- ]),
2385
- _: 1
2386
- }, 16, ["aria-label"])
2387
- ])) : x("", !0),
2388
- k.value ? (d(), S(fe, Z({ key: 1 }, u(i).divider, { class: "mb-3" }), null, 16)) : x("", !0),
2389
- _(p.$slots, "default", {}, void 0, !0),
2390
- k.value ? (d(), S(fe, Z({ key: 2 }, u(i).divider, { class: "mt-3 mb-6" }), null, 16)) : x("", !0),
2391
- L("ul", {
2392
- class: D([{ "py-2 py-sm-0": !k.value }, "vd-footer-bar-links text-sm-center d-flex flex-column flex-sm-row flex-wrap align-start justify-center max-width-none mx-n3 my-n3"])
2393
- }, [
2394
- _(p.$slots, "prepend", {}, void 0, !0),
2395
- (d(!0), g(K, null, ee(s.value, (A, H) => (d(), g("li", { key: H }, [
2396
- (d(), S(qe(r(A)), {
2397
- href: A.href,
2398
- to: A.to,
2399
- "aria-label": A.ariaLabel,
2400
- target: A.openInNewTab ? "_blank" : void 0,
2401
- tabindex: H,
2402
- rel: A.openInNewTab ? "noopener noreferrer" : void 0,
2403
- class: "my-3 mx-4"
2404
- }, {
2405
- default: f(() => [
2406
- C(b(A.text), 1)
2407
- ]),
2408
- _: 2
2409
- }, 1032, ["href", "to", "aria-label", "target", "tabindex", "rel"]))
2410
- ]))), 128)),
2411
- a.version ? (d(), g("li", Ka, b(u(R).versionLabel) + " " + b(a.version), 1)) : x("", !0),
2412
- _(p.$slots, "append", {}, void 0, !0)
2413
- ], 2)
3612
+ })) : _("", !0)
3613
+ ], !0),
3614
+ k(i.$slots, "additional-informations", {}, void 0, !0)
3615
+ ]),
3616
+ k(i.$slots, "right-content", {}, () => [
3617
+ i.dataListGroupItems ? (s(), y(Zt, {
3618
+ key: 0,
3619
+ items: i.dataListGroupItems,
3620
+ loading: i.loading,
3621
+ "render-html-value": i.renderHtmlValue,
3622
+ "item-width": "auto",
3623
+ class: "flex-nowrap flex-shrink-0",
3624
+ "onClick:listItem": c
3625
+ }, null, 8, ["items", "loading", "render-html-value"])) : _("", !0)
3626
+ ], !0)
3627
+ ])
2414
3628
  ]),
2415
3629
  _: 3
2416
- }, 16, ["color", "class"]));
3630
+ }, 16, ["style"]));
2417
3631
  }
2418
- }), wn = /* @__PURE__ */ T(Wa, [["__scopeId", "data-v-ccd9e76e"]]);
3632
+ }), bl = /* @__PURE__ */ H(An, [["__scopeId", "data-v-ac02e38f"]]);
2419
3633
  export {
2420
- vn as Alert,
2421
- bn as BackBtn,
2422
- pn as BackToTopBtn,
2423
- Ln as CollapsibleList,
2424
- hn as CopyBtn,
2425
- gn as DownloadBtn,
2426
- wn as FooterBar,
2427
- kn as FranceConnectBtn,
2428
- yn as LangBtn,
2429
- Sa as Logo,
2430
- Nn as NotificationBar,
2431
- mn as PageContainer,
2432
- fn as SkipLink,
2433
- Ra as SocialMediaLinks
3634
+ Jn as Alert,
3635
+ el as BackBtn,
3636
+ al as BackToTopBtn,
3637
+ tl as CollapsibleList,
3638
+ nl as CopyBtn,
3639
+ ll as CustomInputSelect,
3640
+ ol as CustomSelect,
3641
+ il as CustomTextField,
3642
+ Mt as DataList,
3643
+ Zt as DataListGroup,
3644
+ sl as DownloadBtn,
3645
+ cl as FooterBar,
3646
+ rl as FranceConnectBtn,
3647
+ B2 as HeaderBar,
3648
+ P2 as HeaderBurgerMenu,
3649
+ ce as HeaderLoading,
3650
+ _2 as HeaderLogo,
3651
+ Ge as HeaderMenuBtn,
3652
+ W2 as HeaderMenuItem,
3653
+ Y2 as HeaderMenuSection,
3654
+ dl as HeaderNavbar,
3655
+ ul as HeaderSubMenu,
3656
+ vl as LangBtn,
3657
+ Ft as Logo,
3658
+ hl as NotificationBar,
3659
+ ml as NotificationService,
3660
+ pl as PageContainer,
3661
+ fl as SkipLink,
3662
+ Qt as SocialMediaLinks,
3663
+ bl as SubHeader
2434
3664
  };