@cnamts/synapse 0.0.8-alpha → 0.0.9-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.
- package/dist/design-system-v3.d.ts +584 -128
- package/dist/design-system-v3.js +4176 -2694
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/settings.scss +1 -1
- package/src/components/ContextualMenu/Accessibilite.mdx +14 -0
- package/src/components/ContextualMenu/Accessibilite.stories.ts +191 -0
- package/src/components/ContextualMenu/AccessibiliteItems.ts +89 -0
- package/src/components/ContextualMenu/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SySelect/SySelect.stories.ts +7 -7
- package/src/components/Customs/SySelect/SySelect.vue +9 -4
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +2 -2
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +187 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +185 -16
- package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +2 -4
- package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +18 -16
- package/src/components/Customs/SyTextField/types.d.ts +2 -2
- package/src/components/DatePicker/DatePicker.mdx +191 -0
- package/src/components/DatePicker/DatePicker.stories.ts +787 -0
- package/src/components/DatePicker/DatePicker.vue +560 -0
- package/src/components/DatePicker/DateTextInput.vue +409 -0
- package/src/components/DatePicker/tests/DatePicker.spec.ts +266 -0
- package/src/components/DialogBox/DialogBox.stories.ts +1 -1
- package/src/components/ExternalLinks/Accessibilite.mdx +14 -0
- package/src/components/ExternalLinks/Accessibilite.stories.ts +191 -0
- package/src/components/ExternalLinks/AccessibiliteItems.ts +197 -0
- package/src/components/ExternalLinks/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +9 -9
- package/src/components/FileUpload/FileUpload.mdx +165 -0
- package/src/components/FileUpload/FileUpload.stories.ts +429 -0
- package/src/components/FileUpload/FileUpload.vue +195 -0
- package/src/components/FileUpload/FileUploadContent.vue +109 -0
- package/src/components/FileUpload/locales.ts +10 -0
- package/src/components/FileUpload/tests/FileUpload.spec.ts +332 -0
- package/src/components/FileUpload/tests/__snapshots__/FileUpload.spec.ts.snap +7 -0
- package/src/components/FileUpload/useFileDrop.ts +23 -0
- package/src/components/FileUpload/validateFiles.ts +39 -0
- package/src/components/NirField/NirField.stories.ts +1 -1
- package/src/components/NirField/NirField.vue +2 -1
- package/src/components/PasswordField/Accessibilite.mdx +14 -0
- package/src/components/PasswordField/Accessibilite.stories.ts +191 -0
- package/src/components/PasswordField/AccessibiliteItems.ts +184 -0
- package/src/components/PasswordField/PasswordField.vue +3 -3
- package/src/components/PasswordField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PhoneField/PhoneField.vue +44 -60
- package/src/components/PhoneField/tests/PhoneField.spec.ts +0 -15
- package/src/components/RangeField/RangeField.mdx +54 -0
- package/src/components/RangeField/RangeField.stories.ts +189 -0
- package/src/components/RangeField/RangeField.vue +157 -0
- package/src/components/RangeField/RangeSlider/RangeSlider.vue +387 -0
- package/src/components/RangeField/RangeSlider/Tooltip/Tooltip.vue +64 -0
- package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +27 -0
- package/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.ts +100 -0
- package/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.ts +246 -0
- package/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.ts +204 -0
- package/src/components/RangeField/RangeSlider/tests/useThumb.spec.ts +22 -0
- package/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.ts +233 -0
- package/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.ts +150 -0
- package/src/components/RangeField/RangeSlider/tests/useTrack.spec.ts +314 -0
- package/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.ts +32 -0
- package/src/components/RangeField/RangeSlider/types.ts +15 -0
- package/src/components/RangeField/RangeSlider/useMouseSlide.ts +109 -0
- package/src/components/RangeField/RangeSlider/useRangeSlider.ts +126 -0
- package/src/components/RangeField/RangeSlider/useThumb.ts +18 -0
- package/src/components/RangeField/RangeSlider/useThumbKeyboard.ts +84 -0
- package/src/components/RangeField/RangeSlider/useTooltipsNudge.ts +92 -0
- package/src/components/RangeField/RangeSlider/useTrack.ts +116 -0
- package/src/components/RangeField/RangeSlider/vAnimateClick.ts +19 -0
- package/src/components/RangeField/config.ts +7 -0
- package/src/components/RangeField/locales.ts +4 -0
- package/src/components/RangeField/tests/RangeField.spec.ts +224 -0
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +379 -0
- package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +205 -0
- package/src/components/RatingPicker/EmotionPicker/locales.ts +3 -0
- package/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.ts +104 -0
- package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +66 -0
- package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +159 -0
- package/src/components/RatingPicker/NumberPicker/locales.ts +4 -0
- package/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.ts +73 -0
- package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +105 -0
- package/src/components/RatingPicker/Rating.ts +45 -0
- package/src/components/RatingPicker/RatingPicker.mdx +56 -0
- package/src/components/RatingPicker/RatingPicker.stories.ts +515 -0
- package/src/components/RatingPicker/RatingPicker.vue +122 -0
- package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +116 -0
- package/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.ts +95 -0
- package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +36 -0
- package/src/components/RatingPicker/locales.ts +3 -0
- package/src/components/RatingPicker/tests/Rating.spec.ts +104 -0
- package/src/components/RatingPicker/tests/RatingPicker.spec.ts +187 -0
- package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +108 -0
- package/src/components/SearchListField/SearchListField.mdx +74 -0
- package/src/components/SearchListField/SearchListField.stories.ts +126 -0
- package/src/components/SearchListField/SearchListField.vue +194 -0
- package/src/components/SearchListField/locales.ts +5 -0
- package/src/components/SearchListField/tests/SearchListField.spec.ts +323 -0
- package/src/components/SearchListField/types.d.ts +4 -0
- package/src/components/SelectBtnField/SelectBtnField.mdx +50 -0
- package/src/components/SelectBtnField/SelectBtnField.stories.ts +763 -0
- package/src/components/SelectBtnField/SelectBtnField.vue +283 -0
- package/src/components/SelectBtnField/config.ts +11 -0
- package/src/components/SelectBtnField/tests/SelectBtnField.spec.ts +327 -0
- package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +125 -0
- package/src/components/SelectBtnField/types.d.ts +11 -0
- package/src/components/index.ts +8 -1
- package/src/composables/rules/useFieldValidation.ts +172 -44
- package/src/designTokens/index.ts +3 -3
- package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +52 -2
- package/src/utils/calcHumanFileSize/index.ts +12 -0
- package/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.ts +21 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(g,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify"),require("vuetify/components"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/directives/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VTable/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VRadio/index.mjs"),require("vuetify/lib/components/VRadioGroup/index.mjs"),require("vuetify/lib/components/VCard/index.mjs"),require("vuetify/lib/components/VForm/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VDialog/index.mjs"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VTooltip/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs"),require("vuetify/lib/components/VSkeletonLoader/index.mjs"),require("vuetify/lib/components/VAlert/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VBtn/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify","vuetify/components","vuetify/lib/components/transitions/index.mjs","vuetify/lib/directives/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VTable/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VRadio/index.mjs","vuetify/lib/components/VRadioGroup/index.mjs","vuetify/lib/components/VCard/index.mjs","vuetify/lib/components/VForm/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VDialog/index.mjs","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VTooltip/index.mjs","vuetify/lib/components/VSnackbar/index.mjs","vuetify/lib/components/VSkeletonLoader/index.mjs","vuetify/lib/components/VAlert/index.mjs"],e):(g=typeof globalThis<"u"?globalThis:g||self,e(g.DesignSystemV3={},g.Vue,g.VBtn,g.VIcon,g.Vuetify,null,g.transitions,g.vuetifyDirectives,g.VExpansionPanel,g.VTable,g.VGrid,g.VRadio,g.VRadioGroup,g.VCard,g.VForm,g.VSheet,g.VMenu,g.VList,g.VInput,g.VTextField,g.VDivider,g.VChip,g.VSkeletonLoader,g.VDialog,g.VFooter,g.VTabs,g.VTooltip,g.VSnackbar,g.VSkeletonLoader,g.VAlert))})(this,function(g,e,T,v,R,J2,ae,Le,pe,Xt,F,Ke,Jt,ue,Qt,ne,he,$,Ue,Se,Me,ea,ta,aa,na,Ge,We,oa,la,ra){"use strict";const j=e.ref([]);function ve(){return{notificationQueue:j,addNotification:t=>{j.value.some(l=>l.id===t.id)||j.value.push(t)},removeNotification:t=>{j.value=j.value.filter(l=>l.id!==t)},clearQueue:()=>{j.value=[]}}}const ia=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:ve},Symbol.toStringTag,{value:"Module"}));var sa="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z",ca="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",je="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",Ye="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",da="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",ma="M20 10.5C20 14.09 17.09 17 13.5 17H7.83L10.92 20.09L9.5 21.5L4 16L9.5 10.5L10.91 11.91L7.83 15H13.5C16 15 18 13 18 10.5S16 6 13.5 6H6V4H13.5C17.09 4 20 6.91 20 10.5Z",Xe="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",pa="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",Je="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",Qe="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",xe="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",_e="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",ua="M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",Y="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",ha="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",ga="M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",ba="M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",ka="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",oe="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",fe="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",ya="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",Va="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",wa="M19,3H5C3.89,3 3,3.89 3,5V9H5V5H19V19H5V15H3V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M10.08,15.58L11.5,17L16.5,12L11.5,7L10.08,8.41L12.67,11H3V13H12.67L10.08,15.58Z",Ba="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",et="M7,10L12,15L17,10H7Z",tt="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",Ca="M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z",Na="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";const La={label:"Retour"},Sa=e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(o){const a=o,n=e.ref(da),t=e.computed(()=>a.dark??!1),l=e.computed(()=>t.value?"white":"primary"),r=e.computed(()=>t.value?"outlined":"text"),s=e.computed(()=>t.value?"dark":"light"),c=e.computed(()=>t.value?"white":"primary"),i=e.computed(()=>({"px-0":!t.value,"pr-1":!t.value&&!a.hideBackIcon}));return(d,p)=>(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps(d.$attrs,{variant:r.value,theme:s.value,color:c.value,outlined:t.value,class:["vd-back-btn","text-none",i.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[a.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(v.VIcon,{key:0,color:l.value,class:e.normalizeClass([{"ml-n1":t.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(La).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),S=(o,a)=>{const n=o.__vccOpts||o;for(const[t,l]of a)n[t]=l;return n},Ma=S(Sa,[["__scopeId","data-v-86fe77d5"]]);function at(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var va=function(a){return xa(a)&&!_a(a)};function xa(o){return!!o&&typeof o=="object"}function _a(o){var a=Object.prototype.toString.call(o);return a==="[object RegExp]"||a==="[object Date]"||Ea(o)}var Ia=typeof Symbol=="function"&&Symbol.for,Ta=Ia?Symbol.for("react.element"):60103;function Ea(o){return o.$$typeof===Ta}function Za(o){return Array.isArray(o)?[]:{}}function le(o,a){return a.clone!==!1&&a.isMergeableObject(o)?X(Za(o),o,a):o}function $a(o,a,n){return o.concat(a).map(function(t){return le(t,n)})}function Aa(o,a){if(!a.customMerge)return X;var n=a.customMerge(o);return typeof n=="function"?n:X}function Da(o){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(o).filter(function(a){return Object.propertyIsEnumerable.call(o,a)}):[]}function nt(o){return Object.keys(o).concat(Da(o))}function ot(o,a){try{return a in o}catch{return!1}}function Ha(o,a){return ot(o,a)&&!(Object.hasOwnProperty.call(o,a)&&Object.propertyIsEnumerable.call(o,a))}function Pa(o,a,n){var t={};return n.isMergeableObject(o)&&nt(o).forEach(function(l){t[l]=le(o[l],n)}),nt(a).forEach(function(l){Ha(o,l)||(ot(o,l)&&n.isMergeableObject(a[l])?t[l]=Aa(l,n)(o[l],a[l],n):t[l]=le(a[l],n))}),t}function X(o,a,n){n=n||{},n.arrayMerge=n.arrayMerge||$a,n.isMergeableObject=n.isMergeableObject||va,n.cloneUnlessOtherwiseSpecified=le;var t=Array.isArray(a),l=Array.isArray(o),r=t===l;return r?t?n.arrayMerge(o,a,n):Pa(o,a,n):le(a,n)}X.all=function(a,n){if(!Array.isArray(a))throw new Error("first argument should be an array");return a.reduce(function(t,l){return X(t,l,n)},{})};var za=X,Oa=za;const lt=at(Oa);function D(o,a){return e.computed(()=>lt(o,e.toRaw(a.vuetifyOptions)??{}))}function W(o,a="px"){if(!(o==null||o===""))return isNaN(+o)?String(o):`${Number(o)}${a}`}const Ra={label:"Retour en haut"},Fa={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},qa=S(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(o){const a=o,n=D(Fa,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>a.target?`#${a.target}`:null),s=e.computed(()=>{const u=W(a.nudgeRight)||"0";return{bottom:W(a.nudgeBottom)||"0",marginRight:u}}),c=e.computed(()=>l.value?"36px":void 0),i=e.computed(()=>({"d-sr-only":l.value})),d=R.useDisplay();e.watch(()=>d.smAndDown.value,u=>{l.value=u},{immediate:!0});const p=u=>{const f=u.currentTarget;f instanceof Window?t.value=window.scrollY>a.threshold:t.value=f.scrollTop>a.threshold},m=()=>{a.target?(document.getElementById(a.target)||window).scrollTo(0,0):window.scrollTo(0,0)},k=e.computed(()=>a.target?document.getElementById(a.target):window);return e.onMounted(()=>{var u;(u=k.value)==null||u.addEventListener("scroll",p)}),e.onUnmounted(()=>{var u;(u=k.value)==null||u.removeEventListener("scroll",p)}),(u,f)=>(e.openBlock(),e.createBlock(ae.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({...e.unref(n).btn,...u.$attrs},{style:s.value,"min-width":c.value,class:"vd-back-to-top-btn",onClick:m}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(i.value)},[e.renderSlot(u.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Ra).label),1)],!0)],2),e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Xe)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,t.value],[Le.Scroll,p,r.value]])]),_:3}))}}),[["__scopeId","data-v-316d8462"]]),Ka={class:"pl-0"},Ua=["href","aria-label"],Ga={key:1,class:"vd-collapse-list"},Wa={class:"text-subtitle-1 font-weight-bold mb-3"},ja={class:"pl-0"},Ya=["href","aria-label"],Xa=S(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(o){const a=o,{smAndDown:n}=R.useDisplay(),t=e.computed(()=>n.value);return(l,r)=>t.value?(e.openBlock(),e.createBlock(pe.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(pe.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(pe.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.listTitle),1)]),_:1}),e.createVNode(pe.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",Ka,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:"py-3"},[e.createElementVNode("a",{href:s.href,"aria-label":s.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(s.text),9,Ua)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",Ga,[e.createElementVNode("h4",Wa,e.toDisplayString(l.listTitle),1),e.createElementVNode("ul",ja,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:e.normalizeClass({"mb-2":c<l.items.length-1})},[e.createElementVNode("a",{href:s.href,"aria-label":s.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(s.text),9,Ya)],2))),128))])]))}}),[["__scopeId","data-v-a4e2c3b6"]]),Ja={key:0,class:"vd-contextual-menu"},Qa=["href","onClick","textContent"],en=S(e.defineComponent({__name:"ContextualMenu",props:e.mergeModels({items:{}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue");e.onMounted(()=>{!a.value&&window.location.hash&&(a.value=window.location.hash),addEventListener("hashchange",()=>{a.value=window.location.hash})}),e.watch(a,(t,l)=>{t&&t!==l&&n(t)},{immediate:!0});function n(t){window.location.hash!==t&&(window.location.hash=t,a.value=t)}return(t,l)=>t.items.length?(e.openBlock(),e.createElementBlock("ul",Ja,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,({text:r,hash:s,level:c})=>(e.openBlock(),e.createElementBlock("li",{key:s},[e.createElementVNode("a",{href:s,class:e.normalizeClass([{"text-primary active":a.value===s,"text-medium-emphasis":a.value!==s,"ps-4":c===2,"ps-6":c===3,"ps-9":c===4,"ps-12":c===5,"ps-14":c===6},"d-flex align-center text-decoration-none text-body-1 px-4 py-2"]),onClick:e.withModifiers(i=>n(s),["prevent","stop"]),textContent:e.toDisplayString(r)},null,10,Qa)]))),128))])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-4af557c1"]]),Ie={color:"primary",height:"auto",minHeight:"44px",class:"text-wrap"},tn={banner:{rounded:!0,elevation:2,class:"pa-8"},closeBtn:{icon:!0,variant:"text",width:"32px",height:"32px",class:"ml-4"},backBtn:{icon:!0,variant:"text",width:"32px",height:"32px",class:"ml-4"},customizeBtn:{...Ie,variant:"outlined"},rejectBtn:{...Ie},acceptBtn:{...Ie}},K={label:"Gestion des cookies",title:"À propos des cookies",closeBtn:"Continuer sans accepter",backBtn:"Précédent",description:"Ce site utilise des cookies qui nous permettent de vous proposer une expérience en ligne optimale en enregistrant certaines informations lors de votre navigation.",moreInformationLabel:"En savoir plus",customizeBtnText:"Personnaliser mes choix",rejectBtnText:"Continuer sans accepter",acceptBtnText:"Tout accepter"};function rt(o,a,n=[]){return typeof o[a]=="function"?o[a](...n):o[a]}const an={default:"Le champ est requis."};function nn(o=an){return a=>{let n;return Array.isArray(a)?n=a.length!==0:n=!!(typeof a=="string"?a.trim():a),n||rt(o,"default")}}const Te=nn(),on=[{label:"Dénomination du cookie",width:"180px"},{label:"Finalité",width:"328px"},{label:"Durée de conservation",width:"180px"}],it=S(e.defineComponent({__name:"CookiesTable",props:{items:{}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(Xt.VTable,{class:"vd-cookie-table bg-transparent"},{default:e.withCtx(()=>[e.createElementVNode("thead",null,[e.createElementVNode("tr",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(on),(t,l)=>(e.openBlock(),e.createElementBlock("th",{key:l,style:e.normalizeStyle({width:t.width}),class:"text-left",scope:"col"},e.toDisplayString(t.label),5))),128))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,t=>(e.openBlock(),e.createElementBlock("tr",{key:t.name},[e.createElementVNode("td",null,e.toDisplayString(t.name),1),e.createElementVNode("td",null,[e.renderSlot(a.$slots,"cookie-description-"+t.name,{cookie:t},()=>[e.createTextVNode(e.toDisplayString(t.description),1)],!0)]),e.createElementVNode("td",null,e.toDisplayString(t.conservation),1)]))),128))])]),_:3}))}}),[["__scopeId","data-v-395de867"]]),U={essentials:{title:"Cookies requis",description:"Ces cookies sont indispensables au fonctionnement du site et ne peuvent être désactivés."},functional:{title:"Cookies fonctionnels",description:"Ces cookies sont utilisés pour capturer vos préférences sur notre site. Ils permettent de vous assurer un confort dans votre navigation."},analytics:{title:"Cookies d’analyse",description:"Ces cookies sont dédiés à l’amélioration de notre site en analysant votre expérience d’utilisation. Ils nous sont très utiles pour vous proposer un site de bonne qualité."},showInformation:"Afficher les cookies",hideInformation:"Masquer les cookies",reject:"Refuser",accept:"Accepter",fieldLabel:o=>`Accepter les cookies de type ${o}, ce champ est requis.`},ln={class:"vd-cookies-information"},rn={class:"text-subtitle-1 font-weight-bold mb-2"},sn={class:"mb-4"},cn={class:"mb-1"},st=S(e.defineComponent({__name:"CookiesInformation",props:e.mergeModels({type:{},tableItems:{}},{modelValue:{type:Boolean},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue"),n=e.computed(()=>{if(a.value===!0)return"accept";if(a.value===!1)return"reject"}),t=e.ref(!1);function l(r){t.value=r.newState==="open"}return(r,s)=>(e.openBlock(),e.createElementBlock("div",ln,[e.createElementVNode("h2",rn,e.toDisplayString(e.unref(U)[r.type].title),1),e.createElementVNode("p",sn,e.toDisplayString(e.unref(U)[r.type].description),1),e.createElementVNode("details",{onToggle:l},[e.createElementVNode("summary",cn,[e.createTextVNode(e.toDisplayString(t.value?e.unref(U).hideInformation:e.unref(U).showInformation)+" ",1),e.createVNode(v.VIcon,{class:"mr-2","data-test":"chevron"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(ua):e.unref(Qe)),1)]),_:1})]),e.createVNode(it,{items:r.tableItems,class:"mb-2"},e.createSlots({_:2},[e.renderList(r.$slots,(c,i)=>({name:i,fn:e.withCtx(d=>[e.renderSlot(r.$slots,i,e.normalizeProps(e.guardReactiveProps(d??{})),void 0,!0)])}))]),1032,["items"])],32),r.type!=="essentials"?(e.openBlock(),e.createBlock(Jt.VRadioGroup,{key:0,"model-value":n.value,rules:[e.unref(Te)],"data-test-id":"radio-group",inline:"",label:e.unref(U).fieldLabel(e.unref(U)[r.type].title),"hide-details":"auto",class:"vd-cookies-information__radio-group","onUpdate:modelValue":s[0]||(s[0]=c=>a.value=c==="accept")},{default:e.withCtx(()=>[e.createVNode(F.VSpacer),e.createVNode(Ke.VRadio,{label:e.unref(U).reject,value:"reject",color:"primary"},null,8,["label"]),e.createVNode(Ke.VRadio,{label:e.unref(U).accept,value:"accept",class:"mr-0",color:"primary"},null,8,["label"])]),_:1},8,["model-value","rules","label"])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-b88c0006"]]),re={title:"Gestion des cookies",description:"Définissez vos préférences de collecte et de traitement de vos données sur ce site.",cookieDefinition:"Un cookie est un petit fichier texte déposé sur votre terminal (ordinateur, tablette ou mobile) lors de la visite d’un site ou lors de la consultation d’une publicité. Il contient plusieurs données : le nom du service qui l’a déposé, un identifiant sous forme de numéro unique, une valeur et éventuellement une date d’expiration.",rejectAll:"Tout refuser",acceptAll:"Tout accepter",saveBtn:"Enregistrer mes choix"},dn={class:"mb-4"},mn={class:"mb-4"},pn={class:"d-flex flex-wrap justify-end mx-n2 mt-n2 mb-6"},un={class:"d-flex mt-16"},ct=e.defineComponent({__name:"CookiesSelection",props:{items:{}},emits:["submit"],setup(o,{emit:a}){const n=o,t=a,l=e.ref(null),r=e.ref({essentials:void 0,functional:void 0,analytics:void 0}),s=e.computed(()=>{const d={};return Object.entries(r.value).forEach(([p,m])=>{p!="essentials"&&n.items[p]&&(d[p]=m)}),d});function c(d){r.value.functional=d,r.value.analytics=d}async function i(){const{valid:d}=await l.value.validate();d&&t("submit",s.value)}return(d,p)=>d.items?(e.openBlock(),e.createBlock(ue.VCard,{key:0,elevation:"0",color:"transparent",class:"vd-cookies-card"},{default:e.withCtx(()=>[e.createVNode(Qt.VForm,{ref_key:"form",ref:l},{default:e.withCtx(()=>[e.createElementVNode("p",dn,e.toDisplayString(e.unref(re).description),1),e.createElementVNode("p",mn,e.toDisplayString(e.unref(re).cookieDefinition),1),e.createElementVNode("div",pn,[e.createVNode(T.VBtn,{"data-test-id":"reject-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[0]||(p[0]=m=>c(!1))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).rejectAll),1)]),_:1}),e.createVNode(T.VBtn,{"data-test-id":"accept-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[1]||(p[1]=m=>c(!0))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).acceptAll),1)]),_:1})]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.items,(m,k)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:k},[m?(e.openBlock(),e.createBlock(st,{key:0,modelValue:r.value[k],"onUpdate:modelValue":u=>r.value[k]=u,type:k,"table-items":m,class:"mb-6"},e.createSlots({_:2},[e.renderList(d.$slots,(u,f)=>({name:f,fn:e.withCtx(V=>[String(f).startsWith("cookie-description")?e.renderSlot(d.$slots,f,e.mergeProps({key:0,ref_for:!0},V??{})):e.createCommentVNode("",!0)])}))]),1032,["modelValue","onUpdate:modelValue","type","table-items"])):e.createCommentVNode("",!0)],64))),128)),e.createElementVNode("div",un,[e.createVNode(F.VSpacer),e.createVNode(T.VBtn,{"data-test-id":"submit",color:"primary",onClick:i},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).saveBtn),1)]),_:1})])]),_:3},512)]),_:3})):e.createCommentVNode("",!0)}}),hn={class:"vd-cookie-banner__inner"},fn={class:"d-flex align-start flex-nowrap pa-0 mb-6"},gn={class:"text-h5 font-weight-bold"},bn={class:"vd-cookie-banner-content"},kn={key:0},yn={key:1},Vn={class:"vd-cookie-banner-action-ctn d-flex align-center flex-wrap max-width-none mt-6 ga-4"},wn=S(e.defineComponent({__name:"CookieBanner",props:e.mergeModels({vuetifyOptions:{},items:{}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:e.mergeModels(["reject","accept","customize","submit"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=D(tn,n),l=a,r=e.useModel(o,"modelValue"),s=e.ref(!1),c=R.useDisplay(),i=e.computed(()=>c.smAndDown.value?"100%":"auto");function d(){r.value=!1,l("reject")}function p(){r.value=!1,l("accept")}function m(){n.items&&(s.value=!0),l("customize")}function k(u){l("submit",u),s.value=!1,r.value=!1}return(u,f)=>r.value?(e.openBlock(),e.createBlock(e.Teleport,{key:0,to:"body"},[e.createVNode(ne.VSheet,e.mergeProps(e.unref(t).banner,{"aria-label":e.unref(K).label,class:"vd-cookie-banner"}),{default:e.withCtx(()=>[e.createElementVNode("div",hn,[e.createElementVNode("div",fn,[e.createElementVNode("h2",gn,e.toDisplayString(e.unref(K).title),1),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).spacer)),null,16),s.value?(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({key:0},e.unref(t).backBtn,{"aria-label":e.unref(K).backBtn,onClick:f[0]||(f[0]=V=>s.value=!1)}),{default:e.withCtx(()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ma)),1)]),_:1},16)]),_:1},16,["aria-label"])):(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({key:1},e.unref(t).closeBtn,{"aria-label":e.unref(K).closeBtn,onClick:d}),{default:e.withCtx(()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Y)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),e.createElementVNode("div",bn,[e.createVNode(e.Transition,{name:"height"},{default:e.withCtx(()=>[s.value&&u.items?(e.openBlock(),e.createElementBlock("div",kn,[e.createVNode(ct,{items:u.items,onSubmit:k},e.createSlots({_:2},[e.renderList(u.$slots,(V,w)=>({name:w,fn:e.withCtx(L=>[e.renderSlot(u.$slots,w,e.normalizeProps(e.guardReactiveProps(L||{})),void 0,!0)])}))]),1032,["items"])])):(e.openBlock(),e.createElementBlock("div",yn,[e.renderSlot(u.$slots,"default",{},()=>[e.createElementVNode("p",null,e.toDisplayString(e.unref(K).description),1)],!0),e.createElementVNode("div",Vn,[e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).actionsSpacer)),null,16),e.createVNode(T.VBtn,e.mergeProps(e.unref(t).customizeBtn,{"data-test-id":"customize",width:i.value,onClick:m}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(K).customizeBtnText),1)]),_:1},16,["width"]),e.createVNode(T.VBtn,e.mergeProps(e.unref(t).rejectBtn,{"data-test-id":"reject",width:i.value,onClick:d}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(K).rejectBtnText),1)]),_:1},16,["width"]),e.createVNode(T.VBtn,e.mergeProps(e.unref(t).acceptBtn,{"data-test-id":"accept",width:i.value,onClick:p}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(K).acceptBtnText),1)]),_:1},16,["width"])])]))]),_:3})])])]),_:3},16,["aria-label"])])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-f308fef2"]]);function Bn(o){const a=document.createElement("textarea");a.value=o,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a);const n=document.getSelection();let t=!1;n&&(t=n.rangeCount>0?n.getRangeAt(0):!1),a.select(),navigator.clipboard?navigator.clipboard.writeText(o):document.execCommand("copy"),document.body.removeChild(a),n&&t&&(n.removeAllRanges(),n.addRange(t))}const Cn={tooltip:"Texte copié !"},Nn={menu:{location:"end center",offset:16,zIndex:8,contentClass:"vd-copy-tooltip-menu text-white text-body-2 ml-2"},btn:{icon:!0,variant:"text",density:"comfortable"},icon:{color:"grey-darken-20"}},Ln=["id"],Sn=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(o,{expose:a}){const n=o,t=D(Nn,n),l=e.ref(!1),r=ha;function s(){const c=typeof n.textToCopy=="function"?n.textToCopy():n.textToCopy;Bn(c),!n.hideTooltip&&setTimeout(()=>{l.value=!1},n.tooltipDuration)}return a({copy:s,tooltip:l}),(c,i)=>(e.openBlock(),e.createElementBlock("div",{id:n.ariaOwns,class:"vd-copy-btn"},[e.createVNode(he.VMenu,e.mergeProps(e.unref(t).menu,{id:n.ariaOwns,modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=d=>l.value=d),disabled:n.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(T.VBtn,e.mergeProps({...d,...e.unref(t).btn},{"aria-label":n.ariaLabel,"aria-owns":n.ariaOwns,"data-test-id":n.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)])]),_:2},1040,["aria-label","aria-owns","data-test-id"])]),default:e.withCtx(()=>[e.renderSlot(c.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Cn).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,Ln))}}),Mn={class:"d-sr-only"},vn={key:0,class:"d-flex flex-column align-end py-1 mr-1"},dt=S(e.defineComponent({__name:"SyBtnSelect",props:{modelValue:{type:[Object,String,null],default:null},menuItems:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},required:{type:Boolean,default:!1},menuId:{type:String,default:"custom-btn-select-menu"},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},primaryInfo:{type:String,default:"Information principale"},secondaryInfo:{type:String,default:void 0},hideIcon:{type:Boolean,default:!1},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},iconOnly:{type:Boolean,default:!1},options:{type:Object,default:()=>({menu:{},btn:{},list:{}})}},emits:["update:modelValue","logout"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useSlots(),{smAndDown:s}=R.useDisplay(),c=e.ref(!1),i=e.ref(t.modelValue),d=()=>{c.value=!c.value},p=e.ref(null),m=e.ref("");e.onMounted(()=>{p.value&&!w.value&&(m.value=`${p.value.getBoundingClientRect().width}px`)});const k=h=>{i.value=h,l("update:modelValue",h),c.value=!1},u=e.computed(()=>t.menuItems.map(h=>typeof h=="string"?{[t.textKey]:h,[t.valueKey]:h}:h)),f=e.computed(()=>t.hideIcon?"pa-1 pa-sm-2":w.value?"pa-0":"pa-1 pa-sm-3"),V=e.computed(()=>!!(r.default||!t.hideLogoutBtn)),w=e.computed(()=>t.isMobileView||s.value||t.iconOnly);e.watch(()=>t.modelValue,h=>{i.value=h});const L=e.ref(`custom-btn-select-${Math.random().toString(36).substring(7)}`);return a({isOpen:c,formattedItems:u,selectedItem:i}),(h,C)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"buttonRef",ref:p,class:"vd-user-menu-btn-ctn d-inline-block"},[e.createVNode(he.VMenu,e.mergeProps({id:L.value,disabled:!V.value,location:"bottom end",transition:"fade-transition"},t.options.menu,{"z-index":"9999"}),{activator:e.withCtx(({props:b})=>[e.createVNode(T.VBtn,e.mergeProps({id:L.value,class:[f.value,"vd-user-menu-btn"],height:o.iconOnly?"auto":void 0,icon:o.iconOnly,size:o.iconOnly?"x-large":"default",width:o.iconOnly?"auto":void 0},{...b,...t.options.btn},{onClick:d}),{default:e.withCtx(()=>{var M,B,I,x;return[e.createElementVNode("div",{class:e.normalizeClass([["text-"+((M=t==null?void 0:t.options.btn)==null?void 0:M.color)],"d-flex align-center"])},[e.renderSlot(h.$slots,"prepend-icon",{},void 0,!0),e.createElementVNode("span",Mn,e.toDisplayString(t.label),1),!w.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",vn,[e.createElementVNode("span",{class:e.normalizeClass([`text-${(B=t==null?void 0:t.options.btn)==null?void 0:B.textColor}`,"font-weight-bold"])},e.toDisplayString(t.primaryInfo),3),e.createElementVNode("span",{class:e.normalizeClass([`text-${(I=t==null?void 0:t.options.btn)==null?void 0:I.textColor}`,"text-grey text-darken-2 font-weight-medium"])},e.toDisplayString(t.secondaryInfo),3)])):e.createCommentVNode("",!0),w.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass([`text-${(x=t==null?void 0:t.options.btn)==null?void 0:x.textColor}`,"font-weight-bold text-caption"])},e.toDisplayString(t.primaryInfo),3)):e.createCommentVNode("",!0),e.renderSlot(h.$slots,"append-icon",{},void 0,!0)],2)]}),_:2},1040,["id","class","height","icon","size","width"])]),default:e.withCtx(()=>[e.renderSlot(h.$slots,"content",{},()=>[V.value?(e.openBlock(),e.createBlock($.VList,e.normalizeProps(e.mergeProps({key:0},t.options.list)),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(b,M)=>{var B;return e.openBlock(),e.createBlock($.VListItem,e.mergeProps({key:M,class:`text-${(B=t==null?void 0:t.options.list)==null?void 0:B.textColor}`,ref_for:!0},t.options.list,{href:b.link,onClick:I=>k(b)}),{default:e.withCtx(()=>[e.createVNode($.VListItemTitle,e.mergeProps({ref_for:!0},t.options.list),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b[t.textKey]),1)]),_:2},1040)]),_:2},1040,["class","href","onClick"])}),128)),e.renderSlot(h.$slots,"default",{},void 0,!0),e.renderSlot(h.$slots,"footer-list-item",{},void 0,!0)]),_:3},16)):e.createCommentVNode("",!0)],!0)]),_:3},16,["id","disabled"])],512))}}),[["__scopeId","data-v-27dd5864"]]),xn={menu:{color:"primary"},option:{color:"primary"}},_n=["onKeydown"],mt=S(e.defineComponent({__name:"SyInputSelect",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},textKey:{default:"text"},valueKey:{default:"value"},label:{default:"Sélectionnez une option"},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},errorMessages:{default:()=>[]},isHeaderToolbar:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=D(xn,t),r=n,s=e.ref(!1),c=e.ref(t.modelValue),i=e.ref(!1),d=()=>{s.value=!s.value},p=()=>{s.value=!1},m=e.computed(()=>(t.required||t.errorMessages.length>0)&&!c.value),k=e.ref(`sy-input-select-${Math.random().toString(36).substring(7)}`),u=B=>{c.value=B,r("update:modelValue",B),s.value=!1},f=B=>B[t.textKey],V=e.computed(()=>c.value&&typeof c.value=="object"?c.value[t.textKey]:t.label);e.watch(()=>t.modelValue,B=>{c.value=B}),e.watch([s,i],([B,I])=>{B?i.value=I:i.value=!c.value&&m.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,B=>{b.value=B,i.value=B.length>0});const w=e.ref(null),L=e.ref("");e.onMounted(()=>{e.watch([()=>s.value,()=>{var B;return(B=w.value)==null?void 0:B.getBoundingClientRect().width}],([B,I])=>{if(B&&I){const x=I+(t.isHeaderToolbar?32:0);L.value=`${x}`}})});const h=e.computed(()=>t.outlined&&i.value?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined error text-error":t.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),C=e.computed(()=>t.items.map(B=>typeof B=="string"?{[t.textKey]:B,[t.valueKey]:B}:B)),b=e.ref(t.errorMessages),M=()=>t.required&&!c.value?(b.value=["Le champ est requis."],!1):t.errorMessages.length>0?(b.value=t.errorMessages,!1):(b.value=[],!0);return a({isOpen:s,closeList:p,selectItem:u,selectedItem:c,getItemText:f}),(B,I)=>(e.openBlock(),e.createBlock(Ue.VInput,{id:k.value,modelValue:c.value,"onUpdate:modelValue":I[1]||(I[1]=x=>c.value=x),"error-messages":b.value,label:t.label,title:t.label,role:"menu",onClick:M},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"menu",ref:w,class:e.normalizeClass(["sy-input-select",h.value,"text-"+e.unref(l).menu.color]),role:"menu",tabindex:"0",onClick:d,onKeydown:[e.withKeys(e.withModifiers(d,["prevent"]),["enter"]),e.withKeys(e.withModifiers(d,["prevent"]),["space"])]},[e.createElementVNode("span",null,e.toDisplayString(V.value),1),i.value?(e.openBlock(),e.createBlock(v.VIcon,{key:0,class:"ml-2",color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oe)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(v.VIcon,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Qe)),1)]),_:1})],42,_n)),[[Le.ClickOutside,p]]),s.value?(e.openBlock(),e.createBlock($.VList,e.mergeProps({key:0,"aria-label":t.label,"is-header-toolbar":t.isHeaderToolbar,style:`min-width:${L.value}px; ${t.outlined?"top: 36px;":"top: 30px;"}`,title:t.label,class:"v-list"},e.unref(l).list,{onKeydown:I[0]||(I[0]=e.withKeys(e.withModifiers(x=>s.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,(x,_)=>(e.openBlock(),e.createBlock($.VListItem,e.mergeProps({key:_,ref_for:!0,ref:"options-"+_,"aria-selected":c.value===x,"base-color":e.unref(l).option.color,tabindex:_+1,class:"v-list-item",role:"option"},e.unref(l).option,{onClick:E=>u(x)}),{default:e.withCtx(()=>[e.createVNode($.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f(x)),1)]),_:2},1024)]),_:2},1040,["aria-selected","base-color","tabindex","onClick"]))),128))]),_:1},16,["aria-label","is-header-toolbar","style","title"])):e.createCommentVNode("",!0)]),_:1},8,["id","modelValue","error-messages","label","title"]))}}),[["__scopeId","data-v-c84cf88c"]]),pt=S(e.defineComponent({__name:"SySelect",props:{modelValue:{type:[Object,String],default:null},items:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},errorMessages:{type:[String,Array],default:()=>[]},required:{type:Boolean,default:!1},menuId:{type:String,default:"sy-select-menu"},outlined:{type:Boolean,default:!0},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(!1),s=e.ref(t.modelValue),c=e.ref(!1),i=e.ref(0),d=e.ref(null),p=()=>{r.value=!r.value},m=()=>{r.value=!1},k=e.ref(`sy-select-${Math.random().toString(36).substring(7)}`),u=h=>{s.value=h,l("update:modelValue",h),r.value=!1},f=h=>h[t.textKey],V=e.computed(()=>s.value&&typeof s.value=="object"?s.value[t.textKey]:t.label),w=e.computed(()=>t.items.map(h=>typeof h=="string"?{[t.textKey]:h,[t.valueKey]:h}:h)),L=e.computed(()=>(t.required||t.errorMessages.length>0)&&!s.value);return e.watch(()=>t.modelValue,h=>{s.value=h}),e.watch([r,c],([h,C])=>{h?c.value=C:c.value=!s.value&&L.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,h=>{c.value=h.length>0}),e.onMounted(()=>{d.value&&(i.value=d.value.offsetWidth+64)}),a({isOpen:r,closeList:m}),(h,C)=>{var b;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(Se.VTextField,{id:k.value,ref:"input",modelValue:V.value,"onUpdate:modelValue":C[0]||(C[0]=M=>V.value=M),title:"Sélectionnez une option",color:"primary",tabindex:"0",readonly:"",label:s.value?o.label:"","aria-label":s.value?o.label:"Sélectionnez une option","error-messages":o.errorMessages,variant:o.outlined?"outlined":"underlined",rules:L.value?["Le champ est requis."]:[],class:"sy-select",style:e.normalizeStyle(c.value?{minWidth:`${i.value+18}px`}:{minWidth:`${i.value}px`}),onClick:p,onKeydown:[e.withKeys(e.withModifiers(p,["prevent"]),["enter"]),e.withKeys(e.withModifiers(p,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[c.value?(e.openBlock(),e.createBlock(v.VIcon,{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oe)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(v.VIcon,{class:"arrow"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(et)),1)]),_:1})]),_:1},8,["id","modelValue","label","aria-label","error-messages","variant","rules","style","onKeydown"])),[[Le.ClickOutside,m]]),e.createElementVNode("span",{ref_key:"labelRef",ref:d,class:"hidden-label"},e.toDisplayString(o.label),513),r.value?(e.openBlock(),e.createBlock($.VList,{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(b=h.$refs.input)==null?void 0:b.$el.offsetWidth}px`),onKeydown:C[1]||(C[1]=e.withKeys(e.withModifiers(M=>r.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,(M,B)=>(e.openBlock(),e.createBlock($.VListItem,{key:B,ref_for:!0,ref:"options-"+B,role:"option",class:"v-list-item","aria-selected":s.value===M,tabindex:B+1,onClick:I=>u(M)},{default:e.withCtx(()=>[e.createVNode($.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f(M)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-0b2da95c"]]),ge=e.defineComponent({__name:"SyTextField",props:{prependIcon:{},appendIcon:{},prependInnerIcon:{},appendInnerIcon:{},variantStyle:{default:"outlined"},color:{},isClearable:{type:Boolean},showDivider:{type:Boolean},label:{},required:{type:Boolean},errorMessages:{}},setup(o,{expose:a}){const n=o,t={info:fe,success:pa,warning:Ye,error:oe,close:Y},l=e.ref(""),r=e.ref(!1),s=e.computed(()=>n.required&&r.value&&!l.value||n.errorMessages&&n.errorMessages.length>0),c=()=>{r.value=!0},i=e.computed(()=>n.appendInnerIcon==="error"||n.appendInnerIcon==="success"?n.appendInnerIcon:"black"),d={thickness:2,length:"25px",color:"primary",opacity:"1"};return a({appendInnerIconColor:i}),(p,m)=>(e.openBlock(),e.createBlock(Se.VTextField,{modelValue:l.value,"onUpdate:modelValue":m[0]||(m[0]=k=>l.value=k),"aria-label":n.label,"clear-icon":t.close,clearable:n.isClearable,color:n.color,"error-messages":n.errorMessages,label:n.label,rules:n.required?["Le champ est requis."]:[],variant:n.variantStyle,onBlur:c},{prepend:e.withCtx(()=>[e.renderSlot(p.$slots,"prepend",{},()=>[n.prependIcon?(e.openBlock(),e.createBlock(v.VIcon,{key:0,icon:t[n.prependIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),append:e.withCtx(()=>[e.renderSlot(p.$slots,"append",{},()=>[n.appendIcon?(e.openBlock(),e.createBlock(v.VIcon,{key:0,icon:t[n.appendIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),"prepend-inner":e.withCtx(()=>[e.renderSlot(p.$slots,"prepend-inner",{},()=>[n.prependInnerIcon?(e.openBlock(),e.createBlock(v.VIcon,{key:0,icon:t[n.prependInnerIcon]},null,8,["icon"])):e.createCommentVNode("",!0)]),n.showDivider?(e.openBlock(),e.createBlock(Me.VDivider,e.mergeProps({key:0,class:"mt-4 pa-1"},d,{vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(p.$slots,"append-inner",{},()=>[s.value?(e.openBlock(),e.createBlock(v.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oe)),1)]),_:1})):e.createCommentVNode("",!0),n.appendInnerIcon?(e.openBlock(),e.createBlock(v.VIcon,{key:1,class:e.normalizeClass({"error-icon":n.appendInnerIcon==="error"}),color:i.value,icon:t[n.appendInnerIcon]},null,8,["class","color","icon"])):e.createCommentVNode("",!0)])]),details:e.withCtx(()=>[e.renderSlot(p.$slots,"details")]),_:3},8,["modelValue","aria-label","clear-icon","clearable","color","error-messages","label","rules","variant"]))}}),In={loadingLabel:"Le contenu est en cours de chargement."},Tn={icon:{size:24,class:"mr-4 mt-2"},chip:{class:"mt-1"},actionBtn:{variant:"text",size:"small",color:"secondary",class:"text-body-1 pa-0"}},En={placeholder:"…"},Zn={class:"vd-data-list-item d-flex flex-wrap"},$n={class:"vd-data-list-item-content"},An={class:"vd-data-list-item-value"},Dn=["innerHTML"],Hn=["textContent"],Pn=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:En.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(o,{emit:a}){const n=o,t=a,l=D(Tn,n),r=R.useTheme(),s=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),c=e.computed(()=>typeof n.value=="number"?isNaN(n.value)?n.placeholder:n.value.toString():n.value||n.placeholder);return(i,d)=>(e.openBlock(),e.createElementBlock("li",Zn,[e.renderSlot(i.$slots,"icon",{},()=>[i.icon?(e.openBlock(),e.createBlock(v.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",$n,[e.createElementVNode("div",{class:e.normalizeClass({"vd-row":i.row})},[e.createElementVNode("div",{class:"vd-data-list-item-label text-caption",style:e.normalizeStyle({color:s.value})},e.toDisplayString(i.label),5),e.createElementVNode("div",An,[e.renderSlot(i.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:c.value})),()=>[i.chip?(e.openBlock(),e.createBlock(ea.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(l).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.value),1)]),_:1},16)):i.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:c.value},null,8,Dn)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(c.value)},null,8,Hn))],!0)])],2),e.renderSlot(i.$slots,"action",{},()=>[i.action?(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({key:0},e.unref(l).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=p=>t("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),ut=S(Pn,[["__scopeId","data-v-bca44d3d"]]),J=S(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createBlock(e.unref(ta.VSkeletonLoader),e.mergeProps(n.$attrs,{width:a.width,height:a.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-abf44671"]]),zn={"aria-hidden":"true",class:"vd-data-list-loading"},On=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(o){const a=o,n=e.computed(()=>a.row?"150px":"90px");return(t,l)=>(e.openBlock(),e.createElementBlock("div",zn,[o.heading?(e.openBlock(),e.createBlock(J,{key:0,width:"100px",height:"1.5rem",class:"mb-4"})):e.createCommentVNode("",!0),e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==o.itemsNumber},"vd-data-list-loading-item"])},[o.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(J,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(J,{width:n.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function Ee(o){return{widthStyles:e.computed(()=>({maxWidth:W(o.maxWidth),minWidth:W(o.minWidth),width:W(o.width??"100%")}))}}const Rn=["aria-label"],Fn={key:1},qn={key:0},ht=S(e.defineComponent({__name:"DataList",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},listTitle:{type:String,default:void 0},titleClass:{type:String,default:"text-subtitle-1 font-weight-bold mb-3"},row:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},loading:{type:Boolean,default:!1},itemsNumberLoading:{type:Number,default:1},headingLoading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1},maxWidth:{type:String,default:void 0},minWidth:{type:String,default:void 0},width:{type:String,default:void 0}},emits:["click:item-action"],setup(o,{emit:a}){const n=o,{widthStyles:t}=Ee(n),l=a,r=e.computed(()=>n.loading?In.loadingLabel:void 0),s=i=>{var d;if(!(!i||!n.icons))return(d=n.icons)==null?void 0:d[i]},c=(i,d)=>[{"mb-2":i!==n.items.length-1},d];return(i,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(t)),class:"vd-data-list"},[e.createVNode(ae.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[o.loading?(e.openBlock(),e.createBlock(On,{key:0,"items-number":o.itemsNumberLoading,heading:o.headingLoading,"title-class":o.titleClass,row:o.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",Fn,[e.renderSlot(i.$slots,"title",{},()=>[o.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(o.titleClass)},e.toDisplayString(o.listTitle),3)):e.createCommentVNode("",!0)],!0),o.items.length?(e.openBlock(),e.createElementBlock("ul",qn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(p,m)=>(e.openBlock(),e.createBlock(ut,{key:m,label:p.key,value:p.value,action:p.action,chip:p.chip,row:o.row,"render-html-value":o.renderHtmlValue,icon:s(p.icon),placeholder:o.placeholder,"vuetify-options":p.options,class:e.normalizeClass([c(m,p.class),"vd-data-list-item text-body-1"]),"onClick:action":k=>l("click:item-action",m)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,Rn))}}),[["__scopeId","data-v-674d3ac2"]]),Kn={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},ft=e.defineComponent({__name:"DataListGroup",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},itemWidth:{type:String,default:"200px"},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item"],setup(o,{emit:a}){const n=o,t=a,l=(r,s)=>{t("click:list-item",{dataListIndex:r,itemIndex:s})};return(r,s)=>(e.openBlock(),e.createElementBlock("div",Kn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(c,i)=>(e.openBlock(),e.createBlock(ht,{key:`vd-data-list-${i}`,loading:n.loading,"render-html-value":n.renderHtmlValue,"list-title":c.title,items:c.items,"items-number-loading":c.itemsNumberLoading,"heading-loading":c.headingLoading,width:n.itemWidth,icons:n.icons,class:"ma-4","onClick:itemAction":d=>l(i,d)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}}),Un={card:{class:"pa-6"},cardTitle:{class:"d-flex align-start flex-nowrap pa-0 mb-6 mr-6"},closeBtn:{icon:!0,elevation:0,width:"32px",height:"32px",class:"mt-n2 mr-n2 ml-4"},actionsCtn:{class:"d-flex flex-wrap mt-6"},cancelBtn:{color:"primary",variant:"text"},confirmBtn:{color:"primary"}},Ze={closeBtn:"Fermer la boîte de dialogue",cancelBtn:"Annuler",confirmBtn:"Valider"},Gn={key:0,class:"text-h6 font-weight-bold"},Wn=e.defineComponent({__name:"DialogBox",props:e.mergeModels({title:{default:void 0},width:{default:"800px"},cancelBtnText:{default:Ze.cancelBtn},confirmBtnText:{default:Ze.confirmBtn},hideActions:{type:Boolean,default:!1},persistent:{type:Boolean,default:!1},vuetifyOptions:{}},{modelValue:{type:Boolean,default:!1},modelModifiers:{}}),emits:e.mergeModels(["cancel","confirm","update:modelValue"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),t=e.ref(void 0),l=D(Un,a),r=Y;async function s(){var m;const i=(m=t==null?void 0:t.value)==null?void 0:m.$el;return i?Array.from(i.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')).filter(k=>!k.hasAttribute("disabled")&&!k.getAttribute("aria-hidden")):[]}async function c(i){const d=await s(),p=d.findIndex(u=>u===i.target),m=p===-1,k=d.length-1;!i.shiftKey&&(m||p===k)?(i.preventDefault(),d[0].focus()):i.shiftKey&&(m||p===0)&&(i.preventDefault(),d[k].focus())}return(i,d)=>(e.openBlock(),e.createBlock(aa.VDialog,e.mergeProps({modelValue:n.value,"onUpdate:modelValue":d[3]||(d[3]=p=>n.value=p)},i.$attrs,{width:a.width,persistent:a.persistent,"retain-focus":!1,"aria-modal":"true",class:"vd-dialog-box",onKeydown:e.withKeys(c,["tab"])}),{default:e.withCtx(()=>[e.createVNode(ue.VCard,e.mergeProps(e.unref(l).card,{id:"dialogContent",ref_key:"dialogContent",ref:t,"aria-labelledby":a.title?a.title:"dialogContent"}),{default:e.withCtx(()=>[e.createVNode(ue.VCardTitle,e.normalizeProps(e.guardReactiveProps(e.unref(l).cardTitle)),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"title",{},()=>[i.title?(e.openBlock(),e.createElementBlock("h2",Gn,e.toDisplayString(a.title),1)):e.createCommentVNode("",!0)],!0),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).spacer)),null,16),a.persistent?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({key:0},e.unref(l).closeBtn,{"aria-label":e.unref(Ze).closeBtn,onClick:d[0]||(d[0]=p=>n.value=!1)}),{default:e.withCtx(()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),_:3},16),e.renderSlot(i.$slots,"default",{},void 0,!0),a.hideActions?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0},e.unref(l).actionsCtn,{class:"vd-dialog-box-actions-ctn"}),[e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).actionsSpacer)),null,16),e.renderSlot(i.$slots,"actions",{},()=>[e.createVNode(T.VBtn,e.mergeProps(e.unref(l).cancelBtn,{onClick:d[1]||(d[1]=p=>i.$emit("cancel"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.cancelBtnText),1)]),_:1},16),e.createVNode(T.VBtn,e.mergeProps(e.unref(l).confirmBtn,{"data-test-id":"confirm-btn",onClick:d[2]||(d[2]=p=>i.$emit("confirm"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.confirmBtnText),1)]),_:1},16)],!0)],16))]),_:3},16,["aria-labelledby"])]),_:3},16,["modelValue","width","persistent"]))}}),jn=S(Wn,[["__scopeId","data-v-72e0adc9"]]);function Yn(o,a,n,t=!1){const l=t?["\uFEFF",o]:[o],r=window.navigator,s=new Blob(l,{type:n});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(s,a);else{const c=document.createElement("a");c.target="_blank",c.style.display="none",c.rel="noopener noreferrer",c.href=window.URL.createObjectURL(s),c.download=a,document.body.appendChild(c),c.click(),document.body.removeChild(c),window.URL.revokeObjectURL(c.href)}}const Xn={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},Jn=S(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useAttrs(),s=e.ref("idle"),c=D(Xn,t),i=e.computed(()=>lt(c.value.btn,r));function d(m){var V,w,L;const k=m["content-type"],u=m["content-disposition"];let f;return f=(L=(w=(V=u==null?void 0:u.split(";"))==null?void 0:V.find(h=>h.includes("filename=")))==null?void 0:w.split("="))==null?void 0:L[1],f||(f=t.fallbackFilename||"file"),{name:f,type:k}}async function p(){s.value="loading";try{const{data:m,headers:k}=await t.filePromise(),{name:u,type:f}=d(k);Yn(m,u,f)}catch(m){s.value="error",l("error",m);return}s.value="success",l("success")}return a({getFileInfo:d,download:p,state:s}),(m,k)=>(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps(i.value,{loading:s.value==="loading",class:[i.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:p}),{default:e.withCtx(()=>[e.renderSlot(m.$slots,"icon",{},()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(c).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(fa)),1)]),_:1},16)],!0),e.renderSlot(m.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-dab2a719"]]),Qn={errorCodeText:"Code d'erreur : ",supportIdMessage:"Votre identifiant de support :",btnText:"Retour à l’accueil"},gt=S(e.defineComponent({__name:"PageContainer",props:{size:{default:void 0},spacing:{default:void 0},color:{default:"transparent"}},setup(o,{expose:a}){const n=o,t=R.useDisplay(),l={xs:"px-4",sm:"px-4",md:"px-14",lg:"px-14",xl:"px-0"},r={xs:340,sm:540,md:800,lg:1280,xl:1712},s=e.computed(()=>n.spacing?`py-10 ${l[n.spacing]}`:`py-10 ${l[t.name.value]}`),c=e.computed(()=>n.size?r[n.size]:r[t.name.value]??r.xl);return a({spacingClass:s,containerSize:c}),(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(ne.VSheet,{width:c.value,color:i.color},{default:e.withCtx(()=>[e.renderSlot(i.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-cbb17930"]]),eo={key:0,class:"vd-code text-primary mb-4"},to={class:"d-sr-only"},ao={key:1,class:"mb-2 font-weight-bold text-h5 mb-4"},no={key:2},oo=e.defineComponent({__name:"ErrorPage",props:{pageTitle:{default:void 0},message:{default:void 0},code:{default:void 0},codeErrorText:{default:Qn.errorCodeText},btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(gt,{size:"md"},{default:e.withCtx(()=>[e.createVNode(ue.VCard,{elevation:0,class:"pa-6 pa-sm-16"},{default:e.withCtx(()=>[e.createVNode(F.VRow,{class:"max-width-none"},{default:e.withCtx(()=>[e.createVNode(F.VCol,{sm:a.$slots.illustration?6:12,cols:"12",class:"order-last order-sm-first text-center text-sm-left d-flex flex-column justify-center align-sm-start"},{default:e.withCtx(()=>[a.code?(e.openBlock(),e.createElementBlock("div",eo,[e.createElementVNode("span",to,e.toDisplayString(a.codeErrorText),1),e.createTextVNode(" "+e.toDisplayString(a.code),1)])):e.createCommentVNode("",!0),a.pageTitle?(e.openBlock(),e.createElementBlock("h2",ao,e.toDisplayString(a.pageTitle),1)):e.createCommentVNode("",!0),a.message?(e.openBlock(),e.createElementBlock("p",no,e.toDisplayString(a.message),1)):e.createCommentVNode("",!0),e.renderSlot(a.$slots,"additional-content",{},void 0,!0),e.renderSlot(a.$slots,"action",{},()=>[!a.hideBtn&&a.btnText&&(a.btnLink||a.btnHref)?(e.openBlock(),e.createBlock(T.VBtn,{key:0,to:a.btnLink,href:a.btnHref,color:"primary",exact:"",class:"mt-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.btnText),1)]),_:1},8,["to","href"])):e.createCommentVNode("",!0)],!0)]),_:3},8,["sm"]),a.$slots.illustration?(e.openBlock(),e.createBlock(F.VCol,{key:0,cols:"12",sm:"6",class:"d-flex align-center justify-center"},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"illustration",{},void 0,!0)]),_:3})):e.createCommentVNode("",!0)]),_:3})]),_:3})]),_:3}))}}),$e=S(oo,[["__scopeId","data-v-8a08901d"]]),bt={noData:"Pas de données.",btnText:"Consulter les données externes"},P={orange:{darken80:"#2d100b",darken60:"#5a2017",darken40:"#862f22",darken20:"#b33f2e",base:"#e04f39",lighten20:"#e67261",lighten40:"#ec9588",lighten60:"#f3b9b0",lighten80:"#f9dcd7",lighten90:"#fcedeb",lighten97:"#fefaf9"},yellow:{darken80:"#302407",darken60:"#60480e",darken40:"#906b15",darken20:"#c08f1c",base:"#f0b323",lighten20:"#f3c24f",lighten40:"#f6d17b",lighten60:"#f9e1a7",lighten80:"#fcf0d3",lighten90:"#fdf7e9",lighten97:"#fffdf8"},green:{darken80:"#112717",darken60:"#224e2d",darken40:"#347444",darken20:"#459b5a",base:"#56c271",lighten20:"#78ce8d",lighten40:"#9adaaa",lighten60:"#bbe7c6",lighten80:"#ddf3e3",lighten90:"#eef9f1",lighten97:"#fafdfb"},turquoise:{darken80:"#00221c",darken60:"#004439",darken40:"#006755",darken20:"#008972",base:"#00ab8e",lighten20:"#33bca5",lighten40:"#66cdbb",lighten60:"#99ddd2",lighten80:"#cceee8",lighten90:"#e5f7f4",lighten97:"#f7fcfc"},blue:{darken80:"#020d1f",darken60:"#051a3e",darken40:"#07275c",darken20:"#0a347b",base:"#0c419a",lighten20:"#3d67ae",lighten40:"#6d8dc2",lighten60:"#9eb3d7",lighten80:"#ced9eb",lighten90:"#e7ecf5",lighten97:"#f8f9fc"},cyan:{darken80:"#00212d",darken60:"#004259",darken40:"#006386",darken20:"#0084b2",base:"#00a5df",lighten20:"#33b7e5",lighten40:"#66c9ec",lighten60:"#99dbf2",lighten80:"#ccedf9",lighten90:"#e5f6fc",lighten97:"#f7fcfe"},frostedBlue:{darken80:"#142327",darken60:"#28464d",darken40:"#3d6874",darken20:"#518b9a",base:"#65aec1",lighten20:"#84becd",lighten40:"#a3ceda",lighten60:"#c1dfe6",lighten80:"#e0eff3",lighten90:"#f0f7f9",lighten97:"#fafdfd"},parma:{darken80:"#171c26",darken60:"#2f384d",darken40:"#465473",darken20:"#5e709a",base:"#758cc0",lighten20:"#91a3cd",lighten40:"#acbad9",lighten60:"#c8d1e6",lighten80:"#e3e8f2",lighten90:"#f1f3f9",lighten97:"#fbfcfd"},mauve:{darken80:"#201224",darken60:"#402449",darken40:"#60376d",darken20:"#804992",base:"#a05bb6",lighten20:"#b37cc5",lighten40:"#c69dd3",lighten60:"#d9bde2",lighten80:"#ecdef0",lighten90:"#f5eff8",lighten97:"#fcfafd"},pink:{darken80:"#2d051a",darken60:"#5a0a34",darken40:"#87104d",darken20:"#b41567",base:"#e11a81",lighten20:"#e7489a",lighten40:"#ed76b3",lighten60:"#f3a3cd",lighten80:"#f9d1e6",lighten90:"#fce8f2",lighten97:"#fef8fb"},brick:{darken80:"#291112",darken60:"#522224",darken40:"#7b3237",darken20:"#a44349",base:"#cd545b",lighten20:"#d7767c",lighten40:"#e1989d",lighten60:"#ebbbbd",lighten80:"#f5ddde",lighten90:"#faeeef",lighten97:"#fdfafa"},grey:{darken80:"#111212",darken60:"#222324",darken40:"#323535",darken20:"#434647",base:"#545859",lighten20:"#76797a",lighten40:"#989b9b",lighten60:"#bbbcbd",lighten80:"#dddede",lighten90:"#eeeeee",lighten97:"#fafafa"},white:{20:"rgba(255, 255, 255, 0.2000)",38:"rgba(255, 255, 255, 0.3800)",40:"rgba(255, 255, 255, 0.4000)",70:"rgba(255, 255, 255, 0.7000)",8:"rgba(255, 255, 255, 0.0800)",0:"rgba(255, 255, 255, 0.0000)",base:"#ffffff"},transparentBlue:{transparentBlue18:"#a6d4eb",transparentBlue8:"#ebf0f7"}},lo={menu:{tile:!0,zIndex:4,offset:0},btn:{tile:!0,minHeight:"48px",minWidth:"328px",color:P.blue.lighten20,class:"d-flex px-3"},btnIcon:{color:"white"},linkIcon:{color:"rgba(0, 0, 0, .54)"},list:{border:!1,elevation:3,class:"py-0"},listItem:{target:"_blank",rel:"noopener noreferrer"},sheet:{class:"px-4 py-3"}},ro=["id"],io={class:"d-flex flex-row justify-space-between"},so={class:"mb-0"},co=e.defineComponent({__name:"ExternalLinks",props:{vuetifyOptions:{},items:{},position:{default:"top left"},btnText:{default:bt.btnText},nudgeTop:{default:0},nudgeBottom:{default:0},fixed:{type:Boolean,default:!1},ariaLabel:{default:"external-link-btn"},ariaOwns:{default:"external-link-btn"}},setup(o){const a=o,n=D(lo,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>t.value||l.value),s=e.computed(()=>a.position.includes("left")),c=e.computed(()=>a.position.includes("top")),i=e.computed(()=>{const p="48px",m=s.value?`translateX(calc(-100% + ${p}))`:`translateX(calc(100% - ${p}))`;return{transform:r.value?"translateX(0)":m,position:a.fixed?"fixed":"absolute",flexDirection:s.value?"row":"row-reverse",top:c.value?W(a.nudgeTop):"auto",bottom:c.value?"auto":W(a.nudgeBottom),left:s.value?0:"auto",right:s.value?"auto":0,zIndex:c.value?"4":"5"}}),d=e.computed(()=>r.value?s.value?xe:_e:s.value?_e:xe);return(p,m)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns},[e.createVNode(he.VMenu,e.mergeProps(e.unref(n).menu,{id:a.ariaOwns,modelValue:t.value,"onUpdate:modelValue":m[4]||(m[4]=k=>t.value=k),location:c.value?"bottom":"top",attach:"",transition:"fade-transition",class:["vd-external-links",{"vd-external-links--left":s.value,"vd-external-links--right":!s.value}]}),{activator:e.withCtx(({props:k})=>[e.createVNode(T.VBtn,e.mergeProps({...k,...e.unref(n).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,style:i.value,class:"vd-external-links-btn",onMouseenter:m[0]||(m[0]=u=>l.value=!0),onMouseleave:m[1]||(m[1]=u=>l.value=!1),onFocusin:m[2]||(m[2]=u=>l.value=!0),onFocusout:m[3]||(m[3]=u=>l.value=!1)}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass([{"ml-3":!s.value,"mr-3":s.value},"vd-external-links-btn-text white--text"])},e.toDisplayString(p.btnText),3),e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).btnIcon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(d.value),1)]),_:1},16)]),_:2},1040,["aria-label","aria-owns","style"])]),default:e.withCtx(()=>[p.items.length?(e.openBlock(),e.createBlock($.VList,e.mergeProps({key:0},e.unref(n).list,{class:"vd-external-links-list"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.items,(k,u)=>(e.openBlock(),e.createBlock($.VListItem,e.mergeProps({key:u,href:k.href,ref_for:!0},e.unref(n).listItem),{default:e.withCtx(()=>[e.createElementVNode("div",io,[e.createVNode($.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(n).listItemTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.text),1)]),_:2},1040),e.renderSlot(p.$slots,"link-icon",{},()=>[e.createVNode(v.VIcon,e.mergeProps({ref_for:!0},e.unref(n).linkIcon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(tt)),1)]),_:1},16)],!0)])]),_:2},1040,["href"]))),128))]),_:3},16)):(e.openBlock(),e.createBlock(ne.VSheet,e.normalizeProps(e.mergeProps({key:1},e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("p",so,e.toDisplayString(e.unref(bt).noData),1)]),_:1},16))]),_:3},16,["id","modelValue","location","class"])],8,ro))}}),mo=S(co,[["__scopeId","data-v-91ee355f"]]),ie={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},O={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},po=Object.values(O),y={colors:{background:{main:"#e7ecf5",surface:"#ffffff",mainAlt:"#ffffff",surfaceAlt:"#e7ecf5",raised:"#f8f9fc",accent:"#0c419a",accentContrasted:"#07275c",accentAlt:"#111212",info:"#ced9eb",infoSubdued:"#e7ecf5",infoContrasted:"#0c419a",success:"#cceee8",successSubdued:"#e5f7f4",successContrasted:"#56c271",warning:"#fcf0d3",warningSubdued:"#fdf7e9",warningContrasted:"#f0b323",error:"#f9dcd7",errorSubdued:"#fcedeb",errorContrasted:"#b33f2e",disabled:"#dddede",disabledOnDark:"rgba(255, 255, 255, 0.0800)",assure:"#ed76b3",professionnel:"#66c9ec",entreprise:"#f0b323"},border:{darker:"#222324",base:"#989b9b",subdued:"#dddede",accent:"#0c419a",accentContrasted:"#07275c",accentOnDark:"#ffffff",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",onDark:"rgba(255, 255, 255, 0.7)",disabled:"#dddede",disabledOnDark:"rgba(255, 255, 255, 0.4)"},text:{base:"#222324",accent:"#0c419a",accentContrasted:"#07275c",subdued:"#545859",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",disabled:"#989b9b",onDark:"#ffffff",subduedOnDark:"rgba(255, 255, 255, 0.7)",disabledOnDark:"rgba(255, 255, 255, 0.4)"},icon:{base:"#222324",subdued:"#545859",subduedOnDark:"rgba(255, 255, 255, 0.7)",accent:"#0c419a",accentContrasted:"#07275c",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",onDark:"#ffffff",disabled:"#989b9b",disabledOnDark:"rgba(255, 255, 255, 0.4)"},overlay:{fullpage:"#989b9b",onDark:"#ffffff",onLight:"#0c419a"},interactive:{default:"rgba(255, 255, 255, 0.0000)",hover:"#e7ecf5",pressed:"#ced9eb",focus:"#e7ecf5",disabled:"rgba(255, 255, 255, 0.0000)",hoverOnSelected:"#ced9eb"}}},be={primary:P.blue.base,secondary:P.cyan.darken40,accent:P.cyan.base,error:P.orange.darken20,info:P.blue.base,avatar:P.cyan.darken20,success:P.turquoise.darken60,warning:P.yellow.darken60,risquePro:P.brick.base,light:P.grey.lighten60,dark:P.grey.darken80,onBackground:y.colors.background.surface,onSurfaceAlt:y.colors.background.surfaceAlt,onSurface:y.colors.background.surface,onWarning:y.colors.background.warning,overlayFullpage:y.colors.overlay.fullpage,overlayOnDark:y.colors.overlay.onDark,overlayOnLight:y.colors.overlay.onLight,interactiveDefault:y.colors.interactive.default,interactiveHover:y.colors.interactive.hover,interactivePressed:y.colors.interactive.pressed,interactiveFocus:y.colors.interactive.focus,interactiveDisabled:y.colors.interactive.disabled,interactiveHoverOnSelected:y.colors.interactive.hoverOnSelected,backgroundMain:y.colors.background.main,backgroundSurface:y.colors.background.surface,backgroundSurfaceAlt:y.colors.background.surfaceAlt,backgroungMainAlt:y.colors.background.mainAlt,backgroungRaised:y.colors.background.raised,backgroundAccent:y.colors.background.accent,backgroungAccentContrasted:y.colors.background.accentContrasted,backgroundAccentAlt:y.colors.background.accentAlt,backgroundInfo:y.colors.background.info,backgroundInfoSubdued:y.colors.background.infoSubdued,backgroundInfoContrasted:y.colors.background.infoContrasted,backgroundSuccess:y.colors.background.success,backgroundSuccessSubdued:y.colors.background.successSubdued,backgroundSuccessContrasted:y.colors.background.successContrasted,backgroundWarning:y.colors.background.warning,backgroundWarningSubdued:y.colors.background.warningSubdued,backgroundWarningContrasted:y.colors.background.warningContrasted,backgroundError:y.colors.background.error,backgroundErrorSubdued:y.colors.background.errorSubdued,backgroundErrorContrasted:y.colors.background.errorContrasted,backgroundDisabled:y.colors.background.disabled,backgroundDisabledOnDark:y.colors.background.disabledOnDark,backgroundAssure:y.colors.background.assure,backgroundProfessionnel:y.colors.background.professionnel,backgroundEntreprise:y.colors.background.entreprise,borderDarker:y.colors.border.darker,borderBase:y.colors.border.base,borderSubdued:y.colors.border.subdued,borderAccent:y.colors.border.accent,borderAccentContrasted:y.colors.border.accentContrasted,borderAccentOnDark:y.colors.border.accentOnDark,borderInfo:y.colors.border.info,borderSuccess:y.colors.border.success,borderWarning:y.colors.border.warning,borderError:y.colors.border.error,borderOnDark:y.colors.border.onDark,borderDisabled:y.colors.border.disabled,borderDisabledOnDark:y.colors.border.disabledOnDark,textBase:y.colors.text.base,textAccent:y.colors.text.accent,textAccentContrasted:y.colors.text.accentContrasted,textSubdued:y.colors.text.subdued,textInfo:y.colors.text.info,textSuccess:y.colors.text.success,textWarning:y.colors.text.warning,textError:y.colors.text.error,textDisabled:y.colors.text.disabled,textOnDark:y.colors.text.onDark,textSubduedOnDark:y.colors.text.subduedOnDark,textDisabledOnDark:y.colors.text.disabledOnDark,iconBase:y.colors.icon.base,iconSubdued:y.colors.icon.subdued,iconSubduedOnDark:y.colors.icon.subduedOnDark,iconAccent:y.colors.icon.accent,iconAccentContrasted:y.colors.icon.accentContrasted,iconInfo:y.colors.icon.info,iconSuccess:y.colors.icon.success,iconWarning:y.colors.icon.warning,iconError:y.colors.icon.error,iconOnDark:y.colors.icon.onDark,iconDisabled:y.colors.icon.disabled,iconDisabledOnDark:y.colors.icon.disabledOnDark,transparentBlue18:P.blue.base,transparentBlue8:P.transparentBlue.transparentBlue8},Q=(o,a)=>({width:o,height:a}),uo={[O.X_SMALL]:Q("105","32"),[O.SMALL]:Q("131","40"),[O.NORMAL]:Q("211","64")},ho={[O.X_SMALL]:Q("32","32"),[O.SMALL]:Q("40","40"),[O.NORMAL]:Q("64","64")};function fo(o,a,n){const l=`(${a.join("|")})`,r=new RegExp(`^${l}$`);return n.match(r)!==null||console.error(`Invalid value for the \`${o}\` prop. Received: "${n}", expected one of: [${a.join(", ")}].`),!0}const go=["fill","aria-label","width","height","viewBox","aria-hidden"],bo=["fill"],ko={key:1,"aria-hidden":"true",role:"presentation"},yo={key:2,role:"presentation","aria-hidden":"true"},Vo={key:3},Ae=e.defineComponent({__name:"Logo",props:{hideSignature:{type:Boolean,default:!1},hideOrganism:{type:Boolean,default:!1},risquePro:{type:Boolean,default:!1},ariaLabel:{type:String,default:void 0},avatar:{type:Boolean,default:!1},dark:{type:Boolean,default:!1},size:{type:String,default:O.NORMAL,validator:o=>fo("size",po,o)}},setup(o){const a=o,n=e.ref(be.risquePro),t=e.computed(()=>a.dark?"#fff":be.primary),l=e.computed(()=>a.avatar?ho[a.size]:uo[a.size]),r=e.computed(()=>a.avatar?"0 0 64 64":a.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(a.ariaLabel)return a.ariaLabel;if(a.avatar)return"";const c=" : ",i=", ";let d=`${ie.assuranceMaladie}`;return a.hideOrganism||(d=ie.organism.concat(i,d)),a.hideSignature||(d=d.concat(c,ie.signature)),a.risquePro&&(d=ie.assuranceMaladie+": "+ie.risquePro),d});return(c,i)=>(e.openBlock(),e.createElementBlock("svg",{fill:t.value,"aria-label":s.value,width:l.value.width,height:l.value.height,viewBox:r.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":o.avatar?"true":"false"},[o.risquePro&&!o.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:n.value,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"},null,8,bo)):!o.hideSignature&&!o.avatar?(e.openBlock(),e.createElementBlock("g",ko,i[0]||(i[0]=[e.createStaticVNode('<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)]))):e.createCommentVNode("",!0),!o.hideOrganism&&!o.avatar?(e.openBlock(),e.createElementBlock("g",yo,i[1]||(i[1]=[e.createStaticVNode('<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)]))):e.createCommentVNode("",!0),o.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",Vo,i[2]||(i[2]=[e.createStaticVNode('<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)]))),i[3]||(i[3]=e.createStaticVNode('<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))],8,go))}}),wo={followUs:"Suivez-nous :"},Bo={class:"d-flex flex-column"},Co={class:"vd-social-media-links-label text-subtitle-2 text--primary"},No={class:"vd-social-media-links-content d-flex max-width-none"},kt=S(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",Bo,[e.createElementVNode("span",Co,e.toDisplayString(e.unref(wo).followUs),1),e.createElementVNode("ul",No,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.links,(l,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(T.VBtn,{id:`social-btn-${r}`,href:l.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${l.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode(v.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-9639b916"]]),De={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},Lo=[{icon:Va,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:ka,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:Na,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],So={footer:{elevation:3,color:"backgroundSurface",height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:"backgroundSurface"},goTopBtnIcon:{color:"white"}},G={goTopBtnLabel:"Retour en haut de la page",sitemapLabel:"Plan du site",cguLabel:"Conditions générales d’utilisation",cookiesLabel:"Gestion des cookies",legalNoticeLabel:"Mentions légales",versionLabel:"Version",followUs:"Suivez-nous",[De["non-compliant"]]:"non conforme",[De["partially-compliant"]]:"partiellement conforme",[De["fully-compliant"]]:"totalement conforme",a11yLabel:o=>`Accessibilité : ${o}`},Mo={class:"container"},vo={key:0,class:"d-flex align-start align-sm-center mb-6"},xo={class:"d-flex flex-grow-1 flex-column flex-sm-row"},_o={key:0,class:"text-primary my-3 mx-4"},Io=S(e.defineComponent({__name:"FooterBar",props:{vuetifyOptions:{},a11yCompliance:{default:"non-compliant"},linkItems:{default:null},items:{default:null},sitemapRoute:{default:()=>({name:"sitemap"})},cguRoute:{default:()=>({name:"cgu"})},cookiesRoute:{default:()=>({name:"cookies"})},legalNoticeRoute:{default:()=>({name:"legalNotice"})},a11yStatementRoute:{default:()=>({name:"a11yStatement"})},hideSitemapLink:{type:Boolean,default:!1},hideCguLink:{type:Boolean,default:!1},hideCookiesLink:{type:Boolean,default:!1},hideLegalNoticeLink:{type:Boolean,default:!1},hideA11yLink:{type:Boolean,default:!1},version:{default:void 0},hideLogo:{type:Boolean,default:!1},hideSocialMediaLinks:{type:Boolean,default:!1},socialMediaLinks:{default:()=>Lo},light:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=Xe,l=O,r=e.useSlots(),s=R.useDisplay(),c=D(So,n),i=f=>f.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const f=G[n.a11yCompliance];return typeof f=="string"?G.a11yLabel(f):""}),m=e.computed(()=>!!r.default),k=e.computed(()=>s.smAndDown.value?l.SMALL:l.NORMAL),u=e.computed(()=>n.linkItems?n.linkItems:[{text:G.sitemapLabel,to:n.sitemapRoute,hidden:n.hideSitemapLink},{text:G.cguLabel,to:n.cguRoute,hidden:n.hideCguLink},{text:G.cookiesLabel,to:n.cookiesRoute,hidden:n.hideCookiesLink},{text:G.legalNoticeLabel,to:n.legalNoticeRoute,hidden:n.hideLegalNoticeLink},{text:p.value,to:n.a11yStatementRoute,hidden:n.hideA11yLink}].filter(V=>!V.hidden));return a({logoSize:k}),(f,V)=>(e.openBlock(),e.createBlock(na.VFooter,e.mergeProps({...e.unref(c).footer,...f.$attrs},{color:n.light?"white":e.unref(c).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":m.value,"v-theme--light":n.light,"v-theme--dark":!n.light}],role:"contentinfo"}),{default:e.withCtx(()=>[e.createElementVNode("div",Mo,[m.value?(e.openBlock(),e.createElementBlock("div",vo,[e.createElementVNode("div",xo,[e.renderSlot(f.$slots,"logo",{},()=>[n.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ae,{key:0,size:k.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!n.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(c).spacer)),null,16),n.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(kt,{key:0,links:n.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(T.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(c).goTopBtn,{"aria-label":e.unref(G).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(v.VIcon,e.mergeProps(e.unref(c).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),m.value?(e.openBlock(),e.createBlock(Me.VDivider,e.mergeProps({key:1},e.unref(c).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"default",{},void 0,!0),m.value?(e.openBlock(),e.createBlock(Me.VDivider,e.mergeProps({key:2},e.unref(c).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"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"])},[e.renderSlot(f.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(w,L)=>(e.openBlock(),e.createElementBlock("li",{key:L},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i(w)),{href:w.href,to:w.to,"aria-label":w.ariaLabel,target:w.openInNewTab?"_blank":void 0,tabindex:L,rel:w.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),n.version?(e.openBlock(),e.createElementBlock("li",_o,e.toDisplayString(e.unref(G).versionLabel)+" "+e.toDisplayString(n.version),1)):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"append",{},void 0,!0)],2)])]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-a1074b6c"]]),yt={btnLabel:o=>`S’identifier avec FranceConnect${o?"+":""}`,infoLinkLabel:o=>`Qu’est-ce que FranceConnect${o?"+":""} ?`},To=["href","aria-label"],Eo=["viewBox","width"],Zo=["fill"],$o=["fill"],Ao=["href"],Do=S(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(o){const a=o,n=R.useTheme(),t=e.computed(()=>n.current.value.dark||a.dark),l=a.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>a.isConnectPlus?"245px":"209px"),s=e.computed(()=>l);return(c,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":t.value}])},[e.createElementVNode("a",{href:c.href,"aria-label":e.unref(yt).btnLabel(c.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${a.isConnectPlus?"245":"209"} 56`,width:r.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[i[0]||(i[0]=e.createElementVNode("path",{fill:"#000091",d:"m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"},null,-1)),i[1]||(i[1]=e.createElementVNode("path",{fill:"#e1000f",d:"m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"},null,-1)),i[2]||(i[2]=e.createElementVNode("path",{fill:"#0063cb",d:"M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"},null,-1)),i[3]||(i[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:t.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,Zo),c.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:t.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,$o)):e.createCommentVNode("",!0)],8,Eo))],8,To),e.createElementVNode("a",{href:s.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(yt).infoLinkLabel(c.isConnectPlus))+" ",1),e.createVNode(v.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(tt)),1)]),_:1})],8,Ao)],2))}}),[["__scopeId","data-v-5bd47a0e"]]);function Vt(o,a){let n=null,t=0;return function(...l){n!==null&&window.clearTimeout(n),performance.now()-t>=a?(window.requestAnimationFrame(()=>o(...l)),t=performance.now()):n=window.setTimeout(()=>{o(...l),t=performance.now()},a)}}const Ho=990,wt=Symbol("registerHeaderMenu");function ke(){const o=e.ref(!1);let a;function n(t){o.value=t.matches}return e.onMounted(()=>{a=window.matchMedia(`(min-width: ${Ho}px)`),o.value=a.matches,a.addEventListener("change",n)}),e.onUnmounted(()=>{a.removeEventListener("change",n)}),{isDesktop:o}}const Po={ariaLabel:"Ouvrir le menu"},zo={},Oo={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Ro(o,a){return e.openBlock(),e.createElementBlock("svg",Oo,a[0]||(a[0]=[e.createStaticVNode('<g data-v-51224cf0><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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></path>',8)]))}const Fo=S(zo,[["render",Ro],["__scopeId","data-v-51224cf0"]]),qo={},Ko={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Uo(o,a){return e.openBlock(),e.createElementBlock("svg",Ko,a[0]||(a[0]=[e.createStaticVNode('<g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path></g><g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-e01c8927></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-e01c8927></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-e01c8927></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-e01c8927></path></g><g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path>',10)]))}const Go=S(qo,[["render",Uo],["__scopeId","data-v-e01c8927"]]),Wo=["fill"],jo={key:1},Yo={class:"service-title"},Xo={key:0,class:"service-subtitle"},Jo=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:Po.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,t=R.useTheme().current.value.colors.primary,{isDesktop:l}=ke(),r=e.computed(()=>{var s,c,i,d;if((s=a.homeLink)!=null&&s.to){const p=(i=(c=e.getCurrentInstance())==null?void 0:c.appContext)==null?void 0:i.components;return p&&"RouterLink"in p?"router-link":"div"}return(d=a.homeLink)!=null&&d.href?"a":"div"});return(s,c)=>{var i,d,p;return e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.value),e.mergeProps({to:"to"in s.homeLink?(i=s.homeLink)==null?void 0:i.to:void 0,href:"href"in s.homeLink?(d=s.homeLink)==null?void 0:d.href:void 0,"aria-label":"aria-label"in s.homeLink?(p=s.homeLink)==null?void 0:p["aria-label"]:void 0},{class:"logo"}),{default:e.withCtx(()=>[e.unref(l)?(e.openBlock(),e.createBlock(Go,{key:0,"aria-label":a.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(Fo,{key:1,"aria-label":a.ariaLabel},null,8,["aria-label"])),e.renderSlot(s.$slots,"brand-content",{},()=>[s.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(t),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},c[0]||(c[0]=[e.createElementVNode("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)]),8,Wo)):e.createCommentVNode("",!0),s.serviceTitle?(e.openBlock(),e.createElementBlock("div",jo,[e.createElementVNode("div",Yo,e.toDisplayString(s.serviceTitle),1),s.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",Xo,e.toDisplayString(s.serviceSubtitle),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],!0)]),_:3},16)}}}),Bt=S(Jo,[["__scopeId","data-v-8295d36d"]]),Qo={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function e1(){const o=e.ref(null),a=e.ref("");function n(){const t=document.documentElement.scrollTop;if(o.value===null)return o.value=t,"";a.value=t>=o.value?"bottom":"top",o.value=t}return e.onMounted(()=>{window.addEventListener("scroll",n)}),e.onUnmounted(()=>{window.removeEventListener("scroll",n)}),{scrollDirection:a}}const t1={key:0,class:"header-prepend"},a1={class:"inner-header"},n1={class:"header-logo pl-xl-0 pl-md-14 pl-4"},o1={key:0,class:"header-side"},l1={key:1,class:"header-append"},r1=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeLink:{default:void 0},homeAriaLabel:{default:Qo.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(o){const a=e.ref(),n=o;function t(h){e.watch(h,C=>{a.value=C})}e.provide(wt,t);const l=e.ref(null),r=e.ref(null),s=e.ref("auto"),c=e.ref(0),i=e.ref("auto"),d=e.ref(!0),p=e.ref(!1),m=e.ref(!1);function k(){const h=l.value.getBoundingClientRect();c.value=h.top+window.scrollY,s.value=`${r.value.offsetHeight}px`,i.value=`${l.value.offsetWidth}px`,d.value=window.scrollY<=c.value,p.value=window.scrollY>c.value+h.height,m.value=window.scrollY>c.value+h.height*2}const u=Vt(k,16);e.onMounted(()=>{k(),window.addEventListener("scroll",u),window.addEventListener("resize",u)}),e.onUnmounted(()=>{window.removeEventListener("scroll",u),window.removeEventListener("resize",u)});const f=e.computed(()=>({minHeight:s.value})),{scrollDirection:V}=e1(),{isDesktop:w}=ke(),L=e.computed(()=>{if(n.hideWhenDown&&!w.value&&!a.value){const C=V.value===""&&d.value||V.value==="bottom"&&!p.value||V.value==="top"&&d.value,b=V.value==="bottom"&&p.value;return{position:C?"relative":"fixed",width:C?"100%":i.value,top:C?"auto":"0",transform:b?"translateY(-100%)":"none",transition:m.value?"transform 0.3s ease":"none"}}const h=!d.value&&n.sticky;return{position:h?"fixed":"relative",width:h?i.value:"100%",top:h?"0":"auto",transform:"none",transition:"none"}});return(h,C)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:l,class:"header",style:e.normalizeStyle(f.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:r,class:"sticky-header",style:e.normalizeStyle(L.value)},[h.$slots.prepend?(e.openBlock(),e.createElementBlock("div",t1,[e.renderSlot(h.$slots,"prepend",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",a1,[e.renderSlot(h.$slots,"menu",{menuOpen:a.value},void 0,!0),e.createElementVNode("div",n1,[e.renderSlot(h.$slots,"logo",{menuOpen:a.value,homeAriaLabel:h.homeAriaLabel,serviceTitle:h.serviceTitle,serviceSubtitle:h.serviceSubtitle},()=>[e.createVNode(Bt,{"aria-label":h.homeAriaLabel,"service-title":h.serviceTitle,"service-subtitle":h.serviceSubtitle,"home-link":h.homeLink},{"brand-content":e.withCtx(()=>[e.renderSlot(h.$slots,"logo-brand-content",{menuOpen:a.value,homeAriaLabel:h.homeAriaLabel,serviceTitle:h.serviceTitle,serviceSubtitle:h.serviceSubtitle,homeLink:h.homeLink},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle","home-link"])],!0)]),h.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",o1,[e.renderSlot(h.$slots,"header-side",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)]),h.$slots.append?(e.openBlock(),e.createElementBlock("div",l1,[e.renderSlot(h.$slots,"append",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Ct=S(r1,[["__scopeId","data-v-639c8426"]]),ye={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},i1=["aria-label","title"],He=S(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(o,{expose:a}){const n=e.ref(null),t=e.useModel(o,"modelValue");function l(){var r;(r=n.value)==null||r.focus()}return a({focus:l}),(r,s)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:n,class:e.normalizeClass(["header-menu-btn",{"header-menu-btn__open":t.value}]),type:"button","aria-label":t.value?e.unref(ye).closeMenu:e.unref(ye).openMenu,title:t.value?e.unref(ye).closeMenu:e.unref(ye).openMenu,onClick:s[0]||(s[0]=()=>{t.value=!t.value})},[e.createVNode(v.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(Y):e.unref(Ba)),1)]),_:1}),s[1]||(s[1]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],10,i1))}}),[["__scopeId","data-v-82f2559e"]]),Nt={mainMenu:"Menu principal",publicMenu:"Menu public"},Lt=Symbol("registerSubMenu");function St(o){const a=e.ref([]);function n(r,s){const i={id:String(a.value.length),status:r,close:s};a.value.push(i),e.watch(r,d=>{d&&t(i)})}function t(r){a.value.forEach(s=>{s.id!==r.id&&s.status&&s.close()})}e.watch(o,r=>{r||a.value.forEach(s=>{s.status&&s.close()})});const l=e.computed(()=>a.value.some(r=>r.status));return e.provide(Lt,n),{haveOpenSubMenu:l}}const s1=["aria-label"],c1={key:0,class:"overlay"},d1=["aria-label"],m1={class:"header-menu"},Mt=S(e.defineComponent({__name:"HeaderBurgerMenu",props:{modelValue:{type:Boolean,default:!1},modelModifiers:{}},emits:["update:modelValue"],setup(o){const a=e.ref(null),n=e.ref(null),t=e.ref(null),l=e.ref(null),r=e.ref(0),s=e.ref(0),c=e.ref("70vh");function i(){const h=n.value.getBoundingClientRect();r.value=h.left,s.value=h.top,c.value=`calc(100vh - ${h.top}px - 48px)`}const d=Vt(i,16),p=()=>{m.value&&d()};e.onMounted(()=>{i(),V(),window.addEventListener("scroll",p),window.addEventListener("resize",p),window.addEventListener("click",f,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",p),window.removeEventListener("resize",p),window.removeEventListener("click",f,{capture:!0}),document.documentElement.style.overflow="auto",document.body.style.overflow="auto"});const m=e.useModel(o,"modelValue");e.watch(m,async h=>{var C,b;V(),h?(i(),await e.nextTick(),(C=l.value)==null||C.focus()):(b=t.value)==null||b.focus()},{immediate:!0});const{isDesktop:k}=ke(),u=e.computed(()=>({left:`${r.value}px`,top:`${s.value}px`,height:k.value?c.value:void 0}));function f(h){if(!m.value)return;let C=h.target;for(;C&&C!==document.body;){if(C===a.value)return;C=C.parentElement}h.stopPropagation(),m.value=!1}function V(){typeof window<"u"&&(document.documentElement.style.overflow=m.value?"hidden":"auto",document.body.style.overflow=m.value?"hidden":"auto")}const{haveOpenSubMenu:w}=St(e.readonly(m)),L=e.inject(wt);return L&&L(e.readonly(m)),(h,C)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(Nt).mainMenu,class:"menu mr-4"},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:n},[e.createVNode(He,{ref_key:"outerBtn",ref:t,modelValue:m.value,"onUpdate:modelValue":C[0]||(C[0]=b=>m.value=b)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[m.value?(e.openBlock(),e.createElementBlock("div",c1,[e.createElementVNode("div",{role:"menu",class:"menu-wrapper",style:e.normalizeStyle(u.value)},[e.createVNode(He,{ref_key:"innerBtn",ref:l,modelValue:m.value,"onUpdate:modelValue":C[1]||(C[1]=b=>m.value=b)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",ref_key:"headerMenuWrapper",ref:a,class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(w)}]),role:"navigation","aria-label":e.unref(Nt).publicMenu},[e.createElementVNode("div",m1,[e.renderSlot(h.$slots,"default",{},void 0,!0)])],10,d1)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,s1))}}),[["__scopeId","data-v-8bfe741c"]]),p1={},u1={class:"header-menu-item"};function h1(o,a){return e.openBlock(),e.createElementBlock("li",u1,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const vt=S(p1,[["render",h1],["__scopeId","data-v-eebfe4fb"]]),f1={class:"header-menu-section"},xt=S(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(o){const a=e.useId(),n=`${a}-group`,t=`${a}-group-title`;return(l,r)=>(e.openBlock(),e.createElementBlock("div",f1,[l.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:t,class:"header-menu-section-title"},[e.renderSlot(l.$slots,"title",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:n,role:"group",class:"header-menu-section-list"},[e.renderSlot(l.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-fe759639"]]),g1=["aria-expanded","aria-controls","title"],b1=["id"],k1={class:"sub-menu-content"},y1=S(e.defineComponent({__name:"HeaderSubMenu",setup(o){const a=e.ref(!1),n=e.useId(),t=`${n}-btn`,l=e.inject(Lt,void 0);if(!l)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");l(a,()=>{a.value=!1});const{haveOpenSubMenu:r}=St(e.readonly(a));return(s,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":a.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:t,class:"sub-menu-btn",type:"button","aria-expanded":a.value?"true":"false","aria-controls":e.unref(n),title:a.value?"Close submenu":"Open submenu",onClick:c[0]||(c[0]=i=>a.value=!a.value)},[e.renderSlot(s.$slots,"title",{},void 0,!0),e.createVNode(v.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(xe):e.unref(_e)),1)]),_:1})],8,g1),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(n),class:"sub-menu-content-wrapper","aria-labelledby":t},[e.createElementVNode("div",k1,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],8,b1),[[e.vShow,a.value]])]),_:3})],2))}}),[["__scopeId","data-v-fa108bc3"]]),V1={sheet:{theme:"dark",dense:!0,color:y.colors.background.accentContrasted},tabs:{height:"53","show-arrows":!0},tab:{"base-color":y.colors.text.subduedOnDark,"slider-color":"#fff",ripple:!1}},w1={class:"horizontal-menu px-xl-0 px-14"},B1={class:"horizontal-menu__item-link"},C1=S(e.defineComponent({__name:"HorizontalNavbar",props:{vuetifyOptions:{},items:{}},setup(o){const n=D(V1,o);return(t,l)=>(e.openBlock(),e.createBlock(ne.VSheet,e.normalizeProps(e.guardReactiveProps(e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("div",w1,[e.renderSlot(t.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(t.$slots,"default",{},()=>[e.createVNode(Ge.VTabs,e.mergeProps({class:"horizontal-menu__tabs"},e.unref(n).tabs),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(r,s)=>(e.openBlock(),e.createBlock(Ge.VTab,e.mergeProps({key:s,href:r.href,to:r.to,ref_for:!0},e.unref(n).tab,{tabindex:"0",class:"horizontal-menu__item"}),{default:e.withCtx(()=>[e.createElementVNode("span",B1,e.toDisplayString(r.label),1)]),_:2},1040,["href","to"]))),128))]),_:1},16)],!0),e.renderSlot(t.$slots,"navigation-bar-append",{},void 0,!0)])]),_:3},16))}}),[["__scopeId","data-v-a37442cd"]]),N1={class:"inner-vertical-menu"},L1={class:"inner-vertical-menu__main-content"},S1=["href"],M1=S(e.defineComponent({__name:"HeaderNavigationBar",props:e.mergeModels({vuetifyOptions:{},homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:void 0},sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},{burgerMenu:{type:Boolean,default:!1},burgerMenuModifiers:{}}),emits:["update:burgerMenu"],setup(o){const a=o,n=e.useModel(o,"burgerMenu"),{isDesktop:t}=ke(),l=e.computed(()=>!t.value||a.items!==void 0&&a.items.length>0&&a.items.length>a.maxHorizontalMenuItems);return(r,s)=>{const c=e.resolveComponent("RouterLink");return e.openBlock(),e.createBlock(Ct,{sticky:r.sticky,"hide-when-down":r.hideWhenDown,"home-aria-label":r.homeAriaLabel,"service-title":r.serviceTitle,"service-subtitle":r.serviceSubtitle},{menu:e.withCtx(()=>[l.value?(e.openBlock(),e.createBlock(Mt,{key:0,modelValue:n.value,"onUpdate:modelValue":s[1]||(s[1]=i=>n.value=i)},{default:e.withCtx(()=>[e.createElementVNode("div",N1,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",L1,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:n.value},()=>[e.createVNode(xt,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,i=>(e.openBlock(),e.createBlock(vt,{key:i.label},{default:e.withCtx(()=>["href"in i?(e.openBlock(),e.createElementBlock("a",{key:0,href:i.href},e.toDisplayString(i.label),9,S1)):i.to?(e.openBlock(),e.createBlock(c,{key:1,to:i.to,onClick:s[0]||(s[0]=d=>n.value=!1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(r.$slots,"navigation-menu-append",{menuOpen:n.value},void 0,!0)])]),_:3},8,["modelValue"])):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:n.value},void 0,!0)]),append:e.withCtx(()=>[a.items&&!l.value?(e.openBlock(),e.createBlock(C1,{key:0,items:r.items,"vuetify-options":r.vuetifyOptions},{"navigation-bar-prepend":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-prepend",{},void 0,!0)]),"navigation-bar-append":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-append",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-content",{},void 0,!0)]),_:3},8,["items","vuetify-options"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"])}}}),[["__scopeId","data-v-1d872dbc"]]),v1={class:"toolbar"},x1={class:"container"},_1=["aria-labelledby"],I1={key:0},T1={key:1,class:"link"},E1=["aria-labelledby"],Z1={class:"right-menu-item"},$1=S(e.defineComponent({__name:"HeaderToolbar",props:{leftMenu:{type:Array,default:()=>[{title:"Assuré",href:"https://www.ameli.fr/assure",openInNewTab:!0},{title:"Professionnel de santé"},{title:"Entreprise",href:"https://www.ameli.fr/entreprise",openInNewTab:!0}]},rightMenu:{type:Array,default:()=>[{title:"Qui sommes-nous ?",href:"https://www.assurance-maladie.ameli.fr/qui-sommes-nous",openInNewTab:!0},{title:"Carrières",href:"https://www.assurance-maladie.ameli.fr/carrieres",openInNewTab:!0},{title:"Études et données",href:"https://www.assurance-maladie.ameli.fr/etudes-et-donnees",openInNewTab:!0},{title:"Presse",href:"https://www.assurance-maladie.ameli.fr/presse",openInNewTab:!0}]},itemsSelectMenu:{type:Array,default:()=>[{text:"Chirurgien-dentiste",value:"Chirurgien-dentiste",href:"https://www.ameli.fr/chirurgien-dentiste",openInNewTab:!0},{text:"Établissement",value:"Établissement",href:"https://www.ameli.fr/etablissement",openInNewTab:!0},{text:"Exercice coordonné",value:"Exercice coordonné",href:"https://www.ameli.fr/exercice-coordonne",openInNewTab:!0},{text:"Infirmier",value:"Infirmier",href:"https://www.ameli.fr/infirmier",openInNewTab:!0},{text:"Laboratoire d'analyses médicales",value:"Laboratoire d'analyses médicales",href:"https://www.ameli.fr/laboratoire-danalyses-medicales",openInNewTab:!0},{text:"Masseur-kinésithérapeute",value:"Masseur-kinésithérapeute",href:"https://www.ameli.fr/masseur-kinesitherapeute",openInNewTab:!0},{text:"Médecin",value:"Médecin",href:"https://www.ameli.fr/medecin",openInNewTab:!0},{text:"Orthophoniste",value:"Orthophoniste",href:"https://www.ameli.fr/orthophoniste",openInNewTab:!0},{text:"Orthoptiste",value:"Orthoptiste",href:"https://www.ameli.fr/orthoptiste",openInNewTab:!0},{text:"Pédicure-podologue",value:"Pédicure-podologue",href:"https://www.ameli.fr/pedicure-podologue",openInNewTab:!0},{text:"Pharmacien",value:"Pharmacien",href:"https://www.ameli.fr/pharmacien",openInNewTab:!0},{text:"Professionnel de la LPP/LATM",value:"Professionnel de la LPP/LATM",href:"https://www.ameli.fr/professionnel-de-la-lpplatm",openInNewTab:!0},{text:"Psychologue",value:"Psychologue",href:"https://www.ameli.fr/psychologue",openInNewTab:!0},{text:"Sage-femme",value:"Sage-femme",href:"https://www.ameli.fr/sage-femme",openInNewTab:!0},{text:"Taxi conventionné",value:"Taxi conventionné",href:"https://www.ameli.fr/taxi-conventionne",openInNewTab:!0},{text:"Transporteur sanitaire",value:"Transporteur sanitaire",href:"https://www.ameli.fr/transporteur-sanitaire",openInNewTab:!0}]},ariaLeftMenu:{type:String,default:"left-menu"},ariaRightMenu:{type:String,default:"right-menu"}},setup(o,{expose:a}){const n=o,t=m=>m.href?"a":m.to?"RouterLink":"a",l=e.ref(!1),r=e.ref(!1),s=e.ref(null),c=()=>{var k;const m=(k=document.querySelector(".custom-select > span"))==null?void 0:k.textContent;m&&m==="Professionnel de santé"&&(r.value=!1),l.value=!1},i=m=>{m===1&&(l.value=!l.value)},d=m=>{s.value=m,m!==1&&(r.value=!1)},p=()=>{s.value=null};return a({hideOverlay:c,handleLink:i,checkActiveLink:d,deleteActiveLink:p,activeIndex:s,highlightMenu:r,showOverlay:l,getLinkComponent:t}),(m,k)=>(e.openBlock(),e.createElementBlock("div",v1,[e.createElementVNode("div",x1,[e.renderSlot(m.$slots,"left-menu",{},()=>[l.value?(e.openBlock(),e.createElementBlock("button",{key:0,"aria-label":"Close overlay",class:"overlay",onClick:c,onKeydown:[e.withKeys(c,["enter"]),e.withKeys(c,["esc"])]},null,32)):e.createCommentVNode("",!0),e.createElementVNode("nav",{id:"left-menu","aria-labelledby":n.ariaLeftMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.leftMenu,(u,f)=>(e.openBlock(),e.createElementBlock("li",{key:f,class:e.normalizeClass({active:s.value===f,highlight:r.value})},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(u)),{"aria-label":u.title,href:u.href,rel:u.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:u.openInNewTab?"_blank":void 0,title:u.title,to:u.to,onClick:V=>d(f),onFocus:V=>f===1&&l.value?r.value=!0:null,onMouseover:V=>f===1&&l.value?r.value=!0:null},{default:e.withCtx(()=>[o.itemsSelectMenu&&f===1?(e.openBlock(),e.createElementBlock("span",I1,[e.createVNode(mt,{items:o.itemsSelectMenu,label:u.title,outlined:!1,"is-header-toolbar":"",onClick:V=>i(f)},null,8,["items","label","onClick"])])):(e.openBlock(),e.createElementBlock("span",T1,e.toDisplayString(u.title),1))]),_:2},1064,["aria-label","href","rel","target","title","to","onClick","onFocus","onMouseover"]))],2))),128))])],8,_1)],!0),e.renderSlot(m.$slots,"right-menu",{},()=>[e.createElementVNode("nav",{id:"right-menu","aria-labelledby":n.ariaRightMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.rightMenu,(u,f)=>(e.openBlock(),e.createElementBlock("li",{key:f},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(u)),{"aria-label":u.title,href:u.href,rel:u.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:u.openInNewTab?"_blank":void 0,title:u.title,to:u.to,onClick:k[0]||(k[0]=V=>p())},{default:e.withCtx(()=>[e.createElementVNode("span",Z1,e.toDisplayString(u.title),1)]),_:2},1032,["aria-label","href","rel","target","title","to"]))]))),128))])],8,E1)],!0)])]))}}),[["__scopeId","data-v-e2d11fb5"]]),A1={label:"Choix de la langue. Actuellement"};var D1={aa:{name:"Afar",nativeName:"Afaraf"},ab:{name:"Abkhaz",nativeName:"аҧсуа бызшәа"},ae:{name:"Avestan",nativeName:"avesta"},af:{name:"Afrikaans",nativeName:"Afrikaans"},ak:{name:"Akan",nativeName:"Akan"},am:{name:"Amharic",nativeName:"አማርኛ"},an:{name:"Aragonese",nativeName:"aragonés"},ar:{name:"Arabic",nativeName:"العربية"},as:{name:"Assamese",nativeName:"অসমীয়া"},av:{name:"Avaric",nativeName:"авар мацӀ"},ay:{name:"Aymara",nativeName:"aymar aru"},az:{name:"Azerbaijani",nativeName:"azərbaycan dili"},ba:{name:"Bashkir",nativeName:"башҡорт теле"},be:{name:"Belarusian",nativeName:"беларуская мова"},bg:{name:"Bulgarian",nativeName:"български език"},bi:{name:"Bislama",nativeName:"Bislama"},bm:{name:"Bambara",nativeName:"bamanankan"},bn:{name:"Bengali",nativeName:"বাংলা"},bo:{name:"Tibetan",nativeName:"བོད་ཡིག"},br:{name:"Breton",nativeName:"brezhoneg"},bs:{name:"Bosnian",nativeName:"bosanski jezik"},ca:{name:"Catalan",nativeName:"Català"},ce:{name:"Chechen",nativeName:"нохчийн мотт"},ch:{name:"Chamorro",nativeName:"Chamoru"},co:{name:"Corsican",nativeName:"corsu"},cr:{name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"},cs:{name:"Czech",nativeName:"Čeština"},cu:{name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"},cv:{name:"Chuvash",nativeName:"чӑваш чӗлхи"},cy:{name:"Welsh",nativeName:"Cymraeg"},da:{name:"Danish",nativeName:"Dansk"},de:{name:"German",nativeName:"Deutsch"},dv:{name:"Divehi",nativeName:"ދިވެހި"},dz:{name:"Dzongkha",nativeName:"རྫོང་ཁ"},ee:{name:"Ewe",nativeName:"Eʋegbe"},el:{name:"Greek",nativeName:"Ελληνικά"},en:{name:"English",nativeName:"English"},eo:{name:"Esperanto",nativeName:"Esperanto"},es:{name:"Spanish",nativeName:"Español"},et:{name:"Estonian",nativeName:"eesti"},eu:{name:"Basque",nativeName:"euskara"},fa:{name:"Persian",nativeName:"فارسی"},ff:{name:"Fula",nativeName:"Fulfulde"},fi:{name:"Finnish",nativeName:"suomi"},fj:{name:"Fijian",nativeName:"vosa Vakaviti"},fo:{name:"Faroese",nativeName:"Føroyskt"},fr:{name:"French",nativeName:"Français"},fy:{name:"Western Frisian",nativeName:"Frysk"},ga:{name:"Irish",nativeName:"Gaeilge"},gd:{name:"Scottish Gaelic",nativeName:"Gàidhlig"},gl:{name:"Galician",nativeName:"galego"},gn:{name:"Guaraní",nativeName:"Avañe'ẽ"},gu:{name:"Gujarati",nativeName:"ગુજરાતી"},gv:{name:"Manx",nativeName:"Gaelg"},ha:{name:"Hausa",nativeName:"هَوُسَ"},he:{name:"Hebrew",nativeName:"עברית"},hi:{name:"Hindi",nativeName:"हिन्दी"},ho:{name:"Hiri Motu",nativeName:"Hiri Motu"},hr:{name:"Croatian",nativeName:"Hrvatski"},ht:{name:"Haitian",nativeName:"Kreyòl ayisyen"},hu:{name:"Hungarian",nativeName:"magyar"},hy:{name:"Armenian",nativeName:"Հայերեն"},hz:{name:"Herero",nativeName:"Otjiherero"},ia:{name:"Interlingua",nativeName:"Interlingua"},id:{name:"Indonesian",nativeName:"Bahasa Indonesia"},ie:{name:"Interlingue",nativeName:"Interlingue"},ig:{name:"Igbo",nativeName:"Asụsụ Igbo"},ii:{name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"},ik:{name:"Inupiaq",nativeName:"Iñupiaq"},io:{name:"Ido",nativeName:"Ido"},is:{name:"Icelandic",nativeName:"Íslenska"},it:{name:"Italian",nativeName:"Italiano"},iu:{name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"},ja:{name:"Japanese",nativeName:"日本語"},jv:{name:"Javanese",nativeName:"basa Jawa"},ka:{name:"Georgian",nativeName:"ქართული"},kg:{name:"Kongo",nativeName:"Kikongo"},ki:{name:"Kikuyu",nativeName:"Gĩkũyũ"},kj:{name:"Kwanyama",nativeName:"Kuanyama"},kk:{name:"Kazakh",nativeName:"қазақ тілі"},kl:{name:"Kalaallisut",nativeName:"kalaallisut"},km:{name:"Khmer",nativeName:"ខេមរភាសា"},kn:{name:"Kannada",nativeName:"ಕನ್ನಡ"},ko:{name:"Korean",nativeName:"한국어"},kr:{name:"Kanuri",nativeName:"Kanuri"},ks:{name:"Kashmiri",nativeName:"कश्मीरी"},ku:{name:"Kurdish",nativeName:"Kurdî"},kv:{name:"Komi",nativeName:"коми кыв"},kw:{name:"Cornish",nativeName:"Kernewek"},ky:{name:"Kyrgyz",nativeName:"Кыргызча"},la:{name:"Latin",nativeName:"latine"},lb:{name:"Luxembourgish",nativeName:"Lëtzebuergesch"},lg:{name:"Ganda",nativeName:"Luganda"},li:{name:"Limburgish",nativeName:"Limburgs"},ln:{name:"Lingala",nativeName:"Lingála"},lo:{name:"Lao",nativeName:"ພາສາລາວ"},lt:{name:"Lithuanian",nativeName:"lietuvių kalba"},lu:{name:"Luba-Katanga",nativeName:"Kiluba"},lv:{name:"Latvian",nativeName:"latviešu valoda"},mg:{name:"Malagasy",nativeName:"fiteny malagasy"},mh:{name:"Marshallese",nativeName:"Kajin M̧ajeļ"},mi:{name:"Māori",nativeName:"te reo Māori"},mk:{name:"Macedonian",nativeName:"македонски јазик"},ml:{name:"Malayalam",nativeName:"മലയാളം"},mn:{name:"Mongolian",nativeName:"Монгол хэл"},mr:{name:"Marathi",nativeName:"मराठी"},ms:{name:"Malay",nativeName:"Bahasa Melayu"},mt:{name:"Maltese",nativeName:"Malti"},my:{name:"Burmese",nativeName:"ဗမာစာ"},na:{name:"Nauru",nativeName:"Dorerin Naoero"},nb:{name:"Norwegian Bokmål",nativeName:"Norsk bokmål"},nd:{name:"Northern Ndebele",nativeName:"isiNdebele"},ne:{name:"Nepali",nativeName:"नेपाली"},ng:{name:"Ndonga",nativeName:"Owambo"},nl:{name:"Dutch",nativeName:"Nederlands"},nn:{name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"},no:{name:"Norwegian",nativeName:"Norsk"},nr:{name:"Southern Ndebele",nativeName:"isiNdebele"},nv:{name:"Navajo",nativeName:"Diné bizaad"},ny:{name:"Chichewa",nativeName:"chiCheŵa"},oc:{name:"Occitan",nativeName:"occitan"},oj:{name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"},om:{name:"Oromo",nativeName:"Afaan Oromoo"},or:{name:"Oriya",nativeName:"ଓଡ଼ିଆ"},os:{name:"Ossetian",nativeName:"ирон æвзаг"},pa:{name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"},pi:{name:"Pāli",nativeName:"पाऴि"},pl:{name:"Polish",nativeName:"Polski"},ps:{name:"Pashto",nativeName:"پښتو"},pt:{name:"Portuguese",nativeName:"Português"},qu:{name:"Quechua",nativeName:"Runa Simi"},rm:{name:"Romansh",nativeName:"rumantsch grischun"},rn:{name:"Kirundi",nativeName:"Ikirundi"},ro:{name:"Romanian",nativeName:"Română"},ru:{name:"Russian",nativeName:"Русский"},rw:{name:"Kinyarwanda",nativeName:"Ikinyarwanda"},sa:{name:"Sanskrit",nativeName:"संस्कृतम्"},sc:{name:"Sardinian",nativeName:"sardu"},sd:{name:"Sindhi",nativeName:"सिन्धी"},se:{name:"Northern Sami",nativeName:"Davvisámegiella"},sg:{name:"Sango",nativeName:"yângâ tî sängö"},si:{name:"Sinhala",nativeName:"සිංහල"},sk:{name:"Slovak",nativeName:"Slovenčina"},sl:{name:"Slovenian",nativeName:"slovenščina"},sm:{name:"Samoan",nativeName:"gagana fa'a Samoa"},sn:{name:"Shona",nativeName:"chiShona"},so:{name:"Somali",nativeName:"Soomaaliga"},sq:{name:"Albanian",nativeName:"Shqip"},sr:{name:"Serbian",nativeName:"српски језик"},ss:{name:"Swati",nativeName:"SiSwati"},st:{name:"Southern Sotho",nativeName:"Sesotho"},su:{name:"Sundanese",nativeName:"Basa Sunda"},sv:{name:"Swedish",nativeName:"Svenska"},sw:{name:"Swahili",nativeName:"Kiswahili"},ta:{name:"Tamil",nativeName:"தமிழ்"},te:{name:"Telugu",nativeName:"తెలుగు"},tg:{name:"Tajik",nativeName:"тоҷикӣ"},th:{name:"Thai",nativeName:"ไทย"},ti:{name:"Tigrinya",nativeName:"ትግርኛ"},tk:{name:"Turkmen",nativeName:"Türkmençe"},tl:{name:"Tagalog",nativeName:"Wikang Tagalog"},tn:{name:"Tswana",nativeName:"Setswana"},to:{name:"Tonga",nativeName:"faka Tonga"},tr:{name:"Turkish",nativeName:"Türkçe"},ts:{name:"Tsonga",nativeName:"Xitsonga"},tt:{name:"Tatar",nativeName:"татар теле"},tw:{name:"Twi",nativeName:"Twi"},ty:{name:"Tahitian",nativeName:"Reo Tahiti"},ug:{name:"Uyghur",nativeName:"ئۇيغۇرچە"},uk:{name:"Ukrainian",nativeName:"Українська"},ur:{name:"Urdu",nativeName:"اردو"},uz:{name:"Uzbek",nativeName:"Ўзбек"},ve:{name:"Venda",nativeName:"Tshivenḓa"},vi:{name:"Vietnamese",nativeName:"Tiếng Việt"},vo:{name:"Volapük",nativeName:"Volapük"},wa:{name:"Walloon",nativeName:"walon"},wo:{name:"Wolof",nativeName:"Wollof"},xh:{name:"Xhosa",nativeName:"isiXhosa"},yi:{name:"Yiddish",nativeName:"ייִדיש"},yo:{name:"Yoruba",nativeName:"Yorùbá"},za:{name:"Zhuang",nativeName:"Saɯ cueŋƅ"},zh:{name:"Chinese",nativeName:"中文"},zu:{name:"Zulu",nativeName:"isiZulu"}};const se=D1,_t={},Ve={},It=[],Tt=[],Et=[];for(const o in se){const{name:a,nativeName:n}=se[o];_t[o]=Ve[a.toLowerCase()]=Ve[n.toLowerCase()]={code:o,name:a,nativeName:n},It.push(o),Tt.push(a),Et.push(n)}var H1=class Ne{static getLanguages(a=[]){return a.map(n=>Ne.validate(n)?Object.assign({},_t[n]):{code:n,name:"",nativeName:""})}static getName(a){return Ne.validate(a)?se[a].name:""}static getAllNames(){return Tt.slice()}static getNativeName(a){return Ne.validate(a)?se[a].nativeName:""}static getAllNativeNames(){return Et.slice()}static getCode(a){return a=a.toLowerCase(),Ve.hasOwnProperty(a)?Ve[a].code:""}static getAllCodes(){return It.slice()}static validate(a){return se.hasOwnProperty(a)}};const we=at(H1),P1={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},z1=["id"],O1=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:A1.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(o,{expose:a,emit:n}){const t=o,l=D(P1,t),r=n,s=e.ref(!1),c=e.ref(t.modelValue);e.watch(()=>t.modelValue,u=>{c.value=u});function i(u){c.value=u,r("update:modelValue",u),r("change",u),s.value=!1}const d=e.computed(()=>s.value),p=e.computed(()=>"lang-menu-id"),m=e.computed(()=>{const u={};let f;return t.availableLanguages==="*"?f=we.getAllCodes():f=t.availableLanguages,f.forEach(V=>{u[V]={code:V,name:we.getName(V)||V,nativeName:we.getNativeName(V)||we.getName(V)||V}}),u}),k=e.computed(()=>{const u=m.value[c.value];return{name:(u==null?void 0:u.nativeName)||c.value,label:`${t.ariaLabel} ${(u==null?void 0:u.nativeName)||c.value}`}});return a({currentLangData:k,updateLang:i,selectedLanguage:c}),(u,f)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(he.VMenu,e.mergeProps(e.unref(l).menu,{id:d.value?"lang-menu":p.value,modelValue:s.value,"onUpdate:modelValue":f[0]||(f[0]=V=>s.value=V),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:V})=>[e.createVNode(T.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${t.ariaLabel} ${k.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":d.value},{...e.unref(l).btn,...V},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.value.name)+" ",1),u.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(v.VIcon,e.mergeProps({key:0},e.unref(l).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(et)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode($.VList,e.mergeProps(e.unref(l).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,(V,w,L)=>(e.openBlock(),e.createBlock($.VListItem,e.mergeProps({ref_for:!0},e.unref(l).listTile,{key:w,role:"menuitem",tabindex:L+1,"aria-label":`${t.ariaLabel} ${V.nativeName}`,"aria-labelledby":`${p.value} ${V.nativeName}`,onClick:h=>i(w)}),{default:e.withCtx(()=>[e.createVNode($.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(l).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(V.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,z1))}}),R1=S(O1,[["__scopeId","data-v-06ec7485"]]),Pe={xSmall:{width:"11",height:"32"},small:{width:"14",height:"40"},normal:{width:"22",height:"64"}},ee={homeLinkPrefix:"Accueil,",logoCnam:"Caisse nationale",logoAmeli:"ameli.fr",logoAmeliPro:"AmeliPro",logoCompteAmeli:"Compte ameli",compteEntreprise:{title:{text:"Compte",highlight:"entreprise"},subTitle:"Vos démarches maladie et risques professionnels"}},Zt={cnam:{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='110'%20height='64'%20viewBox='0%200%20110%2064'%20fill='%23007Fad'%3e%3cpath%20d='m7.3%2036.1-1.4.2a4%204%200%200%201-2-.5%203%203%200%200%201-1.3-1.4c-.3-.7-.4-1.4-.4-2.2%200-.8.1-1.5.4-2.1a3%203%200%200%201%201.3-1.4c.6-.4%201.2-.5%202-.5a6%206%200%200%201%202.8.7l.2-1.8-1.4-.5-1.6-.2a5.4%205.4%200%200%200-5%202.8%206%206%200%200%200-.7%203c0%201.2.2%202.2.7%203.1.5.9%201.2%201.6%202%202a6%206%200%200%200%203%20.7%206%206%200%200%200%203-.7l-.2-1.7a4%204%200%200%201-1.4.5zm9.6.4-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6-.5-.5-1.2-.8-2.1-.8-1%200-1.9.2-2.8.7l.2%201.5c.2-.2.6-.3.9-.4l1-.2c.5%200%20.9.1%201.2.3.2.2.4.6.4%201.1l-2.1.3a7%207%200%200%200-1.7%201%202%202%200%200%200-.8%201.6c0%20.7.2%201.3.7%201.7.4.4%201%20.6%201.7.6.5%200%20.9-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5h-.3zm-2.6-.7-.8.6-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm3.9-9.2H20v1.8h-1.8zm0%203.3H20v7.9h-1.8zm8.5%204.3c-.4-.3-.9-.7-1.6-.9l-1-.4-.5-.3a.8.8%200%200%201-.2-.5c0-.3.1-.5.3-.7.2-.2.5-.2.9-.2l1.1.2c.3.1.7.3%201%20.6l.2-1.5c-.7-.4-1.5-.6-2.3-.6-.9%200-1.7.2-2.2.7-.5.4-.8%201-.8%201.7%200%20.6.2%201.1.6%201.5l1.8.9%201.2.5c.2.2.3.4.3.7%200%20.3-.1.5-.3.7l-1%20.2c-.8%200-1.6-.3-2.5-.8l-.2%201.6a6%206%200%200%200%202.7.6c1%200%201.8-.2%202.3-.6.5-.4.8-1%20.8-1.7-.1-.9-.3-1.4-.6-1.7zm6.7%200c-.4-.3-.9-.7-1.6-.9l-1-.4-.5-.3-.3-.6c0-.3.1-.5.3-.7.2-.2.5-.2.9-.2l1.1.2c.3.1.7.3%201%20.6l.2-1.5c-.7-.4-1.5-.6-2.4-.6-.9%200-1.7.2-2.2.7-.5.4-.8%201-.8%201.7%200%20.6.2%201.1.6%201.5l1.8.9%201.2.5c.2.2.3.4.3.7%200%20.3-.1.5-.3.7l-1%20.2c-.8%200-1.6-.3-2.5-.8l-.2%201.6a6%206%200%200%200%202.7.6c1%200%201.8-.2%202.3-.6.5-.4.8-1%20.8-1.7.1-.8%200-1.3-.4-1.6zm8.8-1c0-.7-.1-1.2-.4-1.8a3.4%203.4%200%200%200-3-1.7c-.8%200-1.5.2-2.1.5-.6.4-1%20.8-1.3%201.5-.3.6-.4%201.3-.4%202%200%20.8.2%201.5.5%202.1.3.6.8%201.1%201.5%201.5.7.4%201.4.6%202.4.6s1.8-.2%202.7-.6l-.1-1.5c-.7.4-1.5.6-2.3.6-.7%200-1.3-.2-1.8-.6-.5-.4-.8-1-.8-1.8H42Zm-5.4-.3c.3-1.1.9-1.7%202-1.7.5%200%20.9.2%201.2.5.3.3.4.7.4%201.2zm16.6-2.2a3%203%200%200%200-2.3-1c-.9%200-1.6.3-2.3.8l-.1-.7h-1.6v7.9h1.8V32c.4-.5%201-.8%201.7-.8.6%200%201.1.2%201.3.5.3.4.4.9.4%201.7v4.3h1.8v-4.3a4%204%200%200%200-.7-2.7zm9.1%205.8-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6a3%203%200%200%200-2.2-.8c-1%200-1.9.2-2.8.7l.2%201.5%201.1-.5%201-.2c.5%200%20.9.1%201.2.3.2.3.4.7.4%201.3l-2.1.3a5%205%200%200%200-1.8.9c-.5.4-.7%201-.7%201.7s.2%201.3.7%201.7c.5.4%201%20.6%201.7.6.5%200%201-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5zm-2.5-.7-.8.6-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm7.9-4.5v-1.4H66v-2l-1.8.2v1.8h-1l-.2%201.4h1.2v4.6c0%20.5.2%201%20.5%201.4.4.4.9.6%201.6.6h1.4l.2-1.5h-.5l-1-.1-.3-.3-.1-1v-3.7zm1.3-4.7H71v1.8h-1.8zm0%203.3H71v7.9h-1.8zM80%2031.8a4%204%200%200%200-3.6-2.1c-.8%200-1.5.2-2.1.6-.6.4-1.1.8-1.4%201.5a4.6%204.6%200%200%200%200%204.2%203.6%203.6%200%200%200%203.5%202%205%205%200%200%200%202.2-.5A4%204%200%200%200%2080%2036a4.6%204.6%200%200%200%200-4.2zm-2%204c-.4.5-.9.7-1.6.7-.7%200-1.2-.2-1.6-.7-.4-.5-.6-1.1-.6-1.9%200-.8.2-1.4.6-1.9.4-.5.9-.7%201.6-.7.7%200%201.2.2%201.6.7.4.5.6%201.1.6%201.9%200%20.8-.2%201.4-.6%201.9zm10.2-5.1a3%203%200%200%200-2.3-1c-.9%200-1.6.3-2.3.8l-.1-.7h-1.6v7.9h1.8V32c.4-.5%201-.8%201.7-.8.6%200%201.1.2%201.3.5.3.4.4.9.4%201.7v4.3h1.8v-4.3c0-1.1-.2-2-.7-2.7zm9.1%205.8-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6a3%203%200%200%200-2.2-.8c-1%200-1.9.2-2.8.7l.1%201.5%201.1-.5%201-.2c.5%200%20.9.1%201.2.3.2.2.4.6.4%201.1l-2.1.3-1.7%201.1c-.5.4-.7%201-.7%201.7s.2%201.3.7%201.7c.5.4%201%20.6%201.7.6.5%200%201-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5zm-2.6-.7-.8.6a3%203%200%200%201-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm6.1.7-.3-.4-.1-1v-9.3h-1.8v10.1c0%20.6.2%201.1.5%201.5.3.4.9.6%201.5.6h.6l.2-1.5zm8.6-3.3c0-.7-.1-1.2-.4-1.8a3.4%203.4%200%200%200-3-1.7c-.8%200-1.5.2-2.1.5-.6.4-1%20.8-1.3%201.5-.3.6-.5%201.3-.5%202%200%20.8.2%201.5.5%202.1.3.6.8%201.1%201.5%201.5.7.4%201.4.6%202.4.6s1.8-.2%202.7-.6l-.1-1.5c-.7.4-1.5.6-2.3.6-.7%200-1.3-.2-1.8-.6-.5-.4-.8-1-.8-1.8h5.3zm-5.4-.3c.3-1.1.9-1.7%201.9-1.7.6%200%201%20.2%201.2.5.2.3.4.7.4%201.2z'/%3e%3c/svg%3e",alt:ee.logoCnam},ameli:{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='80'%20height='64'%20viewBox='0%200%2080%2064'%20fill='%230c419a'%3e%3cpath%20d='M.47%2037.75c0-2.75%202.31-4.3%207.41-4.85-.07-1.15-.8-1.84-2.2-1.84-1.09%200-2.17.47-3.4%201.2L.94%2029.68a10.4%2010.4%200%200%201%205.5-1.74c3.29%200%205.1%201.92%205.1%205.93v7.52H7.91v-1.26s-1.48%201.59-3.58%201.59C1.95%2041.69.47%2039.95.47%2037.75Zm7.41-.22v-2.28c-2.71.37-3.76%201.23-3.76%202.21%200%20.83.58%201.27%201.48%201.27.84-.04%201.6-.51%202.28-1.2ZM56.98%2024.23c0-1.2.94-2.03%202.21-2.03s2.2.83%202.2%202.03c0%201.19-.93%202.02-2.2%202.02-1.3%200-2.2-.87-2.2-2.02Zm.3%203.94h3.79v13.12h-3.8V28.17ZM35.76%2034.9c0-4.27%202.68-6.88%205.9-6.88%203.65%200%205.67%202.71%205.67%206.3a9.7%209.7%200%200%201-.14%201.73h-7.7c.32%201.92%201.62%202.78%203.32%202.78.98%200%201.8-.4%202.75-.94l1.3%202.43a8.14%208.14%200%200%201-4.56%201.48c-3.76-.04-6.54-2.57-6.54-6.9Zm8.35-1.45c0-1.45-.83-2.5-2.35-2.5-1.2%200-2.02.83-2.28%202.5h4.63ZM17.93%2029.98c1.05-1.05%202.2-1.96%203.9-1.96%201.82%200%202.94.76%203.59%202.14%201.12-1.16%202.31-2.14%204.05-2.14%202.82%200%204.08%202.03%204.08%205.25v8.06h-4V33.8c0-1.81-.52-2.35-1.53-2.35-.61%200-1.3.4-2.1%201.2v8.7h-4.05v-7.55c0-1.81-.47-2.35-1.51-2.35-.62%200-1.3.4-2.1%201.2v8.7h-4.01V28.39h3.68v1.6ZM64.98%2040.42c0-.68.5-1.22%201.19-1.22s1.2.54%201.2%201.22c0%20.7-.51%201.23-1.2%201.23s-1.2-.54-1.2-1.23ZM72.9%2027.99c-1.45%200-2.25.97-2.25%202.7v1.92l-1.2.08v.8h1.2v8.1h.94v-8.14h2.06v-.87H71.6v-1.85c0-1.26.44-1.91%201.3-1.91.33%200%20.65.07%201.02.22l.07.03.29-.76-.07-.03a3.8%203.8%200%200%200-1.3-.3ZM79.55%2032.58c-.33-.18-.65-.18-.9-.18-.95%200-1.78.61-2.47%201.7l-.07-1.49h-.83v8.94h.94v-6.08c.58-1.37%201.41-2.2%202.31-2.2.33%200%20.51.03.73.1l.07.04.25-.83h-.03ZM49.75%2037.32V22.85h3.8v14.61c0%20.83.36%201.08.69%201.08.14%200%20.25%200%20.47-.03l.47%202.86c-.44.18-1.05.32-1.92.32-2.64.04-3.5-1.7-3.5-4.37Z'/%3e%3c/svg%3e",alt:ee.logoAmeli},"ameli-pro":{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='99'%20height='64'%20viewBox='0%200%2099%2064'%20fill='none'%3e%3cpath%20fill='%2300a5df'%20d='M68.38%2038.78c.54.32%201.45.63%202.31.63%202.76%200%205.38-1.87%205.38-5.72v-2.86c0-3.59-2.62-5.7-5.7-5.7-3.09%200-5.71%202.11-5.71%205.7v13.73h3.72v-5.78Zm0-2.99v-4.83c0-1.8.85-2.68%202-2.68%201.12%200%201.97.88%201.97%202.68v2.6c0%201.97-.88%202.7-2%202.7-.67%200-1.32-.2-1.97-.47ZM77.97%2039.07h3.7v-8.68c0-1.23.67-2.11%201.84-2.11.63%200%201.28.13%201.85.29l.7-3.02a8.47%208.47%200%200%200-2.57-.42c-3.1%200-5.52%202.11-5.52%205.26v8.68ZM86.43%2033.45c0%203.72%202.44%205.96%205.8%205.96%203.35%200%205.8-2.24%205.8-5.96V31.1c0-3.72-2.45-5.96-5.8-5.96-3.36%200-5.8%202.24-5.8%205.96v2.36Zm3.69-.13v-2.1c0-1.8.52-2.94%202.1-2.94%201.56%200%202.11%201.14%202.11%202.94v2.1c0%201.8-.55%202.94-2.1%202.94-1.57%200-2.11-1.14-2.11-2.94Z'/%3e%3cpath%20fill='%230c419a'%20d='M.47%2035.64c0-2.82%202.38-4.42%207.64-4.97-.08-1.2-.82-1.9-2.27-1.9-1.12%200-2.24.48-3.5%201.23L.94%2027.36a10.75%2010.75%200%200%201%205.67-1.78c3.39%200%205.25%201.97%205.25%206.09v7.72H8.15v-1.3s-1.53%201.64-3.7%201.64C2%2039.69.48%2037.9.48%2035.64Zm7.64-.22v-2.34c-2.8.37-3.88%201.26-3.88%202.27%200%20.85.6%201.3%201.53%201.3.86-.04%201.64-.52%202.35-1.23ZM57.84%2021.75c0-1.22.97-2.08%202.28-2.08%201.3%200%202.27.86%202.27%202.08%200%201.23-.97%202.08-2.27%202.08-1.35%200-2.28-.89-2.28-2.08Zm.3%204.05h3.91v13.48h-3.9V25.8ZM36.24%2032.7c0-4.37%202.76-7.05%206.07-7.05%203.77%200%205.85%202.79%205.85%206.46%200%20.7-.07%201.45-.14%201.79h-7.94c.33%201.97%201.67%202.86%203.43%202.86%201%200%201.86-.41%202.83-.97l1.34%202.49a8.4%208.4%200%200%201-4.7%201.52c-3.87-.04-6.74-2.64-6.74-7.1Zm8.6-1.48c0-1.48-.85-2.56-2.41-2.56-1.23%200-2.1.85-2.35%202.56h4.77ZM18.18%2027.66c1.08-1.08%202.28-2%204.03-2%201.86%200%203.02.77%203.69%202.18%201.15-1.19%202.38-2.19%204.17-2.19%202.9%200%204.21%202.08%204.21%205.39v8.28h-4.14v-7.73c0-1.85-.52-2.41-1.56-2.41-.63%200-1.34.4-2.16%201.23v8.95h-4.18v-7.77c0-1.85-.48-2.41-1.56-2.41-.63%200-1.34.4-2.16%201.23v8.95h-4.14V26.02h3.8v1.64ZM50.52%2035.2V20.34h3.92v15c0%20.86.37%201.12.7%201.12.15%200%20.26%200%20.49-.04l.48%202.94c-.44.18-1.08.33-1.97.33-2.72.04-3.62-1.75-3.62-4.5Z'/%3e%3c/svg%3e",alt:ee.logoAmeliPro},"compte-ameli":{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20x='0'%20y='0'%20style='enable-background:new%200%200%20146%2064'%20version='1.1'%20width='146'%20height='64'%20viewBox='0%200%20146%2064'%3e%3cpath%20d='M10.5%2037.1c-1.3.4-2.7.6-4%20.6-1.9%200-3.1-1-3.1-4v-2.8c0-2.9%201.2-3.8%203.1-3.8%201.3%200%202.7.1%204%20.6l.6-2.8c-1.5-.4-3.1-.7-4.6-.7-3.7%200-6.5%202.2-6.5%206.5V34c0%204.4%202.8%206.5%206.5%206.5%201.6%200%203.1-.3%204.6-.7l-.6-2.7zM13.4%2035.3c0%203.4%202.2%205.5%205.3%205.5s5.3-2.1%205.3-5.5v-2.2c0-3.4-2.2-5.5-5.3-5.5s-5.3%202.1-5.3%205.5v2.2zm3.3-.1v-1.9c0-1.6.4-2.7%201.9-2.7s1.9%201%201.9%202.7v1.9c0%201.6-.4%202.7-1.9%202.7-1.5-.1-1.9-1.1-1.9-2.7zM26.4%2040.3h3.4V33c0-1.6.4-2.5%201.5-2.5%201%200%201.5%201%201.5%202.8v6.9h3.4v-6.9c0-1.9.4-2.8%201.5-2.8%201%200%201.5.9%201.5%202.5v7.4h3.4v-7.5c0-3.4-2.2-5-4.9-5-1.3%200-2.4.6-3.1%201.6-.7-1-1.8-1.6-3.1-1.6-2.7%200-4.9%201.6-4.9%205l-.2%207.4zM48.2%2040c.4.3%201.3.6%202.1.6%202.5%200%204.9-1.8%204.9-5.2v-2.7c0-3.2-2.4-5.2-5.2-5.2s-5.2%201.9-5.2%205.2v12.4h3.4V40zm0-2.6V33c0-1.6.7-2.4%201.8-2.4s1.8.7%201.8%202.4v2.4c0%201.8-.7%202.5-1.8%202.5-.6-.1-1.2-.2-1.8-.5zM58.7%2040.3h3.4v-10H64v-2.2h-1.9v-3.8l-3.4.4v3.4h-2.1l.4%202.2h1.5v10h.2zM65.6%2035.3c0%203.5%202.2%205.3%205.5%205.3%201.6%200%202.7-.3%204-.7l-.6-2.7c-1%20.3-2.2.6-3.4.6-1.5%200-2.2-.7-2.2-2.5v-.1h6.8v-2.7c0-2.8-2.2-4.7-5-4.7s-5%201.8-5%205.2c-.1%200-.1%202.3-.1%202.3zm3.4-2.5v-.3c0-1%20.7-1.9%201.6-1.9%201%200%201.6.9%201.6%201.9v.3H69z'%20fill='%230084b2'/%3e%3cpath%20d='M85.1%2036.9c0-2.7%202.1-4%207.1-4.4%200-1-.6-1.5-1.9-1.5s-2.1.3-3.4%201l-1.5-2.5c1.6-.9%203.5-1.5%205.5-1.5%203.2%200%205.2%201.6%205.2%205.5v6.9h-3.2l-.3-1.2c-.9.9-2.2%201.5-3.7%201.5-2.5.1-3.8-1.7-3.8-3.8zm7.1-.1v-1.9c-2.5.3-3.4.9-3.4%201.8s.4%201%201.3%201c.7%200%201.5-.3%202.1-.9zM99.3%2028.2h3.2l.3%201.5c1-.9%202.1-1.8%203.8-1.8s2.8.7%203.5%201.9c1.2-1%202.2-1.9%204-1.9%202.7%200%204%201.8%204%204.9v7.5h-3.8v-7.1c0-1.6-.4-2.1-1.5-2.1s-1.3.3-2.1%201v8.1h-4v-7.1c0-1.6-.4-2.1-1.5-2.1s-1.3.3-2.1%201v8.1h-3.8V28.2c.1%200%200%200%200%200zM120.5%2034.3c0-4%202.8-6.2%205.9-6.2%203.1%200%205.5%202.7%205.5%205.8v1.6h-7.5c.3%201.6%201.6%202.4%203.2%202.4s1.8-.3%202.7-.7l1.3%202.4c-1.3.9-3.1%201.3-4.6%201.3-3.9-.3-6.5-2.5-6.5-6.6zm8-1.5c0-1.2-.4-2.1-1.9-2.1s-2.1.7-2.4%202.1h4.3zM134.5%2036.4V23.2h3.8v13.3c0%20.7.4%201%20.7%201h.4l.4%202.8c-.4.1-1.2.3-1.9.3-2.5%200-3.4-1.6-3.4-4.2zM141.6%2024.6c0-1.2%201-1.9%202.2-1.9%201.3%200%202.2.7%202.2%201.9s-1%201.9-2.2%201.9c-1.3.1-2.2-.6-2.2-1.9zm.3%203.6h3.8v12.1h-3.8V28.2z'%20fill='%230c419a'/%3e%3c/svg%3e",alt:ee.logoCompteAmeli}},F1=["height"],q1=["width","height","fill"],K1=["src","alt"],U1={key:2,class:"vd-title-container d-flex justify-center flex-column text-primary"},G1={key:1,class:"vd-title text-caption"},W1=S(e.defineComponent({__name:"LogoBrandSection",props:{theme:{default:"default"},serviceTitle:{default:void 0},serviceSubTitle:{default:void 0},mobileVersion:{type:Boolean,default:!1},reduceLogo:{type:Boolean,default:!1},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,n=e.useSlots(),t=e.computed(()=>{if(a.theme==="compte-entreprise"){const{title:x,subTitle:_}=ee.compteEntreprise;return{title:x,subTitle:_}}return{title:a.serviceTitle||"",subTitle:a.serviceSubTitle||""}}),l=e.computed(()=>a.mobileVersion&&m.value),r=e.computed(()=>l.value?"32px":a.mobileVersion?"40px":"64px"),s=e.computed(()=>!a.reduceLogo&&a.theme==="risque-pro"),c=e.computed(()=>a.theme==="compte-entreprise"),i=e.computed(()=>a.theme==="compte-ameli"&&a.mobileVersion),d=e.computed(()=>a.reduceLogo||c.value||i.value),p=e.computed(()=>a.theme in Zt?Zt[a.theme]:null),m=e.computed(()=>!!p.value),k=e.computed(()=>a.theme==="ameli-pro"||a.theme==="ameli"),u=e.computed(()=>{var x,_,E,z;if((x=a.homeLink)!=null&&x.to){const Z=(E=(_=e.getCurrentInstance())==null?void 0:_.appContext)==null?void 0:E.components;return Z&&"RouterLink"in Z?"router-link":"div"}return(z=a.homeLink)!=null&&z.href?"a":"div"}),f=e.computed(()=>k.value?u.value:"div"),V=e.computed(()=>k.value&&p.value?`${ee.homeLinkPrefix} ${p.value.alt}`:null),w=e.computed(()=>a.reduceLogo?m.value:!1),L=e.computed(()=>!!n["brand-content"]),h=e.computed(()=>!!(t.value.title||t.value.subTitle||L.value||m.value)),C=e.computed(()=>a.reduceLogo?!1:h.value),b=e.computed(()=>!!(t.value.title&&t.value.subTitle&&!a.mobileVersion)),M=e.computed(()=>{switch(a.theme){case"cnam":case"ameli-pro":return be.secondary;case"compte-entreprise":return"#cd545b";default:return be.primary}}),B=e.computed(()=>a.mobileVersion?m.value?Pe.xSmall:Pe.small:Pe.normal),I=e.computed(()=>a.mobileVersion?m.value?O.X_SMALL:O.SMALL:O.NORMAL);return(x,_)=>{var E,z;return e.openBlock(),e.createElementBlock("div",{height:r.value,class:"vd-logo-brand-section d-flex"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.value),{to:u.value==="router-link"?(E=x.homeLink)==null?void 0:E.to:void 0,href:u.value==="a"?(z=x.homeLink)==null?void 0:z.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>{var Z;return[e.createVNode(Ae,{"hide-signature":d.value,"hide-organism":i.value,"risque-pro":s.value,"aria-label":(Z=x.homeLink)==null?void 0:Z.ariaLabel,avatar:w.value,size:I.value,class:e.normalizeClass({"mr-2":w.value})},null,8,["hide-signature","hide-organism","risque-pro","aria-label","avatar","size","class"])]}),_:1},8,["to","href"])),e.renderSlot(x.$slots,"default",{},()=>{var Z,q;return[C.value?(e.openBlock(),e.createElementBlock("svg",{key:0,width:B.value.width,height:B.value.height,fill:M.value,role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},_[0]||(_[0]=[e.createElementVNode("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)]),8,q1)):e.createCommentVNode("",!0),p.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(f.value),{key:1,"aria-label":V.value,to:f.value==="router-link"?(Z=x.homeLink)==null?void 0:Z.to:void 0,href:f.value==="a"?(q=x.homeLink)==null?void 0:q.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>[e.createElementVNode("img",{src:p.value.src,alt:p.value.alt},null,8,K1)]),_:1},8,["aria-label","to","href"])):h.value?(e.openBlock(),e.createElementBlock("div",U1,[e.renderSlot(x.$slots,"brand-content",{},()=>[t.value.title?(e.openBlock(),e.createElementBlock("h1",{key:0,class:e.normalizeClass([{"vd-compte-entreprise-title":c.value},"vd-title text-caption text-md-subtitle-1 font-weight-medium"])},[typeof t.value.title=="string"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.value.title),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(t.value.title.text)+" ",1),e.createElementVNode("span",null,e.toDisplayString(t.value.title.highlight),1)],64))],2)):e.createCommentVNode("",!0),b.value?(e.openBlock(),e.createElementBlock("h2",G1,e.toDisplayString(t.value.subTitle),1)):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]},!0)],8,F1)}}}),[["__scopeId","data-v-ca95c6a8"]]),j1="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%20171%20172'%3e%3cpath%20fill='%23e7ecf5'%20fill-rule='evenodd'%20d='M170.98%2085.88c-.67%2023.17-21.93%2038.99-39.79%2053.75-15.66%2012.94-33.5%2021.47-53.71%2023.52-23.03%202.34-49.9%205.4-65.83-11.4C-4.15%20135.07-.9%20108.28%204.2%2085.88%208.22%2068.22%2023.74%2057.72%2036.11%2044.5c13.13-14.02%2022.4-33.9%2041.37-36.9%2020.81-3.3%2040.79%207.79%2056.95%2021.32%2017.98%2015.05%2037.24%2033.52%2036.55%2056.97Z'%20clip-rule='evenodd'/%3e%3ccircle%20cx='123.87'%20cy='127.71'%20r='17.83'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3ccircle%20cx='126.62'%20cy='126.25'%20r='15.08'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3ccircle%20cx='126.95'%20cy='125.92'%20r='10.86'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3cpath%20fill='%230c419a'%20d='M87.88%2067.72c0-19.13%2013.03-28.19%2024.48-30.48%2021.07-4.21%2054.13%2012.81%2054.63%2057.07.42%2036.27-15.75%2076.47-51.55%2076.52-32.75.05-41.02-27.72-45.88-34.2-1.66-2.2-5.02-8.76-8.76-11.68-2.48-1.93-8.1-1.9-12.48-3.73-4.8-2-11.98-8.02-13.46-13.94l-5.19-22.54c2.4-1.93%203.9-2.06%206.65-1.78.97%202.54%203.37%2010.22%206.49%2020.6%203.74%2012.47%2013.61%2011.83%2022.37%209.4%208.75-2.44%2010.7-13.46%209.73-19.46-.78-4.8-5.73-15.19-8.11-19.78%202.02-2.3%203.46-2.8%206.32-2.92%201.2%202.43%204.22%208.66%206.81%2014.1%203.24%206.82%203.73%2012.81%203.24%2016.87-.48%204.05-4.37%2012.32-6.32%2013.62-2.43%201.78-1.93%203.73-2.1%206.8-.36%206.15%208.87%2041.35%2040.69%2041.19%2034.77-.19%2045.7-47.56%2045.4-69.07-.6-41.99-30.97-55.12-46.54-51.07-8.47%202.2-19.74%206.98-20.26%2024.48-.46%2015.12%2012.9%2031.98%2021.23%2041.52%201.42%201.63%202.7%203.04%203.73%204.2-.64%202.43-2.75%204.05-4.7%204.86a217.2%20217.2%200%200%201-4.05-4.34c-12.78-14.09-22.37-28.9-22.37-46.24Z'/%3e%3cpath%20fill='%230c419a'%20d='M120.8%2035.67c-3-.16-5.91.05-8.64.59a32.39%2032.39%200%200%200-17.06%209.22c-4.85%205.12-8.22%2012.45-8.22%2022.24%200%2017.7%209.78%2032.75%2022.63%2046.91l.74-.67-.74.67c1.34%201.47%202.7%202.93%204.07%204.36l.47.5.63-.27c2.16-.88%204.54-2.68%205.29-5.52l.13-.52-.35-.4c-1.04-1.17-2.3-2.57-3.72-4.2l-.75.66.74-.66c-8.3-9.5-21.42-26.32-20.98-40.83.25-8.54%203.08-13.8%206.83-17.28%203.75-3.48%208.51-5.18%2012.68-6.26%2014.75-3.84%2044.7%208.6%2045.29%2050.11.15%2010.58-2.5%2027.72-9.45%2042.08-6.95%2014.37-18.02%2025.89-34.95%2025.98-15.55.08-25.46-8.41-31.57-17.78a56.35%2056.35%200%200%201-6.43-13.66c-1.3-4.08-1.76-7.46-1.7-8.7.1-1.6.03-2.84.2-3.75.16-.92.45-1.52%201.5-2.3l-.04.03a7.72%207.72%200%200%200%202.04-2.4%2034.63%2034.63%200%200%200%202.03-3.79c1.3-2.8%202.42-5.88%202.7-8.14.5-4.26-.02-10.43-3.34-17.42-2.59-5.44-5.6-11.67-6.81-14.11l-.3-.59-.64.03c-2.96.13-4.9.84-7.03%203.26l-.45.51.31.61c1.18%202.27%203%206%204.63%209.75%201.62%203.74%203.03%207.55%203.38%209.73.45%202.8.22%206.93-1.16%2010.55-1.39%203.6-3.83%206.66-7.85%207.78-4.3%201.2-8.8%201.9-12.54.9-3.73-1.02-6.8-3.62-8.61-9.63-2.06-6.86-3.06-9.84-4.3-13.66l-2.19-6.94-.02-.06-.2-.56-.63-.08c-2.83-.28-4.84-.04-7.38%202l-.49.4%205.35%2023.15v.01c.8%203.25%203.09%206.34%205.75%208.92a28.5%2028.5%200%200%200%208.28%205.7c2.34.98%204.9%201.43%207.14%201.9%202.25.45%204.17.96%205.12%201.7%201.7%201.32%203.44%203.63%204.94%205.87%201.49%202.24%202.71%204.4%203.63%205.61%201.1%201.46%202.56%204.44%204.54%207.98a67.85%2067.85%200%200%200%207.99%2011.64c6.9%207.9%2017.5%2015.02%2034.15%2014.99%2018.28-.03%2031.63-10.37%2040.22-25.18%208.59-14.8%2012.54-34.06%2012.33-52.35-.44-39.16-26.18-57.56-47.2-58.63Zm-.12%202c19.88%201.01%2044.88%2018.36%2045.31%2056.65.2%2017.98-3.72%2036.95-12.06%2051.33-8.34%2014.38-20.96%2024.16-38.5%2024.18-16.08.02-26-6.72-32.64-14.31a65.94%2065.94%200%200%201-7.74-11.3c-1.96-3.49-3.35-6.41-4.69-8.2-.74-.98-2.03-3.2-3.57-5.52-1.53-2.3-3.33-4.74-5.37-6.34-1.54-1.2-3.67-1.62-5.95-2.09-2.28-.46-4.72-.91-6.76-1.77a27%2027%200%200%201-7.67-5.3c-2.5-2.41-4.54-5.3-5.2-7.96l-5.03-21.8a6.11%206.11%200%200%201%204.78-1.28l6.26%2019.88c1.94%206.47%205.67%209.8%2010%2010.97%204.33%201.18%209.15.34%2013.6-.9%204.73-1.31%207.64-4.98%209.17-8.99%201.54-4%201.8-8.38%201.28-11.58-.43-2.62-1.88-6.4-3.53-10.2a160.61%20160.61%200%200%200-4.34-9.16%205.98%205.98%200%200%201%204.51-2.08c1.3%202.64%204.02%208.25%206.49%2013.43%203.16%206.65%203.61%2012.46%203.15%2016.32-.21%201.8-1.28%204.87-2.53%207.54a32.87%2032.87%200%200%201-1.9%203.56%208.1%208.1%200%200%201-1.46%201.8l-.01.02-.02.01a5.54%205.54%200%200%200-2.3%203.55c-.22%201.27-.13%202.53-.2%204-.12%201.85.43%205.18%201.77%209.41a58.24%2058.24%200%200%200%206.66%2014.16c6.36%209.73%2016.98%2018.76%2033.26%2018.68%2017.83-.1%2029.6-12.36%2036.74-27.1%207.13-14.75%209.8-32.05%209.65-42.98-.6-42.47-31.4-56.3-47.8-52.03-4.3%201.12-9.4%202.9-13.53%206.74-4.13%203.83-7.2%209.72-7.47%2018.68-.47%2015.41%2012.52%2031.85%2020.92%2041.53a20.25%2020.25%200%200%201-3.57%203.35c-12.38-13.8-21.5-28.16-21.5-44.85%200-9.34%203.14-16.1%207.66-20.86a30.46%2030.46%200%200%201%2016-8.64c2.55-.5%205.29-.7%208.13-.55zm-5.41%2073.07%202.52%202.84a6.6%206.6%200%200%201-3.32%203.44c-.92-.97-1.84-1.96-2.75-2.95%201.3-.98%202.49-2.1%203.55-3.33z'%20color='%23000'/%3e%3cpath%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'%20d='m34.44%2082.53.1.36a6.74%206.74%200%200%200-3.73%201.04C26.1%2064.48%2015.89%2025.9%2028.38%2012.6c4.54-4.54%2010.21-6.1%2012.48-6.32l.81%203.56a22.53%2022.53%200%200%200-12%206.81c-9.96%2010.61%201.1%2052.13%204.77%2065.88Z'/%3e%3cpath%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'%20d='M37.94%2018.27c18%2011.03%2028.86%2042.16%2033.4%2052.7A6.49%206.49%200%200%200%2068%2072.59c-6.39-16.54-19.2-44.02-30.06-50.75C29.25%2016.46%2021.9%2018.6%2018%2020.71c-.05-1.7-.35-2.44-1.3-3.4%206.65-2.44%2014.1-3.74%2021.24.96Z'/%3e%3cpath%20fill='%230c419a'%20stroke='%230c419a'%20stroke-width='2'%20d='M46.86%2010c-2.47%200-4.7%201.3-5.84-1.61-.65-1.79.16-3.41%201.46-3.9%201.3-.48%202.43-.64%202.92-1.13a7.2%207.2%200%200%201%203.73-2.1c2.24-.38%204.54.48%205.51%202.91a4.28%204.28%200%200%201-2.76%205.84c-1.45.48-3.72%200-5.02%200Z'/%3e%3cellipse%20cx='52.51'%20cy='5.35'%20fill='%23fff'%20stroke='%23fff'%20stroke-width='2'%20rx='1.12'%20ry='2.28'%20transform='rotate(-13%2052.51%205.35)'/%3e%3cpath%20fill='%230c419a'%20stroke='%230c419a'%20stroke-width='2'%20d='M10.7%2017.3c2.47%200%205.74-1.94%206.98%201.46.64%201.78.11%203.7-1.18%204.18-1.3.48-2.44.65-2.92%201.13a7.2%207.2%200%200%201-3.73%202.11c-2.25.38-4.67-.44-5.51-2.92-.77-2.23-.26-4.37%201.83-5.47%201.78-.94%202.75-.49%204.53-.49Z'/%3e%3cellipse%20cx='6.47'%20cy='22.53'%20fill='%23fff'%20stroke='%23fff'%20stroke-width='2'%20rx='1.12'%20ry='2.28'%20transform='rotate(158%206.47%2022.53)'/%3e%3c/svg%3e",ze={pageTitle:"Maintenance en cours",message:"L’application n’est pas disponible pour le moment, veuillez nous excuser pour la gêne occasionnée."},Y1=["alt"],X1=S(e.defineComponent({__name:"MaintenancePage",setup(o){return(a,n)=>(e.openBlock(),e.createBlock($e,{"page-title":e.unref(ze).pageTitle,message:e.unref(ze).message,"no-btn":""},{illustration:e.withCtx(()=>[e.createElementVNode("img",{src:j1,alt:e.unref(ze).pageTitle},null,8,Y1)]),_:1},8,["page-title","message"]))}}),[["__scopeId","data-v-aea9e609"]]);function Oe(){const o=(n,t={})=>{const l=r=>t.ignoreSpace?r.replace(/\s/g,"").length:r.length;return r=>{var s,c;if(n!=="required"&&typeof r=="string"&&r.trim()==="")return{};switch(n){case"required":return typeof r=="string"&&r.trim()?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`Vous devez renseigner ${t.fieldName||"ce champ"}.`};case"min":return typeof r=="number"&&r>=(t.value??0)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`La valeur doit être supérieure ou égale à ${t.value}.`};case"minLength":return typeof r=="string"&&l(r)>=(t.length??0)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`Ce champ doit avoir au moins ${t.length} caractères.`};case"max":return typeof r=="number"&&r<=(t.value??1/0)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`La valeur doit être inférieure ou égale à ${t.value}.`};case"maxLength":return typeof r=="string"&&l(r)<=(t.length??1/0)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`Ce champ ne doit pas dépasser ${t.length} caractères.`};case"exactLength":return typeof r=="string"&&l(r)===(t.length??0)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||`Ce champ doit avoir exactement ${t.length} caractères.`};case"email":return typeof r=="string"&&/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(r)?{success:t.successMessage||"Le champ est valide."}:{error:t.message||"Veuillez entrer un email valide."};case"matchPattern":return typeof r=="string"&&((s=t.pattern)!=null&&s.test(r))?{success:t.successMessage||"Le champ est valide."}:{error:t.message||"Format invalide."};case"custom":{const i=(c=t.validate)==null?void 0:c.call(t,r);return i===!0?{success:t.successMessage||"Le champ est valide."}:{error:typeof i=="string"?i:t.message||"Validation échouée."}}default:return{error:"La règle spécifiée n'existe pas."}}}};return{generateRules:n=>n.map(t=>o(t.type,t.options))}}var J1=Object.defineProperty,Q1=(o,a,n)=>a in o?J1(o,a,{enumerable:!0,configurable:!0,writable:!0,value:n}):o[a]=n,ce=(o,a,n)=>Q1(o,typeof a!="symbol"?a+"":a,n);const $t={"#":{pattern:/[0-9]/},"@":{pattern:/[a-zA-Z]/},"*":{pattern:/[a-zA-Z0-9]/}},At=(o,a,n)=>o.replaceAll(a,"").replace(n,".").replace("..",".").replace(/[^.\d]/g,""),Dt=(o,a,n)=>{var t;return new Intl.NumberFormat(((t=n.number)==null?void 0:t.locale)??"en",{minimumFractionDigits:o,maximumFractionDigits:a,roundingMode:"trunc"})},e2=(o,a=!0,n)=>{var t,l,r,s;const c=((t=n.number)==null?void 0:t.unsigned)!==!0&&o.startsWith("-")?"-":"",i=((l=n.number)==null?void 0:l.fraction)??0;let d=Dt(0,i,n);const p=d.formatToParts(1000.12),m=((r=p.find(w=>w.type==="group"))==null?void 0:r.value)??" ",k=((s=p.find(w=>w.type==="decimal"))==null?void 0:s.value)??".",u=At(o,m,k);if(Number.isNaN(parseFloat(u)))return c;const f=u.split(".");if(f[1]!=null&&f[1].length>=1){const w=f[1].length<=i?f[1].length:i;d=Dt(w,i,n)}let V=d.format(parseFloat(u));return a?i>0&&u.endsWith(".")&&!u.slice(0,-1).includes(".")&&(V+=k):V=At(V,m,k),c+V};class t2{constructor(a={}){ce(this,"opts",{}),ce(this,"memo",new Map);const n={...a};if(n.tokens!=null){n.tokens=n.tokensReplace?{...n.tokens}:{...$t,...n.tokens};for(const t of Object.values(n.tokens))typeof t.pattern=="string"&&(t.pattern=new RegExp(t.pattern))}else n.tokens=$t;Array.isArray(n.mask)&&(n.mask.length>1?n.mask=[...n.mask].sort((t,l)=>t.length-l.length):n.mask=n.mask[0]??""),n.mask===""&&(n.mask=null),this.opts=n}masked(a){return this.process(a,this.findMask(a))}unmasked(a){return this.process(a,this.findMask(a),!1)}isEager(){return this.opts.eager===!0}isReversed(){return this.opts.reversed===!0}completed(a){const n=this.findMask(a);if(this.opts.mask==null||n==null)return!1;const t=this.process(a,n).length;return typeof this.opts.mask=="string"?t>=this.opts.mask.length:t>=n.length}findMask(a){const n=this.opts.mask;if(n==null)return null;if(typeof n=="string")return n;if(typeof n=="function")return n(a);const t=this.process(a,n.slice(-1).pop()??"",!1);return n.find(l=>this.process(a,l,!1).length>=t.length)??""}escapeMask(a){const n=[],t=[];return a.split("").forEach((l,r)=>{l==="!"&&a[r-1]!=="!"?t.push(r-t.length):n.push(l)}),{mask:n.join(""),escaped:t}}process(a,n,t=!0){if(this.opts.number!=null)return e2(a,t,this.opts);if(n==null)return a;const l=`v=${a},mr=${n},m=${t?1:0}`;if(this.memo.has(l))return this.memo.get(l);const{mask:r,escaped:s}=this.escapeMask(n),c=[],i=this.opts.tokens!=null?this.opts.tokens:{},d=this.isReversed()?-1:1,p=this.isReversed()?"unshift":"push",m=this.isReversed()?0:r.length-1,k=this.isReversed()?()=>w>-1&&L>-1:()=>w<r.length&&L<a.length,u=C=>!this.isReversed()&&C<=m||this.isReversed()&&C>=m;let f,V=-1,w=this.isReversed()?r.length-1:0,L=this.isReversed()?a.length-1:0,h=!1;for(;k();){const C=r.charAt(w),b=i[C],M=(b==null?void 0:b.transform)!=null?b.transform(a.charAt(L)):a.charAt(L);if(!s.includes(w)&&b!=null?(M.match(b.pattern)!=null?(c[p](M),b.repeated?(V===-1?V=w:w===m&&w!==V&&(w=V-d),m===V&&(w-=d)):b.multiple&&(h=!0,w-=d),w+=d):b.multiple?h&&(w+=d,L-=d,h=!1):M===f?f=void 0:b.optional&&(w+=d,L-=d),L+=d):(t&&!this.isEager()&&c[p](C),M===C&&!this.isEager()?L+=d:f=C,this.isEager()||(w+=d)),this.isEager())for(;u(w)&&(i[r.charAt(w)]==null||s.includes(w));){if(t){if(c[p](r.charAt(w)),a.charAt(L)===r.charAt(w)){w+=d,L+=d;continue}}else r.charAt(w)===a.charAt(L)&&(L+=d);w+=d}}return this.memo.set(l,c.join("")),this.memo.get(l)}}const Ht=o=>JSON.parse(o.replaceAll("'",'"')),a2=(o,a={})=>{const n={...a};o.dataset.maska!=null&&o.dataset.maska!==""&&(n.mask=n2(o.dataset.maska)),o.dataset.maskaEager!=null&&(n.eager=Be(o.dataset.maskaEager)),o.dataset.maskaReversed!=null&&(n.reversed=Be(o.dataset.maskaReversed)),o.dataset.maskaTokensReplace!=null&&(n.tokensReplace=Be(o.dataset.maskaTokensReplace)),o.dataset.maskaTokens!=null&&(n.tokens=o2(o.dataset.maskaTokens));const t={};return o.dataset.maskaNumberLocale!=null&&(t.locale=o.dataset.maskaNumberLocale),o.dataset.maskaNumberFraction!=null&&(t.fraction=parseInt(o.dataset.maskaNumberFraction)),o.dataset.maskaNumberUnsigned!=null&&(t.unsigned=Be(o.dataset.maskaNumberUnsigned)),(o.dataset.maskaNumber!=null||Object.values(t).length>0)&&(n.number=t),n},Be=o=>o!==""?!!JSON.parse(o):!0,n2=o=>o.startsWith("[")&&o.endsWith("]")?Ht(o):o,o2=o=>{if(o.startsWith("{")&&o.endsWith("}"))return Ht(o);const a={};return o.split("|").forEach(n=>{const t=n.split(":");a[t[0]]={pattern:new RegExp(t[1]),optional:t[2]==="optional",multiple:t[2]==="multiple",repeated:t[2]==="repeated"}}),a};class l2{constructor(a,n={}){ce(this,"items",new Map),ce(this,"eventAbortController"),ce(this,"onInput",t=>{if(t instanceof CustomEvent&&t.type==="input"&&!t.isTrusted&&!t.bubbles)return;const l=t.target,r=this.items.get(l),s="inputType"in t&&t.inputType.startsWith("delete"),c=r.isEager(),i=s&&c&&r.unmasked(l.value)===""?"":l.value;this.fixCursor(l,s,()=>this.setValue(l,i))}),this.options=n,this.eventAbortController=new AbortController,this.init(this.getInputs(a))}update(a={}){this.options={...a},this.init(Array.from(this.items.keys()))}updateValue(a){a.value!==""&&a.value!==this.processInput(a).masked&&this.setValue(a,a.value)}destroy(){this.eventAbortController.abort(),this.items.clear()}init(a){const n=this.getOptions(this.options);for(const t of a){if(!this.items.has(t)){const{signal:r}=this.eventAbortController;t.addEventListener("input",this.onInput,{capture:!0,signal:r})}const l=new t2(a2(t,n));this.items.set(t,l),queueMicrotask(()=>this.updateValue(t)),t.selectionStart===null&&l.isEager()&&console.warn("Maska: input of `%s` type is not supported",t.type)}}getInputs(a){return typeof a=="string"?Array.from(document.querySelectorAll(a)):"length"in a?Array.from(a):[a]}getOptions(a){const{onMaska:n,preProcess:t,postProcess:l,...r}=a;return r}fixCursor(a,n,t){const l=a.selectionStart,r=a.value;if(t(),l===null||l===r.length&&!n)return;const s=a.value,c=r.slice(0,l),i=s.slice(0,l),d=this.processInput(a,c).unmasked,p=this.processInput(a,i).unmasked;let m=l;c!==i&&(m+=n?s.length-r.length:d.length-p.length),a.setSelectionRange(m,m)}setValue(a,n){const t=this.processInput(a,n);a.value=t.masked,this.options.onMaska!=null&&(Array.isArray(this.options.onMaska)?this.options.onMaska.forEach(l=>l(t)):this.options.onMaska(t)),a.dispatchEvent(new CustomEvent("maska",{detail:t})),a.dispatchEvent(new CustomEvent("input",{detail:t.masked}))}processInput(a,n){const t=this.items.get(a);let l=n??a.value;this.options.preProcess!=null&&(l=this.options.preProcess(l));let r=t.masked(l);return this.options.postProcess!=null&&(r=this.options.postProcess(r)),{masked:r,unmasked:t.unmasked(l),completed:t.completed(l)}}}const Re=new WeakMap,r2=(o,a)=>{if(o.arg==null||o.instance==null)return;const n="setup"in o.instance.$.type;o.arg in o.instance?o.instance[o.arg]=a:n&&console.warn("Maska: please expose `%s` using defineExpose",o.arg)},Fe=(o,a)=>{var n;const t=o instanceof HTMLInputElement?o:o.querySelector("input");if(t==null||(t==null?void 0:t.type)==="file")return;let l={};if(a.value!=null&&(l=typeof a.value=="string"?{mask:a.value}:{...a.value}),a.arg!=null){const r=s=>{const c=a.modifiers.unmasked?s.unmasked:a.modifiers.completed?s.completed:s.masked;r2(a,c)};l.onMaska=l.onMaska==null?r:Array.isArray(l.onMaska)?[...l.onMaska,r]:[l.onMaska,r]}Re.has(t)?(n=Re.get(t))==null||n.update(l):Re.set(t,new l2(t,l))},i2=13,s2=2;function Pt(o){return o=o.replace(/\s+/g,"").toUpperCase(),new RegExp("^(?<sexe>[1-4]|7|8)(?<anneeNaissance>\\d{2})(?<moisNaissance>0[1-9]|1[0-2]|2[0-9]|3[0-9]|4[0-2])(?<departementNaissance>\\d{2}|2A|2B|96|97\\d|98\\d)(?<communeNaissance>\\d{3})(?<rangInscription>\\d{3})(?<cle>[0-9]{2})?$","i").test(o)}function zt(o){o=o.replace(/\s+/g,"").toUpperCase();let a=o.substring(0,13);return a=a.replace("2A","19").replace("2B","18"),(97n-BigInt(a)%97n).toString().padStart(2,"0")}function Ot(o){o=o.replace(/\s+/g,"").toUpperCase();const a=o.substring(13,15),n=zt(o);return a===n}const Ce={errorRequiredNumber:"Le numéro de sécurité sociale est requis.",errorLengthNumber:o=>`Le numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidFormat:"Le format du numéro de sécurité sociale est invalide.",errorRequiredKey:"La clé du numéro de sécurité sociale est requise.",errorLengthKey:o=>`La clé du numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidKey:"La clé du numéro de sécurité sociale est invalide.",numberLabel:"Numéro de sécurité sociale",numberHint:"13 caractères",keyLabel:"Clé",keyHint:"2 chiffres"},c2={persistentHint:{persistentHint:!0},validateOn:{validateOn:"blur"},icon:{color:""},tooltip:{location:"top"}},d2={class:"d-flex align-start"},m2={class:"custom-counter"},p2={class:"custom-counter"},u2=S(e.defineComponent({__name:"NirField",props:{vuetifyOptions:{},modelValue:{default:void 0},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},nirTooltip:{default:void 0},keyTooltip:{default:void 0},numberLabel:{default:"Numéro de sécurité sociale"},keyLabel:{default:"Clé"},displayKey:{type:Boolean,default:!0},showSuccessMessages:{type:Boolean,default:!1},customNumberRules:{default:[]},customKeyRules:{default:[]}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){var Kt,Ut,Gt,Wt,jt,Yt;const t=o,l=n,r=D(c2,t),s=fe,c=e.ref(""),i=e.ref(""),d=e.ref(!1),p=e.ref(null),m=e.ref(null),k=e.computed(()=>c.value.replace(/\s/g,""));e.watch(()=>t.modelValue,async N=>{c.value=(N==null?void 0:N.slice(0,13))??"",i.value=(N==null?void 0:N.slice(13,15))??""},{immediate:!0});const u=e.ref([]),f=e.ref([]),V=e.ref(!1),w={mask:"# ## ## #C ### ###",preProcess:N=>N.toUpperCase(),tokens:{C:{pattern:/[0-9AB]/,transform:N=>N.toUpperCase()}}},L={mask:"##"},{generateRules:h}=Oe(),C=[{type:"exactLength",options:{length:13,message:Ce.errorLengthNumber(13),ignoreSpace:!0,fieldIdentifier:"numéro"}},{type:"custom",options:{validate:Pt,message:"Le numéro de sécurité sociale est invalide.",successMessage:"Le numéro de sécurité sociale est valide.",fieldIdentifier:"numéro"}},...t.required?[{type:"required",options:{message:"Le numéro de sécurité sociale est requis.",fieldIdentifier:"numéro"}}]:[]],b=[{type:"exactLength",options:{length:2,message:Ce.errorLengthKey(2),ignoreSpace:!0,fieldIdentifier:"clé"}},{type:"custom",options:{validate:()=>Ot(`${c.value}${i.value}`),message:"La clé du numéro de sécurité sociale est invalide.",successMessage:"Le champ clé est valide.",fieldIdentifier:"clé"}},...t.required?[{type:"required",options:{message:"La clé est requise.",fieldIdentifier:"clé"}}]:[]],M=(Ut=(Kt=C[0])==null?void 0:Kt.options)==null?void 0:Ut.fieldIdentifier,B=(Wt=(Gt=b[0])==null?void 0:Gt.options)==null?void 0:Wt.fieldIdentifier,I=e.computed(()=>u.value.some(N=>N.includes(M))),x=e.computed(()=>u.value.some(N=>N.includes(B))),_=e.computed(()=>f.value.some(N=>N.includes(M))),E=e.computed(()=>f.value.some(N=>N.includes(B))),z=(jt=t.customNumberRules)!=null&&jt.length?h(t.customNumberRules):h(C),Z=t.displayKey?(Yt=t.customKeyRules)!=null&&Yt.length?h(t.customKeyRules):h(b):[];function q(N,A){A.forEach(H=>{const{error:me,success:qe}=H(N);me&&u.value.push(me),qe&&qe!=="Le champ est valide."&&f.value.push(qe)})}function te(N=!1){u.value=[],f.value=[];const A=N||V.value||c.value.length===18,H=t.displayKey&&(N||V.value||i.value.length===2);A&&q(c.value,z),H&&q(i.value,Z),f.value=Array.from(new Set(f.value))}const W2=e.computed(()=>{const N=c.value.replace(/\s/g,"").length;return`${Math.min(N,13)}/13`}),j2=e.computed(()=>{const N=i.value.replace(/\s/g,"").length;return`${Math.min(N,2)}/2`});e.watch([k,i],()=>{te(),k.value+i.value!==t.modelValue&&l("update:modelValue",`${k.value}${i.value}`)}),e.watch(i,(N,A)=>{d.value=!!(!N&&A)}),e.watch(c,()=>{k.value.length<13&&(d.value=!1)});const Y2=e.computed(()=>{var N,A,H,me;return t.displayKey&&c.value.length===18?d.value?(me=(H=m.value)==null?void 0:H.$el)==null?void 0:me.querySelector("input"):(A=(N=p.value)==null?void 0:N.$el)==null?void 0:A.querySelector("input"):null});e.watch(Y2,N=>{e.nextTick(()=>{N==null||N.focus()})});function X2(){return V.value=!0,te(),u.value.length===0}return a({validateOnSubmit:X2}),(N,A)=>(e.openBlock(),e.createElementBlock("div",d2,[e.createVNode(Ue.VInput,{ref:"vInput",class:e.normalizeClass([{"v-messages__message--success":f.value.length>0&&t.showSuccessMessages,"v-messages__message--error":u.value.length>0},"vd-nir-field__fields-wrapper multi-line"]),"error-messages":u.value,label:N.numberLabel,"max-errors":3,messages:t.showSuccessMessages?f.value:[],"model-value":[c.value,i.value],"validate-on":"blur lazy"},{default:e.withCtx(()=>[N.nirTooltip?(e.openBlock(),e.createBlock(We.VTooltip,{key:0},{activator:e.withCtx(({props:H})=>[e.createVNode(v.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 mr-4"},{...H,...e.unref(r).tooltip}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(s)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(N.$slots,"nirTooltip",{},()=>[e.createTextVNode(e.toDisplayString(N.nirTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(ge,{ref_key:"numberField",ref:m,modelValue:c.value,"onUpdate:modelValue":A[0]||(A[0]=H=>c.value=H),"append-inner-icon":I.value?"error":_.value?"success":void 0,"aria-errormessage":I.value?"number-field-errors":void 0,"aria-invalid":I.value,"aria-required":N.required,color:I.value?"error":"primary",error:I.value,hint:e.unref(Ce).numberHint,label:N.numberLabel,variant:N.outlined?"outlined":"underlined",class:"vd-number-field",title:"nirField",onBlur:A[1]||(A[1]=H=>te(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",m2,e.toDisplayString(W2.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(Fe),w]]),N.displayKey?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.withDirectives((e.openBlock(),e.createBlock(ge,{ref_key:"keyField",ref:p,modelValue:i.value,"onUpdate:modelValue":A[2]||(A[2]=H=>i.value=H),"append-inner-icon":x.value?"error":E.value?"success":void 0,"aria-errormessage":x.value?"key-field-errors":void 0,"aria-invalid":x.value,"aria-required":N.required,color:x.value?"error":"primary",error:x.value,hint:e.unref(Ce).keyHint,label:N.keyLabel,variant:N.outlined?"outlined":"underlined",class:"vd-key-field",title:"nirKeyField",onBlur:A[3]||(A[3]=H=>te(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",p2,e.toDisplayString(j2.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(Fe),L]]),N.keyTooltip?(e.openBlock(),e.createBlock(We.VTooltip,{key:0},{activator:e.withCtx(({props:H})=>[e.createVNode(v.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 ml-4"},{...H,...e.unref(r).icon}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(s)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(N.$slots,"keyTooltip",{},()=>[e.createTextVNode(e.toDisplayString(N.keyTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]),_:3},8,["class","error-messages","label","messages","model-value"])]))}}),[["__scopeId","data-v-0a678a87"]]),h2="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%20175%20185'%3e%3cpath%20fill='%23e7ecf5'%20fill-rule='evenodd'%20d='M82.05%201.03c25.02%204.23%2035.74%2031.89%2052.64%2050.76%2015.22%2017%2038.8%2029.7%2039.77%2052.46.99%2023.2-15.89%2044.01-35.1%2057.13-16.47%2011.25-37.51%203.39-57.3%205.99-25.97%203.41-55.68%2029.28-74.73%2011.37-18.93-17.8%207.49-48.54%207.6-74.49.11-25.7-20.98-52.27-6.95-73.83C23%207.3%2054.8-3.56%2082.05%201.03Z'%20clip-rule='evenodd'/%3e%3cpath%20fill='%23fff'%20d='M101.76%20132.91%2080.07%2096.9l-6.74-11.21%203.21-4.8s32.94-.8%2035.35%200l35.34%2056.04-4.01%204.8h-36.15l-5.31-8.82Z'/%3e%3cpath%20fill='%230c419a'%20d='m101.76%20132.91%205.3%208.83h-.4l-52.48-8.01%2047.58-.82Z'/%3e%3cpath%20fill='%23fff'%20d='M54.18%20133.73h-.13V96.9h26.03l21.68%2036.01-47.58.82ZM54.05%2096.9v36.83l-19.28-9.6V88.9l19.28%208Z'/%3e%3cpath%20fill='%230c419a'%20d='m63.87%2064.26%2017.25-5.12%2020.51-6.1s2.54%204.43%209.87%202.6c-5.53%201.83-20.28%206.68-26.74%208.62-8.04%202.4-20.89%200-20.89%200Z'/%3e%3cpath%20fill='%23fff'%20d='M111.5%2055.64c-7.34%201.83-9.87-2.6-9.87-2.6l-20.51%206.1c1.6-1.37%207.76-7.03%208.46-13.3.8-7.2%203.21-15.21%209.64-18.41%205.82-2.9%2027.96-15.14%2032.1-17.43-1.19.84-2.39%202.33-3.42%204.89a28.8%2028.8%200%200%200-1.37%204.53c-3.21%2014.41-2.4%2031.23-12.05%2035.23-1.07.44-2.06.77-2.97%201Z'/%3e%3cpath%20fill='%230c419a'%20d='M131.32%2010c2.88-2.03%205.66-.19%205.66-.19L128%2014.93l-.1-.04c1.03-2.56%202.23-4.06%203.42-4.9Z'/%3e%3cpath%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='2'%20d='m111.5%2055.64%202.14-.7M111.5%2055.65c-7.33%201.82-9.87-2.6-9.87-2.6l-20.51%206.09-17.25%205.12s12.85%202.4%2020.89%200c6.46-1.94%2021.2-6.79%2026.74-8.61ZM111.5%2055.65h.01M128%2014.93l8.98-5.12s-2.78-1.84-5.66.19c-1.19.84-2.39%202.33-3.42%204.89a28.8%2028.8%200%200%200-1.37%204.53c-3.21%2014.41-2.4%2031.23-12.05%2035.23-1.07.45-2.06.77-2.97%201'/%3e%3cpath%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='2'%20d='M80.74%2059.45s.14-.1.38-.31c1.6-1.37%207.76-7.03%208.46-13.3.8-7.2%203.21-15.21%209.64-18.41%205.82-2.9%2027.96-15.14%2032.1-17.43l.67-.37M97.61%2033.03l20.08-10.4M96%2040.24l20.9-10.41M62.08%2088.9H34.77l19.28%208h26.1M101.79%20132.91h-.03l-47.58.82h-.13V96.9M54.05%20133.73l-19.28-9.6V88.9M76.54%2080.89l34.54%2056.04h26.52'/%3e%3cg%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%3e%3cpath%20stroke='%230c419a'%20stroke-miterlimit='10'%20d='m54.06%20133.7.12.03%2052.49%208h36.55l4.01-4.8L111.9%2080.9c-2.41-.8-35.35%200-35.35%200l-3.22%204.8%206.75%2011.21%2021.69%2036.02%205.3%208.82'/%3e%3cpath%20d='M1-1h6.27'%20transform='rotate(81.49%20-7.48%2056.18)%20skewX(.05)'/%3e%3cpath%20d='M1-1h7.26'%20transform='rotate(48.66%20-44.44%2074.2)%20skewX(.16)'/%3e%3cpath%20d='M1-1h4.39'%20transform='matrix(.9%20.45%20-.45%20.9%2038.17%2066.32)'/%3e%3c/g%3e%3c/svg%3e",de={code:"404",pageTitle:"Page non trouvée",message:"Cette page n’existe pas ou a été déplacée.",supportIdMessage:"Votre identifiant de support est"},f2={class:"mt-4"},g2=["alt"],b2="support_id",k2=S(e.defineComponent({__name:"NotFoundPage",props:{btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){const a=e.ref();return e.onMounted(()=>{var l;let t=new URLSearchParams(document.location.search).get(b2);t&&(a.value=(l=t.trim().match(/.{1,4}/g))==null?void 0:l.join(" "))}),(n,t)=>(e.openBlock(),e.createBlock($e,{code:e.unref(de).code,"page-title":e.unref(de).pageTitle,message:e.unref(de).message,"btn-text":n.btnText,"btn-href":n.btnHref,"btn-link":n.btnLink,"hide-btn":n.hideBtn},e.createSlots({illustration:e.withCtx(()=>[e.createElementVNode("img",{src:h2,alt:e.unref(de).pageTitle},null,8,g2)]),_:2},[a.value?{name:"additional-content",fn:e.withCtx(()=>[e.createElementVNode("p",f2,[e.createTextVNode(e.toDisplayString(e.unref(de).supportIdMessage)+" ",1),e.createElementVNode("b",null,e.toDisplayString(a.value),1),t[0]||(t[0]=e.createTextVNode(" . "))])]),key:"0"}:void 0]),1032,["code","page-title","message","btn-text","btn-href","btn-link","hide-btn"]))}}),[["__scopeId","data-v-8e9d618a"]]),y2={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},V2={key:0},w2={class:"d-flex align-center ga-2"},B2=S(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=D(y2,n),l=R.useDisplay(),{notificationQueue:r,removeNotification:s}=ve(),c=e.getCurrentInstance(),i=e.ref(),d=e.ref(!1),p=e.ref(!1),m=e.computed(()=>!!(c!=null&&c.slots.action)),k=e.computed(()=>l.name.value==="xs"),u=e.computed(()=>l.name.value==="sm"),f=e.computed(()=>{var _,E;return(((E=(_=i.value)==null?void 0:_.message)==null?void 0:E.length)??0)>50}),V={info:fe,success:Je,warning:ca,error:je},w=e.computed(()=>i.value?V[i.value.type]:null),L=e.computed(()=>i.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[i.value.type]||"info"),h=e.computed(()=>i.value?{contentColor:i.value.type==="success"||i.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),C=e.computed(()=>k.value&&!f.value&&!m.value),b=_=>{i.value={..._}},M=async()=>{for(p.value=!0;r.value.length>0;){const _=r.value[0];b(_),d.value=!0;let E=_.timeout??-1;E<=0?await new Promise(z=>{const Z=e.watch(d,q=>{q||(Z(),z())})}):await new Promise(z=>{const Z=setTimeout(()=>{B(),z()},E),q=e.watch(d,te=>{te||(clearTimeout(Z),q(),z())})}),s(_.id)}p.value=!1},B=()=>{d.value=!1,i.value&&(s(i.value.id),i.value=void 0)},I=_=>{b(_),d.value=!0},x=()=>{if(r.value.length>0){const _=r.value[0];b(_),d.value=!0}};return e.watch(()=>r.value.length,_=>{_>0&&!p.value&&M()}),a({openNotification:I,handleClearNotification:B,showNextNotification:x,processNotificationQueue:M,currentNotification:i,isNotificationVisible:d,hasActionSlot:m,isMobileVersion:k,hasLongContent:f,color:L,icon:w,contentStyle:h,smallCloseBtn:C,isVertical:e.computed(()=>f.value&&k.value)}),(_,E)=>{var z;return i.value?(e.openBlock(),e.createElementBlock("div",V2,[e.createVNode(oa.VSnackbar,e.mergeProps(e.unref(t).snackbar,{modelValue:d.value,"onUpdate:modelValue":E[0]||(E[0]=Z=>d.value=Z),role:"status",color:L.value,location:n.bottom?"bottom":"top",vertical:f.value,"multi-line":f.value,timeout:((z=i.value)==null?void 0:z.timeout)??-1,width:k.value||u.value?"auto":"960px",rounded:n.rounded,class:[{"long-text":f.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",f.value?"action-section-long-text":"action-section-short-text"]),style:{width:"100%"}},[e.renderSlot(_.$slots,"action",{},void 0,!0),e.createVNode(T.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":C.value}],"aria-label":"Fermer la notification"},e.unref(t).btn,{onClick:B}),{default:e.withCtx(()=>[C.value?(e.openBlock(),e.createBlock(v.VIcon,{key:1,icon:e.unref(Y)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(_.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var Z;return[e.createElementVNode("div",w2,[!k.value&&w.value?(e.openBlock(),e.createBlock(v.VIcon,e.mergeProps({key:0},e.unref(t).icon,{icon:w.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+h.value.contentColor)},e.toDisplayString((Z=i.value)==null?void 0:Z.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-f2e50ac9"]]),C2={default:o=>`La longueur du champ doit être de ${o} caractères.`};function N2(o,a=!1,n=C2){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length===o||rt(n,"default",[o])):!0}const Rt=N2,L2=[{code:"+1",country:"USA/Canada",abbreviation:"US/CA",phoneLength:10,mask:"###-###-####"},{code:"+7",country:"Russia/Kazakhstan",abbreviation:"RU/KZ",phoneLength:10,mask:"### ### ## ##"},{code:"+20",country:"Egypt",abbreviation:"EG",phoneLength:9,mask:"### ### ####"},{code:"+27",country:"South Africa",abbreviation:"ZA",phoneLength:9,mask:"### ### ####"},{code:"+30",country:"Greece",abbreviation:"GR",phoneLength:10,mask:"### ### ####"},{code:"+31",country:"Netherlands",abbreviation:"NL",phoneLength:9,mask:"## ### ####"},{code:"+32",country:"Belgium",abbreviation:"BE",phoneLength:9,mask:"### ### ###"},{code:"+33",country:"France",abbreviation:"FR",phoneLength:10,mask:"## ## ## ## ##"},{code:"+34",country:"Spain",abbreviation:"ES",phoneLength:9,mask:"### ### ###"},{code:"+36",country:"Hungary",abbreviation:"HU",phoneLength:9,mask:"## ### ####"},{code:"+39",country:"Italy",abbreviation:"IT",phoneLength:10,mask:"### ### ####"},{code:"+40",country:"Romania",abbreviation:"RO",phoneLength:9,mask:"### ### ###"},{code:"+41",country:"Switzerland",abbreviation:"CH",phoneLength:9,mask:"## ### ## ##"},{code:"+44",country:"United Kingdom",abbreviation:"GB",phoneLength:10,mask:"#### ### ####"},{code:"+45",country:"Denmark",abbreviation:"DK",phoneLength:8,mask:"## ## ## ##"},{code:"+46",country:"Sweden",abbreviation:"SE",phoneLength:9,mask:"## ### ## ##"},{code:"+47",country:"Norway",abbreviation:"NO",phoneLength:8,mask:"### ## ###"},{code:"+48",country:"Poland",abbreviation:"PL",phoneLength:9,mask:"### ### ###"},{code:"+49",country:"Germany",abbreviation:"DE",phoneLength:10,mask:"#### ### ####"},{code:"+51",country:"Peru",abbreviation:"PE",phoneLength:9,mask:"### ### ###"},{code:"+52",country:"Mexico",abbreviation:"MX",phoneLength:10,mask:"## #### ####"},{code:"+53",country:"Cuba",abbreviation:"CU",phoneLength:8,mask:"### ### ###"},{code:"+54",country:"Argentina",abbreviation:"AR",phoneLength:10,mask:"### ### ####"},{code:"+55",country:"Brazil",abbreviation:"BR",phoneLength:11,mask:"## ##### ####"},{code:"+56",country:"Chile",abbreviation:"CL",phoneLength:9,mask:"## #### ####"},{code:"+57",country:"Colombia",abbreviation:"CO",phoneLength:10,mask:"### ### ####"},{code:"+58",country:"Venezuela",abbreviation:"VE",phoneLength:10,mask:"### ### ####"},{code:"+60",country:"Malaysia",abbreviation:"MY",phoneLength:10,mask:"## ### ####"},{code:"+61",country:"Australia",abbreviation:"AU",phoneLength:9,mask:"### ### ###"},{code:"+62",country:"Indonesia",abbreviation:"ID",phoneLength:10,mask:"### ### ####"},{code:"+63",country:"Philippines",abbreviation:"PH",phoneLength:10,mask:"### ### ####"},{code:"+64",country:"New Zealand",abbreviation:"NZ",phoneLength:9,mask:"### ### ###"},{code:"+65",country:"Singapore",abbreviation:"SG",phoneLength:8,mask:"#### ####"},{code:"+66",country:"Thailand",abbreviation:"TH",phoneLength:9,mask:"### ### ###"},{code:"+81",country:"Japan",abbreviation:"JP",phoneLength:10,mask:"## #### ####"},{code:"+82",country:"South Korea",abbreviation:"KR",phoneLength:10,mask:"## #### ####"},{code:"+84",country:"Vietnam",abbreviation:"VN",phoneLength:9,mask:"## ### ####"},{code:"+86",country:"China",abbreviation:"CN",phoneLength:11,mask:"### #### ####"},{code:"+90",country:"Turkey",abbreviation:"TR",phoneLength:10,mask:"### ### ## ##"},{code:"+91",country:"India",abbreviation:"IN",phoneLength:10,mask:"##### #####"},{code:"+92",country:"Pakistan",abbreviation:"PK",phoneLength:10,mask:"### #### ####"},{code:"+93",country:"Afghanistan",abbreviation:"AF",phoneLength:9,mask:"## ### ####"},{code:"+94",country:"Sri Lanka",abbreviation:"LK",phoneLength:9,mask:"### ### ####"},{code:"+95",country:"Myanmar",abbreviation:"MM",phoneLength:9,mask:"## ### ###"},{code:"+98",country:"Iran",abbreviation:"IR",phoneLength:10,mask:"### ### ####"},{code:"+212",country:"Morocco",abbreviation:"MA",phoneLength:9,mask:"### #### ###"},{code:"+213",country:"Algeria",abbreviation:"DZ",phoneLength:9,mask:"### ### ####"},{code:"+216",country:"Tunisia",abbreviation:"TN",phoneLength:8,mask:"## ### ###"},{code:"+218",country:"Libya",abbreviation:"LY",phoneLength:9,mask:"### ### ###"},{code:"+262",country:"Réunion",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+508",country:"Saint Pierre and Miquelon",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+590",country:"Guadeloupe",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+594",country:"French Guiana",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+596",country:"Martinique",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+687",country:"New Caledonia",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+689",country:"French Polynesia",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+220",country:"Gambia",abbreviation:"GM",phoneLength:8,mask:"### ## ##"},{code:"+221",country:"Senegal",abbreviation:"SN",phoneLength:9,mask:"## ### ####"},{code:"+222",country:"Mauritania",abbreviation:"MR",phoneLength:8,mask:"## ## ## ##"},{code:"+223",country:"Mali",abbreviation:"ML",phoneLength:8,mask:"## ## ## ##"},{code:"+224",country:"Guinea",abbreviation:"GN",phoneLength:9,mask:"## ### ####"},{code:"+225",country:"Ivory Coast",abbreviation:"CI",phoneLength:8,mask:"## ## ## ##"},{code:"+226",country:"Burkina Faso",abbreviation:"BF",phoneLength:8,mask:"## ## ## ##"},{code:"+227",country:"Niger",abbreviation:"NE",phoneLength:8,mask:"## ## ## ##"},{code:"+228",country:"Togo",abbreviation:"TG",phoneLength:8,mask:"## ## ## ##"},{code:"+229",country:"Benin",abbreviation:"BJ",phoneLength:8,mask:"## ## ## ##"},{code:"+230",country:"Mauritius",abbreviation:"MU",phoneLength:7,mask:"### ####"},{code:"+231",country:"Liberia",abbreviation:"LR",phoneLength:7,mask:"## ### ###"},{code:"+232",country:"Sierra Leone",abbreviation:"SL",phoneLength:8,mask:"## #### ####"},{code:"+233",country:"Ghana",abbreviation:"GH",phoneLength:9,mask:"### ### ###"},{code:"+234",country:"Nigeria",abbreviation:"NG",phoneLength:8,mask:"### ### ###"},{code:"+235",country:"Chad",abbreviation:"TD",phoneLength:8,mask:"## ## ## ##"},{code:"+236",country:"Central African Republic",abbreviation:"CF",phoneLength:8,mask:"## ## ## ##"},{code:"+237",country:"Cameroon",abbreviation:"CM",phoneLength:9,mask:"## ### ####"},{code:"+238",country:"Cape Verde",abbreviation:"CV",phoneLength:7,mask:"### ####"},{code:"+239",country:"Sao Tome and Principe",abbreviation:"ST",phoneLength:7,mask:"### ####"},{code:"+240",country:"Equatorial Guinea",abbreviation:"GQ",phoneLength:9,mask:"### ### ####"},{code:"+241",country:"Gabon",abbreviation:"GA",phoneLength:9,mask:"## ### ####"},{code:"+242",country:"Republic of the Congo",abbreviation:"CG",phoneLength:9,mask:"## ### ####"},{code:"+243",country:"Democratic Republic of the Congo",abbreviation:"CD",phoneLength:9,mask:"### ### ####"},{code:"+244",country:"Angola",abbreviation:"AO",phoneLength:9,mask:"### ### ####"},{code:"+245",country:"Guinea-Bissau",abbreviation:"GW",phoneLength:7,mask:"### ####"},{code:"+248",country:"Seychelles",abbreviation:"SC",phoneLength:7,mask:"### ####"},{code:"+249",country:"Sudan",abbreviation:"SD",phoneLength:9,mask:"### ### ####"},{code:"+250",country:"Rwanda",abbreviation:"RW",phoneLength:9,mask:"### ### ###"},{code:"+251",country:"Ethiopia",abbreviation:"ET",phoneLength:9,mask:"### ### ###"},{code:"+252",country:"Somalia",abbreviation:"SO",phoneLength:8,mask:"### ### ##"},{code:"+253",country:"Djibouti",abbreviation:"DJ",phoneLength:8,mask:"## ## ## ##"},{code:"+254",country:"Kenya",abbreviation:"KE",phoneLength:9,mask:"### ### ###"},{code:"+255",country:"Tanzania",abbreviation:"TZ",phoneLength:9,mask:"### ### ###"},{code:"+256",country:"Uganda",abbreviation:"UG",phoneLength:9,mask:"### ### ###"},{code:"+257",country:"Burundi",abbreviation:"BI",phoneLength:8,mask:"## ## ## ##"},{code:"+258",country:"Mozambique",abbreviation:"MZ",phoneLength:9,mask:"## ### ####"},{code:"+260",country:"Zambia",abbreviation:"ZM",phoneLength:9,mask:"### ### ###"},{code:"+261",country:"Madagascar",abbreviation:"MG",phoneLength:9,mask:"## ## ###"},{code:"+263",country:"Zimbabwe",abbreviation:"ZW",phoneLength:9,mask:"### ### ###"},{code:"+264",country:"Namibia",abbreviation:"NA",phoneLength:9,mask:"### ### ###"},{code:"+265",country:"Malawi",abbreviation:"MW",phoneLength:9,mask:"### ### ###"},{code:"+266",country:"Lesotho",abbreviation:"LS",phoneLength:8,mask:"## ### ###"},{code:"+267",country:"Botswana",abbreviation:"BW",phoneLength:8,mask:"## ### ###"},{code:"+268",country:"Eswatini",abbreviation:"SZ",phoneLength:9,mask:"### ### ###"},{code:"+269",country:"Comoros",abbreviation:"KM",phoneLength:7,mask:"### ####"}],Ft={label:"Numéro de téléphone",indicatifLabel:"Indicatif"},S2={class:"phone-field-container"},M2=S(e.defineComponent({__name:"PhoneField",props:{modelValue:{type:String,default:""},dialCodeModel:{type:[String,Object],default:""},required:{type:Boolean,default:!1},outlined:{type:Boolean,default:!0},outlinedIndicatif:{type:Boolean,default:!0},withCountryCode:{type:Boolean,default:!1},countryCodeRequired:{type:Boolean,default:!1},displayFormat:{type:String,default:"code"},customIndicatifs:{type:Array,default:()=>[]},useCustomIndicatifsOnly:{type:Boolean,default:!1},isValidatedOnBlur:{type:Boolean,default:!0}},emits:["update:modelValue","update:selectedDialCode","change"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(t.modelValue||""),s=e.ref(t.dialCodeModel||""),c=e.ref(10),i=e.ref("## ## ## ## ##"),d=e.ref(!1),p=e.ref(!1),m=e.computed(()=>t.useCustomIndicatifsOnly?t.customIndicatifs:[...L2,...t.customIndicatifs]),k=e.computed(()=>m.value.map(b=>({...b,displayText:u(b)})));function u(b){return{code:b.code,"code-abbreviation":`${b.code} (${b.abbreviation})`,"code-country":`${b.code} ${b.country}`,country:b.country,abbreviation:b.abbreviation}[t.displayFormat]||b.code}const f=e.computed(()=>{const b=e.toRaw(s.value);return k.value.find(M=>M.code===String(b))});function V(b){var M;if(b=b.replace(/\D/g,""),(M=f.value)!=null&&M.mask){const B=new RegExp(f.value.mask.replace(/#/g,"\\d"));return b.replace(B,f.value.mask).trim()}return b.replace(/(.{2})/g,"$1 ").trim()}function w(b){const M=b.target.value.replace(/\s|\D/g,"");r.value=M.startsWith(String(s.value)||"")?M.slice(String(s.value||"").length):M,l("update:modelValue",r.value),l("change",r.value)}function L(){if(!t.isValidatedOnBlur)return;d.value=!1;const b=!t.required||Te(r.value)===!0,M=Rt(c.value,!0)(r.value)===!0;d.value=!(b&&M),p.value=!0}const h=e.computed(()=>{const b=[Rt(c.value,!0)];return t.required&&b.unshift(Te),b}),C=e.computed(()=>r.value?V(r.value):"");return e.watch(()=>t.modelValue,b=>{r.value=b||""}),e.watch(s,b=>{l("update:selectedDialCode",b)}),e.watch(s,b=>{b&&(c.value=(b==null?void 0:b.phoneLength)||10,i.value=(b==null?void 0:b.mask)||"## ## ## ## ##")}),a({computedValue:C,dialCode:s,phoneMask:i,counter:c,hasError:d,phoneNumber:r,mergedDialCodes:m}),(b,M)=>(e.openBlock(),e.createElementBlock("div",S2,[t.withCountryCode?(e.openBlock(),e.createBlock(pt,{key:0,modelValue:s.value,"onUpdate:modelValue":M[0]||(M[0]=B=>s.value=B),items:k.value,"text-key":"displayText","value-key":"code",label:e.unref(Ft).indicatifLabel,required:t.countryCodeRequired,class:"custom-select",outlined:o.outlinedIndicatif},null,8,["modelValue","items","label","required","outlined"])):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(ge,{"model-value":C.value,rules:h.value,required:t.required,counter:c.value,"counter-value":B=>B.replace(/\s/g,"").length,label:e.unref(Ft).label,variant:o.outlined?"outlined":"underlined",color:"primary",class:"phone-field",onInput:w,onBlur:L},{"append-inner":e.withCtx(()=>[e.createVNode(v.VIcon,{class:"mr-2",color:"#222324"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ca)),1)]),_:1}),d.value?(e.openBlock(),e.createBlock(v.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oe)),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["model-value","rules","required","counter","counter-value","label","variant"])),[[e.unref(Fe),i.value]])]))}}),[["__scopeId","data-v-4302e0e0"]]),v2={label:"Aller au contenu principal"},x2={class:"vd-skip-link-container"},_2=["href"],I2=e.defineComponent({__name:"SkipLink",props:{label:{default:v2.label},target:{default:"#main"}},setup(o){const a=e.ref(null);return e.onMounted(()=>{var s,c;const n=e.getCurrentInstance();if(!n)return;const t=(s=n==null?void 0:n.appContext.app)==null?void 0:s.$nuxt;let l;t&&t.$router&&(l=t.$router);const r=(c=n.appContext.app.config.globalProperties)==null?void 0:c.$router;r&&(l=r),l&&l.afterEach&&l.afterEach((i,d,p)=>{p||i.path!==d.path&&e.nextTick(()=>{var m;(m=a.value)==null||m.focus()})})}),(n,t)=>(e.openBlock(),e.createElementBlock("div",x2,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:a,tabindex:"-1"},null,512),e.createElementVNode("a",{href:n.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(n.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)],8,_2)]))}}),T2=S(I2,[["__scopeId","data-v-aa139979"]]),E2={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},Z2={backBtnText:"Retour"},$2={class:"vd-sub-header-content d-flex justify-space-between"},A2={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},D2={key:1,class:"text-h5 font-weight-bold"},H2={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},P2=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:Z2.backBtnText},titleText:{default:void 0},subTitleText:{default:void 0},dataListGroupItems:{default:void 0},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item","back"],setup(o,{emit:a}){const n=o,t=D(E2,n),{widthStyles:l}=Ee(n),r=e.ref(ya),s=a;function c(i){s("click:list-item",i)}return(i,d)=>(e.openBlock(),e.createBlock(ne.VSheet,e.mergeProps(e.unref(t).sheet,{style:e.unref(l),class:"vd-sub-header white--text py-6 px-8"}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn",{},()=>[i.hideBackBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ae.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(la.VSkeletonLoader,{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(T.VBtn,e.mergeProps({key:1},e.unref(t).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:d[0]||(d[0]=p=>i.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn-icon",{},()=>[e.createVNode(v.VIcon,{class:"mr-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:1})],!0),e.createTextVNode(" "+e.toDisplayString(i.backBtnText),1)]),_:3},16))]),_:3}))],!0),e.createElementVNode("div",$2,[e.createElementVNode("div",A2,[e.renderSlot(i.$slots,"title",{},()=>[e.createVNode(ae.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(J,{key:0,width:"300",height:"2rem",color:"secondary"})):i.titleText?(e.openBlock(),e.createElementBlock("h2",D2,e.toDisplayString(i.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(i.$slots,"sub-title",{},()=>[i.subTitleText?(e.openBlock(),e.createBlock(ae.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(J,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",H2,e.toDisplayString(i.subTitleText),1))]),_:1})):e.createCommentVNode("",!0)],!0),e.renderSlot(i.$slots,"additional-informations",{},void 0,!0)]),e.renderSlot(i.$slots,"right-content",{},()=>[i.dataListGroupItems?(e.openBlock(),e.createBlock(ft,{key:0,items:i.dataListGroupItems,loading:i.loading,"render-html-value":i.renderHtmlValue,"item-width":"auto",class:"flex-nowrap flex-shrink-0","onClick:listItem":c},null,8,["items","loading","render-html-value"])):e.createCommentVNode("",!0)],!0)])]),_:3},16,["style"]))}}),z2=S(P2,[["__scopeId","data-v-69f0b82b"]]),O2={close:"Fermer"},R2=S(e.defineComponent({__name:"SyAlert",props:e.mergeModels({type:{default:"info"},closable:{type:Boolean,default:!1},variant:{default:"tonal"}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(o,{expose:a}){const n=e.useModel(o,"modelValue"),t=o,l=e.computed(()=>({info:fe,success:Je,warning:Ye,error:je})[t.type]);function r(){n.value=!1}return a({prependIcon:l,dismissAlert:r}),(s,c)=>(e.openBlock(),e.createBlock(ra.VAlert,{modelValue:n.value,"onUpdate:modelValue":c[0]||(c[0]=i=>n.value=i),type:s.type,closable:s.closable,variant:s.variant,class:e.normalizeClass(`alert alert--${s.type}`),color:s.type,border:s.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(v.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(l.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:2},[s.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(T.VBtn,{color:s.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:r},{default:e.withCtx(()=>[e.createVNode(v.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Y)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(O2).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),[["__scopeId","data-v-17fcce2d"]]),F2={menu:{offsetY:!0,zIndex:4,minWidth:"198px",maxWidth:"auto",nudgeRight:0},btn:{variant:"text",height:"auto"},icon:{color:"secondary"},logoutListItem:{class:"text-primary",minWidth:"198px"},logoutIcon:{color:"primary",class:"mr-4"}},q2={class:"d-flex"},K2=S(e.defineComponent({__name:"UserMenuBtn",props:e.mergeModels({vuetifyOptions:{},menuItems:{default:()=>[]},additionalInformation:{default:"Information supplémentaire"},fullName:{default:"Prénom Nom"},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},hideUserIcon:{type:Boolean,default:!1}},{modelValue:{default:null},modelModifiers:{}}),emits:e.mergeModels(["logout"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),{smAndDown:t}=R.useDisplay(),l=D(F2,a),r=e.computed(()=>a.isMobileView||t.value);return(s,c)=>(e.openBlock(),e.createBlock(dt,{modelValue:n.value,"onUpdate:modelValue":c[1]||(c[1]=i=>n.value=i),"hide-icon":s.hideUserIcon,"icon-only":r.value,"is-mobile-view":r.value,"menu-items":s.menuItems,options:e.unref(l),"primary-info":s.fullName,"secondary-info":s.additionalInformation,class:"user-menu-btn"},{"append-icon":e.withCtx(()=>[s.hideUserIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(v.VIcon,e.mergeProps({key:0,size:r.value?"x-large":"default",class:"vd-user-icon mr-0 pa-2"},e.unref(l).icon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(sa)),1)]),_:1},16,["size"]))]),"footer-list-item":e.withCtx(()=>[s.hideLogoutBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($.VListItem,e.mergeProps({key:0,class:"logout"},e.unref(l).logoutListItem,{onClick:c[0]||(c[0]=i=>s.$emit("logout"))}),{default:e.withCtx(()=>[e.createElementVNode("div",q2,[e.createVNode(v.VIcon,e.mergeProps({icon:e.unref(wa),class:"mr-4"},e.unref(l).logoutIcon),null,16,["icon"]),e.createVNode($.VListItemTitle,null,{default:e.withCtx(()=>c[2]||(c[2]=[e.createTextVNode(" Logout ")])),_:1})])]),_:1},16))]),_:1},8,["modelValue","hide-icon","icon-only","is-mobile-view","menu-items","options","primary-info","secondary-info"]))}}),[["__scopeId","data-v-eae274b3"]]),U2={btn:{variant:"text",icon:!0},icon:{color:P.grey.lighten20}},qt={hidePassword:"Masquer le mot de passe",showPassword:"Afficher le mot de passe"},G2=S(e.defineComponent({__name:"PasswordField",props:{modelValue:{default:null},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},isValidateOnBlur:{type:Boolean,default:!0},customRules:{default:[]},vuetifyOptions:{}},emits:["update:modelValue","submit"],setup(o,{expose:a,emit:n}){const t=o,l=D(U2,t),r=n,s=ga,c=ba,i=e.ref(!1),d=e.computed(()=>i.value?qt.hidePassword:qt.showPassword),p=e.ref(t.modelValue);e.watch(()=>t.modelValue,B=>{p.value=B});const{generateRules:m}=Oe(),k=[...t.required?[{type:"required",options:{message:"Le mot de passe est requis.",fieldIdentifier:"password"}}]:[]],u=e.computed(()=>{const B=t.required?k:[];return t.customRules?m([...B,...t.customRules]):m(B)}),f=e.ref([]),V=e.ref([]),w=e.ref(!1);e.watch(()=>p.value,()=>{h()},{immediate:!0}),e.watch(()=>t.isValidateOnBlur,()=>{h()},{immediate:!0}),e.watch(()=>t.required,()=>{h()},{immediate:!0});function L(B,I){I.forEach(x=>{const{error:_,success:E}=x(B);_&&f.value.push(_),E&&E!=="Le champ est valide."&&V.value.push(E)})}function h(B=!1){f.value=[],V.value=[],(B||!t.isValidateOnBlur)&&L(p.value,u.value)}function C(B){r("update:modelValue",B),h()}function b(B){B.key==="Enter"&&r("submit")}function M(){return w.value=!0,h(!0),f.value.length===0}return a({validateOnSubmit:M}),(B,I)=>(e.openBlock(),e.createBlock(Se.VTextField,{modelValue:p.value,"onUpdate:modelValue":[I[1]||(I[1]=x=>p.value=x),C],"error-messages":f.value,messages:V.value,type:i.value?"text":"password",variant:B.outlined?"outlined":"underlined",class:e.normalizeClass(["vd-password",{"v-messages__message--success":V.value.length>0}]),color:"primary",title:"password","validate-on":"blur lazy",onBlur:I[2]||(I[2]=x=>h(!0)),onKeydown:b},{"append-inner":e.withCtx(()=>[e.createVNode(T.VBtn,e.mergeProps({"aria-label":d.value,class:"mx-auto"},e.unref(l).btn,{onClick:I[0]||(I[0]=x=>i.value=!i.value)}),{default:e.withCtx(()=>[e.createVNode(v.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.value?e.unref(s):e.unref(c)),1)]),_:1},16)]),_:1},16,["aria-label"])]),_:1},8,["modelValue","error-messages","messages","type","variant","class"]))}}),[["__scopeId","data-v-d4616653"]]);g.BackBtn=Ma,g.BackToTopBtn=qa,g.CollapsibleList=Xa,g.ContextualMenu=en,g.CookieBanner=wn,g.CookiesInformation=st,g.CookiesSelection=ct,g.CookiesTable=it,g.CopyBtn=Sn,g.DataList=ht,g.DataListGroup=ft,g.DataListItem=ut,g.DialogBox=jn,g.DownloadBtn=Jn,g.ErrorPage=$e,g.ExternalLinks=mo,g.FooterBar=Io,g.FranceConnectBtn=Do,g.HeaderBar=Ct,g.HeaderBurgerMenu=Mt,g.HeaderLoading=J,g.HeaderLogo=Bt,g.HeaderMenuBtn=He,g.HeaderMenuItem=vt,g.HeaderMenuSection=xt,g.HeaderNavigationBar=M1,g.HeaderSubMenu=y1,g.HeaderToolbar=$1,g.KEY_LENGTH=s2,g.LangBtn=R1,g.Logo=Ae,g.LogoBrandSection=W1,g.MaintenancePage=X1,g.NUMBER_LENGTH=i2,g.NirField=u2,g.NotFoundPage=k2,g.NotificationBar=B2,g.NotificationService=ia,g.PageContainer=gt,g.PasswordField=G2,g.PhoneField=M2,g.SkipLink=T2,g.SocialMediaLinks=kt,g.SubHeader=z2,g.SyAlert=R2,g.SyBtnSelect=dt,g.SyInputSelect=mt,g.SySelect=pt,g.SyTextField=ge,g.UserMenuBtn=K2,g.checkNIR=Pt,g.computeNIRKey=zt,g.isNIRKeyValid=Ot,g.useFieldValidation=Oe,g.useNotificationService=ve,g.useWidthable=Ee,Object.defineProperty(g,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(V,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/components"),require("vuetify/lib/components/VLocaleProvider/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify"),require("vuetify/directives"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VTable/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VRadio/index.mjs"),require("vuetify/lib/components/VRadioGroup/index.mjs"),require("vuetify/lib/components/VCard/index.mjs"),require("vuetify/lib/components/VForm/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VDialog/index.mjs"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VTooltip/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs"),require("vuetify/lib/components/VRating/index.mjs"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtnToggle/index.mjs"),require("vuetify/lib/components/VSkeletonLoader/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/components","vuetify/lib/components/VLocaleProvider/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify","vuetify/directives","vuetify/lib/components/transitions/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VTable/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VRadio/index.mjs","vuetify/lib/components/VRadioGroup/index.mjs","vuetify/lib/components/VCard/index.mjs","vuetify/lib/components/VForm/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VDialog/index.mjs","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VTooltip/index.mjs","vuetify/lib/components/VSnackbar/index.mjs","vuetify/lib/components/VRating/index.mjs","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtnToggle/index.mjs","vuetify/lib/components/VSkeletonLoader/index.mjs"],e):(V=typeof globalThis<"u"?globalThis:V||self,e(V.DesignSystemV3={},V.Vue,V.VDivider,V.VIcon,V.VTextField,V.components,V.index_mjs$3,V.VBtn,V.Vuetify,V.vuetifyDirectives,V.transitions,V.VExpansionPanel,V.VTable,V.VGrid,V.VRadio,V.VRadioGroup,V.VCard,V.VForm,V.VSheet,V.VMenu,V.VList,V.VInput,V.VChip,V.VSkeletonLoader,V.VDialog,V.VFooter,V.VTabs,V.VTooltip,V.VSnackbar,V.VRating,V.VAlert,V.VBtnToggle,V.VSkeletonLoader))})(this,function(V,e,Ue,D,fe,wa,Ca,H,G,Ye,he,xe,Ba,Q,ut,Na,$e,Ma,ge,ve,W,pt,La,Sa,xa,$a,ft,ht,va,Ke,_a,Ea,Ia){"use strict";var Ta="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z",Aa="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",gt="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",bt="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",Da="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",Za="M20 10.5C20 14.09 17.09 17 13.5 17H7.83L10.92 20.09L9.5 21.5L4 16L9.5 10.5L10.91 11.91L7.83 15H13.5C16 15 18 13 18 10.5S16 6 13.5 6H6V4H13.5C17.09 4 20 6.91 20 10.5Z",yt="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",Pa="M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",kt="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",Vt="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",wt="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",We="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",Ge="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",za="M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",re="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",Ha="M11 20H6.5Q4.22 20 2.61 18.43 1 16.85 1 14.58 1 12.63 2.17 11.1 3.35 9.57 5.25 9.15 5.88 6.85 7.75 5.43 9.63 4 12 4 14.93 4 16.96 6.04 19 8.07 19 11 20.73 11.2 21.86 12.5 23 13.78 23 15.5 23 17.38 21.69 18.69 20.38 20 18.5 20H13V12.85L14.6 14.4L16 13L12 9L8 13L9.4 14.4L11 12.85Z",Ra="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",Oa="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8C16.3,8 17,8.7 17,9.5M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z",qa="M12,2A10,10 0 0,0 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,20M8.5,11A1.5,1.5 0 0,1 7,9.5A1.5,1.5 0 0,1 8.5,8A1.5,1.5 0 0,1 10,9.5A1.5,1.5 0 0,1 8.5,11M17,9.5A1.5,1.5 0 0,1 15.5,11A1.5,1.5 0 0,1 14,9.5A1.5,1.5 0 0,1 15.5,8A1.5,1.5 0 0,1 17,9.5M16,14V16H8V14H16Z",Ua="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M15.5,8C16.3,8 17,8.7 17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M12,14C13.75,14 15.29,14.72 16.19,15.81L14.77,17.23C14.32,16.5 13.25,16 12,16C10.75,16 9.68,16.5 9.23,17.23L7.81,15.81C8.71,14.72 10.25,14 12,14Z",Ya="M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",Ka="M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",Wa="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",be="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",_e="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",ja="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",Xa="M19,3H5C3.89,3 3,3.89 3,5V9H5V5H19V19H5V15H3V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M10.08,15.58L11.5,17L16.5,12L11.5,7L10.08,8.41L12.67,11H3V13H12.67L10.08,15.58Z",Qa="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Ct="M7,10L12,15L17,10H7Z",Bt="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",Ja="M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z",en="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",tn="M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",an="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";const ie=e.defineComponent({__name:"SyTextField",props:{modelValue:{default:void 0},prependIcon:{default:void 0},appendIcon:{default:void 0},prependInnerIcon:{default:void 0},appendInnerIcon:{default:void 0},variantStyle:{default:"outlined"},color:{default:"primary"},isClearable:{type:Boolean,default:!1},showDivider:{type:Boolean},label:{default:"custom label"},required:{type:Boolean},errorMessages:{default:null},isReadOnly:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},baseColor:{default:void 0},bgColor:{default:void 0},centerAffix:{type:Boolean,default:void 0},counter:{type:[String,Number,Boolean],default:!1},counterValue:{type:[Number,Function],default:void 0},density:{default:"default"},direction:{default:"horizontal"},isDirty:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},isOnError:{type:Boolean,default:!1},isFlat:{type:Boolean,default:!1},isFocused:{type:Boolean,default:!1},areDetailsHidden:{type:[Boolean,String],default:!1},areSpinButtonsHidden:{type:Boolean,default:!1},hint:{default:void 0},id:{default:void 0},loading:{type:[String,Boolean],default:!1},maxErrors:{default:2},maxWidth:{default:void 0},messages:{default:void 0},minWidth:{default:void 0},name:{default:void 0},displayPersistentClear:{type:Boolean,default:!1},displayPersistentCounter:{type:Boolean,default:!1},displayPersistentHint:{type:Boolean,default:!1},displayPersistentPlaceholder:{type:Boolean,default:!1},placeholder:{default:void 0},prefix:{default:void 0},isReversed:{type:Boolean,default:!1},role:{default:void 0},rounded:{type:[String,Number,Boolean],default:void 0},isOnSingleLine:{type:Boolean,default:!1},suffix:{default:void 0},theme:{default:void 0},isTiled:{type:Boolean,default:!1},type:{default:"text"},width:{default:void 0},displayAsterisk:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1}},emits:["update:model-value","clear","prepend-icon-click","append-icon-click"],setup(o,{expose:a,emit:n}){const t=o,l={info:_e,success:kt,warning:bt,error:be,close:re,calendar:Pa},r=e.computed({get:()=>t.modelValue,set:u=>{m("update:model-value",u)}}),s=e.ref(!1),c=e.computed(()=>t.required&&s.value&&!r.value||t.errorMessages&&t.errorMessages.length>0),i=()=>{s.value=!0},d=e.computed(()=>t.appendInnerIcon==="error"||t.appendInnerIcon==="success"||t.appendInnerIcon==="warning"?t.appendInnerIcon:"black"),p=e.computed(()=>t.displayAsterisk&&t.required),f=e.computed(()=>p.value?`${t.label} *`:t.label),g={thickness:2,length:"25px",color:"primary",opacity:"1"},m=n;return e.watch(r,u=>{t.isClearable&&u===""&&m("clear")}),a({appendInnerIconColor:d}),(u,h)=>(e.openBlock(),e.createBlock(fe.VTextField,{id:t.id,modelValue:r.value,"onUpdate:modelValue":h[2]||(h[2]=b=>r.value=b),active:t.isActive,"aria-label":t.label,"base-color":t.baseColor,"bg-color":t.bgColor,"center-affix":t.centerAffix,"clear-icon":l.close,clearable:t.isClearable,color:t.color,"counter-value":t.counterValue,density:t.density,direction:t.direction,dirty:t.isDirty,disabled:t.isDisabled,"display-asterisk":p.value,error:t.isOnError,"error-messages":t.errorMessages,flat:t.isFlat,focused:t.isFocused,"hide-details":t.areDetailsHidden,"hide-spin-buttons":t.areSpinButtonsHidden,hint:t.hint,label:f.value,loading:t.loading,"max-errors":t.maxErrors,"max-width":t.maxWidth,messages:t.messages,"min-width":t.minWidth,name:t.name,"no-icon":t.noIcon,"persistent-clear":t.displayPersistentClear,"persistent-counter":t.displayPersistentCounter,"persistent-hint":t.displayPersistentHint,"persistent-placeholder":u.displayPersistentPlaceholder,placeholder:t.placeholder,prefix:t.prefix,readonly:t.isReadOnly,reverse:t.isReversed,role:t.role,rounded:t.rounded,rules:t.required?["Le champ est requis."]:[],"single-line":t.isOnSingleLine,suffix:t.suffix,theme:t.theme,tile:t.isTiled,type:t.type,variant:t.variantStyle,width:t.width,onBlur:i},e.createSlots({"prepend-inner":e.withCtx(()=>[e.renderSlot(u.$slots,"prepend-inner",{},()=>[t.prependInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock(D.VIcon,{key:0,"aria-label":t.label?`${t.label} - bouton ${t.prependInnerIcon}`:`Bouton ${t.prependInnerIcon}`,icon:l[t.prependInnerIcon]},null,8,["aria-label","icon"])):e.createCommentVNode("",!0)]),t.showDivider?(e.openBlock(),e.createBlock(Ue.VDivider,e.mergeProps({key:0,class:"mt-4 pa-1"},g,{vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(u.$slots,"append-inner",{},()=>[c.value&&!t.appendInnerIcon?(e.openBlock(),e.createBlock(D.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1})):e.createCommentVNode("",!0),t.appendInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock(D.VIcon,{key:1,"aria-label":t.label?`${t.label} - bouton ${t.appendInnerIcon}`:`Bouton ${t.appendInnerIcon}`,class:e.normalizeClass({"error-icon":t.appendInnerIcon==="error"}),color:d.value,icon:l[t.appendInnerIcon]},null,8,["aria-label","class","color","icon"])):e.createCommentVNode("",!0)])]),details:e.withCtx(()=>[e.renderSlot(u.$slots,"details")]),_:2},[t.prependIcon&&!t.noIcon?{name:"prepend",fn:e.withCtx(()=>[e.renderSlot(u.$slots,"prepend",{},()=>[e.createVNode(D.VIcon,{"aria-label":t.label?`${t.label} - bouton ${t.prependIcon}`:`Bouton ${t.prependIcon}`,color:d.value,icon:l[t.prependIcon],role:"button",onClick:h[0]||(h[0]=b=>u.$emit("prepend-icon-click"))},null,8,["aria-label","color","icon"])])]),key:"0"}:void 0,t.appendIcon&&!t.noIcon?{name:"append",fn:e.withCtx(()=>[e.renderSlot(u.$slots,"append",{},()=>[e.createVNode(D.VIcon,{"aria-label":t.label?`${t.label} - bouton ${t.appendIcon}`:`Bouton ${t.appendIcon}`,color:d.value,icon:l[t.appendIcon],role:"button",onClick:h[1]||(h[1]=b=>u.$emit("append-icon-click"))},null,8,["aria-label","color","icon"])])]),key:"1"}:void 0]),1032,["id","modelValue","active","aria-label","base-color","bg-color","center-affix","clear-icon","clearable","color","counter-value","density","direction","dirty","disabled","display-asterisk","error","error-messages","flat","focused","hide-details","hide-spin-buttons","hint","label","loading","max-errors","max-width","messages","min-width","name","no-icon","persistent-clear","persistent-counter","persistent-hint","persistent-placeholder","placeholder","prefix","readonly","reverse","role","rounded","rules","single-line","suffix","theme","tile","type","variant","width"]))}});function ye(){const o=(t,l)=>l?t.replace(/\s/g,"").length:t.length,a=(t,l={})=>r=>{var d;if(t!=="required"&&typeof r=="string"&&r.trim()==="")return{};const s=l.fieldIdentifier?`${l.fieldIdentifier}`:l.fieldName||"ce champ",c={success:l.successMessage||"Le champ est valide.",error:l.message||`Validation échouée pour ${s}.`,warning:l.warningMessage||`Attention : ${s} peut contenir une erreur.`},i=(p,f)=>p?{success:c.success}:l.isWarning?{warning:f||c.warning}:{error:f||c.error};switch(t){case"required":return i(typeof r=="string"&&r.trim()!=="",l.message||`Vous devez renseigner ${s}.`);case"min":return i(typeof r=="number"&&r>=(l.value??0),l.message||`La valeur de ${s} doit être supérieure ou égale à ${l.value}.`);case"max":return i(typeof r=="number"&&r<=(l.value??1/0),l.message||`La valeur de ${s} doit être inférieure ou égale à ${l.value}.`);case"minLength":return i(typeof r=="string"&&o(r,l.ignoreSpace)>=(l.length??0),l.message||`${s} doit contenir au moins ${l.length} caractères.`);case"maxLength":return i(typeof r=="string"&&o(r,l.ignoreSpace)<=(l.length??1/0),l.message||`${s} ne doit pas dépasser ${l.length} caractères.`);case"exactLength":return i(typeof r=="string"&&o(r,l.ignoreSpace)===(l.length??0),l.message||`${s} doit contenir exactement ${l.length} caractères.`);case"email":return i(typeof r=="string"&&/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(r),l.message||`${s} doit être un email valide.`);case"matchPattern":return i(typeof r=="string"&&!!l.pattern&&l.pattern.test(r),l.message||`Le format de ${s} est invalide.`);case"notWeekend":{const p=new Date(r);return i(!(p.getDay()===0||p.getDay()===6),l.message||`${s} ne peut pas être un jour de weekend.`)}case"notBeforeToday":{const p=new Date(r);return i(p>=new Date,l.message||`${s} ne peut pas être antérieur à aujourd'hui.`)}case"notAfterToday":{const p=new Date(r);return i(p<=new Date,l.message||`${s} ne peut pas être postérieur à aujourd'hui.`)}case"notBeforeDate":{if(!l.date)return{error:"Configuration de la règle invalide"};const p=new Date(r);if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const[f,g,m]=l.date.split("/"),u=new Date(`${m}-${g}-${f}`);return i(p>=u,l.message||`${s} ne peut pas être avant le ${l.date}.`)}case"notAfterDate":{if(!l.date)return{error:"Configuration de la règle invalide"};const p=new Date(r);if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const[f,g,m]=l.date.split("/"),u=new Date(`${m}-${g}-${f}`);return i(p<=u,l.message||`${s} ne peut pas être après le ${l.date}.`)}case"dateExact":{if(!l.date)return{error:"Configuration de la règle invalide"};const p=new Date(r);if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const[f,g,m]=l.date.split("/"),u=new Date(`${m}-${g}-${f}`);return i(p.getTime()===u.getTime(),l.message||`${s} doit être exactement le ${l.date}.`)}case"custom":{const p=(d=l.validate)==null?void 0:d.call(l,r);return p===!0?{success:c.success}:l.isWarning?{warning:typeof p=="string"?p:c.warning}:{error:typeof p=="string"?p:c.error}}default:return{error:`La règle spécifiée pour ${s} n'existe pas.`}}};return{generateRules:t=>t.map(l=>a(l.type,l.options))}}const nn=e.defineComponent({__name:"DateTextInput",props:{modelValue:{default:void 0},displayFormat:{default:"DD/MM/YYYY"},returnFormat:{default:""},range:{type:Boolean,default:!1},placeholder:{default:""},rules:{default:()=>[]},warningRules:{default:()=>[]},required:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(""),{generateRules:s}=ye(),c=e.computed(()=>s(t.rules||[])),i=e.computed(()=>s(t.warningRules||[])),d=e.ref(!1),p=e.ref(!1),f=e.ref(!1),g=e.ref([]),m=e.ref([]),u=e.ref([]),h=()=>{if(g.value=[],m.value=[],u.value=[],t.required&&!r.value){g.value.push("La date est requise."),d.value=!0;return}if(r.value)if(t.range){const[N,M]=r.value.split("-").map(S=>S.trim());if(N&&_(N)&&(b(N,c.value,"error"),b(N,c.value,"success"),b(N,i.value,"warning")),M&&_(M)&&(b(M,c.value,"error"),b(M,c.value,"success"),b(M,i.value,"warning"),N&&_(N))){const S=y(N,t.displayFormat),T=y(M,t.displayFormat);S&&T&&T<S&&g.value.push("La date de fin doit être après la date de début")}}else b(r.value,c.value,"error"),b(r.value,c.value,"success"),b(r.value,i.value,"warning");d.value=g.value.length>0,p.value=m.value.length>0,f.value=u.value.length>0&&!d.value&&!p.value},b=(N,M,S)=>{if(!N)return;const T=B(N);T&&M.forEach(P=>{const C=P(T);if(C){const A=S==="error"?g:S==="warning"?m:u;C[S]&&(A.value.push(C[S]),A.value=[...new Set(A.value)])}})},B=N=>{if(!N)return"";const M=y(N,"DD/MM/YYYY");return M?`${M.getFullYear()}-${String(M.getMonth()+1).padStart(2,"0")}-${String(M.getDate()).padStart(2,"0")}`:N},y=(N,M)=>{const S=M.split(/[^A-Z]/),T=N.split(/[^0-9]/);if(T.length!==S.length)return null;let P=1,C=0,A=2e3;for(let z=0;z<S.length;z++){const O=parseInt(T[z]);if(isNaN(O))return null;switch(S[z]){case"DD":P=O;break;case"MM":C=O-1;break;case"YYYY":case"YY":if(A=O,S[z]==="YY"){const K=new Date().getFullYear();A=Math.floor(K/100)*100+O}break}}const I=new Date(A,C,P);return I.getFullYear()===A&&I.getMonth()===C&&I.getDate()===P?I:null},k=(N,M,S)=>{if(!N)return"";const T=y(N,M);if(!T)return N;let P=S;return P=P.replace("YYYY",String(T.getFullYear())),P=P.replace("YY",String(T.getFullYear()).slice(-2)),P=P.replace("MM",String(T.getMonth()+1).padStart(2,"0")),P=P.replace("DD",String(T.getDate()).padStart(2,"0")),P},w=N=>{const M=N.replace(/\D/g,""),S=M.split("");if(S.length<=2)return M;if(S.length<=4)return`${S.slice(0,2).join("")}/${S.slice(2).join("")}`;const T=S.slice(4).join("");return`${S.slice(0,2).join("")}/${S.slice(2,4).join("")}/${T}`};e.onMounted(()=>{if(t.modelValue){if(Array.isArray(t.modelValue)){const[N,M]=t.modelValue,S=k(N,t.returnFormat||"YYYY-MM-DD",t.displayFormat),T=k(M,t.returnFormat||"YYYY-MM-DD",t.displayFormat);r.value=`${S} - ${T}`}else typeof t.modelValue=="string"&&(r.value=k(t.modelValue,t.returnFormat||"YYYY-MM-DD",t.displayFormat));h()}}),e.watch(()=>t.modelValue,N=>{if(N){if(Array.isArray(N)){const[M,S]=N,T=k(M,t.returnFormat||"YYYY-MM-DD",t.displayFormat),P=k(S,t.returnFormat||"YYYY-MM-DD",t.displayFormat);r.value=`${T} - ${P}`}else typeof N=="string"&&(r.value=k(N,t.returnFormat||"YYYY-MM-DD",t.displayFormat));h()}else r.value=""});const $=N=>{if(!N){l("update:modelValue","");return}const M=t.returnFormat||"YYYY-MM-DD";if(t.range){const[S,T]=N.split("-").map(P=>P.trim());if(S&&T){const P=k(S,t.displayFormat,M),C=k(T,t.displayFormat,M);l("update:modelValue",[P,C])}}else{const S=k(N,t.displayFormat,M);l("update:modelValue",S)}},L=e.computed(()=>t.range?23:10),Z=N=>{if(N.length>L.value&&(N=N.slice(0,L.value)),!N){r.value="",$(""),h();return}let M=N.replace(/[^\d-]/g,"");if(t.range){const[S,T]=M.split("-").map(C=>C.trim());let P="";if(S){P=w(S);const C=t.displayFormat.includes("YYYY")?8:6;S.length===C&&!M.includes("-")&&(P+=" -")}M.includes("-")&&(P.includes(" -")||(P+=" -"),T&&(P+=" "+w(T))),M=P}else M=w(M);r.value=M,$(M)},E=()=>{if(!r.value){$("");return}if(t.range){const[N,M]=r.value.split("-").map(S=>S.trim());if(N&&M){const S=N.replace(/\D/g,""),T=M.replace(/\D/g,""),P=S.slice(0,2),C=S.slice(2,4),A=S.slice(4),I=T.slice(0,2),z=T.slice(2,4),O=T.slice(4),K=`${P}/${C}/${A}`,F=`${I}/${z}/${O}`;r.value=`${K} - ${F}`,_(K)&&_(F)&&$(`${K} - ${F}`)}}else{const N=r.value.replace(/\D/g,""),M=N.slice(0,2),S=N.slice(2,4),T=N.slice(4),P=`${M}/${S}/${T}`;r.value=P,_(P)&&$(P)}h()},_=N=>y(N,t.displayFormat)!==null;return a({validate:h,validateOnSubmit:()=>(h(),g.value.length===0)}),(N,M)=>(e.openBlock(),e.createBlock(ie,e.mergeProps({modelValue:r.value,"onUpdate:modelValue":M[0]||(M[0]=S=>r.value=S),error:d.value,"error-messages":g.value,messages:u.value,placeholder:N.placeholder,success:f.value,warning:p.value,"warning-messages":m.value,maxlength:L.value},N.$attrs,{onBlur:E,"onUpdate:modelValue":Z}),null,16,["modelValue","error","error-messages","messages","placeholder","success","warning","warning-messages","maxlength"]))}}),on={class:"date-picker-container"},ln={class:"mx-auto my-auto ml-5 mb-4"},rn=e.defineComponent({__name:"DatePicker",props:{modelValue:{default:void 0},placeholder:{default:"Sélectionner une date"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:""},isBirthDate:{type:Boolean,default:!1},showWeekNumber:{type:Boolean,default:!1},required:{type:Boolean,default:!1},displayRange:{type:Boolean,default:!1},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},isDisabled:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},noCalendar:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0}},emits:["update:model-value"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=C=>{if(!C)return null;const A=t.format||"DD/MM/YYYY",I=A.includes("/")?"/":A.includes("-")?"-":".",z=A.split(I),O=C.split(I);if(z.length!==O.length)return null;let K="",F="",le="";if(z.forEach((x,U)=>{const q=O[U];x.includes("DD")?K=q:x.includes("MM")?F=q:x.includes("YYYY")?le=q:x.includes("YY")&&(le="20"+q)}),!K||!F||!le)return null;const Le=new Date(`${le}-${F}-${K}`);return isNaN(Le.getTime())?null:Le};function s(C){if(!C)return null;if(Array.isArray(C)){if(C.length>=2){const I=[r(C[0]),r(C[1])];return I.some(z=>z===null)?[]:I[0]&&I[1]&&I[0]>I[1]?[]:I.filter(z=>z!==null)}if(C.length===1){const I=r(C[0]);return I===null?[]:[I]}return[]}const A=r(C);return A===null?null:A}const c=e.ref(s(t.modelValue)),i=e.ref(!1),d=e.ref([]),p=e.ref([]),f=e.ref([]),g=e.ref(""),m=()=>({"dp-width":!0,"v-messages__message--success":p.value.length>0,"v-messages__message--error":d.value.length>0,"v-messages__message--warning":f.value.length>0&&d.value.length<1}),u=(C,A)=>{if(!C)return"";const I=C.getDate().toString().padStart(2,"0"),z=(C.getMonth()+1).toString().padStart(2,"0"),O=C.getFullYear().toString(),K=O.slice(-2);return A.replace("YYYY",O).replace("YY",K).replace("MM",z).replace("DD",I)},h=e.computed(()=>{if(!c.value)return"";const C=t.dateFormatReturn||t.format;return Array.isArray(c.value)?c.value.length>=2?[u(c.value[0],C),u(c.value[1],C)]:"":u(c.value,C)}),b=e.computed(()=>c.value?Array.isArray(c.value)?c.value.length>=2?`${u(c.value[0],t.format)} - ${u(c.value[c.value.length-1],t.format)}`:u(c.value[0],t.format):u(c.value,t.format):null),B=C=>Array.isArray(C)?C.length>=2?[C[0],C[1]]:C[0]||"":C;e.watch(h,C=>{const A=B(C);l("update:model-value",A)}),e.watch(b,C=>{!t.noCalendar&&C&&(g.value=C)});const y=C=>{if(Array.isArray(C)){const I=C.map(z=>z?r(z):null).filter(z=>z!==null);if(I.length===0){c.value=null;return}c.value=I;return}const A=C?r(C):null;c.value=A===null?null:A};e.watch(c,C=>{T(),t.displayRange?Array.isArray(C)&&C.length>=2&&(i.value=!1):i.value=!1});const k=C=>{C.target.closest(".date-picker-container")||(i.value=!1)},w=e.computed(()=>new Date().toLocaleDateString("fr-FR",{weekday:"long",month:"long",day:"numeric"}).replace(/\b\w/g,C=>C.toUpperCase()));e.onMounted(()=>{document.addEventListener("click",k),c.value!==null&&(T(),l("update:model-value",h.value)),b.value&&(g.value=b.value)}),e.onBeforeUnmount(()=>{document.removeEventListener("click",k)});const $=e.ref();a({validateOnSubmit:()=>{var C;return t.noCalendar?(C=$.value)==null?void 0:C.validateOnSubmit():(T(),d.value.length===0)},isDatePickerVisible:i,selectedDates:c,errorMessages:d,handleClickOutside:k,initializeSelectedDates:s}),e.watch(i,async C=>{if(C){await e.nextTick();const A=document.querySelector(".v-btn.v-btn--icon.v-theme--light.v-btn--density-comfortable.v-btn--size-default.v-btn--variant-text.v-date-picker-controls__mode-btn"),I=document.querySelectorAll(".v-btn.v-btn--icon.v-theme--light.v-btn--density-default.v-btn--size-default.v-btn--variant-text");A&&A.setAttribute("aria-label","Fleche vers le bas"),I.forEach((z,O)=>{O===0?z.setAttribute("aria-label","Fleche vers la gauche"):O===1&&z.setAttribute("aria-label","Fleche vers la droite")})}});const Z=()=>{i.value=!0},E=()=>{i.value=!0},_=e.ref(t.customRules||[]),R=e.ref(t.customWarningRules||[]),{generateRules:N}=ye(),M=N(_.value),S=N(R.value),T=()=>{d.value=[],p.value=[],f.value=[];const C=(I,z)=>{I.forEach(O=>{z.forEach(K=>{const F=K(O);F!=null&&F.error?(d.value.push(F.error),d.value=[...new Set(d.value)]):F!=null&&F.warning?(f.value.push(F.warning),f.value=[...new Set(f.value)]):F!=null&&F.success&&(p.value.push(F.success),p.value=[...new Set(p.value)])})})},A=I=>{if(Array.isArray(I)&&I.length>1){const[z,...O]=I,K=O[O.length-1],F=[z,K];C(F,M),C(F,S)}else{const z=Array.isArray(I)?I:[I];C(z,M),C(z,S)}};t.required&&(!c.value||Array.isArray(c.value)&&c.value.length===0)?d.value.push("La date est requise."):c.value&&A(Array.isArray(c.value)?c.value:[c.value])},P=()=>{if(!t.noCalendar)switch(!0){case d.value.length>0:return"error";case f.value.length>0:return"warning";case p.value.length>0:return"success";default:return}};return(C,A)=>(e.openBlock(),e.createElementBlock("div",on,[t.noCalendar?(e.openBlock(),e.createBlock(nn,{key:0,ref_key:"dateTextInputRef",ref:$,modelValue:g.value,"onUpdate:modelValue":[A[0]||(A[0]=I=>g.value=I),y],class:e.normalizeClass([m(),"label-hidden-on-focus"]),"date-format-return":t.dateFormatReturn,format:t.format,label:t.placeholder,placeholder:t.placeholder,range:t.displayRange,required:t.required,rules:t.customRules,"warning-rules":t.customWarningRules,title:"Date text input"},null,8,["modelValue","class","date-format-return","format","label","placeholder","range","required","rules","warning-rules"])):(e.openBlock(),e.createBlock(ie,{key:1,modelValue:g.value,"onUpdate:modelValue":[A[1]||(A[1]=I=>g.value=I),y],"append-icon":C.displayIcon&&C.displayAppendIcon?"calendar":void 0,"append-inner-icon":P(),class:e.normalizeClass([m(),"label-hidden-on-focus"]),"error-messages":d.value,"is-disabled":t.isDisabled,"is-read-only":!0,label:t.placeholder,messages:[...p.value,...f.value],"no-icon":t.noIcon,"prepend-icon":C.displayIcon&&!C.displayAppendIcon?"calendar":void 0,"variant-style":t.isOutlined?"outlined":"underlined",color:"primary","is-clearable":"",title:"Date Picker",onFocus:A[2]||(A[2]=I=>i.value=!0),onPrependIconClick:Z,onAppendIconClick:E},null,8,["modelValue","append-icon","append-inner-icon","class","error-messages","is-disabled","label","messages","no-icon","prepend-icon","variant-style"])),e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[e.createVNode(Ca.VLocaleProvider,{locale:"fr"},{default:e.withCtx(()=>[i.value&&!t.noCalendar?(e.openBlock(),e.createBlock(e.unref(wa.VDatePicker),{key:0,modelValue:c.value,"onUpdate:modelValue":A[3]||(A[3]=I=>c.value=I),"first-day-of-week":1,multiple:t.displayRange?"range":!1,"show-adjacent-months":!0,"show-week":t.showWeekNumber,"view-mode":t.isBirthDate?"year":"month",color:"primary"},{title:e.withCtx(()=>A[4]||(A[4]=[e.createTextVNode(" Selectionnez une date ")])),header:e.withCtx(()=>[e.createElementVNode("h3",ln,e.toDisplayString(w.value),1)]),_:1},8,["modelValue","multiple","show-week","view-mode"])):e.createCommentVNode("",!0)]),_:1})]),_:1})]))}}),v=(o,a)=>{const n=o.__vccOpts||o;for(const[t,l]of a)n[t]=l;return n},sn=v(rn,[["__scopeId","data-v-84daaabb"]]),se=e.ref([]);function je(){return{notificationQueue:se,addNotification:t=>{se.value.some(l=>l.id===t.id)||se.value.push(t)},removeNotification:t=>{se.value=se.value.filter(l=>l.id!==t)},clearQueue:()=>{se.value=[]}}}const cn=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:je},Symbol.toStringTag,{value:"Module"})),dn={label:"Retour"},mn=v(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(o){const a=o,n=e.ref(Da),t=e.computed(()=>a.dark??!1),l=e.computed(()=>t.value?"white":"primary"),r=e.computed(()=>t.value?"outlined":"text"),s=e.computed(()=>t.value?"dark":"light"),c=e.computed(()=>t.value?"white":"primary"),i=e.computed(()=>({"px-0":!t.value,"pr-1":!t.value&&!a.hideBackIcon}));return(d,p)=>(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps(d.$attrs,{variant:r.value,theme:s.value,color:c.value,outlined:t.value,class:["vd-back-btn","text-none",i.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[a.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(D.VIcon,{key:0,color:l.value,class:e.normalizeClass([{"ml-n1":t.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(dn).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-86fe77d5"]]);function Nt(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var un=function(a){return pn(a)&&!fn(a)};function pn(o){return!!o&&typeof o=="object"}function fn(o){var a=Object.prototype.toString.call(o);return a==="[object RegExp]"||a==="[object Date]"||bn(o)}var hn=typeof Symbol=="function"&&Symbol.for,gn=hn?Symbol.for("react.element"):60103;function bn(o){return o.$$typeof===gn}function yn(o){return Array.isArray(o)?[]:{}}function ke(o,a){return a.clone!==!1&&a.isMergeableObject(o)?ce(yn(o),o,a):o}function kn(o,a,n){return o.concat(a).map(function(t){return ke(t,n)})}function Vn(o,a){if(!a.customMerge)return ce;var n=a.customMerge(o);return typeof n=="function"?n:ce}function wn(o){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(o).filter(function(a){return Object.propertyIsEnumerable.call(o,a)}):[]}function Mt(o){return Object.keys(o).concat(wn(o))}function Lt(o,a){try{return a in o}catch{return!1}}function Cn(o,a){return Lt(o,a)&&!(Object.hasOwnProperty.call(o,a)&&Object.propertyIsEnumerable.call(o,a))}function Bn(o,a,n){var t={};return n.isMergeableObject(o)&&Mt(o).forEach(function(l){t[l]=ke(o[l],n)}),Mt(a).forEach(function(l){Cn(o,l)||(Lt(o,l)&&n.isMergeableObject(a[l])?t[l]=Vn(l,n)(o[l],a[l],n):t[l]=ke(a[l],n))}),t}function ce(o,a,n){n=n||{},n.arrayMerge=n.arrayMerge||kn,n.isMergeableObject=n.isMergeableObject||un,n.cloneUnlessOtherwiseSpecified=ke;var t=Array.isArray(a),l=Array.isArray(o),r=t===l;return r?t?n.arrayMerge(o,a,n):Bn(o,a,n):ke(a,n)}ce.all=function(a,n){if(!Array.isArray(a))throw new Error("first argument should be an array");return a.reduce(function(t,l){return ce(t,l,n)},{})};var Nn=ce,Mn=Nn;const St=Nt(Mn);function Y(o,a){return e.computed(()=>St(o,e.toRaw(a.vuetifyOptions)??{}))}function oe(o,a="px"){if(!(o==null||o===""))return isNaN(+o)?String(o):`${Number(o)}${a}`}const Ln={label:"Retour en haut"},Sn={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},xn=v(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(o){const a=o,n=Y(Sn,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>a.target?`#${a.target}`:null),s=e.computed(()=>{const m=oe(a.nudgeRight)||"0";return{bottom:oe(a.nudgeBottom)||"0",marginRight:m}}),c=e.computed(()=>l.value?"36px":void 0),i=e.computed(()=>({"d-sr-only":l.value})),d=G.useDisplay();e.watch(()=>d.smAndDown.value,m=>{l.value=m},{immediate:!0});const p=m=>{const u=m.currentTarget;u instanceof Window?t.value=window.scrollY>a.threshold:t.value=u.scrollTop>a.threshold},f=()=>{a.target?(document.getElementById(a.target)||window).scrollTo(0,0):window.scrollTo(0,0)},g=e.computed(()=>a.target?document.getElementById(a.target):window);return e.onMounted(()=>{var m;(m=g.value)==null||m.addEventListener("scroll",p)}),e.onUnmounted(()=>{var m;(m=g.value)==null||m.removeEventListener("scroll",p)}),(m,u)=>(e.openBlock(),e.createBlock(he.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({...e.unref(n).btn,...m.$attrs},{style:s.value,"min-width":c.value,class:"vd-back-to-top-btn",onClick:f}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(i.value)},[e.renderSlot(m.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Ln).label),1)],!0)],2),e.renderSlot(m.$slots,"icon",{},()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(yt)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,t.value],[Ye.Scroll,p,r.value]])]),_:3}))}}),[["__scopeId","data-v-316d8462"]]),$n={class:"pl-0"},vn=["href","aria-label"],_n={key:1,class:"vd-collapse-list"},En={class:"text-subtitle-1 font-weight-bold mb-3"},In={class:"pl-0"},Tn=["href","aria-label"],An=v(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(o){const a=o,{smAndDown:n}=G.useDisplay(),t=e.computed(()=>n.value);return(l,r)=>t.value?(e.openBlock(),e.createBlock(xe.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(xe.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(xe.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.listTitle),1)]),_:1}),e.createVNode(xe.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",$n,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:"py-3"},[e.createElementVNode("a",{href:s.href,"aria-label":s.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(s.text),9,vn)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",_n,[e.createElementVNode("h4",En,e.toDisplayString(l.listTitle),1),e.createElementVNode("ul",In,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:e.normalizeClass({"mb-2":c<l.items.length-1})},[e.createElementVNode("a",{href:s.href,"aria-label":s.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(s.text),9,Tn)],2))),128))])]))}}),[["__scopeId","data-v-a4e2c3b6"]]),Dn={key:0,class:"vd-contextual-menu"},Zn=["href","onClick","textContent"],Pn=v(e.defineComponent({__name:"ContextualMenu",props:e.mergeModels({items:{}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue");e.onMounted(()=>{!a.value&&window.location.hash&&(a.value=window.location.hash),addEventListener("hashchange",()=>{a.value=window.location.hash})}),e.watch(a,(t,l)=>{t&&t!==l&&n(t)},{immediate:!0});function n(t){window.location.hash!==t&&(window.location.hash=t,a.value=t)}return(t,l)=>t.items.length?(e.openBlock(),e.createElementBlock("ul",Dn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,({text:r,hash:s,level:c})=>(e.openBlock(),e.createElementBlock("li",{key:s},[e.createElementVNode("a",{href:s,class:e.normalizeClass([{"text-primary active":a.value===s,"text-medium-emphasis":a.value!==s,"ps-4":c===2,"ps-6":c===3,"ps-9":c===4,"ps-12":c===5,"ps-14":c===6},"d-flex align-center text-decoration-none text-body-1 px-4 py-2"]),onClick:e.withModifiers(i=>n(s),["prevent","stop"]),textContent:e.toDisplayString(r)},null,10,Zn)]))),128))])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-4af557c1"]]),Xe={color:"primary",height:"auto",minHeight:"44px",class:"text-wrap"},zn={banner:{rounded:!0,elevation:2,class:"pa-8"},closeBtn:{icon:!0,variant:"text",width:"32px",height:"32px",class:"ml-4"},backBtn:{icon:!0,variant:"text",width:"32px",height:"32px",class:"ml-4"},customizeBtn:{...Xe,variant:"outlined"},rejectBtn:{...Xe},acceptBtn:{...Xe}},J={label:"Gestion des cookies",title:"À propos des cookies",closeBtn:"Continuer sans accepter",backBtn:"Précédent",description:"Ce site utilise des cookies qui nous permettent de vous proposer une expérience en ligne optimale en enregistrant certaines informations lors de votre navigation.",moreInformationLabel:"En savoir plus",customizeBtnText:"Personnaliser mes choix",rejectBtnText:"Continuer sans accepter",acceptBtnText:"Tout accepter"};function xt(o,a,n=[]){return typeof o[a]=="function"?o[a](...n):o[a]}const Hn={default:"Le champ est requis."};function Rn(o=Hn){return a=>{let n;return Array.isArray(a)?n=a.length!==0:n=!!(typeof a=="string"?a.trim():a),n||xt(o,"default")}}const Qe=Rn(),Fn=[{label:"Dénomination du cookie",width:"180px"},{label:"Finalité",width:"328px"},{label:"Durée de conservation",width:"180px"}],$t=v(e.defineComponent({__name:"CookiesTable",props:{items:{}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(Ba.VTable,{class:"vd-cookie-table bg-transparent"},{default:e.withCtx(()=>[e.createElementVNode("thead",null,[e.createElementVNode("tr",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(Fn),(t,l)=>(e.openBlock(),e.createElementBlock("th",{key:l,style:e.normalizeStyle({width:t.width}),class:"text-left",scope:"col"},e.toDisplayString(t.label),5))),128))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,t=>(e.openBlock(),e.createElementBlock("tr",{key:t.name},[e.createElementVNode("td",null,e.toDisplayString(t.name),1),e.createElementVNode("td",null,[e.renderSlot(a.$slots,"cookie-description-"+t.name,{cookie:t},()=>[e.createTextVNode(e.toDisplayString(t.description),1)],!0)]),e.createElementVNode("td",null,e.toDisplayString(t.conservation),1)]))),128))])]),_:3}))}}),[["__scopeId","data-v-395de867"]]),ee={essentials:{title:"Cookies requis",description:"Ces cookies sont indispensables au fonctionnement du site et ne peuvent être désactivés."},functional:{title:"Cookies fonctionnels",description:"Ces cookies sont utilisés pour capturer vos préférences sur notre site. Ils permettent de vous assurer un confort dans votre navigation."},analytics:{title:"Cookies d’analyse",description:"Ces cookies sont dédiés à l’amélioration de notre site en analysant votre expérience d’utilisation. Ils nous sont très utiles pour vous proposer un site de bonne qualité."},showInformation:"Afficher les cookies",hideInformation:"Masquer les cookies",reject:"Refuser",accept:"Accepter",fieldLabel:o=>`Accepter les cookies de type ${o}, ce champ est requis.`},On={class:"vd-cookies-information"},qn={class:"text-subtitle-1 font-weight-bold mb-2"},Un={class:"mb-4"},Yn={class:"mb-1"},vt=v(e.defineComponent({__name:"CookiesInformation",props:e.mergeModels({type:{},tableItems:{}},{modelValue:{type:Boolean},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue"),n=e.computed(()=>{if(a.value===!0)return"accept";if(a.value===!1)return"reject"}),t=e.ref(!1);function l(r){t.value=r.newState==="open"}return(r,s)=>(e.openBlock(),e.createElementBlock("div",On,[e.createElementVNode("h2",qn,e.toDisplayString(e.unref(ee)[r.type].title),1),e.createElementVNode("p",Un,e.toDisplayString(e.unref(ee)[r.type].description),1),e.createElementVNode("details",{onToggle:l},[e.createElementVNode("summary",Yn,[e.createTextVNode(e.toDisplayString(t.value?e.unref(ee).hideInformation:e.unref(ee).showInformation)+" ",1),e.createVNode(D.VIcon,{class:"mr-2","data-test":"chevron"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(za):e.unref(wt)),1)]),_:1})]),e.createVNode($t,{items:r.tableItems,class:"mb-2"},e.createSlots({_:2},[e.renderList(r.$slots,(c,i)=>({name:i,fn:e.withCtx(d=>[e.renderSlot(r.$slots,i,e.normalizeProps(e.guardReactiveProps(d??{})),void 0,!0)])}))]),1032,["items"])],32),r.type!=="essentials"?(e.openBlock(),e.createBlock(Na.VRadioGroup,{key:0,"model-value":n.value,rules:[e.unref(Qe)],"data-test-id":"radio-group",inline:"",label:e.unref(ee).fieldLabel(e.unref(ee)[r.type].title),"hide-details":"auto",class:"vd-cookies-information__radio-group","onUpdate:modelValue":s[0]||(s[0]=c=>a.value=c==="accept")},{default:e.withCtx(()=>[e.createVNode(Q.VSpacer),e.createVNode(ut.VRadio,{label:e.unref(ee).reject,value:"reject",color:"primary"},null,8,["label"]),e.createVNode(ut.VRadio,{label:e.unref(ee).accept,value:"accept",class:"mr-0",color:"primary"},null,8,["label"])]),_:1},8,["model-value","rules","label"])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-b88c0006"]]),Ve={title:"Gestion des cookies",description:"Définissez vos préférences de collecte et de traitement de vos données sur ce site.",cookieDefinition:"Un cookie est un petit fichier texte déposé sur votre terminal (ordinateur, tablette ou mobile) lors de la visite d’un site ou lors de la consultation d’une publicité. Il contient plusieurs données : le nom du service qui l’a déposé, un identifiant sous forme de numéro unique, une valeur et éventuellement une date d’expiration.",rejectAll:"Tout refuser",acceptAll:"Tout accepter",saveBtn:"Enregistrer mes choix"},Kn={class:"mb-4"},Wn={class:"mb-4"},Gn={class:"d-flex flex-wrap justify-end mx-n2 mt-n2 mb-6"},jn={class:"d-flex mt-16"},_t=e.defineComponent({__name:"CookiesSelection",props:{items:{}},emits:["submit"],setup(o,{emit:a}){const n=o,t=a,l=e.ref(null),r=e.ref({essentials:void 0,functional:void 0,analytics:void 0}),s=e.computed(()=>{const d={};return Object.entries(r.value).forEach(([p,f])=>{p!="essentials"&&n.items[p]&&(d[p]=f)}),d});function c(d){r.value.functional=d,r.value.analytics=d}async function i(){const{valid:d}=await l.value.validate();d&&t("submit",s.value)}return(d,p)=>d.items?(e.openBlock(),e.createBlock($e.VCard,{key:0,elevation:"0",color:"transparent",class:"vd-cookies-card"},{default:e.withCtx(()=>[e.createVNode(Ma.VForm,{ref_key:"form",ref:l},{default:e.withCtx(()=>[e.createElementVNode("p",Kn,e.toDisplayString(e.unref(Ve).description),1),e.createElementVNode("p",Wn,e.toDisplayString(e.unref(Ve).cookieDefinition),1),e.createElementVNode("div",Gn,[e.createVNode(H.VBtn,{"data-test-id":"reject-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[0]||(p[0]=f=>c(!1))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ve).rejectAll),1)]),_:1}),e.createVNode(H.VBtn,{"data-test-id":"accept-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[1]||(p[1]=f=>c(!0))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ve).acceptAll),1)]),_:1})]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.items,(f,g)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:g},[f?(e.openBlock(),e.createBlock(vt,{key:0,modelValue:r.value[g],"onUpdate:modelValue":m=>r.value[g]=m,type:g,"table-items":f,class:"mb-6"},e.createSlots({_:2},[e.renderList(d.$slots,(m,u)=>({name:u,fn:e.withCtx(h=>[String(u).startsWith("cookie-description")?e.renderSlot(d.$slots,u,e.mergeProps({key:0,ref_for:!0},h??{})):e.createCommentVNode("",!0)])}))]),1032,["modelValue","onUpdate:modelValue","type","table-items"])):e.createCommentVNode("",!0)],64))),128)),e.createElementVNode("div",jn,[e.createVNode(Q.VSpacer),e.createVNode(H.VBtn,{"data-test-id":"submit",color:"primary",onClick:i},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ve).saveBtn),1)]),_:1})])]),_:3},512)]),_:3})):e.createCommentVNode("",!0)}}),Xn={class:"vd-cookie-banner__inner"},Qn={class:"d-flex align-start flex-nowrap pa-0 mb-6"},Jn={class:"text-h5 font-weight-bold"},eo={class:"vd-cookie-banner-content"},to={key:0},ao={key:1},no={class:"vd-cookie-banner-action-ctn d-flex align-center flex-wrap max-width-none mt-6 ga-4"},oo=v(e.defineComponent({__name:"CookieBanner",props:e.mergeModels({vuetifyOptions:{},items:{}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:e.mergeModels(["reject","accept","customize","submit"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=Y(zn,n),l=a,r=e.useModel(o,"modelValue"),s=e.ref(!1),c=G.useDisplay(),i=e.computed(()=>c.smAndDown.value?"100%":"auto");function d(){r.value=!1,l("reject")}function p(){r.value=!1,l("accept")}function f(){n.items&&(s.value=!0),l("customize")}function g(m){l("submit",m),s.value=!1,r.value=!1}return(m,u)=>r.value?(e.openBlock(),e.createBlock(e.Teleport,{key:0,to:"body"},[e.createVNode(ge.VSheet,e.mergeProps(e.unref(t).banner,{"aria-label":e.unref(J).label,class:"vd-cookie-banner"}),{default:e.withCtx(()=>[e.createElementVNode("div",Xn,[e.createElementVNode("div",Qn,[e.createElementVNode("h2",Jn,e.toDisplayString(e.unref(J).title),1),e.createVNode(Q.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).spacer)),null,16),s.value?(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({key:0},e.unref(t).backBtn,{"aria-label":e.unref(J).backBtn,onClick:u[0]||(u[0]=h=>s.value=!1)}),{default:e.withCtx(()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Za)),1)]),_:1},16)]),_:1},16,["aria-label"])):(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({key:1},e.unref(t).closeBtn,{"aria-label":e.unref(J).closeBtn,onClick:d}),{default:e.withCtx(()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),e.createElementVNode("div",eo,[e.createVNode(e.Transition,{name:"height"},{default:e.withCtx(()=>[s.value&&m.items?(e.openBlock(),e.createElementBlock("div",to,[e.createVNode(_t,{items:m.items,onSubmit:g},e.createSlots({_:2},[e.renderList(m.$slots,(h,b)=>({name:b,fn:e.withCtx(B=>[e.renderSlot(m.$slots,b,e.normalizeProps(e.guardReactiveProps(B||{})),void 0,!0)])}))]),1032,["items"])])):(e.openBlock(),e.createElementBlock("div",ao,[e.renderSlot(m.$slots,"default",{},()=>[e.createElementVNode("p",null,e.toDisplayString(e.unref(J).description),1)],!0),e.createElementVNode("div",no,[e.createVNode(Q.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).actionsSpacer)),null,16),e.createVNode(H.VBtn,e.mergeProps(e.unref(t).customizeBtn,{"data-test-id":"customize",width:i.value,onClick:f}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(J).customizeBtnText),1)]),_:1},16,["width"]),e.createVNode(H.VBtn,e.mergeProps(e.unref(t).rejectBtn,{"data-test-id":"reject",width:i.value,onClick:d}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(J).rejectBtnText),1)]),_:1},16,["width"]),e.createVNode(H.VBtn,e.mergeProps(e.unref(t).acceptBtn,{"data-test-id":"accept",width:i.value,onClick:p}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(J).acceptBtnText),1)]),_:1},16,["width"])])]))]),_:3})])])]),_:3},16,["aria-label"])])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-f308fef2"]]);function lo(o){const a=document.createElement("textarea");a.value=o,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a);const n=document.getSelection();let t=!1;n&&(t=n.rangeCount>0?n.getRangeAt(0):!1),a.select(),navigator.clipboard?navigator.clipboard.writeText(o):document.execCommand("copy"),document.body.removeChild(a),n&&t&&(n.removeAllRanges(),n.addRange(t))}const ro={tooltip:"Texte copié !"},io={menu:{location:"end center",offset:16,zIndex:8,contentClass:"vd-copy-tooltip-menu text-white text-body-2 ml-2"},btn:{icon:!0,variant:"text",density:"comfortable"},icon:{color:"grey-darken-20"}},so=["id"],co=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(o,{expose:a}){const n=o,t=Y(io,n),l=e.ref(!1),r=Ra;function s(){const c=typeof n.textToCopy=="function"?n.textToCopy():n.textToCopy;lo(c),!n.hideTooltip&&setTimeout(()=>{l.value=!1},n.tooltipDuration)}return a({copy:s,tooltip:l}),(c,i)=>(e.openBlock(),e.createElementBlock("div",{id:n.ariaOwns,class:"vd-copy-btn"},[e.createVNode(ve.VMenu,e.mergeProps(e.unref(t).menu,{id:n.ariaOwns,modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=d=>l.value=d),disabled:n.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(H.VBtn,e.mergeProps({...d,...e.unref(t).btn},{"aria-label":n.ariaLabel,"aria-owns":n.ariaOwns,"data-test-id":n.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)])]),_:2},1040,["aria-label","aria-owns","data-test-id"])]),default:e.withCtx(()=>[e.renderSlot(c.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ro).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,so))}}),mo={class:"d-sr-only"},uo={key:0,class:"d-flex flex-column align-end py-1 mr-1"},Et=v(e.defineComponent({__name:"SyBtnSelect",props:{modelValue:{type:[Object,String,null],default:null},menuItems:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},required:{type:Boolean,default:!1},menuId:{type:String,default:"custom-btn-select-menu"},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},primaryInfo:{type:String,default:"Information principale"},secondaryInfo:{type:String,default:void 0},hideIcon:{type:Boolean,default:!1},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},iconOnly:{type:Boolean,default:!1},options:{type:Object,default:()=>({menu:{},btn:{},list:{}})}},emits:["update:modelValue","logout"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useSlots(),{smAndDown:s}=G.useDisplay(),c=e.ref(!1),i=e.ref(t.modelValue),d=()=>{c.value=!c.value},p=e.ref(null),f=e.ref("");e.onMounted(()=>{p.value&&!b.value&&(f.value=`${p.value.getBoundingClientRect().width}px`)});const g=y=>{i.value=y,l("update:modelValue",y),c.value=!1},m=e.computed(()=>t.menuItems.map(y=>typeof y=="string"?{[t.textKey]:y,[t.valueKey]:y}:y)),u=e.computed(()=>t.hideIcon?"pa-1 pa-sm-2":b.value?"pa-0":"pa-1 pa-sm-3"),h=e.computed(()=>!!(r.default||!t.hideLogoutBtn)),b=e.computed(()=>t.isMobileView||s.value||t.iconOnly);e.watch(()=>t.modelValue,y=>{i.value=y});const B=e.ref(`custom-btn-select-${Math.random().toString(36).substring(7)}`);return a({isOpen:c,formattedItems:m,selectedItem:i}),(y,k)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"buttonRef",ref:p,class:"vd-user-menu-btn-ctn d-inline-block"},[e.createVNode(ve.VMenu,e.mergeProps({id:B.value,disabled:!h.value,location:"bottom end",transition:"fade-transition"},t.options.menu,{"z-index":"9999"}),{activator:e.withCtx(({props:w})=>[e.createVNode(H.VBtn,e.mergeProps({id:B.value,class:[u.value,"vd-user-menu-btn"],height:o.iconOnly?"auto":void 0,icon:o.iconOnly,size:o.iconOnly?"x-large":"default",width:o.iconOnly?"auto":void 0},{...w,...t.options.btn},{onClick:d}),{default:e.withCtx(()=>{var $,L,Z,E;return[e.createElementVNode("div",{class:e.normalizeClass([["text-"+(($=t==null?void 0:t.options.btn)==null?void 0:$.color)],"d-flex align-center"])},[e.renderSlot(y.$slots,"prepend-icon",{},void 0,!0),e.createElementVNode("span",mo,e.toDisplayString(t.label),1),!b.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",uo,[e.createElementVNode("span",{class:e.normalizeClass([`text-${(L=t==null?void 0:t.options.btn)==null?void 0:L.textColor}`,"font-weight-bold"])},e.toDisplayString(t.primaryInfo),3),e.createElementVNode("span",{class:e.normalizeClass([`text-${(Z=t==null?void 0:t.options.btn)==null?void 0:Z.textColor}`,"text-grey text-darken-2 font-weight-medium"])},e.toDisplayString(t.secondaryInfo),3)])):e.createCommentVNode("",!0),b.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass([`text-${(E=t==null?void 0:t.options.btn)==null?void 0:E.textColor}`,"font-weight-bold text-caption"])},e.toDisplayString(t.primaryInfo),3)):e.createCommentVNode("",!0),e.renderSlot(y.$slots,"append-icon",{},void 0,!0)],2)]}),_:2},1040,["id","class","height","icon","size","width"])]),default:e.withCtx(()=>[e.renderSlot(y.$slots,"content",{},()=>[h.value?(e.openBlock(),e.createBlock(W.VList,e.normalizeProps(e.mergeProps({key:0},t.options.list)),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,(w,$)=>{var L;return e.openBlock(),e.createBlock(W.VListItem,e.mergeProps({key:$,class:`text-${(L=t==null?void 0:t.options.list)==null?void 0:L.textColor}`,ref_for:!0},t.options.list,{href:w.link,onClick:Z=>g(w)}),{default:e.withCtx(()=>[e.createVNode(W.VListItemTitle,e.mergeProps({ref_for:!0},t.options.list),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w[t.textKey]),1)]),_:2},1040)]),_:2},1040,["class","href","onClick"])}),128)),e.renderSlot(y.$slots,"default",{},void 0,!0),e.renderSlot(y.$slots,"footer-list-item",{},void 0,!0)]),_:3},16)):e.createCommentVNode("",!0)],!0)]),_:3},16,["id","disabled"])],512))}}),[["__scopeId","data-v-27dd5864"]]),po={menu:{color:"primary"},option:{color:"primary"}},fo=["onKeydown"],It=v(e.defineComponent({__name:"SyInputSelect",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},textKey:{default:"text"},valueKey:{default:"value"},label:{default:"Sélectionnez une option"},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},errorMessages:{default:()=>[]},isHeaderToolbar:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=Y(po,t),r=n,s=e.ref(!1),c=e.ref(t.modelValue),i=e.ref(!1),d=()=>{s.value=!s.value},p=()=>{s.value=!1},f=e.computed(()=>(t.required||t.errorMessages.length>0)&&!c.value),g=e.ref(`sy-input-select-${Math.random().toString(36).substring(7)}`),m=L=>{c.value=L,r("update:modelValue",L),s.value=!1},u=L=>L[t.textKey],h=e.computed(()=>c.value&&typeof c.value=="object"?c.value[t.textKey]:t.label);e.watch(()=>t.modelValue,L=>{c.value=L}),e.watch([s,i],([L,Z])=>{L?i.value=Z:i.value=!c.value&&f.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,L=>{w.value=L,i.value=L.length>0});const b=e.ref(null),B=e.ref("");e.onMounted(()=>{e.watch([()=>s.value,()=>{var L;return(L=b.value)==null?void 0:L.getBoundingClientRect().width}],([L,Z])=>{if(L&&Z){const E=Z+(t.isHeaderToolbar?32:0);B.value=`${E}`}})});const y=e.computed(()=>t.outlined&&i.value?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined error text-error":t.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),k=e.computed(()=>t.items.map(L=>typeof L=="string"?{[t.textKey]:L,[t.valueKey]:L}:L)),w=e.ref(t.errorMessages),$=()=>t.required&&!c.value?(w.value=["Le champ est requis."],!1):t.errorMessages.length>0?(w.value=t.errorMessages,!1):(w.value=[],!0);return a({isOpen:s,closeList:p,selectItem:m,selectedItem:c,getItemText:u}),(L,Z)=>(e.openBlock(),e.createBlock(pt.VInput,{id:g.value,modelValue:c.value,"onUpdate:modelValue":Z[1]||(Z[1]=E=>c.value=E),"error-messages":w.value,label:t.label,title:t.label,role:"menu",onClick:$},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"menu",ref:b,class:e.normalizeClass(["sy-input-select",y.value,"text-"+e.unref(l).menu.color]),role:"menu",tabindex:"0",onClick:d,onKeydown:[e.withKeys(e.withModifiers(d,["prevent"]),["enter"]),e.withKeys(e.withModifiers(d,["prevent"]),["space"])]},[e.createElementVNode("span",null,e.toDisplayString(h.value),1),i.value?(e.openBlock(),e.createBlock(D.VIcon,{key:0,class:"ml-2",color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(D.VIcon,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(wt)),1)]),_:1})],42,fo)),[[Ye.ClickOutside,p]]),s.value?(e.openBlock(),e.createBlock(W.VList,e.mergeProps({key:0,"aria-label":t.label,"is-header-toolbar":t.isHeaderToolbar,style:`min-width:${B.value}px; ${t.outlined?"top: 36px;":"top: 30px;"}`,title:t.label,class:"v-list"},e.unref(l).list,{onKeydown:Z[0]||(Z[0]=e.withKeys(e.withModifiers(E=>s.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(k.value,(E,_)=>(e.openBlock(),e.createBlock(W.VListItem,e.mergeProps({key:_,ref_for:!0,ref:"options-"+_,"aria-selected":c.value===E,"base-color":e.unref(l).option.color,tabindex:_+1,class:"v-list-item",role:"option"},e.unref(l).option,{onClick:R=>m(E)}),{default:e.withCtx(()=>[e.createVNode(W.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u(E)),1)]),_:2},1024)]),_:2},1040,["aria-selected","base-color","tabindex","onClick"]))),128))]),_:1},16,["aria-label","is-header-toolbar","style","title"])):e.createCommentVNode("",!0)]),_:1},8,["id","modelValue","error-messages","label","title"]))}}),[["__scopeId","data-v-c84cf88c"]]),Je=v(e.defineComponent({__name:"SySelect",props:{modelValue:{type:[Object,String,Number],default:null},items:{type:Array,default:()=>[]},label:{type:String,default:""},errorMessages:{type:[String,Array],default:()=>[]},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},menuId:{type:String,default:"sy-select-menu"},outlined:{type:Boolean,default:!0},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(!1),s=e.ref(t.modelValue),c=e.ref(!1),i=e.ref(0),d=e.ref(null),p=()=>{r.value=!r.value},f=()=>{r.value=!1},g=e.ref(`sy-select-${Math.random().toString(36).substring(7)}`),m=y=>{s.value=y,l("update:modelValue",y),r.value=!1},u=y=>y[t.textKey],h=e.computed(()=>s.value&&typeof s.value=="object"?s.value[t.textKey]:t.label),b=e.computed(()=>t.items.map(y=>typeof y=="string"?{[t.textKey]:y,[t.valueKey]:y}:y)),B=e.computed(()=>(t.required||t.errorMessages.length>0)&&!s.value);return e.watch(()=>t.modelValue,y=>{s.value=y}),e.watch([r,c],([y,k])=>{y?c.value=k:c.value=!s.value&&B.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,y=>{c.value=y.length>0}),e.onMounted(()=>{d.value&&(i.value=d.value.offsetWidth+64)}),a({isOpen:r,closeList:f}),(y,k)=>{var w;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(fe.VTextField,{id:g.value,ref:"input",modelValue:h.value,"onUpdate:modelValue":k[0]||(k[0]=$=>h.value=$),title:"Sélectionnez une option",color:"primary",tabindex:"0",readonly:"",disabled:o.disabled,label:s.value?o.label:"Sélectionnez une option","aria-label":s.value?o.label:"Sélectionnez une option","error-messages":o.errorMessages,variant:o.outlined?"outlined":"underlined",rules:B.value?["Le champ est requis."]:[],class:"sy-select",style:e.normalizeStyle(c.value?{minWidth:`${i.value+18}px`}:{minWidth:`${i.value}px`}),onClick:p,onKeydown:[e.withKeys(e.withModifiers(p,["prevent"]),["enter"]),e.withKeys(e.withModifiers(p,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[c.value?(e.openBlock(),e.createBlock(D.VIcon,{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(D.VIcon,{class:"arrow"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ct)),1)]),_:1})]),_:1},8,["id","modelValue","disabled","label","aria-label","error-messages","variant","rules","style","onKeydown"])),[[Ye.ClickOutside,f]]),e.createElementVNode("span",{ref_key:"labelRef",ref:d,class:"hidden-label"},e.toDisplayString(o.label),513),r.value?(e.openBlock(),e.createBlock(W.VList,{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(w=y.$refs.input)==null?void 0:w.$el.offsetWidth}px`),onKeydown:k[1]||(k[1]=e.withKeys(e.withModifiers($=>r.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,($,L)=>(e.openBlock(),e.createBlock(W.VListItem,{key:L,ref_for:!0,ref:"options-"+L,role:"option",class:"v-list-item","aria-selected":s.value===$,tabindex:L+1,onClick:Z=>m($)},{default:e.withCtx(()=>[e.createVNode(W.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u($)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-d5496da0"]]),ho={loadingLabel:"Le contenu est en cours de chargement."},go={icon:{size:24,class:"mr-4 mt-2"},chip:{class:"mt-1"},actionBtn:{variant:"text",size:"small",color:"secondary",class:"text-body-1 pa-0"}},bo={placeholder:"…"},yo={class:"vd-data-list-item d-flex flex-wrap"},ko={class:"vd-data-list-item-content"},Vo={class:"vd-data-list-item-value"},wo=["innerHTML"],Co=["textContent"],Bo=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:bo.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(o,{emit:a}){const n=o,t=a,l=Y(go,n),r=G.useTheme(),s=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),c=e.computed(()=>typeof n.value=="number"?isNaN(n.value)?n.placeholder:n.value.toString():n.value||n.placeholder);return(i,d)=>(e.openBlock(),e.createElementBlock("li",yo,[e.renderSlot(i.$slots,"icon",{},()=>[i.icon?(e.openBlock(),e.createBlock(D.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",ko,[e.createElementVNode("div",{class:e.normalizeClass({"vd-row":i.row})},[e.createElementVNode("div",{class:"vd-data-list-item-label text-caption",style:e.normalizeStyle({color:s.value})},e.toDisplayString(i.label),5),e.createElementVNode("div",Vo,[e.renderSlot(i.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:c.value})),()=>[i.chip?(e.openBlock(),e.createBlock(La.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(l).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.value),1)]),_:1},16)):i.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:c.value},null,8,wo)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(c.value)},null,8,Co))],!0)])],2),e.renderSlot(i.$slots,"action",{},()=>[i.action?(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({key:0},e.unref(l).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=p=>t("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),Tt=v(Bo,[["__scopeId","data-v-bca44d3d"]]),de=v(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createBlock(e.unref(Sa.VSkeletonLoader),e.mergeProps(n.$attrs,{width:a.width,height:a.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-abf44671"]]),No={"aria-hidden":"true",class:"vd-data-list-loading"},Mo=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(o){const a=o,n=e.computed(()=>a.row?"150px":"90px");return(t,l)=>(e.openBlock(),e.createElementBlock("div",No,[o.heading?(e.openBlock(),e.createBlock(de,{key:0,width:"100px",height:"1.5rem",class:"mb-4"})):e.createCommentVNode("",!0),e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==o.itemsNumber},"vd-data-list-loading-item"])},[o.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(de,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(de,{width:n.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function Ee(o){return{widthStyles:e.computed(()=>({maxWidth:oe(o.maxWidth),minWidth:oe(o.minWidth),width:oe(o.width??"100%")}))}}const Lo=["aria-label"],So={key:1},xo={key:0},At=v(e.defineComponent({__name:"DataList",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},listTitle:{type:String,default:void 0},titleClass:{type:String,default:"text-subtitle-1 font-weight-bold mb-3"},row:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},loading:{type:Boolean,default:!1},itemsNumberLoading:{type:Number,default:1},headingLoading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1},maxWidth:{type:String,default:void 0},minWidth:{type:String,default:void 0},width:{type:String,default:void 0}},emits:["click:item-action"],setup(o,{emit:a}){const n=o,{widthStyles:t}=Ee(n),l=a,r=e.computed(()=>n.loading?ho.loadingLabel:void 0),s=i=>{var d;if(!(!i||!n.icons))return(d=n.icons)==null?void 0:d[i]},c=(i,d)=>[{"mb-2":i!==n.items.length-1},d];return(i,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(t)),class:"vd-data-list"},[e.createVNode(he.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[o.loading?(e.openBlock(),e.createBlock(Mo,{key:0,"items-number":o.itemsNumberLoading,heading:o.headingLoading,"title-class":o.titleClass,row:o.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",So,[e.renderSlot(i.$slots,"title",{},()=>[o.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(o.titleClass)},e.toDisplayString(o.listTitle),3)):e.createCommentVNode("",!0)],!0),o.items.length?(e.openBlock(),e.createElementBlock("ul",xo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(p,f)=>(e.openBlock(),e.createBlock(Tt,{key:f,label:p.key,value:p.value,action:p.action,chip:p.chip,row:o.row,"render-html-value":o.renderHtmlValue,icon:s(p.icon),placeholder:o.placeholder,"vuetify-options":p.options,class:e.normalizeClass([c(f,p.class),"vd-data-list-item text-body-1"]),"onClick:action":g=>l("click:item-action",f)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,Lo))}}),[["__scopeId","data-v-674d3ac2"]]),$o={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},Dt=e.defineComponent({__name:"DataListGroup",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},itemWidth:{type:String,default:"200px"},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item"],setup(o,{emit:a}){const n=o,t=a,l=(r,s)=>{t("click:list-item",{dataListIndex:r,itemIndex:s})};return(r,s)=>(e.openBlock(),e.createElementBlock("div",$o,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(c,i)=>(e.openBlock(),e.createBlock(At,{key:`vd-data-list-${i}`,loading:n.loading,"render-html-value":n.renderHtmlValue,"list-title":c.title,items:c.items,"items-number-loading":c.itemsNumberLoading,"heading-loading":c.headingLoading,width:n.itemWidth,icons:n.icons,class:"ma-4","onClick:itemAction":d=>l(i,d)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}}),vo={card:{class:"pa-6"},cardTitle:{class:"d-flex align-start flex-nowrap pa-0 mb-6 mr-6"},closeBtn:{icon:!0,elevation:0,width:"32px",height:"32px",class:"mt-n2 mr-n2 ml-4"},actionsCtn:{class:"d-flex flex-wrap mt-6"},cancelBtn:{color:"primary",variant:"text"},confirmBtn:{color:"primary"}},et={closeBtn:"Fermer la boîte de dialogue",cancelBtn:"Annuler",confirmBtn:"Valider"},_o={key:0,class:"text-h6 font-weight-bold"},Eo=e.defineComponent({__name:"DialogBox",props:e.mergeModels({title:{default:void 0},width:{default:"800px"},cancelBtnText:{default:et.cancelBtn},confirmBtnText:{default:et.confirmBtn},hideActions:{type:Boolean,default:!1},persistent:{type:Boolean,default:!1},vuetifyOptions:{}},{modelValue:{type:Boolean,default:!1},modelModifiers:{}}),emits:e.mergeModels(["cancel","confirm","update:modelValue"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),t=e.ref(void 0),l=Y(vo,a),r=re;async function s(){var f;const i=(f=t==null?void 0:t.value)==null?void 0:f.$el;return i?Array.from(i.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')).filter(g=>!g.hasAttribute("disabled")&&!g.getAttribute("aria-hidden")):[]}async function c(i){const d=await s(),p=d.findIndex(m=>m===i.target),f=p===-1,g=d.length-1;!i.shiftKey&&(f||p===g)?(i.preventDefault(),d[0].focus()):i.shiftKey&&(f||p===0)&&(i.preventDefault(),d[g].focus())}return(i,d)=>(e.openBlock(),e.createBlock(xa.VDialog,e.mergeProps({modelValue:n.value,"onUpdate:modelValue":d[3]||(d[3]=p=>n.value=p)},i.$attrs,{width:a.width,persistent:a.persistent,"retain-focus":!1,"aria-modal":"true",class:"vd-dialog-box",onKeydown:e.withKeys(c,["tab"])}),{default:e.withCtx(()=>[e.createVNode($e.VCard,e.mergeProps(e.unref(l).card,{id:"dialogContent",ref_key:"dialogContent",ref:t,"aria-labelledby":a.title?a.title:"dialogContent"}),{default:e.withCtx(()=>[e.createVNode($e.VCardTitle,e.normalizeProps(e.guardReactiveProps(e.unref(l).cardTitle)),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"title",{},()=>[i.title?(e.openBlock(),e.createElementBlock("h2",_o,e.toDisplayString(a.title),1)):e.createCommentVNode("",!0)],!0),e.createVNode(Q.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).spacer)),null,16),a.persistent?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({key:0},e.unref(l).closeBtn,{"aria-label":e.unref(et).closeBtn,onClick:d[0]||(d[0]=p=>n.value=!1)}),{default:e.withCtx(()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),_:3},16),e.renderSlot(i.$slots,"default",{},void 0,!0),a.hideActions?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0},e.unref(l).actionsCtn,{class:"vd-dialog-box-actions-ctn"}),[e.createVNode(Q.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).actionsSpacer)),null,16),e.renderSlot(i.$slots,"actions",{},()=>[e.createVNode(H.VBtn,e.mergeProps(e.unref(l).cancelBtn,{onClick:d[1]||(d[1]=p=>i.$emit("cancel"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.cancelBtnText),1)]),_:1},16),e.createVNode(H.VBtn,e.mergeProps(e.unref(l).confirmBtn,{"data-test-id":"confirm-btn",onClick:d[2]||(d[2]=p=>i.$emit("confirm"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.confirmBtnText),1)]),_:1},16)],!0)],16))]),_:3},16,["aria-labelledby"])]),_:3},16,["modelValue","width","persistent"]))}}),Io=v(Eo,[["__scopeId","data-v-72e0adc9"]]);function To(o,a,n,t=!1){const l=t?["\uFEFF",o]:[o],r=window.navigator,s=new Blob(l,{type:n});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(s,a);else{const c=document.createElement("a");c.target="_blank",c.style.display="none",c.rel="noopener noreferrer",c.href=window.URL.createObjectURL(s),c.download=a,document.body.appendChild(c),c.click(),document.body.removeChild(c),window.URL.revokeObjectURL(c.href)}}const Ao={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},Do=v(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useAttrs(),s=e.ref("idle"),c=Y(Ao,t),i=e.computed(()=>St(c.value.btn,r));function d(f){var h,b,B;const g=f["content-type"],m=f["content-disposition"];let u;return u=(B=(b=(h=m==null?void 0:m.split(";"))==null?void 0:h.find(y=>y.includes("filename=")))==null?void 0:b.split("="))==null?void 0:B[1],u||(u=t.fallbackFilename||"file"),{name:u,type:g}}async function p(){s.value="loading";try{const{data:f,headers:g}=await t.filePromise(),{name:m,type:u}=d(g);To(f,m,u)}catch(f){s.value="error",l("error",f);return}s.value="success",l("success")}return a({getFileInfo:d,download:p,state:s}),(f,g)=>(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps(i.value,{loading:s.value==="loading",class:[i.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:p}),{default:e.withCtx(()=>[e.renderSlot(f.$slots,"icon",{},()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(c).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Fa)),1)]),_:1},16)],!0),e.renderSlot(f.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-dab2a719"]]),Zo={errorCodeText:"Code d'erreur : "},Zt=v(e.defineComponent({__name:"PageContainer",props:{size:{default:void 0},spacing:{default:void 0},color:{default:"transparent"}},setup(o,{expose:a}){const n=o,t=G.useDisplay(),l={xs:"px-4",sm:"px-4",md:"px-14",lg:"px-14",xl:"px-0"},r={xs:340,sm:540,md:800,lg:1280,xl:1712},s=e.computed(()=>n.spacing?`py-10 ${l[n.spacing]}`:`py-10 ${l[t.name.value]}`),c=e.computed(()=>n.size?r[n.size]:r[t.name.value]??r.xl);return a({spacingClass:s,containerSize:c}),(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(ge.VSheet,{width:c.value,color:i.color},{default:e.withCtx(()=>[e.renderSlot(i.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-cbb17930"]]),Po={key:0,class:"vd-code text-primary mb-4"},zo={class:"d-sr-only"},Ho={key:1,class:"mb-2 font-weight-bold text-h5 mb-4"},Ro={key:2},Fo=e.defineComponent({__name:"ErrorPage",props:{pageTitle:{default:void 0},message:{default:void 0},code:{default:void 0},codeErrorText:{default:Zo.errorCodeText},btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(Zt,{size:"md"},{default:e.withCtx(()=>[e.createVNode($e.VCard,{elevation:0,class:"pa-6 pa-sm-16"},{default:e.withCtx(()=>[e.createVNode(Q.VRow,{class:"max-width-none"},{default:e.withCtx(()=>[e.createVNode(Q.VCol,{sm:a.$slots.illustration?6:12,cols:"12",class:"order-last order-sm-first text-center text-sm-left d-flex flex-column justify-center align-sm-start"},{default:e.withCtx(()=>[a.code?(e.openBlock(),e.createElementBlock("div",Po,[e.createElementVNode("span",zo,e.toDisplayString(a.codeErrorText),1),e.createTextVNode(" "+e.toDisplayString(a.code),1)])):e.createCommentVNode("",!0),a.pageTitle?(e.openBlock(),e.createElementBlock("h2",Ho,e.toDisplayString(a.pageTitle),1)):e.createCommentVNode("",!0),a.message?(e.openBlock(),e.createElementBlock("p",Ro,e.toDisplayString(a.message),1)):e.createCommentVNode("",!0),e.renderSlot(a.$slots,"additional-content",{},void 0,!0),e.renderSlot(a.$slots,"action",{},()=>[!a.hideBtn&&a.btnText&&(a.btnLink||a.btnHref)?(e.openBlock(),e.createBlock(H.VBtn,{key:0,to:a.btnLink,href:a.btnHref,color:"primary",exact:"",class:"mt-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.btnText),1)]),_:1},8,["to","href"])):e.createCommentVNode("",!0)],!0)]),_:3},8,["sm"]),a.$slots.illustration?(e.openBlock(),e.createBlock(Q.VCol,{key:0,cols:"12",sm:"6",class:"d-flex align-center justify-center"},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"illustration",{},void 0,!0)]),_:3})):e.createCommentVNode("",!0)]),_:3})]),_:3})]),_:3}))}}),tt=v(Fo,[["__scopeId","data-v-8a08901d"]]),Pt={noData:"Pas de données.",btnText:"Consulter les données externes"},te={blue:{base:"#0c419a",lighten20:"#3d67ae",lighten40:"#6d8dc2",lighten80:"#ced9eb"},cyan:{darken40:"#006386"},brick:{base:"#cd545b"},grey:{lighten20:"#76797a"}},Oo={menu:{tile:!0,zIndex:4,offset:0},btn:{tile:!0,minHeight:"48px",minWidth:"328px",color:te.blue.lighten20,class:"d-flex px-3"},btnIcon:{color:"white"},linkIcon:{color:"rgba(0, 0, 0, .54)"},list:{border:!1,elevation:3,class:"py-0"},listItem:{target:"_blank",rel:"noopener noreferrer"},sheet:{class:"px-4 py-3"}},qo=["id"],Uo={class:"d-flex flex-row justify-space-between"},Yo={class:"mb-0"},Ko=e.defineComponent({__name:"ExternalLinks",props:{vuetifyOptions:{},items:{},position:{default:"top left"},btnText:{default:Pt.btnText},nudgeTop:{default:0},nudgeBottom:{default:0},fixed:{type:Boolean,default:!1},ariaLabel:{default:"external-link-btn"},ariaOwns:{default:"external-link-btn"}},setup(o){const a=o,n=Y(Oo,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>t.value||l.value),s=e.computed(()=>a.position.includes("left")),c=e.computed(()=>a.position.includes("top")),i=e.computed(()=>{const p="48px",f=s.value?`translateX(calc(-100% + ${p}))`:`translateX(calc(100% - ${p}))`;return{transform:r.value?"translateX(0)":f,position:a.fixed?"fixed":"absolute",flexDirection:s.value?"row":"row-reverse",top:c.value?oe(a.nudgeTop):"auto",bottom:c.value?"auto":oe(a.nudgeBottom),left:s.value?0:"auto",right:s.value?"auto":0,zIndex:c.value?"4":"5"}}),d=e.computed(()=>r.value?s.value?We:Ge:s.value?Ge:We);return(p,f)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns},[e.createVNode(ve.VMenu,e.mergeProps(e.unref(n).menu,{id:a.ariaOwns,modelValue:t.value,"onUpdate:modelValue":f[4]||(f[4]=g=>t.value=g),location:c.value?"bottom":"top",attach:"",transition:"fade-transition",class:["vd-external-links",{"vd-external-links--left":s.value,"vd-external-links--right":!s.value}]}),{activator:e.withCtx(({props:g})=>[e.createVNode(H.VBtn,e.mergeProps({...g,...e.unref(n).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,style:i.value,class:"vd-external-links-btn",onMouseenter:f[0]||(f[0]=m=>l.value=!0),onMouseleave:f[1]||(f[1]=m=>l.value=!1),onFocusin:f[2]||(f[2]=m=>l.value=!0),onFocusout:f[3]||(f[3]=m=>l.value=!1)}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass([{"ml-3":!s.value,"mr-3":s.value},"vd-external-links-btn-text white--text"])},e.toDisplayString(p.btnText),3),e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).btnIcon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(d.value),1)]),_:1},16)]),_:2},1040,["aria-label","aria-owns","style"])]),default:e.withCtx(()=>[p.items.length?(e.openBlock(),e.createBlock(W.VList,e.mergeProps({key:0},e.unref(n).list,{class:"vd-external-links-list"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.items,(g,m)=>(e.openBlock(),e.createBlock(W.VListItem,e.mergeProps({key:m,href:g.href,ref_for:!0},e.unref(n).listItem),{default:e.withCtx(()=>[e.createElementVNode("div",Uo,[e.createVNode(W.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(n).listItemTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.text),1)]),_:2},1040),e.renderSlot(p.$slots,"link-icon",{},()=>[e.createVNode(D.VIcon,e.mergeProps({ref_for:!0},e.unref(n).linkIcon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Bt)),1)]),_:1},16)],!0)])]),_:2},1040,["href"]))),128))]),_:3},16)):(e.openBlock(),e.createBlock(ge.VSheet,e.normalizeProps(e.mergeProps({key:1},e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("p",Yo,e.toDisplayString(e.unref(Pt).noData),1)]),_:1},16))]),_:3},16,["id","modelValue","location","class"])],8,qo))}}),Wo=v(Ko,[["__scopeId","data-v-91ee355f"]]);function zt(o,a,n=" "){const t=Math.floor(Math.log(o)/Math.log(1024));return Number((o/Math.pow(1024,t)).toFixed(2))*1+n+a[t]}const ae={or:"Ou",chooseFile:o=>o?"Choisir des fichiers":"Choisir un fichier",infoText:(o,a)=>`Taille max. : ${o}. ${a.length===1?"Format accepté":"Formats acceptés"} : ${a.join(", ")}`,fileSizeUnits:["o","Ko","Mo","Go","To"],dropFilesHere:o=>o?"Déposer vos fichiers ici":"Déposer votre fichier ici",errorSize:(o,a)=>`Le fichier ${o} est trop volumineux. Taille max. : ${a}`,errorExtension:(o,a)=>`Le fichier ${o} a une extension invalide. Extensions acceptées : ${a.join(", ")}`},Go={class:"sy-file-upload-placeholder"},jo={class:"mt-1 font-weight-medium text-black"},Xo={class:"mb-2 sy-file-upload-caption"},Qo={class:"sy-file-upload-btn bg-primary text-white elevation-2"},Jo={class:"mt-4 sy-file-upload-caption"},el=v(e.defineComponent({__name:"FileUploadContent",props:{allowedExtensions:{},fileSizeUnits:{},fileSizeMax:{},multiple:{type:Boolean}},setup(o){const a=o,n=e.computed(()=>zt(a.fileSizeMax,a.fileSizeUnits));return(t,l)=>(e.openBlock(),e.createElementBlock("span",Go,[e.renderSlot(t.$slots,"icon",{},()=>[e.createVNode(D.VIcon,{size:"40",color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ha)),1)]),_:1})],!0),e.createElementVNode("span",jo,[e.renderSlot(t.$slots,"action-text",{multiple:t.multiple},()=>[e.createElementVNode("span",null,e.toDisplayString(e.unref(ae).dropFilesHere(t.multiple)),1)],!0)]),e.createElementVNode("span",Xo,[e.renderSlot(t.$slots,"or",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ae).or),1)],!0)]),e.createElementVNode("span",Qo,[e.renderSlot(t.$slots,"button-text",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ae).chooseFile(t.multiple)),1)],!0)]),e.createElementVNode("span",Jo,[e.renderSlot(t.$slots,"info-text",{maxSize:n.value,extensions:t.allowedExtensions},()=>[e.createTextVNode(e.toDisplayString(e.unref(ae).infoText(n.value,t.allowedExtensions)),1)],!0)])]))}}),[["__scopeId","data-v-03a3b5b3"]]);function tl(o,a){e.onMounted(()=>{const n=e.toValue(o);n&&n.addEventListener("drop",t=>{var r;t.preventDefault(),t.stopPropagation();const l=(r=t.dataTransfer)==null?void 0:r.files;l!=null&&l.length&&a(Array.from(l))})})}function al(o,a,n,t){const l=[],r=[];for(const s of o){let c=!0;s.size>a&&(l.push(ae.errorSize(s.name,zt(a,t))),c=!1),!n.includes(s.name.split(".").pop()||"")&&n.length>0&&(l.push(ae.errorExtension(s.name,n)),c=!1),c&&r.push(s)}return{errors:l,validFiles:r}}const nl=["disabled","multiple","accept"],ol=v(e.defineComponent({__name:"FileUpload",props:{modelValue:{},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},fileSizeMax:{default:10485760},fileSizeUnits:{default:()=>ae.fileSizeUnits},allowedExtensions:{default:()=>["pdf","jpg","jpeg","png"]},locales:{default:()=>ae},maxWidth:{},minWidth:{},width:{}},emits:["update:modelValue","error"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(!1),s="file-upload-"+e.useId(),c=e.ref(null),i=e.ref(null),d=e.ref([]),p=G.useTheme().current.value.dark;a({fileInput:i}),e.watch(()=>t.modelValue,u=>{d.value=u},{immediate:!0}),e.watch(d,u=>{l("update:modelValue",u)});const{widthStyles:f}=Ee(t);function g(u){if(t.disabled)return;t.multiple||(u=u.slice(0,1));const{errors:h,validFiles:b}=al(u,t.fileSizeMax,t.allowedExtensions,t.fileSizeUnits);h.length&&l("error",h),t.multiple?d.value=[...d.value,...b]:d.value=b}tl(c,g);function m(u){const h=u.target.files;h&&(g(Array.from(h)),u.target.value="")}return(u,h)=>(e.openBlock(),e.createElementBlock("label",{ref_key:"dropZone",ref:c,for:s,class:e.normalizeClass([[{dragover:r.value,"sy-file-upload--disabled":u.disabled,"dark-mode":e.unref(p)}],"sy-file-upload d-block pa-4"]),style:e.normalizeStyle(e.unref(f)),onDragover:h[0]||(h[0]=e.withModifiers(b=>r.value=!0,["prevent"])),onDragleave:h[1]||(h[1]=b=>r.value=!1)},[e.createElementVNode("input",{id:s,ref_key:"fileInput",ref:i,type:"file",disabled:u.disabled,multiple:u.multiple,accept:u.allowedExtensions.map(b=>`.${b}`).join(", "),class:"sy-file-upload-input",onChange:m},null,40,nl),e.renderSlot(u.$slots,"default",{},()=>[e.createVNode(el,{"allowed-extensions":u.allowedExtensions,multiple:u.multiple,"file-size-max":u.fileSizeMax,"file-size-units":u.fileSizeUnits},e.createSlots({_:2},[e.renderList(u.$slots,(b,B)=>({name:B,fn:e.withCtx(y=>[e.renderSlot(u.$slots,B,e.normalizeProps(e.guardReactiveProps(y||{})),void 0,!0)])}))]),1032,["allowed-extensions","multiple","file-size-max","file-size-units"])],!0)],38))}}),[["__scopeId","data-v-8df33257"]]),we={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},j={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},ll=Object.values(j),Ht={colors:{background:{accentContrasted:"#07275c"},text:{subduedOnDark:"rgba(255, 255, 255, 0.7)"}}},Ie={primary:te.blue.base,secondary:te.cyan.darken40,risquePro:te.brick.base},me=(o,a)=>({width:o,height:a}),rl={[j.X_SMALL]:me("105","32"),[j.SMALL]:me("131","40"),[j.NORMAL]:me("211","64")},il={[j.X_SMALL]:me("32","32"),[j.SMALL]:me("40","40"),[j.NORMAL]:me("64","64")};function at(o,a,n){const l=`(${a.join("|")})`,r=new RegExp(`^${l}$`);return n.match(r)!==null||console.error(`Invalid value for the \`${o}\` prop. Received: "${n}", expected one of: [${a.join(", ")}].`),!0}const sl=["fill","aria-label","width","height","viewBox","aria-hidden"],cl=["fill"],dl={key:1,"aria-hidden":"true",role:"presentation"},ml={key:2,role:"presentation","aria-hidden":"true"},ul={key:3},nt=e.defineComponent({__name:"Logo",props:{hideSignature:{type:Boolean,default:!1},hideOrganism:{type:Boolean,default:!1},risquePro:{type:Boolean,default:!1},ariaLabel:{type:String,default:void 0},avatar:{type:Boolean,default:!1},dark:{type:Boolean,default:!1},size:{type:String,default:j.NORMAL,validator:o=>at("size",ll,o)}},setup(o){const a=o,n=e.ref(Ie.risquePro),t=e.computed(()=>a.dark?"#fff":Ie.primary),l=e.computed(()=>a.avatar?il[a.size]:rl[a.size]),r=e.computed(()=>a.avatar?"0 0 64 64":a.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(a.ariaLabel)return a.ariaLabel;if(a.avatar)return"";const c=" : ",i=", ";let d=`${we.assuranceMaladie}`;return a.hideOrganism||(d=we.organism.concat(i,d)),a.hideSignature||(d=d.concat(c,we.signature)),a.risquePro&&(d=we.assuranceMaladie+": "+we.risquePro),d});return(c,i)=>(e.openBlock(),e.createElementBlock("svg",{fill:t.value,"aria-label":s.value,width:l.value.width,height:l.value.height,viewBox:r.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":o.avatar?"true":"false"},[o.risquePro&&!o.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:n.value,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"},null,8,cl)):!o.hideSignature&&!o.avatar?(e.openBlock(),e.createElementBlock("g",dl,i[0]||(i[0]=[e.createStaticVNode('<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)]))):e.createCommentVNode("",!0),!o.hideOrganism&&!o.avatar?(e.openBlock(),e.createElementBlock("g",ml,i[1]||(i[1]=[e.createStaticVNode('<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)]))):e.createCommentVNode("",!0),o.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",ul,i[2]||(i[2]=[e.createStaticVNode('<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)]))),i[3]||(i[3]=e.createStaticVNode('<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))],8,sl))}}),pl={followUs:"Suivez-nous :"},fl={class:"d-flex flex-column"},hl={class:"vd-social-media-links-label text-subtitle-2 text--primary"},gl={class:"vd-social-media-links-content d-flex max-width-none"},Rt=v(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",fl,[e.createElementVNode("span",hl,e.toDisplayString(e.unref(pl).followUs),1),e.createElementVNode("ul",gl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.links,(l,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(H.VBtn,{id:`social-btn-${r}`,href:l.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${l.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode(D.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-9639b916"]]),ot={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},bl=[{icon:ja,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:Wa,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:an,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],yl={footer:{elevation:3,color:"backgroundSurface",height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:"backgroundSurface"},goTopBtnIcon:{color:"white"}},ne={goTopBtnLabel:"Retour en haut de la page",sitemapLabel:"Plan du site",cguLabel:"Conditions générales d’utilisation",cookiesLabel:"Gestion des cookies",legalNoticeLabel:"Mentions légales",versionLabel:"Version",followUs:"Suivez-nous",[ot["non-compliant"]]:"non conforme",[ot["partially-compliant"]]:"partiellement conforme",[ot["fully-compliant"]]:"totalement conforme",a11yLabel:o=>`Accessibilité : ${o}`},kl={class:"container"},Vl={key:0,class:"d-flex align-start align-sm-center mb-6"},wl={class:"d-flex flex-grow-1 flex-column flex-sm-row"},Cl={key:0,class:"text-primary my-3 mx-4"},Bl=v(e.defineComponent({__name:"FooterBar",props:{vuetifyOptions:{},a11yCompliance:{default:"non-compliant"},linkItems:{default:null},items:{default:null},sitemapRoute:{default:()=>({name:"sitemap"})},cguRoute:{default:()=>({name:"cgu"})},cookiesRoute:{default:()=>({name:"cookies"})},legalNoticeRoute:{default:()=>({name:"legalNotice"})},a11yStatementRoute:{default:()=>({name:"a11yStatement"})},hideSitemapLink:{type:Boolean,default:!1},hideCguLink:{type:Boolean,default:!1},hideCookiesLink:{type:Boolean,default:!1},hideLegalNoticeLink:{type:Boolean,default:!1},hideA11yLink:{type:Boolean,default:!1},version:{default:void 0},hideLogo:{type:Boolean,default:!1},hideSocialMediaLinks:{type:Boolean,default:!1},socialMediaLinks:{default:()=>bl},light:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=yt,l=j,r=e.useSlots(),s=G.useDisplay(),c=Y(yl,n),i=u=>u.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const u=ne[n.a11yCompliance];return typeof u=="string"?ne.a11yLabel(u):""}),f=e.computed(()=>!!r.default),g=e.computed(()=>s.smAndDown.value?l.SMALL:l.NORMAL),m=e.computed(()=>n.linkItems?n.linkItems:[{text:ne.sitemapLabel,to:n.sitemapRoute,hidden:n.hideSitemapLink},{text:ne.cguLabel,to:n.cguRoute,hidden:n.hideCguLink},{text:ne.cookiesLabel,to:n.cookiesRoute,hidden:n.hideCookiesLink},{text:ne.legalNoticeLabel,to:n.legalNoticeRoute,hidden:n.hideLegalNoticeLink},{text:p.value,to:n.a11yStatementRoute,hidden:n.hideA11yLink}].filter(h=>!h.hidden));return a({logoSize:g}),(u,h)=>(e.openBlock(),e.createBlock($a.VFooter,e.mergeProps({...e.unref(c).footer,...u.$attrs},{color:n.light?"white":e.unref(c).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":f.value,"v-theme--light":n.light,"v-theme--dark":!n.light}],role:"contentinfo"}),{default:e.withCtx(()=>[e.createElementVNode("div",kl,[f.value?(e.openBlock(),e.createElementBlock("div",Vl,[e.createElementVNode("div",wl,[e.renderSlot(u.$slots,"logo",{},()=>[n.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(nt,{key:0,size:g.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!n.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(Q.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(c).spacer)),null,16),n.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Rt,{key:0,links:n.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(H.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(c).goTopBtn,{"aria-label":e.unref(ne).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(D.VIcon,e.mergeProps(e.unref(c).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),f.value?(e.openBlock(),e.createBlock(Ue.VDivider,e.mergeProps({key:1},e.unref(c).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(u.$slots,"default",{},void 0,!0),f.value?(e.openBlock(),e.createBlock(Ue.VDivider,e.mergeProps({key:2},e.unref(c).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"py-2 py-sm-0":!f.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"])},[e.renderSlot(u.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,(b,B)=>(e.openBlock(),e.createElementBlock("li",{key:B},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i(b)),{href:b.href,to:b.to,"aria-label":b.ariaLabel,target:b.openInNewTab?"_blank":void 0,tabindex:B,rel:b.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),n.version?(e.openBlock(),e.createElementBlock("li",Cl,e.toDisplayString(e.unref(ne).versionLabel)+" "+e.toDisplayString(n.version),1)):e.createCommentVNode("",!0),e.renderSlot(u.$slots,"append",{},void 0,!0)],2)])]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-a1074b6c"]]),Ft={btnLabel:o=>`S’identifier avec FranceConnect${o?"+":""}`,infoLinkLabel:o=>`Qu’est-ce que FranceConnect${o?"+":""} ?`},Nl=["href","aria-label"],Ml=["viewBox","width"],Ll=["fill"],Sl=["fill"],xl=["href"],$l=v(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(o){const a=o,n=G.useTheme(),t=e.computed(()=>n.current.value.dark||a.dark),l=a.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>a.isConnectPlus?"245px":"209px"),s=e.computed(()=>l);return(c,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":t.value}])},[e.createElementVNode("a",{href:c.href,"aria-label":e.unref(Ft).btnLabel(c.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${a.isConnectPlus?"245":"209"} 56`,width:r.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[i[0]||(i[0]=e.createElementVNode("path",{fill:"#000091",d:"m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"},null,-1)),i[1]||(i[1]=e.createElementVNode("path",{fill:"#e1000f",d:"m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"},null,-1)),i[2]||(i[2]=e.createElementVNode("path",{fill:"#0063cb",d:"M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"},null,-1)),i[3]||(i[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:t.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,Ll),c.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:t.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,Sl)):e.createCommentVNode("",!0)],8,Ml))],8,Nl),e.createElementVNode("a",{href:s.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(Ft).infoLinkLabel(c.isConnectPlus))+" ",1),e.createVNode(D.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Bt)),1)]),_:1})],8,xl)],2))}}),[["__scopeId","data-v-5bd47a0e"]]);function Ot(o,a){let n=null,t=0;return function(...l){n!==null&&window.clearTimeout(n),performance.now()-t>=a?(window.requestAnimationFrame(()=>o(...l)),t=performance.now()):n=window.setTimeout(()=>{o(...l),t=performance.now()},a)}}const vl=990,qt=Symbol("registerHeaderMenu");function Te(){const o=e.ref(!1);let a;function n(t){o.value=t.matches}return e.onMounted(()=>{a=window.matchMedia(`(min-width: ${vl}px)`),o.value=a.matches,a.addEventListener("change",n)}),e.onUnmounted(()=>{a.removeEventListener("change",n)}),{isDesktop:o}}const _l={ariaLabel:"Ouvrir le menu"},El={},Il={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Tl(o,a){return e.openBlock(),e.createElementBlock("svg",Il,a[0]||(a[0]=[e.createStaticVNode('<g data-v-51224cf0><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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></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-51224cf0></path>',8)]))}const Al=v(El,[["render",Tl],["__scopeId","data-v-51224cf0"]]),Dl={},Zl={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Pl(o,a){return e.openBlock(),e.createElementBlock("svg",Zl,a[0]||(a[0]=[e.createStaticVNode('<g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path></g><g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-e01c8927></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-e01c8927></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-e01c8927></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-e01c8927></path></g><g data-v-e01c8927><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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></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-e01c8927></path>',10)]))}const zl=v(Dl,[["render",Pl],["__scopeId","data-v-e01c8927"]]),Hl=["fill"],Rl={key:1},Fl={class:"service-title"},Ol={key:0,class:"service-subtitle"},ql=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:_l.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,t=G.useTheme().current.value.colors.primary,{isDesktop:l}=Te(),r=e.computed(()=>{var s,c,i,d;if((s=a.homeLink)!=null&&s.to){const p=(i=(c=e.getCurrentInstance())==null?void 0:c.appContext)==null?void 0:i.components;return p&&"RouterLink"in p?"router-link":"div"}return(d=a.homeLink)!=null&&d.href?"a":"div"});return(s,c)=>{var i,d,p;return e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.value),e.mergeProps({to:"to"in s.homeLink?(i=s.homeLink)==null?void 0:i.to:void 0,href:"href"in s.homeLink?(d=s.homeLink)==null?void 0:d.href:void 0,"aria-label":"aria-label"in s.homeLink?(p=s.homeLink)==null?void 0:p["aria-label"]:void 0},{class:"logo"}),{default:e.withCtx(()=>[e.unref(l)?(e.openBlock(),e.createBlock(zl,{key:0,"aria-label":a.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(Al,{key:1,"aria-label":a.ariaLabel},null,8,["aria-label"])),e.renderSlot(s.$slots,"brand-content",{},()=>[s.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(t),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},c[0]||(c[0]=[e.createElementVNode("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)]),8,Hl)):e.createCommentVNode("",!0),s.serviceTitle?(e.openBlock(),e.createElementBlock("div",Rl,[e.createElementVNode("div",Fl,e.toDisplayString(s.serviceTitle),1),s.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",Ol,e.toDisplayString(s.serviceSubtitle),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],!0)]),_:3},16)}}}),Ut=v(ql,[["__scopeId","data-v-8295d36d"]]),Ul={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function Yl(){const o=e.ref(null),a=e.ref("");function n(){const t=document.documentElement.scrollTop;if(o.value===null)return o.value=t,"";a.value=t>=o.value?"bottom":"top",o.value=t}return e.onMounted(()=>{window.addEventListener("scroll",n)}),e.onUnmounted(()=>{window.removeEventListener("scroll",n)}),{scrollDirection:a}}const Kl={key:0,class:"header-prepend"},Wl={class:"inner-header"},Gl={class:"header-logo pl-xl-0 pl-md-14 pl-4"},jl={key:0,class:"header-side"},Xl={key:1,class:"header-append"},Ql=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeLink:{default:void 0},homeAriaLabel:{default:Ul.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(o){const a=e.ref(),n=o;function t(y){e.watch(y,k=>{a.value=k})}e.provide(qt,t);const l=e.ref(null),r=e.ref(null),s=e.ref("auto"),c=e.ref(0),i=e.ref("auto"),d=e.ref(!0),p=e.ref(!1),f=e.ref(!1);function g(){const y=l.value.getBoundingClientRect();c.value=y.top+window.scrollY,s.value=`${r.value.offsetHeight}px`,i.value=`${l.value.offsetWidth}px`,d.value=window.scrollY<=c.value,p.value=window.scrollY>c.value+y.height,f.value=window.scrollY>c.value+y.height*2}const m=Ot(g,16);e.onMounted(()=>{g(),window.addEventListener("scroll",m),window.addEventListener("resize",m)}),e.onUnmounted(()=>{window.removeEventListener("scroll",m),window.removeEventListener("resize",m)});const u=e.computed(()=>({minHeight:s.value})),{scrollDirection:h}=Yl(),{isDesktop:b}=Te(),B=e.computed(()=>{if(n.hideWhenDown&&!b.value&&!a.value){const k=h.value===""&&d.value||h.value==="bottom"&&!p.value||h.value==="top"&&d.value,w=h.value==="bottom"&&p.value;return{position:k?"relative":"fixed",width:k?"100%":i.value,top:k?"auto":"0",transform:w?"translateY(-100%)":"none",transition:f.value?"transform 0.3s ease":"none"}}const y=!d.value&&n.sticky;return{position:y?"fixed":"relative",width:y?i.value:"100%",top:y?"0":"auto",transform:"none",transition:"none"}});return(y,k)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:l,class:"header",style:e.normalizeStyle(u.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:r,class:"sticky-header",style:e.normalizeStyle(B.value)},[y.$slots.prepend?(e.openBlock(),e.createElementBlock("div",Kl,[e.renderSlot(y.$slots,"prepend",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Wl,[e.renderSlot(y.$slots,"menu",{menuOpen:a.value},void 0,!0),e.createElementVNode("div",Gl,[e.renderSlot(y.$slots,"logo",{menuOpen:a.value,homeAriaLabel:y.homeAriaLabel,serviceTitle:y.serviceTitle,serviceSubtitle:y.serviceSubtitle},()=>[e.createVNode(Ut,{"aria-label":y.homeAriaLabel,"service-title":y.serviceTitle,"service-subtitle":y.serviceSubtitle,"home-link":y.homeLink},{"brand-content":e.withCtx(()=>[e.renderSlot(y.$slots,"logo-brand-content",{menuOpen:a.value,homeAriaLabel:y.homeAriaLabel,serviceTitle:y.serviceTitle,serviceSubtitle:y.serviceSubtitle,homeLink:y.homeLink},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle","home-link"])],!0)]),y.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",jl,[e.renderSlot(y.$slots,"header-side",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)]),y.$slots.append?(e.openBlock(),e.createElementBlock("div",Xl,[e.renderSlot(y.$slots,"append",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Yt=v(Ql,[["__scopeId","data-v-639c8426"]]),Ae={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},Jl=["aria-label","title"],lt=v(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(o,{expose:a}){const n=e.ref(null),t=e.useModel(o,"modelValue");function l(){var r;(r=n.value)==null||r.focus()}return a({focus:l}),(r,s)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:n,class:e.normalizeClass(["header-menu-btn",{"header-menu-btn__open":t.value}]),type:"button","aria-label":t.value?e.unref(Ae).closeMenu:e.unref(Ae).openMenu,title:t.value?e.unref(Ae).closeMenu:e.unref(Ae).openMenu,onClick:s[0]||(s[0]=()=>{t.value=!t.value})},[e.createVNode(D.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(re):e.unref(Qa)),1)]),_:1}),s[1]||(s[1]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],10,Jl))}}),[["__scopeId","data-v-82f2559e"]]),Kt={mainMenu:"Menu principal",publicMenu:"Menu public"},Wt=Symbol("registerSubMenu");function Gt(o){const a=e.ref([]);function n(r,s){const i={id:String(a.value.length),status:r,close:s};a.value.push(i),e.watch(r,d=>{d&&t(i)})}function t(r){a.value.forEach(s=>{s.id!==r.id&&s.status&&s.close()})}e.watch(o,r=>{r||a.value.forEach(s=>{s.status&&s.close()})});const l=e.computed(()=>a.value.some(r=>r.status));return e.provide(Wt,n),{haveOpenSubMenu:l}}const er=["aria-label"],tr={key:0,class:"overlay"},ar=["aria-label"],nr={class:"header-menu"},jt=v(e.defineComponent({__name:"HeaderBurgerMenu",props:{modelValue:{type:Boolean,default:!1},modelModifiers:{}},emits:["update:modelValue"],setup(o){const a=e.ref(null),n=e.ref(null),t=e.ref(null),l=e.ref(null),r=e.ref(0),s=e.ref(0),c=e.ref("70vh");function i(){const y=n.value.getBoundingClientRect();r.value=y.left,s.value=y.top,c.value=`calc(100vh - ${y.top}px - 48px)`}const d=Ot(i,16),p=()=>{f.value&&d()};e.onMounted(()=>{i(),h(),window.addEventListener("scroll",p),window.addEventListener("resize",p),window.addEventListener("click",u,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",p),window.removeEventListener("resize",p),window.removeEventListener("click",u,{capture:!0}),document.documentElement.style.overflow="auto",document.body.style.overflow="auto"});const f=e.useModel(o,"modelValue");e.watch(f,async y=>{var k,w;h(),y?(i(),await e.nextTick(),(k=l.value)==null||k.focus()):(w=t.value)==null||w.focus()},{immediate:!0});const{isDesktop:g}=Te(),m=e.computed(()=>({left:`${r.value}px`,top:`${s.value}px`,height:g.value?c.value:void 0}));function u(y){if(!f.value)return;let k=y.target;for(;k&&k!==document.body;){if(k===a.value)return;k=k.parentElement}y.stopPropagation(),f.value=!1}function h(){typeof window<"u"&&(document.documentElement.style.overflow=f.value?"hidden":"auto",document.body.style.overflow=f.value?"hidden":"auto")}const{haveOpenSubMenu:b}=Gt(e.readonly(f)),B=e.inject(qt);return B&&B(e.readonly(f)),(y,k)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(Kt).mainMenu,class:"menu mr-4"},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:n},[e.createVNode(lt,{ref_key:"outerBtn",ref:t,modelValue:f.value,"onUpdate:modelValue":k[0]||(k[0]=w=>f.value=w)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[f.value?(e.openBlock(),e.createElementBlock("div",tr,[e.createElementVNode("div",{role:"menu",class:"menu-wrapper",style:e.normalizeStyle(m.value)},[e.createVNode(lt,{ref_key:"innerBtn",ref:l,modelValue:f.value,"onUpdate:modelValue":k[1]||(k[1]=w=>f.value=w)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",ref_key:"headerMenuWrapper",ref:a,class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(b)}]),role:"navigation","aria-label":e.unref(Kt).publicMenu},[e.createElementVNode("div",nr,[e.renderSlot(y.$slots,"default",{},void 0,!0)])],10,ar)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,er))}}),[["__scopeId","data-v-8bfe741c"]]),or={},lr={class:"header-menu-item"};function rr(o,a){return e.openBlock(),e.createElementBlock("li",lr,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const Xt=v(or,[["render",rr],["__scopeId","data-v-eebfe4fb"]]),ir={class:"header-menu-section"},Qt=v(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(o){const a=e.useId(),n=`${a}-group`,t=`${a}-group-title`;return(l,r)=>(e.openBlock(),e.createElementBlock("div",ir,[l.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:t,class:"header-menu-section-title"},[e.renderSlot(l.$slots,"title",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:n,role:"group",class:"header-menu-section-list"},[e.renderSlot(l.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-fe759639"]]),sr=["aria-expanded","aria-controls","title"],cr=["id"],dr={class:"sub-menu-content"},mr=v(e.defineComponent({__name:"HeaderSubMenu",setup(o){const a=e.ref(!1),n=e.useId(),t=`${n}-btn`,l=e.inject(Wt,void 0);if(!l)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");l(a,()=>{a.value=!1});const{haveOpenSubMenu:r}=Gt(e.readonly(a));return(s,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":a.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:t,class:"sub-menu-btn",type:"button","aria-expanded":a.value?"true":"false","aria-controls":e.unref(n),title:a.value?"Close submenu":"Open submenu",onClick:c[0]||(c[0]=i=>a.value=!a.value)},[e.renderSlot(s.$slots,"title",{},void 0,!0),e.createVNode(D.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(We):e.unref(Ge)),1)]),_:1})],8,sr),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(n),class:"sub-menu-content-wrapper","aria-labelledby":t},[e.createElementVNode("div",dr,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],8,cr),[[e.vShow,a.value]])]),_:3})],2))}}),[["__scopeId","data-v-fa108bc3"]]),ur={sheet:{theme:"dark",dense:!0,color:Ht.colors.background.accentContrasted},tabs:{height:"53","show-arrows":!0},tab:{"base-color":Ht.colors.text.subduedOnDark,"slider-color":"#fff",ripple:!1}},pr={class:"horizontal-menu px-xl-0 px-14"},fr={class:"horizontal-menu__item-link"},hr=v(e.defineComponent({__name:"HorizontalNavbar",props:{vuetifyOptions:{},items:{}},setup(o){const n=Y(ur,o);return(t,l)=>(e.openBlock(),e.createBlock(ge.VSheet,e.normalizeProps(e.guardReactiveProps(e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("div",pr,[e.renderSlot(t.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(t.$slots,"default",{},()=>[e.createVNode(ft.VTabs,e.mergeProps({class:"horizontal-menu__tabs"},e.unref(n).tabs),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(r,s)=>(e.openBlock(),e.createBlock(ft.VTab,e.mergeProps({key:s,href:r.href,to:r.to,ref_for:!0},e.unref(n).tab,{tabindex:"0",class:"horizontal-menu__item"}),{default:e.withCtx(()=>[e.createElementVNode("span",fr,e.toDisplayString(r.label),1)]),_:2},1040,["href","to"]))),128))]),_:1},16)],!0),e.renderSlot(t.$slots,"navigation-bar-append",{},void 0,!0)])]),_:3},16))}}),[["__scopeId","data-v-a37442cd"]]),gr={class:"inner-vertical-menu"},br={class:"inner-vertical-menu__main-content"},yr=["href"],kr=v(e.defineComponent({__name:"HeaderNavigationBar",props:e.mergeModels({vuetifyOptions:{},homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:void 0},sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},{burgerMenu:{type:Boolean,default:!1},burgerMenuModifiers:{}}),emits:["update:burgerMenu"],setup(o){const a=o,n=e.useModel(o,"burgerMenu"),{isDesktop:t}=Te(),l=e.computed(()=>!t.value||a.items!==void 0&&a.items.length>0&&a.items.length>a.maxHorizontalMenuItems);return(r,s)=>{const c=e.resolveComponent("RouterLink");return e.openBlock(),e.createBlock(Yt,{sticky:r.sticky,"hide-when-down":r.hideWhenDown,"home-aria-label":r.homeAriaLabel,"service-title":r.serviceTitle,"service-subtitle":r.serviceSubtitle},{menu:e.withCtx(()=>[l.value?(e.openBlock(),e.createBlock(jt,{key:0,modelValue:n.value,"onUpdate:modelValue":s[1]||(s[1]=i=>n.value=i)},{default:e.withCtx(()=>[e.createElementVNode("div",gr,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",br,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:n.value},()=>[e.createVNode(Qt,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,i=>(e.openBlock(),e.createBlock(Xt,{key:i.label},{default:e.withCtx(()=>["href"in i?(e.openBlock(),e.createElementBlock("a",{key:0,href:i.href},e.toDisplayString(i.label),9,yr)):i.to?(e.openBlock(),e.createBlock(c,{key:1,to:i.to,onClick:s[0]||(s[0]=d=>n.value=!1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(r.$slots,"navigation-menu-append",{menuOpen:n.value},void 0,!0)])]),_:3},8,["modelValue"])):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:n.value},void 0,!0)]),append:e.withCtx(()=>[a.items&&!l.value?(e.openBlock(),e.createBlock(hr,{key:0,items:r.items,"vuetify-options":r.vuetifyOptions},{"navigation-bar-prepend":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-prepend",{},void 0,!0)]),"navigation-bar-append":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-append",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-content",{},void 0,!0)]),_:3},8,["items","vuetify-options"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"])}}}),[["__scopeId","data-v-1d872dbc"]]),Vr={class:"toolbar"},wr={class:"container"},Cr=["aria-labelledby"],Br={key:0},Nr={key:1,class:"link"},Mr=["aria-labelledby"],Lr={class:"right-menu-item"},Sr=v(e.defineComponent({__name:"HeaderToolbar",props:{leftMenu:{type:Array,default:()=>[{title:"Assuré",href:"https://www.ameli.fr/assure",openInNewTab:!0},{title:"Professionnel de santé"},{title:"Entreprise",href:"https://www.ameli.fr/entreprise",openInNewTab:!0}]},rightMenu:{type:Array,default:()=>[{title:"Qui sommes-nous ?",href:"https://www.assurance-maladie.ameli.fr/qui-sommes-nous",openInNewTab:!0},{title:"Carrières",href:"https://www.assurance-maladie.ameli.fr/carrieres",openInNewTab:!0},{title:"Études et données",href:"https://www.assurance-maladie.ameli.fr/etudes-et-donnees",openInNewTab:!0},{title:"Presse",href:"https://www.assurance-maladie.ameli.fr/presse",openInNewTab:!0}]},itemsSelectMenu:{type:Array,default:()=>[{text:"Chirurgien-dentiste",value:"Chirurgien-dentiste",href:"https://www.ameli.fr/chirurgien-dentiste",openInNewTab:!0},{text:"Établissement",value:"Établissement",href:"https://www.ameli.fr/etablissement",openInNewTab:!0},{text:"Exercice coordonné",value:"Exercice coordonné",href:"https://www.ameli.fr/exercice-coordonne",openInNewTab:!0},{text:"Infirmier",value:"Infirmier",href:"https://www.ameli.fr/infirmier",openInNewTab:!0},{text:"Laboratoire d'analyses médicales",value:"Laboratoire d'analyses médicales",href:"https://www.ameli.fr/laboratoire-danalyses-medicales",openInNewTab:!0},{text:"Masseur-kinésithérapeute",value:"Masseur-kinésithérapeute",href:"https://www.ameli.fr/masseur-kinesitherapeute",openInNewTab:!0},{text:"Médecin",value:"Médecin",href:"https://www.ameli.fr/medecin",openInNewTab:!0},{text:"Orthophoniste",value:"Orthophoniste",href:"https://www.ameli.fr/orthophoniste",openInNewTab:!0},{text:"Orthoptiste",value:"Orthoptiste",href:"https://www.ameli.fr/orthoptiste",openInNewTab:!0},{text:"Pédicure-podologue",value:"Pédicure-podologue",href:"https://www.ameli.fr/pedicure-podologue",openInNewTab:!0},{text:"Pharmacien",value:"Pharmacien",href:"https://www.ameli.fr/pharmacien",openInNewTab:!0},{text:"Professionnel de la LPP/LATM",value:"Professionnel de la LPP/LATM",href:"https://www.ameli.fr/professionnel-de-la-lpplatm",openInNewTab:!0},{text:"Psychologue",value:"Psychologue",href:"https://www.ameli.fr/psychologue",openInNewTab:!0},{text:"Sage-femme",value:"Sage-femme",href:"https://www.ameli.fr/sage-femme",openInNewTab:!0},{text:"Taxi conventionné",value:"Taxi conventionné",href:"https://www.ameli.fr/taxi-conventionne",openInNewTab:!0},{text:"Transporteur sanitaire",value:"Transporteur sanitaire",href:"https://www.ameli.fr/transporteur-sanitaire",openInNewTab:!0}]},ariaLeftMenu:{type:String,default:"left-menu"},ariaRightMenu:{type:String,default:"right-menu"}},setup(o,{expose:a}){const n=o,t=f=>f.href?"a":f.to?"RouterLink":"a",l=e.ref(!1),r=e.ref(!1),s=e.ref(null),c=()=>{var g;const f=(g=document.querySelector(".custom-select > span"))==null?void 0:g.textContent;f&&f==="Professionnel de santé"&&(r.value=!1),l.value=!1},i=f=>{f===1&&(l.value=!l.value)},d=f=>{s.value=f,f!==1&&(r.value=!1)},p=()=>{s.value=null};return a({hideOverlay:c,handleLink:i,checkActiveLink:d,deleteActiveLink:p,activeIndex:s,highlightMenu:r,showOverlay:l,getLinkComponent:t}),(f,g)=>(e.openBlock(),e.createElementBlock("div",Vr,[e.createElementVNode("div",wr,[e.renderSlot(f.$slots,"left-menu",{},()=>[l.value?(e.openBlock(),e.createElementBlock("button",{key:0,"aria-label":"Close overlay",class:"overlay",onClick:c,onKeydown:[e.withKeys(c,["enter"]),e.withKeys(c,["esc"])]},null,32)):e.createCommentVNode("",!0),e.createElementVNode("nav",{id:"left-menu","aria-labelledby":n.ariaLeftMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.leftMenu,(m,u)=>(e.openBlock(),e.createElementBlock("li",{key:u,class:e.normalizeClass({active:s.value===u,highlight:r.value})},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(m)),{"aria-label":m.title,href:m.href,rel:m.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:m.openInNewTab?"_blank":void 0,title:m.title,to:m.to,onClick:h=>d(u),onFocus:h=>u===1&&l.value?r.value=!0:null,onMouseover:h=>u===1&&l.value?r.value=!0:null},{default:e.withCtx(()=>[o.itemsSelectMenu&&u===1?(e.openBlock(),e.createElementBlock("span",Br,[e.createVNode(It,{items:o.itemsSelectMenu,label:m.title,outlined:!1,"is-header-toolbar":"",onClick:h=>i(u)},null,8,["items","label","onClick"])])):(e.openBlock(),e.createElementBlock("span",Nr,e.toDisplayString(m.title),1))]),_:2},1064,["aria-label","href","rel","target","title","to","onClick","onFocus","onMouseover"]))],2))),128))])],8,Cr)],!0),e.renderSlot(f.$slots,"right-menu",{},()=>[e.createElementVNode("nav",{id:"right-menu","aria-labelledby":n.ariaRightMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.rightMenu,(m,u)=>(e.openBlock(),e.createElementBlock("li",{key:u},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(m)),{"aria-label":m.title,href:m.href,rel:m.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:m.openInNewTab?"_blank":void 0,title:m.title,to:m.to,onClick:g[0]||(g[0]=h=>p())},{default:e.withCtx(()=>[e.createElementVNode("span",Lr,e.toDisplayString(m.title),1)]),_:2},1032,["aria-label","href","rel","target","title","to"]))]))),128))])],8,Mr)],!0)])]))}}),[["__scopeId","data-v-e2d11fb5"]]),xr={label:"Choix de la langue. Actuellement"};var $r={aa:{name:"Afar",nativeName:"Afaraf"},ab:{name:"Abkhaz",nativeName:"аҧсуа бызшәа"},ae:{name:"Avestan",nativeName:"avesta"},af:{name:"Afrikaans",nativeName:"Afrikaans"},ak:{name:"Akan",nativeName:"Akan"},am:{name:"Amharic",nativeName:"አማርኛ"},an:{name:"Aragonese",nativeName:"aragonés"},ar:{name:"Arabic",nativeName:"العربية"},as:{name:"Assamese",nativeName:"অসমীয়া"},av:{name:"Avaric",nativeName:"авар мацӀ"},ay:{name:"Aymara",nativeName:"aymar aru"},az:{name:"Azerbaijani",nativeName:"azərbaycan dili"},ba:{name:"Bashkir",nativeName:"башҡорт теле"},be:{name:"Belarusian",nativeName:"беларуская мова"},bg:{name:"Bulgarian",nativeName:"български език"},bi:{name:"Bislama",nativeName:"Bislama"},bm:{name:"Bambara",nativeName:"bamanankan"},bn:{name:"Bengali",nativeName:"বাংলা"},bo:{name:"Tibetan",nativeName:"བོད་ཡིག"},br:{name:"Breton",nativeName:"brezhoneg"},bs:{name:"Bosnian",nativeName:"bosanski jezik"},ca:{name:"Catalan",nativeName:"Català"},ce:{name:"Chechen",nativeName:"нохчийн мотт"},ch:{name:"Chamorro",nativeName:"Chamoru"},co:{name:"Corsican",nativeName:"corsu"},cr:{name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"},cs:{name:"Czech",nativeName:"Čeština"},cu:{name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"},cv:{name:"Chuvash",nativeName:"чӑваш чӗлхи"},cy:{name:"Welsh",nativeName:"Cymraeg"},da:{name:"Danish",nativeName:"Dansk"},de:{name:"German",nativeName:"Deutsch"},dv:{name:"Divehi",nativeName:"ދިވެހި"},dz:{name:"Dzongkha",nativeName:"རྫོང་ཁ"},ee:{name:"Ewe",nativeName:"Eʋegbe"},el:{name:"Greek",nativeName:"Ελληνικά"},en:{name:"English",nativeName:"English"},eo:{name:"Esperanto",nativeName:"Esperanto"},es:{name:"Spanish",nativeName:"Español"},et:{name:"Estonian",nativeName:"eesti"},eu:{name:"Basque",nativeName:"euskara"},fa:{name:"Persian",nativeName:"فارسی"},ff:{name:"Fula",nativeName:"Fulfulde"},fi:{name:"Finnish",nativeName:"suomi"},fj:{name:"Fijian",nativeName:"vosa Vakaviti"},fo:{name:"Faroese",nativeName:"Føroyskt"},fr:{name:"French",nativeName:"Français"},fy:{name:"Western Frisian",nativeName:"Frysk"},ga:{name:"Irish",nativeName:"Gaeilge"},gd:{name:"Scottish Gaelic",nativeName:"Gàidhlig"},gl:{name:"Galician",nativeName:"galego"},gn:{name:"Guaraní",nativeName:"Avañe'ẽ"},gu:{name:"Gujarati",nativeName:"ગુજરાતી"},gv:{name:"Manx",nativeName:"Gaelg"},ha:{name:"Hausa",nativeName:"هَوُسَ"},he:{name:"Hebrew",nativeName:"עברית"},hi:{name:"Hindi",nativeName:"हिन्दी"},ho:{name:"Hiri Motu",nativeName:"Hiri Motu"},hr:{name:"Croatian",nativeName:"Hrvatski"},ht:{name:"Haitian",nativeName:"Kreyòl ayisyen"},hu:{name:"Hungarian",nativeName:"magyar"},hy:{name:"Armenian",nativeName:"Հայերեն"},hz:{name:"Herero",nativeName:"Otjiherero"},ia:{name:"Interlingua",nativeName:"Interlingua"},id:{name:"Indonesian",nativeName:"Bahasa Indonesia"},ie:{name:"Interlingue",nativeName:"Interlingue"},ig:{name:"Igbo",nativeName:"Asụsụ Igbo"},ii:{name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"},ik:{name:"Inupiaq",nativeName:"Iñupiaq"},io:{name:"Ido",nativeName:"Ido"},is:{name:"Icelandic",nativeName:"Íslenska"},it:{name:"Italian",nativeName:"Italiano"},iu:{name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"},ja:{name:"Japanese",nativeName:"日本語"},jv:{name:"Javanese",nativeName:"basa Jawa"},ka:{name:"Georgian",nativeName:"ქართული"},kg:{name:"Kongo",nativeName:"Kikongo"},ki:{name:"Kikuyu",nativeName:"Gĩkũyũ"},kj:{name:"Kwanyama",nativeName:"Kuanyama"},kk:{name:"Kazakh",nativeName:"қазақ тілі"},kl:{name:"Kalaallisut",nativeName:"kalaallisut"},km:{name:"Khmer",nativeName:"ខេមរភាសា"},kn:{name:"Kannada",nativeName:"ಕನ್ನಡ"},ko:{name:"Korean",nativeName:"한국어"},kr:{name:"Kanuri",nativeName:"Kanuri"},ks:{name:"Kashmiri",nativeName:"कश्मीरी"},ku:{name:"Kurdish",nativeName:"Kurdî"},kv:{name:"Komi",nativeName:"коми кыв"},kw:{name:"Cornish",nativeName:"Kernewek"},ky:{name:"Kyrgyz",nativeName:"Кыргызча"},la:{name:"Latin",nativeName:"latine"},lb:{name:"Luxembourgish",nativeName:"Lëtzebuergesch"},lg:{name:"Ganda",nativeName:"Luganda"},li:{name:"Limburgish",nativeName:"Limburgs"},ln:{name:"Lingala",nativeName:"Lingála"},lo:{name:"Lao",nativeName:"ພາສາລາວ"},lt:{name:"Lithuanian",nativeName:"lietuvių kalba"},lu:{name:"Luba-Katanga",nativeName:"Kiluba"},lv:{name:"Latvian",nativeName:"latviešu valoda"},mg:{name:"Malagasy",nativeName:"fiteny malagasy"},mh:{name:"Marshallese",nativeName:"Kajin M̧ajeļ"},mi:{name:"Māori",nativeName:"te reo Māori"},mk:{name:"Macedonian",nativeName:"македонски јазик"},ml:{name:"Malayalam",nativeName:"മലയാളം"},mn:{name:"Mongolian",nativeName:"Монгол хэл"},mr:{name:"Marathi",nativeName:"मराठी"},ms:{name:"Malay",nativeName:"Bahasa Melayu"},mt:{name:"Maltese",nativeName:"Malti"},my:{name:"Burmese",nativeName:"ဗမာစာ"},na:{name:"Nauru",nativeName:"Dorerin Naoero"},nb:{name:"Norwegian Bokmål",nativeName:"Norsk bokmål"},nd:{name:"Northern Ndebele",nativeName:"isiNdebele"},ne:{name:"Nepali",nativeName:"नेपाली"},ng:{name:"Ndonga",nativeName:"Owambo"},nl:{name:"Dutch",nativeName:"Nederlands"},nn:{name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"},no:{name:"Norwegian",nativeName:"Norsk"},nr:{name:"Southern Ndebele",nativeName:"isiNdebele"},nv:{name:"Navajo",nativeName:"Diné bizaad"},ny:{name:"Chichewa",nativeName:"chiCheŵa"},oc:{name:"Occitan",nativeName:"occitan"},oj:{name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"},om:{name:"Oromo",nativeName:"Afaan Oromoo"},or:{name:"Oriya",nativeName:"ଓଡ଼ିଆ"},os:{name:"Ossetian",nativeName:"ирон æвзаг"},pa:{name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"},pi:{name:"Pāli",nativeName:"पाऴि"},pl:{name:"Polish",nativeName:"Polski"},ps:{name:"Pashto",nativeName:"پښتو"},pt:{name:"Portuguese",nativeName:"Português"},qu:{name:"Quechua",nativeName:"Runa Simi"},rm:{name:"Romansh",nativeName:"rumantsch grischun"},rn:{name:"Kirundi",nativeName:"Ikirundi"},ro:{name:"Romanian",nativeName:"Română"},ru:{name:"Russian",nativeName:"Русский"},rw:{name:"Kinyarwanda",nativeName:"Ikinyarwanda"},sa:{name:"Sanskrit",nativeName:"संस्कृतम्"},sc:{name:"Sardinian",nativeName:"sardu"},sd:{name:"Sindhi",nativeName:"सिन्धी"},se:{name:"Northern Sami",nativeName:"Davvisámegiella"},sg:{name:"Sango",nativeName:"yângâ tî sängö"},si:{name:"Sinhala",nativeName:"සිංහල"},sk:{name:"Slovak",nativeName:"Slovenčina"},sl:{name:"Slovenian",nativeName:"slovenščina"},sm:{name:"Samoan",nativeName:"gagana fa'a Samoa"},sn:{name:"Shona",nativeName:"chiShona"},so:{name:"Somali",nativeName:"Soomaaliga"},sq:{name:"Albanian",nativeName:"Shqip"},sr:{name:"Serbian",nativeName:"српски језик"},ss:{name:"Swati",nativeName:"SiSwati"},st:{name:"Southern Sotho",nativeName:"Sesotho"},su:{name:"Sundanese",nativeName:"Basa Sunda"},sv:{name:"Swedish",nativeName:"Svenska"},sw:{name:"Swahili",nativeName:"Kiswahili"},ta:{name:"Tamil",nativeName:"தமிழ்"},te:{name:"Telugu",nativeName:"తెలుగు"},tg:{name:"Tajik",nativeName:"тоҷикӣ"},th:{name:"Thai",nativeName:"ไทย"},ti:{name:"Tigrinya",nativeName:"ትግርኛ"},tk:{name:"Turkmen",nativeName:"Türkmençe"},tl:{name:"Tagalog",nativeName:"Wikang Tagalog"},tn:{name:"Tswana",nativeName:"Setswana"},to:{name:"Tonga",nativeName:"faka Tonga"},tr:{name:"Turkish",nativeName:"Türkçe"},ts:{name:"Tsonga",nativeName:"Xitsonga"},tt:{name:"Tatar",nativeName:"татар теле"},tw:{name:"Twi",nativeName:"Twi"},ty:{name:"Tahitian",nativeName:"Reo Tahiti"},ug:{name:"Uyghur",nativeName:"ئۇيغۇرچە"},uk:{name:"Ukrainian",nativeName:"Українська"},ur:{name:"Urdu",nativeName:"اردو"},uz:{name:"Uzbek",nativeName:"Ўзбек"},ve:{name:"Venda",nativeName:"Tshivenḓa"},vi:{name:"Vietnamese",nativeName:"Tiếng Việt"},vo:{name:"Volapük",nativeName:"Volapük"},wa:{name:"Walloon",nativeName:"walon"},wo:{name:"Wolof",nativeName:"Wollof"},xh:{name:"Xhosa",nativeName:"isiXhosa"},yi:{name:"Yiddish",nativeName:"ייִדיש"},yo:{name:"Yoruba",nativeName:"Yorùbá"},za:{name:"Zhuang",nativeName:"Saɯ cueŋƅ"},zh:{name:"Chinese",nativeName:"中文"},zu:{name:"Zulu",nativeName:"isiZulu"}};const Ce=$r,Jt={},De={},ea=[],ta=[],aa=[];for(const o in Ce){const{name:a,nativeName:n}=Ce[o];Jt[o]=De[a.toLowerCase()]=De[n.toLowerCase()]={code:o,name:a,nativeName:n},ea.push(o),ta.push(a),aa.push(n)}var vr=class qe{static getLanguages(a=[]){return a.map(n=>qe.validate(n)?Object.assign({},Jt[n]):{code:n,name:"",nativeName:""})}static getName(a){return qe.validate(a)?Ce[a].name:""}static getAllNames(){return ta.slice()}static getNativeName(a){return qe.validate(a)?Ce[a].nativeName:""}static getAllNativeNames(){return aa.slice()}static getCode(a){return a=a.toLowerCase(),De.hasOwnProperty(a)?De[a].code:""}static getAllCodes(){return ea.slice()}static validate(a){return Ce.hasOwnProperty(a)}};const Ze=Nt(vr),_r={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},Er=["id"],Ir=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:xr.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(o,{expose:a,emit:n}){const t=o,l=Y(_r,t),r=n,s=e.ref(!1),c=e.ref(t.modelValue);e.watch(()=>t.modelValue,m=>{c.value=m});function i(m){c.value=m,r("update:modelValue",m),r("change",m),s.value=!1}const d=e.computed(()=>s.value),p=e.computed(()=>"lang-menu-id"),f=e.computed(()=>{const m={};let u;return t.availableLanguages==="*"?u=Ze.getAllCodes():u=t.availableLanguages,u.forEach(h=>{m[h]={code:h,name:Ze.getName(h)||h,nativeName:Ze.getNativeName(h)||Ze.getName(h)||h}}),m}),g=e.computed(()=>{const m=f.value[c.value];return{name:(m==null?void 0:m.nativeName)||c.value,label:`${t.ariaLabel} ${(m==null?void 0:m.nativeName)||c.value}`}});return a({currentLangData:g,updateLang:i,selectedLanguage:c}),(m,u)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(ve.VMenu,e.mergeProps(e.unref(l).menu,{id:d.value?"lang-menu":p.value,modelValue:s.value,"onUpdate:modelValue":u[0]||(u[0]=h=>s.value=h),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:h})=>[e.createVNode(H.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${t.ariaLabel} ${g.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":d.value},{...e.unref(l).btn,...h},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.value.name)+" ",1),m.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(D.VIcon,e.mergeProps({key:0},e.unref(l).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ct)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(W.VList,e.mergeProps(e.unref(l).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,(h,b,B)=>(e.openBlock(),e.createBlock(W.VListItem,e.mergeProps({ref_for:!0},e.unref(l).listTile,{key:b,role:"menuitem",tabindex:B+1,"aria-label":`${t.ariaLabel} ${h.nativeName}`,"aria-labelledby":`${p.value} ${h.nativeName}`,onClick:y=>i(b)}),{default:e.withCtx(()=>[e.createVNode(W.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(l).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,Er))}}),Tr=v(Ir,[["__scopeId","data-v-06ec7485"]]),rt={xSmall:{width:"11",height:"32"},small:{width:"14",height:"40"},normal:{width:"22",height:"64"}},ue={homeLinkPrefix:"Accueil,",logoCnam:"Caisse nationale",logoAmeli:"ameli.fr",logoAmeliPro:"AmeliPro",logoCompteAmeli:"Compte ameli",compteEntreprise:{title:{text:"Compte",highlight:"entreprise"},subTitle:"Vos démarches maladie et risques professionnels"}},na={cnam:{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='110'%20height='64'%20viewBox='0%200%20110%2064'%20fill='%23007Fad'%3e%3cpath%20d='m7.3%2036.1-1.4.2a4%204%200%200%201-2-.5%203%203%200%200%201-1.3-1.4c-.3-.7-.4-1.4-.4-2.2%200-.8.1-1.5.4-2.1a3%203%200%200%201%201.3-1.4c.6-.4%201.2-.5%202-.5a6%206%200%200%201%202.8.7l.2-1.8-1.4-.5-1.6-.2a5.4%205.4%200%200%200-5%202.8%206%206%200%200%200-.7%203c0%201.2.2%202.2.7%203.1.5.9%201.2%201.6%202%202a6%206%200%200%200%203%20.7%206%206%200%200%200%203-.7l-.2-1.7a4%204%200%200%201-1.4.5zm9.6.4-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6-.5-.5-1.2-.8-2.1-.8-1%200-1.9.2-2.8.7l.2%201.5c.2-.2.6-.3.9-.4l1-.2c.5%200%20.9.1%201.2.3.2.2.4.6.4%201.1l-2.1.3a7%207%200%200%200-1.7%201%202%202%200%200%200-.8%201.6c0%20.7.2%201.3.7%201.7.4.4%201%20.6%201.7.6.5%200%20.9-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5h-.3zm-2.6-.7-.8.6-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm3.9-9.2H20v1.8h-1.8zm0%203.3H20v7.9h-1.8zm8.5%204.3c-.4-.3-.9-.7-1.6-.9l-1-.4-.5-.3a.8.8%200%200%201-.2-.5c0-.3.1-.5.3-.7.2-.2.5-.2.9-.2l1.1.2c.3.1.7.3%201%20.6l.2-1.5c-.7-.4-1.5-.6-2.3-.6-.9%200-1.7.2-2.2.7-.5.4-.8%201-.8%201.7%200%20.6.2%201.1.6%201.5l1.8.9%201.2.5c.2.2.3.4.3.7%200%20.3-.1.5-.3.7l-1%20.2c-.8%200-1.6-.3-2.5-.8l-.2%201.6a6%206%200%200%200%202.7.6c1%200%201.8-.2%202.3-.6.5-.4.8-1%20.8-1.7-.1-.9-.3-1.4-.6-1.7zm6.7%200c-.4-.3-.9-.7-1.6-.9l-1-.4-.5-.3-.3-.6c0-.3.1-.5.3-.7.2-.2.5-.2.9-.2l1.1.2c.3.1.7.3%201%20.6l.2-1.5c-.7-.4-1.5-.6-2.4-.6-.9%200-1.7.2-2.2.7-.5.4-.8%201-.8%201.7%200%20.6.2%201.1.6%201.5l1.8.9%201.2.5c.2.2.3.4.3.7%200%20.3-.1.5-.3.7l-1%20.2c-.8%200-1.6-.3-2.5-.8l-.2%201.6a6%206%200%200%200%202.7.6c1%200%201.8-.2%202.3-.6.5-.4.8-1%20.8-1.7.1-.8%200-1.3-.4-1.6zm8.8-1c0-.7-.1-1.2-.4-1.8a3.4%203.4%200%200%200-3-1.7c-.8%200-1.5.2-2.1.5-.6.4-1%20.8-1.3%201.5-.3.6-.4%201.3-.4%202%200%20.8.2%201.5.5%202.1.3.6.8%201.1%201.5%201.5.7.4%201.4.6%202.4.6s1.8-.2%202.7-.6l-.1-1.5c-.7.4-1.5.6-2.3.6-.7%200-1.3-.2-1.8-.6-.5-.4-.8-1-.8-1.8H42Zm-5.4-.3c.3-1.1.9-1.7%202-1.7.5%200%20.9.2%201.2.5.3.3.4.7.4%201.2zm16.6-2.2a3%203%200%200%200-2.3-1c-.9%200-1.6.3-2.3.8l-.1-.7h-1.6v7.9h1.8V32c.4-.5%201-.8%201.7-.8.6%200%201.1.2%201.3.5.3.4.4.9.4%201.7v4.3h1.8v-4.3a4%204%200%200%200-.7-2.7zm9.1%205.8-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6a3%203%200%200%200-2.2-.8c-1%200-1.9.2-2.8.7l.2%201.5%201.1-.5%201-.2c.5%200%20.9.1%201.2.3.2.3.4.7.4%201.3l-2.1.3a5%205%200%200%200-1.8.9c-.5.4-.7%201-.7%201.7s.2%201.3.7%201.7c.5.4%201%20.6%201.7.6.5%200%201-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5zm-2.5-.7-.8.6-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm7.9-4.5v-1.4H66v-2l-1.8.2v1.8h-1l-.2%201.4h1.2v4.6c0%20.5.2%201%20.5%201.4.4.4.9.6%201.6.6h1.4l.2-1.5h-.5l-1-.1-.3-.3-.1-1v-3.7zm1.3-4.7H71v1.8h-1.8zm0%203.3H71v7.9h-1.8zM80%2031.8a4%204%200%200%200-3.6-2.1c-.8%200-1.5.2-2.1.6-.6.4-1.1.8-1.4%201.5a4.6%204.6%200%200%200%200%204.2%203.6%203.6%200%200%200%203.5%202%205%205%200%200%200%202.2-.5A4%204%200%200%200%2080%2036a4.6%204.6%200%200%200%200-4.2zm-2%204c-.4.5-.9.7-1.6.7-.7%200-1.2-.2-1.6-.7-.4-.5-.6-1.1-.6-1.9%200-.8.2-1.4.6-1.9.4-.5.9-.7%201.6-.7.7%200%201.2.2%201.6.7.4.5.6%201.1.6%201.9%200%20.8-.2%201.4-.6%201.9zm10.2-5.1a3%203%200%200%200-2.3-1c-.9%200-1.6.3-2.3.8l-.1-.7h-1.6v7.9h1.8V32c.4-.5%201-.8%201.7-.8.6%200%201.1.2%201.3.5.3.4.4.9.4%201.7v4.3h1.8v-4.3c0-1.1-.2-2-.7-2.7zm9.1%205.8-.5-.1-.2-.4v-2.9c0-1.2-.2-2.1-.7-2.6a3%203%200%200%200-2.2-.8c-1%200-1.9.2-2.8.7l.1%201.5%201.1-.5%201-.2c.5%200%20.9.1%201.2.3.2.2.4.6.4%201.1l-2.1.3-1.7%201.1c-.5.4-.7%201-.7%201.7s.2%201.3.7%201.7c.5.4%201%20.6%201.7.6.5%200%201-.1%201.4-.3l1.1-.7.7.8c.3.2.7.2%201.2.2h.5l.2-1.5zm-2.6-.7-.8.6a3%203%200%200%201-.8.2c-.8%200-1.1-.3-1.1-1%200-.5.2-.9.7-1.1a4%204%200%200%201%202-.4zm6.1.7-.3-.4-.1-1v-9.3h-1.8v10.1c0%20.6.2%201.1.5%201.5.3.4.9.6%201.5.6h.6l.2-1.5zm8.6-3.3c0-.7-.1-1.2-.4-1.8a3.4%203.4%200%200%200-3-1.7c-.8%200-1.5.2-2.1.5-.6.4-1%20.8-1.3%201.5-.3.6-.5%201.3-.5%202%200%20.8.2%201.5.5%202.1.3.6.8%201.1%201.5%201.5.7.4%201.4.6%202.4.6s1.8-.2%202.7-.6l-.1-1.5c-.7.4-1.5.6-2.3.6-.7%200-1.3-.2-1.8-.6-.5-.4-.8-1-.8-1.8h5.3zm-5.4-.3c.3-1.1.9-1.7%201.9-1.7.6%200%201%20.2%201.2.5.2.3.4.7.4%201.2z'/%3e%3c/svg%3e",alt:ue.logoCnam},ameli:{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='80'%20height='64'%20viewBox='0%200%2080%2064'%20fill='%230c419a'%3e%3cpath%20d='M.47%2037.75c0-2.75%202.31-4.3%207.41-4.85-.07-1.15-.8-1.84-2.2-1.84-1.09%200-2.17.47-3.4%201.2L.94%2029.68a10.4%2010.4%200%200%201%205.5-1.74c3.29%200%205.1%201.92%205.1%205.93v7.52H7.91v-1.26s-1.48%201.59-3.58%201.59C1.95%2041.69.47%2039.95.47%2037.75Zm7.41-.22v-2.28c-2.71.37-3.76%201.23-3.76%202.21%200%20.83.58%201.27%201.48%201.27.84-.04%201.6-.51%202.28-1.2ZM56.98%2024.23c0-1.2.94-2.03%202.21-2.03s2.2.83%202.2%202.03c0%201.19-.93%202.02-2.2%202.02-1.3%200-2.2-.87-2.2-2.02Zm.3%203.94h3.79v13.12h-3.8V28.17ZM35.76%2034.9c0-4.27%202.68-6.88%205.9-6.88%203.65%200%205.67%202.71%205.67%206.3a9.7%209.7%200%200%201-.14%201.73h-7.7c.32%201.92%201.62%202.78%203.32%202.78.98%200%201.8-.4%202.75-.94l1.3%202.43a8.14%208.14%200%200%201-4.56%201.48c-3.76-.04-6.54-2.57-6.54-6.9Zm8.35-1.45c0-1.45-.83-2.5-2.35-2.5-1.2%200-2.02.83-2.28%202.5h4.63ZM17.93%2029.98c1.05-1.05%202.2-1.96%203.9-1.96%201.82%200%202.94.76%203.59%202.14%201.12-1.16%202.31-2.14%204.05-2.14%202.82%200%204.08%202.03%204.08%205.25v8.06h-4V33.8c0-1.81-.52-2.35-1.53-2.35-.61%200-1.3.4-2.1%201.2v8.7h-4.05v-7.55c0-1.81-.47-2.35-1.51-2.35-.62%200-1.3.4-2.1%201.2v8.7h-4.01V28.39h3.68v1.6ZM64.98%2040.42c0-.68.5-1.22%201.19-1.22s1.2.54%201.2%201.22c0%20.7-.51%201.23-1.2%201.23s-1.2-.54-1.2-1.23ZM72.9%2027.99c-1.45%200-2.25.97-2.25%202.7v1.92l-1.2.08v.8h1.2v8.1h.94v-8.14h2.06v-.87H71.6v-1.85c0-1.26.44-1.91%201.3-1.91.33%200%20.65.07%201.02.22l.07.03.29-.76-.07-.03a3.8%203.8%200%200%200-1.3-.3ZM79.55%2032.58c-.33-.18-.65-.18-.9-.18-.95%200-1.78.61-2.47%201.7l-.07-1.49h-.83v8.94h.94v-6.08c.58-1.37%201.41-2.2%202.31-2.2.33%200%20.51.03.73.1l.07.04.25-.83h-.03ZM49.75%2037.32V22.85h3.8v14.61c0%20.83.36%201.08.69%201.08.14%200%20.25%200%20.47-.03l.47%202.86c-.44.18-1.05.32-1.92.32-2.64.04-3.5-1.7-3.5-4.37Z'/%3e%3c/svg%3e",alt:ue.logoAmeli},"ameli-pro":{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='99'%20height='64'%20viewBox='0%200%2099%2064'%20fill='none'%3e%3cpath%20fill='%2300a5df'%20d='M68.38%2038.78c.54.32%201.45.63%202.31.63%202.76%200%205.38-1.87%205.38-5.72v-2.86c0-3.59-2.62-5.7-5.7-5.7-3.09%200-5.71%202.11-5.71%205.7v13.73h3.72v-5.78Zm0-2.99v-4.83c0-1.8.85-2.68%202-2.68%201.12%200%201.97.88%201.97%202.68v2.6c0%201.97-.88%202.7-2%202.7-.67%200-1.32-.2-1.97-.47ZM77.97%2039.07h3.7v-8.68c0-1.23.67-2.11%201.84-2.11.63%200%201.28.13%201.85.29l.7-3.02a8.47%208.47%200%200%200-2.57-.42c-3.1%200-5.52%202.11-5.52%205.26v8.68ZM86.43%2033.45c0%203.72%202.44%205.96%205.8%205.96%203.35%200%205.8-2.24%205.8-5.96V31.1c0-3.72-2.45-5.96-5.8-5.96-3.36%200-5.8%202.24-5.8%205.96v2.36Zm3.69-.13v-2.1c0-1.8.52-2.94%202.1-2.94%201.56%200%202.11%201.14%202.11%202.94v2.1c0%201.8-.55%202.94-2.1%202.94-1.57%200-2.11-1.14-2.11-2.94Z'/%3e%3cpath%20fill='%230c419a'%20d='M.47%2035.64c0-2.82%202.38-4.42%207.64-4.97-.08-1.2-.82-1.9-2.27-1.9-1.12%200-2.24.48-3.5%201.23L.94%2027.36a10.75%2010.75%200%200%201%205.67-1.78c3.39%200%205.25%201.97%205.25%206.09v7.72H8.15v-1.3s-1.53%201.64-3.7%201.64C2%2039.69.48%2037.9.48%2035.64Zm7.64-.22v-2.34c-2.8.37-3.88%201.26-3.88%202.27%200%20.85.6%201.3%201.53%201.3.86-.04%201.64-.52%202.35-1.23ZM57.84%2021.75c0-1.22.97-2.08%202.28-2.08%201.3%200%202.27.86%202.27%202.08%200%201.23-.97%202.08-2.27%202.08-1.35%200-2.28-.89-2.28-2.08Zm.3%204.05h3.91v13.48h-3.9V25.8ZM36.24%2032.7c0-4.37%202.76-7.05%206.07-7.05%203.77%200%205.85%202.79%205.85%206.46%200%20.7-.07%201.45-.14%201.79h-7.94c.33%201.97%201.67%202.86%203.43%202.86%201%200%201.86-.41%202.83-.97l1.34%202.49a8.4%208.4%200%200%201-4.7%201.52c-3.87-.04-6.74-2.64-6.74-7.1Zm8.6-1.48c0-1.48-.85-2.56-2.41-2.56-1.23%200-2.1.85-2.35%202.56h4.77ZM18.18%2027.66c1.08-1.08%202.28-2%204.03-2%201.86%200%203.02.77%203.69%202.18%201.15-1.19%202.38-2.19%204.17-2.19%202.9%200%204.21%202.08%204.21%205.39v8.28h-4.14v-7.73c0-1.85-.52-2.41-1.56-2.41-.63%200-1.34.4-2.16%201.23v8.95h-4.18v-7.77c0-1.85-.48-2.41-1.56-2.41-.63%200-1.34.4-2.16%201.23v8.95h-4.14V26.02h3.8v1.64ZM50.52%2035.2V20.34h3.92v15c0%20.86.37%201.12.7%201.12.15%200%20.26%200%20.49-.04l.48%202.94c-.44.18-1.08.33-1.97.33-2.72.04-3.62-1.75-3.62-4.5Z'/%3e%3c/svg%3e",alt:ue.logoAmeliPro},"compte-ameli":{src:"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20x='0'%20y='0'%20style='enable-background:new%200%200%20146%2064'%20version='1.1'%20width='146'%20height='64'%20viewBox='0%200%20146%2064'%3e%3cpath%20d='M10.5%2037.1c-1.3.4-2.7.6-4%20.6-1.9%200-3.1-1-3.1-4v-2.8c0-2.9%201.2-3.8%203.1-3.8%201.3%200%202.7.1%204%20.6l.6-2.8c-1.5-.4-3.1-.7-4.6-.7-3.7%200-6.5%202.2-6.5%206.5V34c0%204.4%202.8%206.5%206.5%206.5%201.6%200%203.1-.3%204.6-.7l-.6-2.7zM13.4%2035.3c0%203.4%202.2%205.5%205.3%205.5s5.3-2.1%205.3-5.5v-2.2c0-3.4-2.2-5.5-5.3-5.5s-5.3%202.1-5.3%205.5v2.2zm3.3-.1v-1.9c0-1.6.4-2.7%201.9-2.7s1.9%201%201.9%202.7v1.9c0%201.6-.4%202.7-1.9%202.7-1.5-.1-1.9-1.1-1.9-2.7zM26.4%2040.3h3.4V33c0-1.6.4-2.5%201.5-2.5%201%200%201.5%201%201.5%202.8v6.9h3.4v-6.9c0-1.9.4-2.8%201.5-2.8%201%200%201.5.9%201.5%202.5v7.4h3.4v-7.5c0-3.4-2.2-5-4.9-5-1.3%200-2.4.6-3.1%201.6-.7-1-1.8-1.6-3.1-1.6-2.7%200-4.9%201.6-4.9%205l-.2%207.4zM48.2%2040c.4.3%201.3.6%202.1.6%202.5%200%204.9-1.8%204.9-5.2v-2.7c0-3.2-2.4-5.2-5.2-5.2s-5.2%201.9-5.2%205.2v12.4h3.4V40zm0-2.6V33c0-1.6.7-2.4%201.8-2.4s1.8.7%201.8%202.4v2.4c0%201.8-.7%202.5-1.8%202.5-.6-.1-1.2-.2-1.8-.5zM58.7%2040.3h3.4v-10H64v-2.2h-1.9v-3.8l-3.4.4v3.4h-2.1l.4%202.2h1.5v10h.2zM65.6%2035.3c0%203.5%202.2%205.3%205.5%205.3%201.6%200%202.7-.3%204-.7l-.6-2.7c-1%20.3-2.2.6-3.4.6-1.5%200-2.2-.7-2.2-2.5v-.1h6.8v-2.7c0-2.8-2.2-4.7-5-4.7s-5%201.8-5%205.2c-.1%200-.1%202.3-.1%202.3zm3.4-2.5v-.3c0-1%20.7-1.9%201.6-1.9%201%200%201.6.9%201.6%201.9v.3H69z'%20fill='%230084b2'/%3e%3cpath%20d='M85.1%2036.9c0-2.7%202.1-4%207.1-4.4%200-1-.6-1.5-1.9-1.5s-2.1.3-3.4%201l-1.5-2.5c1.6-.9%203.5-1.5%205.5-1.5%203.2%200%205.2%201.6%205.2%205.5v6.9h-3.2l-.3-1.2c-.9.9-2.2%201.5-3.7%201.5-2.5.1-3.8-1.7-3.8-3.8zm7.1-.1v-1.9c-2.5.3-3.4.9-3.4%201.8s.4%201%201.3%201c.7%200%201.5-.3%202.1-.9zM99.3%2028.2h3.2l.3%201.5c1-.9%202.1-1.8%203.8-1.8s2.8.7%203.5%201.9c1.2-1%202.2-1.9%204-1.9%202.7%200%204%201.8%204%204.9v7.5h-3.8v-7.1c0-1.6-.4-2.1-1.5-2.1s-1.3.3-2.1%201v8.1h-4v-7.1c0-1.6-.4-2.1-1.5-2.1s-1.3.3-2.1%201v8.1h-3.8V28.2c.1%200%200%200%200%200zM120.5%2034.3c0-4%202.8-6.2%205.9-6.2%203.1%200%205.5%202.7%205.5%205.8v1.6h-7.5c.3%201.6%201.6%202.4%203.2%202.4s1.8-.3%202.7-.7l1.3%202.4c-1.3.9-3.1%201.3-4.6%201.3-3.9-.3-6.5-2.5-6.5-6.6zm8-1.5c0-1.2-.4-2.1-1.9-2.1s-2.1.7-2.4%202.1h4.3zM134.5%2036.4V23.2h3.8v13.3c0%20.7.4%201%20.7%201h.4l.4%202.8c-.4.1-1.2.3-1.9.3-2.5%200-3.4-1.6-3.4-4.2zM141.6%2024.6c0-1.2%201-1.9%202.2-1.9%201.3%200%202.2.7%202.2%201.9s-1%201.9-2.2%201.9c-1.3.1-2.2-.6-2.2-1.9zm.3%203.6h3.8v12.1h-3.8V28.2z'%20fill='%230c419a'/%3e%3c/svg%3e",alt:ue.logoCompteAmeli}},Ar=["height"],Dr=["width","height","fill"],Zr=["src","alt"],Pr={key:2,class:"vd-title-container d-flex justify-center flex-column text-primary"},zr={key:1,class:"vd-title text-caption"},Hr=v(e.defineComponent({__name:"LogoBrandSection",props:{theme:{default:"default"},serviceTitle:{default:void 0},serviceSubTitle:{default:void 0},mobileVersion:{type:Boolean,default:!1},reduceLogo:{type:Boolean,default:!1},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,n=e.useSlots(),t=e.computed(()=>{if(a.theme==="compte-entreprise"){const{title:E,subTitle:_}=ue.compteEntreprise;return{title:E,subTitle:_}}return{title:a.serviceTitle||"",subTitle:a.serviceSubTitle||""}}),l=e.computed(()=>a.mobileVersion&&f.value),r=e.computed(()=>l.value?"32px":a.mobileVersion?"40px":"64px"),s=e.computed(()=>!a.reduceLogo&&a.theme==="risque-pro"),c=e.computed(()=>a.theme==="compte-entreprise"),i=e.computed(()=>a.theme==="compte-ameli"&&a.mobileVersion),d=e.computed(()=>a.reduceLogo||c.value||i.value),p=e.computed(()=>a.theme in na?na[a.theme]:null),f=e.computed(()=>!!p.value),g=e.computed(()=>a.theme==="ameli-pro"||a.theme==="ameli"),m=e.computed(()=>{var E,_,R,N;if((E=a.homeLink)!=null&&E.to){const M=(R=(_=e.getCurrentInstance())==null?void 0:_.appContext)==null?void 0:R.components;return M&&"RouterLink"in M?"router-link":"div"}return(N=a.homeLink)!=null&&N.href?"a":"div"}),u=e.computed(()=>g.value?m.value:"div"),h=e.computed(()=>g.value&&p.value?`${ue.homeLinkPrefix} ${p.value.alt}`:null),b=e.computed(()=>a.reduceLogo?f.value:!1),B=e.computed(()=>!!n["brand-content"]),y=e.computed(()=>!!(t.value.title||t.value.subTitle||B.value||f.value)),k=e.computed(()=>a.reduceLogo?!1:y.value),w=e.computed(()=>!!(t.value.title&&t.value.subTitle&&!a.mobileVersion)),$=e.computed(()=>{switch(a.theme){case"cnam":case"ameli-pro":return Ie.secondary;case"compte-entreprise":return"#cd545b";default:return Ie.primary}}),L=e.computed(()=>a.mobileVersion?f.value?rt.xSmall:rt.small:rt.normal),Z=e.computed(()=>a.mobileVersion?f.value?j.X_SMALL:j.SMALL:j.NORMAL);return(E,_)=>{var R,N;return e.openBlock(),e.createElementBlock("div",{height:r.value,class:"vd-logo-brand-section d-flex"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(m.value),{to:m.value==="router-link"?(R=E.homeLink)==null?void 0:R.to:void 0,href:m.value==="a"?(N=E.homeLink)==null?void 0:N.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>{var M;return[e.createVNode(nt,{"hide-signature":d.value,"hide-organism":i.value,"risque-pro":s.value,"aria-label":(M=E.homeLink)==null?void 0:M.ariaLabel,avatar:b.value,size:Z.value,class:e.normalizeClass({"mr-2":b.value})},null,8,["hide-signature","hide-organism","risque-pro","aria-label","avatar","size","class"])]}),_:1},8,["to","href"])),e.renderSlot(E.$slots,"default",{},()=>{var M,S;return[k.value?(e.openBlock(),e.createElementBlock("svg",{key:0,width:L.value.width,height:L.value.height,fill:$.value,role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},_[0]||(_[0]=[e.createElementVNode("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)]),8,Dr)):e.createCommentVNode("",!0),p.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.value),{key:1,"aria-label":h.value,to:u.value==="router-link"?(M=E.homeLink)==null?void 0:M.to:void 0,href:u.value==="a"?(S=E.homeLink)==null?void 0:S.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>[e.createElementVNode("img",{src:p.value.src,alt:p.value.alt},null,8,Zr)]),_:1},8,["aria-label","to","href"])):y.value?(e.openBlock(),e.createElementBlock("div",Pr,[e.renderSlot(E.$slots,"brand-content",{},()=>[t.value.title?(e.openBlock(),e.createElementBlock("h1",{key:0,class:e.normalizeClass([{"vd-compte-entreprise-title":c.value},"vd-title text-caption text-md-subtitle-1 font-weight-medium"])},[typeof t.value.title=="string"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.value.title),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(t.value.title.text)+" ",1),e.createElementVNode("span",null,e.toDisplayString(t.value.title.highlight),1)],64))],2)):e.createCommentVNode("",!0),w.value?(e.openBlock(),e.createElementBlock("h2",zr,e.toDisplayString(t.value.subTitle),1)):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]},!0)],8,Ar)}}}),[["__scopeId","data-v-ca95c6a8"]]),Rr="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%20171%20172'%3e%3cpath%20fill='%23e7ecf5'%20fill-rule='evenodd'%20d='M170.98%2085.88c-.67%2023.17-21.93%2038.99-39.79%2053.75-15.66%2012.94-33.5%2021.47-53.71%2023.52-23.03%202.34-49.9%205.4-65.83-11.4C-4.15%20135.07-.9%20108.28%204.2%2085.88%208.22%2068.22%2023.74%2057.72%2036.11%2044.5c13.13-14.02%2022.4-33.9%2041.37-36.9%2020.81-3.3%2040.79%207.79%2056.95%2021.32%2017.98%2015.05%2037.24%2033.52%2036.55%2056.97Z'%20clip-rule='evenodd'/%3e%3ccircle%20cx='123.87'%20cy='127.71'%20r='17.83'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3ccircle%20cx='126.62'%20cy='126.25'%20r='15.08'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3ccircle%20cx='126.95'%20cy='125.92'%20r='10.86'%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'/%3e%3cpath%20fill='%230c419a'%20d='M87.88%2067.72c0-19.13%2013.03-28.19%2024.48-30.48%2021.07-4.21%2054.13%2012.81%2054.63%2057.07.42%2036.27-15.75%2076.47-51.55%2076.52-32.75.05-41.02-27.72-45.88-34.2-1.66-2.2-5.02-8.76-8.76-11.68-2.48-1.93-8.1-1.9-12.48-3.73-4.8-2-11.98-8.02-13.46-13.94l-5.19-22.54c2.4-1.93%203.9-2.06%206.65-1.78.97%202.54%203.37%2010.22%206.49%2020.6%203.74%2012.47%2013.61%2011.83%2022.37%209.4%208.75-2.44%2010.7-13.46%209.73-19.46-.78-4.8-5.73-15.19-8.11-19.78%202.02-2.3%203.46-2.8%206.32-2.92%201.2%202.43%204.22%208.66%206.81%2014.1%203.24%206.82%203.73%2012.81%203.24%2016.87-.48%204.05-4.37%2012.32-6.32%2013.62-2.43%201.78-1.93%203.73-2.1%206.8-.36%206.15%208.87%2041.35%2040.69%2041.19%2034.77-.19%2045.7-47.56%2045.4-69.07-.6-41.99-30.97-55.12-46.54-51.07-8.47%202.2-19.74%206.98-20.26%2024.48-.46%2015.12%2012.9%2031.98%2021.23%2041.52%201.42%201.63%202.7%203.04%203.73%204.2-.64%202.43-2.75%204.05-4.7%204.86a217.2%20217.2%200%200%201-4.05-4.34c-12.78-14.09-22.37-28.9-22.37-46.24Z'/%3e%3cpath%20fill='%230c419a'%20d='M120.8%2035.67c-3-.16-5.91.05-8.64.59a32.39%2032.39%200%200%200-17.06%209.22c-4.85%205.12-8.22%2012.45-8.22%2022.24%200%2017.7%209.78%2032.75%2022.63%2046.91l.74-.67-.74.67c1.34%201.47%202.7%202.93%204.07%204.36l.47.5.63-.27c2.16-.88%204.54-2.68%205.29-5.52l.13-.52-.35-.4c-1.04-1.17-2.3-2.57-3.72-4.2l-.75.66.74-.66c-8.3-9.5-21.42-26.32-20.98-40.83.25-8.54%203.08-13.8%206.83-17.28%203.75-3.48%208.51-5.18%2012.68-6.26%2014.75-3.84%2044.7%208.6%2045.29%2050.11.15%2010.58-2.5%2027.72-9.45%2042.08-6.95%2014.37-18.02%2025.89-34.95%2025.98-15.55.08-25.46-8.41-31.57-17.78a56.35%2056.35%200%200%201-6.43-13.66c-1.3-4.08-1.76-7.46-1.7-8.7.1-1.6.03-2.84.2-3.75.16-.92.45-1.52%201.5-2.3l-.04.03a7.72%207.72%200%200%200%202.04-2.4%2034.63%2034.63%200%200%200%202.03-3.79c1.3-2.8%202.42-5.88%202.7-8.14.5-4.26-.02-10.43-3.34-17.42-2.59-5.44-5.6-11.67-6.81-14.11l-.3-.59-.64.03c-2.96.13-4.9.84-7.03%203.26l-.45.51.31.61c1.18%202.27%203%206%204.63%209.75%201.62%203.74%203.03%207.55%203.38%209.73.45%202.8.22%206.93-1.16%2010.55-1.39%203.6-3.83%206.66-7.85%207.78-4.3%201.2-8.8%201.9-12.54.9-3.73-1.02-6.8-3.62-8.61-9.63-2.06-6.86-3.06-9.84-4.3-13.66l-2.19-6.94-.02-.06-.2-.56-.63-.08c-2.83-.28-4.84-.04-7.38%202l-.49.4%205.35%2023.15v.01c.8%203.25%203.09%206.34%205.75%208.92a28.5%2028.5%200%200%200%208.28%205.7c2.34.98%204.9%201.43%207.14%201.9%202.25.45%204.17.96%205.12%201.7%201.7%201.32%203.44%203.63%204.94%205.87%201.49%202.24%202.71%204.4%203.63%205.61%201.1%201.46%202.56%204.44%204.54%207.98a67.85%2067.85%200%200%200%207.99%2011.64c6.9%207.9%2017.5%2015.02%2034.15%2014.99%2018.28-.03%2031.63-10.37%2040.22-25.18%208.59-14.8%2012.54-34.06%2012.33-52.35-.44-39.16-26.18-57.56-47.2-58.63Zm-.12%202c19.88%201.01%2044.88%2018.36%2045.31%2056.65.2%2017.98-3.72%2036.95-12.06%2051.33-8.34%2014.38-20.96%2024.16-38.5%2024.18-16.08.02-26-6.72-32.64-14.31a65.94%2065.94%200%200%201-7.74-11.3c-1.96-3.49-3.35-6.41-4.69-8.2-.74-.98-2.03-3.2-3.57-5.52-1.53-2.3-3.33-4.74-5.37-6.34-1.54-1.2-3.67-1.62-5.95-2.09-2.28-.46-4.72-.91-6.76-1.77a27%2027%200%200%201-7.67-5.3c-2.5-2.41-4.54-5.3-5.2-7.96l-5.03-21.8a6.11%206.11%200%200%201%204.78-1.28l6.26%2019.88c1.94%206.47%205.67%209.8%2010%2010.97%204.33%201.18%209.15.34%2013.6-.9%204.73-1.31%207.64-4.98%209.17-8.99%201.54-4%201.8-8.38%201.28-11.58-.43-2.62-1.88-6.4-3.53-10.2a160.61%20160.61%200%200%200-4.34-9.16%205.98%205.98%200%200%201%204.51-2.08c1.3%202.64%204.02%208.25%206.49%2013.43%203.16%206.65%203.61%2012.46%203.15%2016.32-.21%201.8-1.28%204.87-2.53%207.54a32.87%2032.87%200%200%201-1.9%203.56%208.1%208.1%200%200%201-1.46%201.8l-.01.02-.02.01a5.54%205.54%200%200%200-2.3%203.55c-.22%201.27-.13%202.53-.2%204-.12%201.85.43%205.18%201.77%209.41a58.24%2058.24%200%200%200%206.66%2014.16c6.36%209.73%2016.98%2018.76%2033.26%2018.68%2017.83-.1%2029.6-12.36%2036.74-27.1%207.13-14.75%209.8-32.05%209.65-42.98-.6-42.47-31.4-56.3-47.8-52.03-4.3%201.12-9.4%202.9-13.53%206.74-4.13%203.83-7.2%209.72-7.47%2018.68-.47%2015.41%2012.52%2031.85%2020.92%2041.53a20.25%2020.25%200%200%201-3.57%203.35c-12.38-13.8-21.5-28.16-21.5-44.85%200-9.34%203.14-16.1%207.66-20.86a30.46%2030.46%200%200%201%2016-8.64c2.55-.5%205.29-.7%208.13-.55zm-5.41%2073.07%202.52%202.84a6.6%206.6%200%200%201-3.32%203.44c-.92-.97-1.84-1.96-2.75-2.95%201.3-.98%202.49-2.1%203.55-3.33z'%20color='%23000'/%3e%3cpath%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'%20d='m34.44%2082.53.1.36a6.74%206.74%200%200%200-3.73%201.04C26.1%2064.48%2015.89%2025.9%2028.38%2012.6c4.54-4.54%2010.21-6.1%2012.48-6.32l.81%203.56a22.53%2022.53%200%200%200-12%206.81c-9.96%2010.61%201.1%2052.13%204.77%2065.88Z'/%3e%3cpath%20fill='%23fff'%20stroke='%230c419a'%20stroke-width='2'%20d='M37.94%2018.27c18%2011.03%2028.86%2042.16%2033.4%2052.7A6.49%206.49%200%200%200%2068%2072.59c-6.39-16.54-19.2-44.02-30.06-50.75C29.25%2016.46%2021.9%2018.6%2018%2020.71c-.05-1.7-.35-2.44-1.3-3.4%206.65-2.44%2014.1-3.74%2021.24.96Z'/%3e%3cpath%20fill='%230c419a'%20stroke='%230c419a'%20stroke-width='2'%20d='M46.86%2010c-2.47%200-4.7%201.3-5.84-1.61-.65-1.79.16-3.41%201.46-3.9%201.3-.48%202.43-.64%202.92-1.13a7.2%207.2%200%200%201%203.73-2.1c2.24-.38%204.54.48%205.51%202.91a4.28%204.28%200%200%201-2.76%205.84c-1.45.48-3.72%200-5.02%200Z'/%3e%3cellipse%20cx='52.51'%20cy='5.35'%20fill='%23fff'%20stroke='%23fff'%20stroke-width='2'%20rx='1.12'%20ry='2.28'%20transform='rotate(-13%2052.51%205.35)'/%3e%3cpath%20fill='%230c419a'%20stroke='%230c419a'%20stroke-width='2'%20d='M10.7%2017.3c2.47%200%205.74-1.94%206.98%201.46.64%201.78.11%203.7-1.18%204.18-1.3.48-2.44.65-2.92%201.13a7.2%207.2%200%200%201-3.73%202.11c-2.25.38-4.67-.44-5.51-2.92-.77-2.23-.26-4.37%201.83-5.47%201.78-.94%202.75-.49%204.53-.49Z'/%3e%3cellipse%20cx='6.47'%20cy='22.53'%20fill='%23fff'%20stroke='%23fff'%20stroke-width='2'%20rx='1.12'%20ry='2.28'%20transform='rotate(158%206.47%2022.53)'/%3e%3c/svg%3e",it={pageTitle:"Maintenance en cours",message:"L’application n’est pas disponible pour le moment, veuillez nous excuser pour la gêne occasionnée."},Fr=["alt"],Or=v(e.defineComponent({__name:"MaintenancePage",setup(o){return(a,n)=>(e.openBlock(),e.createBlock(tt,{"page-title":e.unref(it).pageTitle,message:e.unref(it).message,"no-btn":""},{illustration:e.withCtx(()=>[e.createElementVNode("img",{src:Rr,alt:e.unref(it).pageTitle},null,8,Fr)]),_:1},8,["page-title","message"]))}}),[["__scopeId","data-v-aea9e609"]]);var qr=Object.defineProperty,Ur=(o,a,n)=>a in o?qr(o,a,{enumerable:!0,configurable:!0,writable:!0,value:n}):o[a]=n,Be=(o,a,n)=>Ur(o,typeof a!="symbol"?a+"":a,n);const oa={"#":{pattern:/[0-9]/},"@":{pattern:/[a-zA-Z]/},"*":{pattern:/[a-zA-Z0-9]/}},la=(o,a,n)=>o.replaceAll(a,"").replace(n,".").replace("..",".").replace(/[^.\d]/g,""),ra=(o,a,n)=>{var t;return new Intl.NumberFormat(((t=n.number)==null?void 0:t.locale)??"en",{minimumFractionDigits:o,maximumFractionDigits:a,roundingMode:"trunc"})},Yr=(o,a=!0,n)=>{var t,l,r,s;const c=((t=n.number)==null?void 0:t.unsigned)!==!0&&o.startsWith("-")?"-":"",i=((l=n.number)==null?void 0:l.fraction)??0;let d=ra(0,i,n);const p=d.formatToParts(1000.12),f=((r=p.find(b=>b.type==="group"))==null?void 0:r.value)??" ",g=((s=p.find(b=>b.type==="decimal"))==null?void 0:s.value)??".",m=la(o,f,g);if(Number.isNaN(parseFloat(m)))return c;const u=m.split(".");if(u[1]!=null&&u[1].length>=1){const b=u[1].length<=i?u[1].length:i;d=ra(b,i,n)}let h=d.format(parseFloat(m));return a?i>0&&m.endsWith(".")&&!m.slice(0,-1).includes(".")&&(h+=g):h=la(h,f,g),c+h};class Kr{constructor(a={}){Be(this,"opts",{}),Be(this,"memo",new Map);const n={...a};if(n.tokens!=null){n.tokens=n.tokensReplace?{...n.tokens}:{...oa,...n.tokens};for(const t of Object.values(n.tokens))typeof t.pattern=="string"&&(t.pattern=new RegExp(t.pattern))}else n.tokens=oa;Array.isArray(n.mask)&&(n.mask.length>1?n.mask=[...n.mask].sort((t,l)=>t.length-l.length):n.mask=n.mask[0]??""),n.mask===""&&(n.mask=null),this.opts=n}masked(a){return this.process(String(a),this.findMask(String(a)))}unmasked(a){return this.process(String(a),this.findMask(String(a)),!1)}isEager(){return this.opts.eager===!0}isReversed(){return this.opts.reversed===!0}completed(a){const n=this.findMask(String(a));if(this.opts.mask==null||n==null)return!1;const t=this.process(String(a),n).length;return typeof this.opts.mask=="string"?t>=this.opts.mask.length:t>=n.length}findMask(a){const n=this.opts.mask;if(n==null)return null;if(typeof n=="string")return n;if(typeof n=="function")return n(a);const t=this.process(a,n.slice(-1).pop()??"",!1);return n.find(l=>this.process(a,l,!1).length>=t.length)??""}escapeMask(a){const n=[],t=[];return a.split("").forEach((l,r)=>{l==="!"&&a[r-1]!=="!"?t.push(r-t.length):n.push(l)}),{mask:n.join(""),escaped:t}}process(a,n,t=!0){if(this.opts.number!=null)return Yr(a,t,this.opts);if(n==null)return a;const l=`v=${a},mr=${n},m=${t?1:0}`;if(this.memo.has(l))return this.memo.get(l);const{mask:r,escaped:s}=this.escapeMask(n),c=[],i=this.opts.tokens!=null?this.opts.tokens:{},d=this.isReversed()?-1:1,p=this.isReversed()?"unshift":"push",f=this.isReversed()?0:r.length-1,g=this.isReversed()?()=>b>-1&&B>-1:()=>b<r.length&&B<a.length,m=k=>!this.isReversed()&&k<=f||this.isReversed()&&k>=f;let u,h=-1,b=this.isReversed()?r.length-1:0,B=this.isReversed()?a.length-1:0,y=!1;for(;g();){const k=r.charAt(b),w=i[k],$=(w==null?void 0:w.transform)!=null?w.transform(a.charAt(B)):a.charAt(B);if(!s.includes(b)&&w!=null?($.match(w.pattern)!=null?(c[p]($),w.repeated?(h===-1?h=b:b===f&&b!==h&&(b=h-d),f===h&&(b-=d)):w.multiple&&(y=!0,b-=d),b+=d):w.multiple?y&&(b+=d,B-=d,y=!1):$===u?u=void 0:w.optional&&(b+=d,B-=d),B+=d):(t&&!this.isEager()&&c[p](k),$===k&&!this.isEager()?B+=d:u=k,this.isEager()||(b+=d)),this.isEager())for(;m(b)&&(i[r.charAt(b)]==null||s.includes(b));){if(t){if(c[p](r.charAt(b)),a.charAt(B)===r.charAt(b)){b+=d,B+=d;continue}}else r.charAt(b)===a.charAt(B)&&(B+=d);b+=d}}return this.memo.set(l,c.join("")),this.memo.get(l)}}const ia=o=>JSON.parse(o.replaceAll("'",'"')),Wr=(o,a={})=>{const n={...a};o.dataset.maska!=null&&o.dataset.maska!==""&&(n.mask=Gr(o.dataset.maska)),o.dataset.maskaEager!=null&&(n.eager=Pe(o.dataset.maskaEager)),o.dataset.maskaReversed!=null&&(n.reversed=Pe(o.dataset.maskaReversed)),o.dataset.maskaTokensReplace!=null&&(n.tokensReplace=Pe(o.dataset.maskaTokensReplace)),o.dataset.maskaTokens!=null&&(n.tokens=jr(o.dataset.maskaTokens));const t={};return o.dataset.maskaNumberLocale!=null&&(t.locale=o.dataset.maskaNumberLocale),o.dataset.maskaNumberFraction!=null&&(t.fraction=parseInt(o.dataset.maskaNumberFraction)),o.dataset.maskaNumberUnsigned!=null&&(t.unsigned=Pe(o.dataset.maskaNumberUnsigned)),(o.dataset.maskaNumber!=null||Object.values(t).length>0)&&(n.number=t),n},Pe=o=>o!==""?!!JSON.parse(o):!0,Gr=o=>o.startsWith("[")&&o.endsWith("]")?ia(o):o,jr=o=>{if(o.startsWith("{")&&o.endsWith("}"))return ia(o);const a={};return o.split("|").forEach(n=>{const t=n.split(":");a[t[0]]={pattern:new RegExp(t[1]),optional:t[2]==="optional",multiple:t[2]==="multiple",repeated:t[2]==="repeated"}}),a};class Xr{constructor(a,n={}){Be(this,"items",new Map),Be(this,"eventAbortController"),Be(this,"onInput",t=>{if(t instanceof CustomEvent&&t.type==="input"&&!t.isTrusted&&!t.bubbles)return;const l=t.target,r=this.items.get(l),s="inputType"in t&&t.inputType.startsWith("delete"),c=r.isEager(),i=s&&c&&r.unmasked(l.value)===""?"":l.value;this.fixCursor(l,s,()=>this.setValue(l,i))}),this.options=n,this.eventAbortController=new AbortController,this.init(this.getInputs(a))}update(a={}){this.options={...a},this.init(Array.from(this.items.keys()))}updateValue(a){a.value!==""&&a.value!==this.processInput(a).masked&&this.setValue(a,a.value)}destroy(){this.eventAbortController.abort(),this.items.clear()}init(a){const n=this.getOptions(this.options);for(const t of a){if(!this.items.has(t)){const{signal:r}=this.eventAbortController;t.addEventListener("input",this.onInput,{capture:!0,signal:r})}const l=new Kr(Wr(t,n));this.items.set(t,l),queueMicrotask(()=>this.updateValue(t)),t.selectionStart===null&&l.isEager()&&console.warn("Maska: input of `%s` type is not supported",t.type)}}getInputs(a){return typeof a=="string"?Array.from(document.querySelectorAll(a)):"length"in a?Array.from(a):[a]}getOptions(a){const{onMaska:n,preProcess:t,postProcess:l,...r}=a;return r}fixCursor(a,n,t){const l=a.selectionStart,r=a.value;if(t(),l===null||l===r.length&&!n)return;const s=a.value,c=r.slice(0,l),i=s.slice(0,l),d=this.processInput(a,c).unmasked,p=this.processInput(a,i).unmasked;let f=l;c!==i&&(f+=n?s.length-r.length:d.length-p.length),a.setSelectionRange(f,f)}setValue(a,n){const t=this.processInput(a,n);a.value=t.masked,this.options.onMaska!=null&&(Array.isArray(this.options.onMaska)?this.options.onMaska.forEach(l=>l(t)):this.options.onMaska(t)),a.dispatchEvent(new CustomEvent("maska",{detail:t})),a.dispatchEvent(new CustomEvent("input",{detail:t.masked}))}processInput(a,n){const t=this.items.get(a);let l=n??a.value;this.options.preProcess!=null&&(l=this.options.preProcess(l));let r=t.masked(l);return this.options.postProcess!=null&&(r=this.options.postProcess(r)),{masked:r,unmasked:t.unmasked(l),completed:t.completed(l)}}}const st=new WeakMap,Qr=(o,a)=>{if(o.arg==null||o.instance==null)return;const n="setup"in o.instance.$.type;o.arg in o.instance?o.instance[o.arg]=a:n&&console.warn("Maska: please expose `%s` using defineExpose",o.arg)},Ne=(o,a)=>{var n;const t=o instanceof HTMLInputElement?o:o.querySelector("input");if(t==null||(t==null?void 0:t.type)==="file")return;let l={};if(a.value!=null&&(l=typeof a.value=="string"?{mask:a.value}:{...a.value}),a.arg!=null){const r=s=>{const c=a.modifiers.unmasked?s.unmasked:a.modifiers.completed?s.completed:s.masked;Qr(a,c)};l.onMaska=l.onMaska==null?r:Array.isArray(l.onMaska)?[...l.onMaska,r]:[l.onMaska,r]}st.has(t)?(n=st.get(t))==null||n.update(l):st.set(t,new Xr(t,l))},Jr=13,e1=2;function sa(o){return o=o.replace(/\s+/g,"").toUpperCase(),new RegExp("^(?<sexe>[1-4]|7|8)(?<anneeNaissance>\\d{2})(?<moisNaissance>0[1-9]|1[0-2]|2[0-9]|3[0-9]|4[0-2])(?<departementNaissance>\\d{2}|2A|2B|96|97\\d|98\\d)(?<communeNaissance>\\d{3})(?<rangInscription>\\d{3})(?<cle>[0-9]{2})?$","i").test(o)}function ca(o){o=o.replace(/\s+/g,"").toUpperCase();let a=o.substring(0,13);return a=a.replace("2A","19").replace("2B","18"),(97n-BigInt(a)%97n).toString().padStart(2,"0")}function da(o){o=o.replace(/\s+/g,"").toUpperCase();const a=o.substring(13,15),n=ca(o);return a===n}const ze={errorRequiredNumber:"Le numéro de sécurité sociale est requis.",errorLengthNumber:o=>`Le numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidFormat:"Le format du numéro de sécurité sociale est invalide.",errorRequiredKey:"La clé du numéro de sécurité sociale est requise.",errorLengthKey:o=>`La clé du numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidKey:"La clé du numéro de sécurité sociale est invalide.",numberLabel:"Numéro de sécurité sociale",numberHint:"13 caractères",keyLabel:"Clé",keyHint:"2 chiffres"},t1={persistentHint:{persistentHint:!0},validateOn:{validateOn:"blur"},icon:{color:""},tooltip:{location:"top"}},a1={class:"d-flex align-start"},n1={class:"custom-counter"},o1={class:"custom-counter"},l1=v(e.defineComponent({__name:"NirField",props:{vuetifyOptions:{},modelValue:{default:void 0},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},nirTooltip:{default:void 0},keyTooltip:{default:void 0},numberLabel:{default:"Numéro de sécurité sociale"},keyLabel:{default:"Clé"},displayKey:{type:Boolean,default:!0},showSuccessMessages:{type:Boolean,default:!1},customNumberRules:{default:[]},customKeyRules:{default:[]}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){var z,O,K,F,le,Le;const t=o,l=n,r=Y(t1,t),s=_e,c=e.ref(""),i=e.ref(""),d=e.ref(!1),p=e.ref(null),f=e.ref(null),g=e.computed(()=>c.value.replace(/\s/g,""));e.watch(()=>t.modelValue,async x=>{c.value=(x==null?void 0:x.slice(0,13))??"",i.value=(x==null?void 0:x.slice(13,15))??""},{immediate:!0});const m=e.ref([]),u=e.ref([]),h=e.ref(!1),b={mask:"# ## ## #C ### ###",preProcess:x=>x.toUpperCase(),tokens:{C:{pattern:/[0-9AB]/,transform:x=>x.toUpperCase()}}},B={mask:"##"},{generateRules:y}=ye(),k=[{type:"exactLength",options:{length:13,message:ze.errorLengthNumber(13),ignoreSpace:!0,fieldIdentifier:"numéro"}},{type:"custom",options:{validate:sa,message:"Le numéro de sécurité sociale est invalide.",successMessage:"Le numéro de sécurité sociale est valide.",fieldIdentifier:"numéro"}},...t.required?[{type:"required",options:{message:"Le numéro de sécurité sociale est requis.",fieldIdentifier:"numéro"}}]:[]],w=[{type:"exactLength",options:{length:2,message:ze.errorLengthKey(2),ignoreSpace:!0,fieldIdentifier:"clé"}},{type:"custom",options:{validate:()=>da(`${c.value}${i.value}`),message:"La clé du numéro de sécurité sociale est invalide.",successMessage:"Le champ clé est valide.",fieldIdentifier:"clé"}},...t.required?[{type:"required",options:{message:"La clé est requise.",fieldIdentifier:"clé"}}]:[]],$=(O=(z=k[0])==null?void 0:z.options)==null?void 0:O.fieldIdentifier,L=(F=(K=w[0])==null?void 0:K.options)==null?void 0:F.fieldIdentifier,Z=e.computed(()=>m.value.some(x=>x.includes($))),E=e.computed(()=>m.value.some(x=>x.includes(L))),_=e.computed(()=>u.value.some(x=>x.includes($))),R=e.computed(()=>u.value.some(x=>x.includes(L))),N=(le=t.customNumberRules)!=null&&le.length?y(t.customNumberRules):y(k),M=t.displayKey?(Le=t.customKeyRules)!=null&&Le.length?y(t.customKeyRules):y(w):[];function S(x,U){U.forEach(q=>{const{error:Se,success:mt}=q(x);Se&&m.value.push(Se),mt&&mt!=="Le champ est valide."&&u.value.push(mt)})}function T(x=!1){m.value=[],u.value=[];const U=x||h.value||c.value.length===18,q=t.displayKey&&(x||h.value||i.value.length===2);U&&S(c.value,N),q&&S(i.value,M),u.value=Array.from(new Set(u.value))}const P=e.computed(()=>{const x=c.value.replace(/\s/g,"").length;return`${Math.min(x,13)}/13`}),C=e.computed(()=>{const x=i.value.replace(/\s/g,"").length;return`${Math.min(x,2)}/2`});e.watch([g,i],()=>{T(),g.value+i.value!==t.modelValue&&l("update:modelValue",`${g.value}${i.value}`)}),e.watch(i,(x,U)=>{d.value=!!(!x&&U)}),e.watch(c,()=>{g.value.length<13&&(d.value=!1)});const A=e.computed(()=>{var x,U,q,Se;return t.displayKey&&c.value.length===18?d.value?(Se=(q=f.value)==null?void 0:q.$el)==null?void 0:Se.querySelector("input"):(U=(x=p.value)==null?void 0:x.$el)==null?void 0:U.querySelector("input"):null});e.watch(A,x=>{e.nextTick(()=>{x==null||x.focus()})});function I(){return h.value=!0,T(!0),m.value.length===0}return a({validateOnSubmit:I}),(x,U)=>(e.openBlock(),e.createElementBlock("div",a1,[e.createVNode(pt.VInput,{ref:"vInput",class:e.normalizeClass([{"v-messages__message--success":u.value.length>0&&t.showSuccessMessages,"v-messages__message--error":m.value.length>0},"vd-nir-field__fields-wrapper multi-line"]),"error-messages":m.value,label:x.numberLabel,"max-errors":3,messages:t.showSuccessMessages?u.value:[],"model-value":[c.value,i.value],"validate-on":"blur lazy"},{default:e.withCtx(()=>[x.nirTooltip?(e.openBlock(),e.createBlock(ht.VTooltip,{key:0},{activator:e.withCtx(({props:q})=>[e.createVNode(D.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 mr-4"},{...q,...e.unref(r).tooltip}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(s)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(x.$slots,"nirTooltip",{},()=>[e.createTextVNode(e.toDisplayString(x.nirTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(ie,{ref_key:"numberField",ref:f,modelValue:c.value,"onUpdate:modelValue":U[0]||(U[0]=q=>c.value=q),"append-inner-icon":Z.value?"error":_.value?"success":void 0,"aria-errormessage":Z.value?"number-field-errors":void 0,"aria-invalid":Z.value,"aria-required":x.required,color:Z.value?"error":"primary",error:Z.value,hint:e.unref(ze).numberHint,label:x.numberLabel,variant:x.outlined?"outlined":"underlined",class:"vd-number-field",title:"nirField",onBlur:U[1]||(U[1]=q=>T(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",n1,e.toDisplayString(P.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(Ne),b]]),x.displayKey?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.withDirectives((e.openBlock(),e.createBlock(ie,{ref_key:"keyField",ref:p,modelValue:i.value,"onUpdate:modelValue":U[2]||(U[2]=q=>i.value=q),"append-inner-icon":E.value?"error":R.value?"success":void 0,"aria-errormessage":E.value?"key-field-errors":void 0,"aria-invalid":E.value,"aria-required":x.required,color:E.value?"error":"primary",error:E.value,hint:e.unref(ze).keyHint,label:x.keyLabel,variant:x.outlined?"outlined":"underlined",class:"vd-key-field",title:"nirKeyField",onBlur:U[3]||(U[3]=q=>T(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",o1,e.toDisplayString(C.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(Ne),B]]),x.keyTooltip?(e.openBlock(),e.createBlock(ht.VTooltip,{key:0},{activator:e.withCtx(({props:q})=>[e.createVNode(D.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 ml-4"},{...q,...e.unref(r).icon}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(s)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(x.$slots,"keyTooltip",{},()=>[e.createTextVNode(e.toDisplayString(x.keyTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]),_:3},8,["class","error-messages","label","messages","model-value"])]))}}),[["__scopeId","data-v-8c3682ea"]]),r1="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%20175%20185'%3e%3cpath%20fill='%23e7ecf5'%20fill-rule='evenodd'%20d='M82.05%201.03c25.02%204.23%2035.74%2031.89%2052.64%2050.76%2015.22%2017%2038.8%2029.7%2039.77%2052.46.99%2023.2-15.89%2044.01-35.1%2057.13-16.47%2011.25-37.51%203.39-57.3%205.99-25.97%203.41-55.68%2029.28-74.73%2011.37-18.93-17.8%207.49-48.54%207.6-74.49.11-25.7-20.98-52.27-6.95-73.83C23%207.3%2054.8-3.56%2082.05%201.03Z'%20clip-rule='evenodd'/%3e%3cpath%20fill='%23fff'%20d='M101.76%20132.91%2080.07%2096.9l-6.74-11.21%203.21-4.8s32.94-.8%2035.35%200l35.34%2056.04-4.01%204.8h-36.15l-5.31-8.82Z'/%3e%3cpath%20fill='%230c419a'%20d='m101.76%20132.91%205.3%208.83h-.4l-52.48-8.01%2047.58-.82Z'/%3e%3cpath%20fill='%23fff'%20d='M54.18%20133.73h-.13V96.9h26.03l21.68%2036.01-47.58.82ZM54.05%2096.9v36.83l-19.28-9.6V88.9l19.28%208Z'/%3e%3cpath%20fill='%230c419a'%20d='m63.87%2064.26%2017.25-5.12%2020.51-6.1s2.54%204.43%209.87%202.6c-5.53%201.83-20.28%206.68-26.74%208.62-8.04%202.4-20.89%200-20.89%200Z'/%3e%3cpath%20fill='%23fff'%20d='M111.5%2055.64c-7.34%201.83-9.87-2.6-9.87-2.6l-20.51%206.1c1.6-1.37%207.76-7.03%208.46-13.3.8-7.2%203.21-15.21%209.64-18.41%205.82-2.9%2027.96-15.14%2032.1-17.43-1.19.84-2.39%202.33-3.42%204.89a28.8%2028.8%200%200%200-1.37%204.53c-3.21%2014.41-2.4%2031.23-12.05%2035.23-1.07.44-2.06.77-2.97%201Z'/%3e%3cpath%20fill='%230c419a'%20d='M131.32%2010c2.88-2.03%205.66-.19%205.66-.19L128%2014.93l-.1-.04c1.03-2.56%202.23-4.06%203.42-4.9Z'/%3e%3cpath%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='2'%20d='m111.5%2055.64%202.14-.7M111.5%2055.65c-7.33%201.82-9.87-2.6-9.87-2.6l-20.51%206.09-17.25%205.12s12.85%202.4%2020.89%200c6.46-1.94%2021.2-6.79%2026.74-8.61ZM111.5%2055.65h.01M128%2014.93l8.98-5.12s-2.78-1.84-5.66.19c-1.19.84-2.39%202.33-3.42%204.89a28.8%2028.8%200%200%200-1.37%204.53c-3.21%2014.41-2.4%2031.23-12.05%2035.23-1.07.45-2.06.77-2.97%201'/%3e%3cpath%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='2'%20d='M80.74%2059.45s.14-.1.38-.31c1.6-1.37%207.76-7.03%208.46-13.3.8-7.2%203.21-15.21%209.64-18.41%205.82-2.9%2027.96-15.14%2032.1-17.43l.67-.37M97.61%2033.03l20.08-10.4M96%2040.24l20.9-10.41M62.08%2088.9H34.77l19.28%208h26.1M101.79%20132.91h-.03l-47.58.82h-.13V96.9M54.05%20133.73l-19.28-9.6V88.9M76.54%2080.89l34.54%2056.04h26.52'/%3e%3cg%20stroke='%230c419a'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'%3e%3cpath%20stroke='%230c419a'%20stroke-miterlimit='10'%20d='m54.06%20133.7.12.03%2052.49%208h36.55l4.01-4.8L111.9%2080.9c-2.41-.8-35.35%200-35.35%200l-3.22%204.8%206.75%2011.21%2021.69%2036.02%205.3%208.82'/%3e%3cpath%20d='M1-1h6.27'%20transform='rotate(81.49%20-7.48%2056.18)%20skewX(.05)'/%3e%3cpath%20d='M1-1h7.26'%20transform='rotate(48.66%20-44.44%2074.2)%20skewX(.16)'/%3e%3cpath%20d='M1-1h4.39'%20transform='matrix(.9%20.45%20-.45%20.9%2038.17%2066.32)'/%3e%3c/g%3e%3c/svg%3e",Me={code:"404",pageTitle:"Page non trouvée",message:"Cette page n’existe pas ou a été déplacée.",supportIdMessage:"Votre identifiant de support est"},i1={class:"mt-4"},s1=["alt"],c1="support_id",d1=v(e.defineComponent({__name:"NotFoundPage",props:{btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){const a=e.ref();return e.onMounted(()=>{var l;let t=new URLSearchParams(document.location.search).get(c1);t&&(a.value=(l=t.trim().match(/.{1,4}/g))==null?void 0:l.join(" "))}),(n,t)=>(e.openBlock(),e.createBlock(tt,{code:e.unref(Me).code,"page-title":e.unref(Me).pageTitle,message:e.unref(Me).message,"btn-text":n.btnText,"btn-href":n.btnHref,"btn-link":n.btnLink,"hide-btn":n.hideBtn},e.createSlots({illustration:e.withCtx(()=>[e.createElementVNode("img",{src:r1,alt:e.unref(Me).pageTitle},null,8,s1)]),_:2},[a.value?{name:"additional-content",fn:e.withCtx(()=>[e.createElementVNode("p",i1,[e.createTextVNode(e.toDisplayString(e.unref(Me).supportIdMessage)+" ",1),e.createElementVNode("b",null,e.toDisplayString(a.value),1),t[0]||(t[0]=e.createTextVNode(" . "))])]),key:"0"}:void 0]),1032,["code","page-title","message","btn-text","btn-href","btn-link","hide-btn"]))}}),[["__scopeId","data-v-8e9d618a"]]),m1={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},u1={key:0},p1={class:"d-flex align-center ga-2"},f1=v(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=Y(m1,n),l=G.useDisplay(),{notificationQueue:r,removeNotification:s}=je(),c=e.getCurrentInstance(),i=e.ref(),d=e.ref(!1),p=e.ref(!1),f=e.computed(()=>!!(c!=null&&c.slots.action)),g=e.computed(()=>l.name.value==="xs"),m=e.computed(()=>l.name.value==="sm"),u=e.computed(()=>{var _,R;return(((R=(_=i.value)==null?void 0:_.message)==null?void 0:R.length)??0)>50}),h={info:_e,success:Vt,warning:Aa,error:gt},b=e.computed(()=>i.value?h[i.value.type]:null),B=e.computed(()=>i.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[i.value.type]||"info"),y=e.computed(()=>i.value?{contentColor:i.value.type==="success"||i.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),k=e.computed(()=>g.value&&!u.value&&!f.value),w=_=>{i.value={..._}},$=async()=>{for(p.value=!0;r.value.length>0;){const _=r.value[0];w(_),d.value=!0;let R=_.timeout??-1;R<=0?await new Promise(N=>{const M=e.watch(d,S=>{S||(M(),N())})}):await new Promise(N=>{const M=setTimeout(()=>{L(),N()},R),S=e.watch(d,T=>{T||(clearTimeout(M),S(),N())})}),s(_.id)}p.value=!1},L=()=>{d.value=!1,i.value&&(s(i.value.id),i.value=void 0)},Z=_=>{w(_),d.value=!0},E=()=>{if(r.value.length>0){const _=r.value[0];w(_),d.value=!0}};return e.watch(()=>r.value.length,_=>{_>0&&!p.value&&$()}),a({openNotification:Z,handleClearNotification:L,showNextNotification:E,processNotificationQueue:$,currentNotification:i,isNotificationVisible:d,hasActionSlot:f,isMobileVersion:g,hasLongContent:u,color:B,icon:b,contentStyle:y,smallCloseBtn:k,isVertical:e.computed(()=>u.value&&g.value)}),(_,R)=>{var N;return i.value?(e.openBlock(),e.createElementBlock("div",u1,[e.createVNode(va.VSnackbar,e.mergeProps(e.unref(t).snackbar,{modelValue:d.value,"onUpdate:modelValue":R[0]||(R[0]=M=>d.value=M),role:"status",color:B.value,location:n.bottom?"bottom":"top",vertical:u.value,"multi-line":u.value,timeout:((N=i.value)==null?void 0:N.timeout)??-1,width:g.value||m.value?"auto":"960px",rounded:n.rounded,class:[{"long-text":u.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",u.value?"action-section-long-text":"action-section-short-text"]),style:{width:"100%"}},[e.renderSlot(_.$slots,"action",{},void 0,!0),e.createVNode(H.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":k.value}],"aria-label":"Fermer la notification"},e.unref(t).btn,{onClick:L}),{default:e.withCtx(()=>[k.value?(e.openBlock(),e.createBlock(D.VIcon,{key:1,icon:e.unref(re)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(_.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var M;return[e.createElementVNode("div",p1,[!g.value&&b.value?(e.openBlock(),e.createBlock(D.VIcon,e.mergeProps({key:0},e.unref(t).icon,{icon:b.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+y.value.contentColor)},e.toDisplayString((M=i.value)==null?void 0:M.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-f2e50ac9"]]),h1={btn:{variant:"text",icon:!0},icon:{color:te.grey.lighten20}},ma={hidePassword:"Masquer le mot de passe",showPassword:"Afficher le mot de passe"},g1=v(e.defineComponent({__name:"PasswordField",props:{modelValue:{default:null},outlined:{type:Boolean,default:!0},required:{type:Boolean,default:!1},isValidateOnBlur:{type:Boolean,default:!0},customRules:{default:[]},vuetifyOptions:{}},emits:["update:modelValue","submit"],setup(o,{expose:a,emit:n}){const t=o,l=Y(h1,t),r=n,s=Ya,c=Ka,i=e.ref(!1),d=e.computed(()=>i.value?ma.hidePassword:ma.showPassword),p=e.ref(t.modelValue);e.watch(()=>t.modelValue,L=>{p.value=L});const{generateRules:f}=ye(),g=[...t.required?[{type:"required",options:{message:"Le mot de passe est requis.",fieldIdentifier:"password"}}]:[]],m=e.computed(()=>{const L=t.required?g:[];return t.customRules?f([...L,...t.customRules]):f(L)}),u=e.ref([]),h=e.ref([]),b=e.ref(!1);e.watch(()=>p.value,()=>{y()},{immediate:!0}),e.watch(()=>t.isValidateOnBlur,()=>{y()},{immediate:!0}),e.watch(()=>t.required,()=>{y()},{immediate:!0});function B(L,Z){Z.forEach(E=>{const{error:_,success:R}=E(L);_&&u.value.push(_),R&&R!=="Le champ est valide."&&h.value.push(R)})}function y(L=!1){u.value=[],h.value=[],(L||!t.isValidateOnBlur)&&B(p.value,m.value)}function k(L){r("update:modelValue",L),y()}function w(L){L.key==="Enter"&&r("submit")}function $(){return b.value=!0,y(!0),u.value.length===0}return a({validateOnSubmit:$}),(L,Z)=>(e.openBlock(),e.createBlock(fe.VTextField,{modelValue:p.value,"onUpdate:modelValue":[Z[1]||(Z[1]=E=>p.value=E),k],class:e.normalizeClass([{"v-messages__message--success":h.value.length>0},"vd-password"]),"error-messages":u.value,messages:h.value,type:i.value?"text":"password",variant:L.outlined?"outlined":"underlined",color:"primary",title:"password","validate-on":"blur lazy",onBlur:Z[2]||(Z[2]=E=>y(!0)),onKeydown:w},{"append-inner":e.withCtx(()=>[e.createVNode(H.VBtn,e.mergeProps({"aria-label":d.value,class:"mx-auto"},e.unref(l).btn,{onClick:Z[0]||(Z[0]=E=>i.value=!i.value)}),{default:e.withCtx(()=>[e.createVNode(D.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.value?e.unref(s):e.unref(c)),1)]),_:1},16)]),_:1},16,["aria-label"])]),_:1},8,["modelValue","class","error-messages","messages","type","variant"]))}}),[["__scopeId","data-v-c7bb2d94"]]),b1={default:o=>`La longueur du champ doit être de ${o} caractères.`};function y1(o,a=!1,n=b1){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length===o||xt(n,"default",[o])):!0}const ua=y1,k1=[{code:"+1",country:"USA/Canada",abbreviation:"US/CA",phoneLength:10,mask:"###-###-####"},{code:"+7",country:"Russia/Kazakhstan",abbreviation:"RU/KZ",phoneLength:10,mask:"### ### ## ##"},{code:"+20",country:"Egypt",abbreviation:"EG",phoneLength:9,mask:"### ### ####"},{code:"+27",country:"South Africa",abbreviation:"ZA",phoneLength:9,mask:"### ### ####"},{code:"+30",country:"Greece",abbreviation:"GR",phoneLength:10,mask:"### ### ####"},{code:"+31",country:"Netherlands",abbreviation:"NL",phoneLength:9,mask:"## ### ####"},{code:"+32",country:"Belgium",abbreviation:"BE",phoneLength:9,mask:"### ### ###"},{code:"+33",country:"France",abbreviation:"FR",phoneLength:10,mask:"## ## ## ## ##"},{code:"+34",country:"Spain",abbreviation:"ES",phoneLength:9,mask:"### ### ###"},{code:"+36",country:"Hungary",abbreviation:"HU",phoneLength:9,mask:"## ### ####"},{code:"+39",country:"Italy",abbreviation:"IT",phoneLength:10,mask:"### ### ####"},{code:"+40",country:"Romania",abbreviation:"RO",phoneLength:9,mask:"### ### ###"},{code:"+41",country:"Switzerland",abbreviation:"CH",phoneLength:9,mask:"## ### ## ##"},{code:"+44",country:"United Kingdom",abbreviation:"GB",phoneLength:10,mask:"#### ### ####"},{code:"+45",country:"Denmark",abbreviation:"DK",phoneLength:8,mask:"## ## ## ##"},{code:"+46",country:"Sweden",abbreviation:"SE",phoneLength:9,mask:"## ### ## ##"},{code:"+47",country:"Norway",abbreviation:"NO",phoneLength:8,mask:"### ## ###"},{code:"+48",country:"Poland",abbreviation:"PL",phoneLength:9,mask:"### ### ###"},{code:"+49",country:"Germany",abbreviation:"DE",phoneLength:10,mask:"#### ### ####"},{code:"+51",country:"Peru",abbreviation:"PE",phoneLength:9,mask:"### ### ###"},{code:"+52",country:"Mexico",abbreviation:"MX",phoneLength:10,mask:"## #### ####"},{code:"+53",country:"Cuba",abbreviation:"CU",phoneLength:8,mask:"### ### ###"},{code:"+54",country:"Argentina",abbreviation:"AR",phoneLength:10,mask:"### ### ####"},{code:"+55",country:"Brazil",abbreviation:"BR",phoneLength:11,mask:"## ##### ####"},{code:"+56",country:"Chile",abbreviation:"CL",phoneLength:9,mask:"## #### ####"},{code:"+57",country:"Colombia",abbreviation:"CO",phoneLength:10,mask:"### ### ####"},{code:"+58",country:"Venezuela",abbreviation:"VE",phoneLength:10,mask:"### ### ####"},{code:"+60",country:"Malaysia",abbreviation:"MY",phoneLength:10,mask:"## ### ####"},{code:"+61",country:"Australia",abbreviation:"AU",phoneLength:9,mask:"### ### ###"},{code:"+62",country:"Indonesia",abbreviation:"ID",phoneLength:10,mask:"### ### ####"},{code:"+63",country:"Philippines",abbreviation:"PH",phoneLength:10,mask:"### ### ####"},{code:"+64",country:"New Zealand",abbreviation:"NZ",phoneLength:9,mask:"### ### ###"},{code:"+65",country:"Singapore",abbreviation:"SG",phoneLength:8,mask:"#### ####"},{code:"+66",country:"Thailand",abbreviation:"TH",phoneLength:9,mask:"### ### ###"},{code:"+81",country:"Japan",abbreviation:"JP",phoneLength:10,mask:"## #### ####"},{code:"+82",country:"South Korea",abbreviation:"KR",phoneLength:10,mask:"## #### ####"},{code:"+84",country:"Vietnam",abbreviation:"VN",phoneLength:9,mask:"## ### ####"},{code:"+86",country:"China",abbreviation:"CN",phoneLength:11,mask:"### #### ####"},{code:"+90",country:"Turkey",abbreviation:"TR",phoneLength:10,mask:"### ### ## ##"},{code:"+91",country:"India",abbreviation:"IN",phoneLength:10,mask:"##### #####"},{code:"+92",country:"Pakistan",abbreviation:"PK",phoneLength:10,mask:"### #### ####"},{code:"+93",country:"Afghanistan",abbreviation:"AF",phoneLength:9,mask:"## ### ####"},{code:"+94",country:"Sri Lanka",abbreviation:"LK",phoneLength:9,mask:"### ### ####"},{code:"+95",country:"Myanmar",abbreviation:"MM",phoneLength:9,mask:"## ### ###"},{code:"+98",country:"Iran",abbreviation:"IR",phoneLength:10,mask:"### ### ####"},{code:"+212",country:"Morocco",abbreviation:"MA",phoneLength:9,mask:"### #### ###"},{code:"+213",country:"Algeria",abbreviation:"DZ",phoneLength:9,mask:"### ### ####"},{code:"+216",country:"Tunisia",abbreviation:"TN",phoneLength:8,mask:"## ### ###"},{code:"+218",country:"Libya",abbreviation:"LY",phoneLength:9,mask:"### ### ###"},{code:"+262",country:"Réunion",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+508",country:"Saint Pierre and Miquelon",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+590",country:"Guadeloupe",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+594",country:"French Guiana",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+596",country:"Martinique",abbreviation:"FR",phoneLength:9,mask:"### ### ###"},{code:"+687",country:"New Caledonia",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+689",country:"French Polynesia",abbreviation:"FR",phoneLength:6,mask:"## ## ##"},{code:"+220",country:"Gambia",abbreviation:"GM",phoneLength:8,mask:"### ## ##"},{code:"+221",country:"Senegal",abbreviation:"SN",phoneLength:9,mask:"## ### ####"},{code:"+222",country:"Mauritania",abbreviation:"MR",phoneLength:8,mask:"## ## ## ##"},{code:"+223",country:"Mali",abbreviation:"ML",phoneLength:8,mask:"## ## ## ##"},{code:"+224",country:"Guinea",abbreviation:"GN",phoneLength:9,mask:"## ### ####"},{code:"+225",country:"Ivory Coast",abbreviation:"CI",phoneLength:8,mask:"## ## ## ##"},{code:"+226",country:"Burkina Faso",abbreviation:"BF",phoneLength:8,mask:"## ## ## ##"},{code:"+227",country:"Niger",abbreviation:"NE",phoneLength:8,mask:"## ## ## ##"},{code:"+228",country:"Togo",abbreviation:"TG",phoneLength:8,mask:"## ## ## ##"},{code:"+229",country:"Benin",abbreviation:"BJ",phoneLength:8,mask:"## ## ## ##"},{code:"+230",country:"Mauritius",abbreviation:"MU",phoneLength:7,mask:"### ####"},{code:"+231",country:"Liberia",abbreviation:"LR",phoneLength:7,mask:"## ### ###"},{code:"+232",country:"Sierra Leone",abbreviation:"SL",phoneLength:8,mask:"## #### ####"},{code:"+233",country:"Ghana",abbreviation:"GH",phoneLength:9,mask:"### ### ###"},{code:"+234",country:"Nigeria",abbreviation:"NG",phoneLength:8,mask:"### ### ###"},{code:"+235",country:"Chad",abbreviation:"TD",phoneLength:8,mask:"## ## ## ##"},{code:"+236",country:"Central African Republic",abbreviation:"CF",phoneLength:8,mask:"## ## ## ##"},{code:"+237",country:"Cameroon",abbreviation:"CM",phoneLength:9,mask:"## ### ####"},{code:"+238",country:"Cape Verde",abbreviation:"CV",phoneLength:7,mask:"### ####"},{code:"+239",country:"Sao Tome and Principe",abbreviation:"ST",phoneLength:7,mask:"### ####"},{code:"+240",country:"Equatorial Guinea",abbreviation:"GQ",phoneLength:9,mask:"### ### ####"},{code:"+241",country:"Gabon",abbreviation:"GA",phoneLength:9,mask:"## ### ####"},{code:"+242",country:"Republic of the Congo",abbreviation:"CG",phoneLength:9,mask:"## ### ####"},{code:"+243",country:"Democratic Republic of the Congo",abbreviation:"CD",phoneLength:9,mask:"### ### ####"},{code:"+244",country:"Angola",abbreviation:"AO",phoneLength:9,mask:"### ### ####"},{code:"+245",country:"Guinea-Bissau",abbreviation:"GW",phoneLength:7,mask:"### ####"},{code:"+248",country:"Seychelles",abbreviation:"SC",phoneLength:7,mask:"### ####"},{code:"+249",country:"Sudan",abbreviation:"SD",phoneLength:9,mask:"### ### ####"},{code:"+250",country:"Rwanda",abbreviation:"RW",phoneLength:9,mask:"### ### ###"},{code:"+251",country:"Ethiopia",abbreviation:"ET",phoneLength:9,mask:"### ### ###"},{code:"+252",country:"Somalia",abbreviation:"SO",phoneLength:8,mask:"### ### ##"},{code:"+253",country:"Djibouti",abbreviation:"DJ",phoneLength:8,mask:"## ## ## ##"},{code:"+254",country:"Kenya",abbreviation:"KE",phoneLength:9,mask:"### ### ###"},{code:"+255",country:"Tanzania",abbreviation:"TZ",phoneLength:9,mask:"### ### ###"},{code:"+256",country:"Uganda",abbreviation:"UG",phoneLength:9,mask:"### ### ###"},{code:"+257",country:"Burundi",abbreviation:"BI",phoneLength:8,mask:"## ## ## ##"},{code:"+258",country:"Mozambique",abbreviation:"MZ",phoneLength:9,mask:"## ### ####"},{code:"+260",country:"Zambia",abbreviation:"ZM",phoneLength:9,mask:"### ### ###"},{code:"+261",country:"Madagascar",abbreviation:"MG",phoneLength:9,mask:"## ## ###"},{code:"+263",country:"Zimbabwe",abbreviation:"ZW",phoneLength:9,mask:"### ### ###"},{code:"+264",country:"Namibia",abbreviation:"NA",phoneLength:9,mask:"### ### ###"},{code:"+265",country:"Malawi",abbreviation:"MW",phoneLength:9,mask:"### ### ###"},{code:"+266",country:"Lesotho",abbreviation:"LS",phoneLength:8,mask:"## ### ###"},{code:"+267",country:"Botswana",abbreviation:"BW",phoneLength:8,mask:"## ### ###"},{code:"+268",country:"Eswatini",abbreviation:"SZ",phoneLength:9,mask:"### ### ###"},{code:"+269",country:"Comoros",abbreviation:"KM",phoneLength:7,mask:"### ####"}],pa={label:"Numéro de téléphone",indicatifLabel:"Indicatif"},V1={class:"phone-field-container"},w1=v(e.defineComponent({__name:"PhoneField",props:{modelValue:{type:String,default:""},dialCodeModel:{type:[String,Object],default:""},required:{type:Boolean,default:!1},outlined:{type:Boolean,default:!0},outlinedIndicatif:{type:Boolean,default:!0},withCountryCode:{type:Boolean,default:!1},countryCodeRequired:{type:Boolean,default:!1},displayFormat:{type:String,default:"code"},customIndicatifs:{type:Array,default:()=>[]},useCustomIndicatifsOnly:{type:Boolean,default:!1},isValidatedOnBlur:{type:Boolean,default:!0}},emits:["update:modelValue","update:selectedDialCode","change"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(t.modelValue||""),s=e.ref(t.dialCodeModel||""),c=e.ref(10),i=e.ref("## ## ## ## ##"),d=e.ref(!1),p=e.ref(!1);function f(k){return k?k.replace(/\D/g,"").replace(/(.{2})/g,"$1 ").trim():""}const g=e.computed(()=>f(r.value));e.watch(()=>t.modelValue,k=>{r.value=(k||"").replace(/\s/g,"")},{immediate:!0}),e.watch(s,k=>{l("update:selectedDialCode",k),typeof k=="object"&&k!==null&&(c.value=k.phoneLength||10,i.value=k.mask||"#".repeat(k.phoneLength||10).replace(/(.{2})/g,"$1 ").trim())});function m(k){const $=k.target.value.replace(/\D/g,"");r.value=$,l("update:modelValue",$),l("change",$)}const u=e.computed(()=>t.useCustomIndicatifsOnly?t.customIndicatifs:[...k1,...t.customIndicatifs]),h=e.computed(()=>u.value.map(k=>({...k,displayText:b(k)})));function b(k){return{code:k.code,"code-abbreviation":`${k.code} (${k.abbreviation})`,"code-country":`${k.code} ${k.country}`,country:k.country,abbreviation:k.abbreviation}[t.displayFormat]||k.code}const B=e.computed(()=>{const k=[ua(c.value,!0)];return t.required&&k.unshift(Qe),k});function y(){if(!t.isValidatedOnBlur)return;d.value=!1;const k=!t.required||Qe(r.value)===!0,w=ua(c.value,!0)(r.value)===!0;d.value=!(k&&w),p.value=!0}return a({computedValue:g,dialCode:s,phoneMask:i,counter:c,hasError:d,phoneNumber:r,mergedDialCodes:u}),(k,w)=>(e.openBlock(),e.createElementBlock("div",V1,[t.withCountryCode?(e.openBlock(),e.createBlock(Je,{key:0,modelValue:s.value,"onUpdate:modelValue":w[0]||(w[0]=$=>s.value=$),items:h.value,label:e.unref(pa).indicatifLabel,outlined:o.outlinedIndicatif,required:t.countryCodeRequired,class:"custom-select","text-key":"displayText","value-key":"code"},null,8,["modelValue","items","label","outlined","required"])):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(ie,{modelValue:r.value,"onUpdate:modelValue":w[1]||(w[1]=$=>r.value=$),counter:c.value,"counter-value":$=>$.replace(/\s/g,"").length,label:e.unref(pa).label,required:t.required,rules:B.value,variant:o.outlined?"outlined":"underlined",class:"phone-field",color:"primary",onBlur:y,onInput:m},{"append-inner":e.withCtx(()=>[e.createVNode(D.VIcon,{class:"mr-2",color:"#222324"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ja)),1)]),_:1}),d.value?(e.openBlock(),e.createBlock(D.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["modelValue","counter","counter-value","label","required","rules","variant"])),[[e.unref(Ne),i.value]])]))}}),[["__scopeId","data-v-1abcba51"]]),C1={class:"tooltip-wrapper"},He=v(e.defineComponent({__name:"Tooltip",props:{nudgeLeft:{default:0},nudgeRight:{default:0}},setup(o,{expose:a}){const n=o,t=e.computed(()=>{const r=n.nudgeLeft?n.nudgeLeft:n.nudgeRight*-1;return{transform:`translateX(calc(-50% + ${Math.ceil(r)}px))`}}),l=e.ref(null);return a({element:l}),(r,s)=>(e.openBlock(),e.createElementBlock("div",C1,[e.createElementVNode("div",{ref_key:"tooltip",ref:l,class:"tooltip",style:e.normalizeStyle(t.value)},[e.renderSlot(r.$slots,"default",{},void 0,!0)],4)]))}}),[["__scopeId","data-v-fdf9eaf9"]]);function fa(o,a,n,t,l,r,s,c,i){const d=e.ref(!1);let p=0,f=null;e.onMounted(()=>{e.toValue(o).addEventListener("mousedown",g),e.toValue(o).addEventListener("touchstart",g)});function g(){d.value=!0,document.addEventListener("mousemove",u),document.addEventListener("mouseup",m),document.addEventListener("touchmove",u),document.addEventListener("touchend",m),document.addEventListener("touchcancel",m)}function m(){document.removeEventListener("mousemove",u),document.removeEventListener("mouseup",m),document.removeEventListener("touchmove",u),document.removeEventListener("touchend",m),document.removeEventListener("touchcancel",m),p=0,f=null,setTimeout(()=>{d.value=!1},100)}function u(h){h.stopPropagation();const b="touches"in h?h.touches[0].clientX:h.clientX;if(f===null){f=b;return}const B=e.toValue(r),y=Math.round(e.toValue(n)/B)*B,w=e.toValue(a).getBoundingClientRect().width,L=(b-f)*100/w,Z=B*100/(e.toValue(l)-e.toValue(t)),R=Math.round(L/Z)*B-p,N=y+R,M=B1(e.toValue(s),N,e.toValue(c)),S=M-y;S!==0&&(p+=S,i(M))}return{inProgress:d}}function B1(o,a,n){return Math.max(o,Math.min(a,n))}function N1(o,a,n,t){e.toValue(o)>e.toValue(a)&&([o,a]=[a,o]);const l={selectedMin:e.ref(Number(e.toValue(o))),selectedMax:e.ref(Number(e.toValue(a))),rangeMin:e.ref(Number(e.toValue(o))),rangeMax:e.ref(Number(e.toValue(a))),step:e.ref(Number(e.toValue(n)))};return e.watch(()=>e.toValue(o),r=>{r=Number(r),!(isNaN(r)||!isFinite(r))&&(r>l.rangeMax.value||(l.selectedMin.value<r&&(l.selectedMin.value=r),l.selectedMax.value<r&&(l.selectedMax.value=r),l.rangeMin.value=r))}),e.watch(()=>e.toValue(a),r=>{r=Number(r),!(isNaN(r)||!isFinite(r))&&(r<l.rangeMin.value||(l.selectedMin.value>r&&(l.selectedMin.value=r),l.selectedMax.value>r&&(l.selectedMax.value=r),l.rangeMax.value=r))}),e.watch(()=>e.toValue(n),r=>{r=Number(r),M1(r,l.rangeMin.value,l.rangeMax.value)&&(l.step.value=Math.abs(r))}),e.watch(()=>e.toValue(t),r=>{const s=r.map(Number);!ha(s[0])||!ha(s[1])||s[0]>s[1]||(s[0]<l.rangeMin.value?l.selectedMin.value=l.rangeMin.value:l.selectedMin.value=s[0],s[1]>l.rangeMax.value?l.selectedMax.value=l.rangeMax.value:l.selectedMax.value=s[1])},{immediate:!0}),l}function ha(o){return!isNaN(o)&&isFinite(o)}function M1(o,a,n){return!isNaN(o)&&isFinite(o)&&o!=0&&o<=n-a}function ga(o,a,n){return{thumbStyle:e.computed(()=>{const l=e.toValue(o),r=e.toValue(n)-e.toValue(a);return{left:`${r==0?100:(l-e.toValue(a))/r*100}%`}})}}function ba(o,a,n,t,l,r){e.onMounted(()=>{e.toValue(o).addEventListener("keydown",s)});function s(c){if(c.key==="ArrowLeft"||c.key==="ArrowDown"){c.preventDefault();const i=e.toValue(l),p=Re(e.toValue(a),i)-i;p>=e.toValue(n)&&r(p)}else if(c.key==="ArrowRight"||c.key==="ArrowUp"){c.preventDefault();const i=e.toValue(l),p=Re(e.toValue(a),i)+i;p<=e.toValue(t)&&r(p)}else if(c.key==="Home")c.preventDefault(),r(e.toValue(n));else if(c.key==="End")c.preventDefault(),r(e.toValue(t));else if(c.key==="PageDown"){c.preventDefault();const i=e.toValue(l),p=Re(e.toValue(a),i)-i*10;p>=e.toValue(n)?r(p):r(e.toValue(n))}else if(c.key==="PageUp"){c.preventDefault();const i=e.toValue(l),p=Re(e.toValue(a),i)+i*10;p<=e.toValue(t)?r(p):r(e.toValue(t))}}}function Re(o,a){return Math.round(o/a)*a}function L1(o,a,n,t,l){const r=e.ref(0),s=e.ref(0);async function c(){await e.nextTick();const i=n.value.element.getBoundingClientRect(),d=t.value.element.getBoundingClientRect(),p=i.right-d.left;if(p>=0){const g=i.width/2-12,m=d.width/2-12,u=Math.abs(g-m);let h=0,b=0;if(g>m?h=Math.min(p,u):b=Math.min(p,u),p>u){const B=p-u,y=Math.ceil(B/2);h+=y,b+=y}r.value=h+1,s.value=b+1}else r.value=0,s.value=0}return e.onMounted(()=>{o.value.element.style.transition="transform 0.1s",a.value.element.style.transition="transform 0.1s",e.watch(()=>[e.toValue(l.selectedMin),e.toValue(l.selectedMax)],c,{immediate:!0}),window.addEventListener("resize",c)}),e.onUnmounted(()=>{window.removeEventListener("resize",c)}),{nudgeMinThumb:r,nudgeMaxThumb:s}}function S1(o,a,n,t,l=!1){function r(s){if(e.toValue(l))return;const c=e.toValue(o).getBoundingClientRect(),i=e.toValue(a.rangeMin),d=e.toValue(a.rangeMax),f=(s.clientX-c.left)/c.width*100,g=$1(f,i,d,e.toValue(a.selectedMin),e.toValue(a.selectedMax),n,t),m=x1(f,i,d,e.toValue(a.step));g(m)}e.onMounted(()=>{e.toValue(o).addEventListener("click",r)})}function x1(o,a,n,t){const l=n-a,r=t*100/l;return Math.round(o/r)*t+a}function $1(o,a,n,t,l,r,s){const c=n-a,i=Math.abs((t-a)/c*100),d=Math.abs((l-a)/c*100),p=Math.abs(i-o),f=Math.abs(d-o);return p<f||p===f&&o<i?r:s}function ya(o){o.currentTarget.classList.add("animate-click")}function Fe(o){o.currentTarget.classList.remove("animate-click")}const ka={mounted:o=>{o.addEventListener("mousedown",ya),o.addEventListener("mouseup",Fe),o.addEventListener("mouseleave",Fe),o.addEventListener("touchstart",ya),o.addEventListener("touchend",Fe),o.addEventListener("touchcancel",Fe)}},v1={class:"wrapper"},_1=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],E1=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],I1=e.defineComponent({__name:"RangeSlider",props:{"thumb-color":{default:te.blue.base},"track-color":{default:te.blue.lighten80},"track-fill-color":{default:te.blue.lighten40},modelValue:{default:()=>[]},min:{default:0},max:{default:100},step:{default:1},minLabel:{default:"Minimum"},maxLabel:{default:"Maximum"}},emits:["update:modelValue"],setup(o,{emit:a}){e.useCssVars(w=>({"3564209b":n.thumbColor,"3e537b74":n.trackColor,"71c52d03":n.trackFillColor}));const n=o,t=N1(e.toRef(n,"min"),e.toRef(n,"max"),e.toRef(n,"step"),e.toRef(n,"modelValue")),l=a,{thumbStyle:r}=ga(t.selectedMin,t.rangeMin,t.rangeMax),{thumbStyle:s}=ga(t.selectedMax,t.rangeMin,t.rangeMax),c=e.computed(()=>{const w=t.rangeMin.value,$=t.rangeMax.value,L=t.selectedMin.value,Z=t.selectedMax.value,E=$-w,_=(L-w)*100/E,R=(Z-w)*100/E-_;return{left:`${_}%`,width:`${R}%`}}),i=e.ref(null),d=e.ref(null),p=e.ref(null),{inProgress:f}=fa(d,i,t.selectedMin,t.rangeMin,t.rangeMax,t.step,t.rangeMin,t.selectedMax,w=>t.selectedMin.value=w),{inProgress:g}=fa(p,i,t.selectedMax,t.rangeMin,t.rangeMax,t.step,t.selectedMin,t.rangeMax,w=>t.selectedMax.value=w),m=e.computed(()=>f.value||g.value);S1(i,t,w=>t.selectedMin.value=w,w=>t.selectedMax.value=w,m),ba(d,t.selectedMin,t.rangeMin,t.selectedMax,t.step,w=>t.selectedMin.value=w),ba(p,t.selectedMax,t.selectedMin,t.rangeMax,t.step,w=>t.selectedMax.value=w);const u=e.ref(null),h=e.ref(null),b=e.ref(null),B=e.ref(null),{nudgeMinThumb:y,nudgeMaxThumb:k}=L1(b,B,u,h,t);return e.watch(()=>[t.selectedMin.value,t.selectedMax.value],w=>{(w[0]!==Number(n.modelValue[0])||w[1]!==Number(n.modelValue[1]))&&l("update:modelValue",w)}),(w,$)=>(e.openBlock(),e.createElementBlock("div",v1,[e.createElementVNode("div",{ref_key:"track",ref:i,class:"track"},[e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMin",ref:d,class:"thumb-min",style:e.normalizeStyle(e.unref(r)),role:"slider","aria-valuenow":e.unref(t).selectedMin.value,tabindex:"0","aria-valuemin":e.unref(t).rangeMin.value,"aria-valuemax":e.unref(t).selectedMax.value,"aria-orientation":"horizontal","aria-label":w.minLabel,title:w.minLabel},[e.createVNode(He,{ref_key:"tooltipMin",ref:b,"nudge-right":e.unref(y)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},8,["nudge-right"]),$[0]||($[0]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,_1)),[[e.unref(ka)]]),e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMax",ref:p,role:"slider",class:"thumb-max",style:e.normalizeStyle(e.unref(s)),"aria-valuenow":e.unref(t).selectedMax.value,tabindex:"0","aria-valuemin":e.unref(t).selectedMin.value,"aria-valuemax":e.unref(t).rangeMax.value,"aria-orientation":"horizontal","aria-label":w.maxLabel,title:w.maxLabel},[e.createVNode(He,{ref_key:"tooltipMax",ref:B,"nudge-left":e.unref(k)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},8,["nudge-left"]),$[1]||($[1]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,E1)),[[e.unref(ka)]]),e.createElementVNode("div",{class:"fake-thumb thumb-min","aria-hidden":"true",style:e.normalizeStyle(e.unref(r))},[e.createVNode(He,{ref_key:"hiddenTooltipMin",ref:u},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"fake-thumb thumb-max","aria-hidden":"true",style:e.normalizeStyle(e.unref(s))},[e.createVNode(He,{ref_key:"hiddenTooltipMax",ref:h},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"filled-track",style:e.normalizeStyle(c.value)},null,4)],512)]))}}),T1=v(I1,[["__scopeId","data-v-efdf07f6"]]),A1={textField:{class:"ma-3",variant:"outlined"}},pe={minLabel:"Valeur min",maxLabel:"Valeur max"},D1={class:"vd-range-field"},Z1={class:"mt-10 mb-2 mx-3"},P1=e.defineComponent({__name:"RangeField",props:e.mergeModels({vuetifyOptions:{},min:{default:0},max:{default:100},step:{default:1}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=o,n=Y(A1,a),t=e.useModel(o,"modelValue"),l=e.computed(()=>t.value?t.value:[a.min,a.max]),r=e.ref(l.value[0]),s=e.ref(l.value[1]);e.watch(t,u=>{if(!Array.isArray(u)){t.value=[a.min,a.max];return}const h=d(u[0]),b=d(u[1]);r.value=h,s.value=b,(h!==u[0]||b!==u[1])&&(t.value=[h,b])},{immediate:!0,deep:!0});const c=G.useDisplay(),i={tokens:{N:{pattern:/-/,optional:!0},n:{pattern:/\d/,multiple:!0,optional:!0},".":{pattern:/\./,optional:!0},d:{pattern:/\d/,multiple:!0,optional:!0}},mask:"Nn.d"};function d(u){return u=Math.round(Number(u)),isNaN(u)?a.min:Math.min(Math.max(u,a.min),a.max)}function p(u){if(u==="")return;const h=Number(u);!isNaN(h)&&isFinite(h)&&h>=a.min&&h<=t.value[1]&&(t.value=[h,l.value[1]])}function f(u){if(u==="")return;const h=Number(u);!isNaN(h)&&isFinite(h)&&h<=a.max&&h>=l.value[0]&&(t.value=[l.value[0],h])}function g(u){u||(r.value=l.value[0])}function m(u){u||(s.value=l.value[1])}return(u,h)=>(e.openBlock(),e.createElementBlock("div",D1,[e.createElementVNode("div",Z1,[e.createVNode(T1,e.mergeProps({"model-value":l.value},e.unref(n).rangeSlider,{max:u.max,min:u.min,step:u.step,class:"mt-8 mb-2","onUpdate:modelValue":h[0]||(h[0]=b=>t.value=b)}),null,16,["model-value","max","min","step"])]),e.createElementVNode("div",{class:e.normalizeClass([{"flex-column":e.unref(c).xs.value},"d-flex flex-wrap max-width-none"])},[e.withDirectives(e.createVNode(fe.VTextField,e.mergeProps({modelValue:r.value,"onUpdate:modelValue":h[1]||(h[1]=b=>r.value=b)},e.unref(n).textField,{label:e.unref(pe).minLabel,"aria-label":e.unref(pe).minLabel,inputmode:"numeric",color:"primary",title:e.unref(pe).minLabel,"onUpdate:modelValue":p,"onUpdate:focused":g}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ne),i]]),e.withDirectives(e.createVNode(fe.VTextField,e.mergeProps({modelValue:s.value,"onUpdate:modelValue":h[2]||(h[2]=b=>s.value=b)},e.unref(n).textField,{label:e.unref(pe).maxLabel,"aria-label":e.unref(pe).maxLabel,inputmode:"numeric",color:"primary",title:e.unref(pe).maxLabel,"onUpdate:modelValue":f,"onUpdate:focused":m}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ne),i]])],2)]))}});var X=(o=>(o.EMOTION="emotion",o.NUMBER="number",o.STARS="stars",o))(X||{});const z1=Object.values(X);var ct=(o=>(o.INFO="info",o.SUCCESS="success",o.WARNING="warning",o.ERROR="error",o))(ct||{});Object.values(ct);function dt(o,a){const n=e.ref(o.modelValue),t=e.computed(()=>n.value!==-1);function l(r){o.readonly||(n.value=typeof r=="number"?r:parseInt(r,10),a("update:modelValue",n.value))}return{internalValue:n,hasAnswered:t,emitInputEvent:l}}const H1={defaultEmotionLabels:["Pas du tout","Moyen","Parfait !"]},R1={class:"vd-emotion-picker"},F1={class:"text-h6 mb-6"},O1=e.defineComponent({__name:"EmotionPicker",props:{label:{type:String,default:X.EMOTION},length:{type:Number,default:3,validator:o=>at("length",["2","3"],o.toString())},itemLabels:{type:Array,default:()=>H1.defaultEmotionLabels},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const{smAndDown:n}=G.useDisplay(),t=e.computed(()=>n.value),l=o,r=Ua,s=qa,c=Oa,i=e.computed(()=>t.value?"70px":"88px"),d=a,{hasAnswered:p,emitInputEvent:f}=dt(l,d),g=b=>b===l.modelValue-1,m=b=>b===0?r:b===1&&l.length===3?s:c,u=b=>{const B=["sad","neutral","happy"];return l.length===2?B.filter(k=>k!=="neutral")[b]:B[b]},h=b=>l.length===2?l.itemLabels.filter((y,k)=>k!==1)[b]:l.itemLabels[b];return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(B=>{B.setAttribute("aria-hidden","true")})}),(b,B)=>(e.openBlock(),e.createElementBlock("fieldset",R1,[e.createElementVNode("legend",F1,[e.renderSlot(b.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(l.label),1)],!0)]),e.createVNode(Ke.VRating,{"model-value":l.modelValue,length:l.length,readonly:l.readonly,class:"max-width-none mx-n1 mx-sm-n2","onUpdate:modelValue":B[0]||(B[0]=y=>d("update:modelValue",y))},{item:e.withCtx(({index:y})=>[e.createVNode(H.VBtn,{disabled:l.readonly||e.unref(p),title:h(y),"aria-pressed":g(y).toString(),class:e.normalizeClass([[u(y),{"v-btn--active":g(y)}],"rounded-lg px-1 px-sm-4 mx-1 mx-sm-2"]),"min-height":i.value,"min-width":i.value,variant:"text",onClick:k=>e.unref(f)(y+1)},{default:e.withCtx(()=>[e.createVNode(D.VIcon,{size:"40",color:"currentColor",class:"pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m(y)),1)]),_:2},1024),h(y)?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass([{"text-secondary":!g(y)},"text-subtitle-2 mt-1"])},e.toDisplayString(h(y)),3)):e.createCommentVNode("",!0)]),_:2},1032,["disabled","title","aria-pressed","class","min-height","min-width","onClick"])]),_:1},8,["model-value","length","readonly"])]))}}),q1=v(O1,[["__scopeId","data-v-d8875a0f"]]),Oe={ariaLabel:(o,a)=>`Note de ${o} sur ${a}.`},U1={class:"vd-number-picker"},Y1={class:"d-sr-only"},K1={class:"text-h6 mb-6"},W1={key:0,class:"d-inline-block"},G1={key:0,class:"d-flex justify-space-between mt-1"},j1=["aria-label","textContent"],X1=["aria-label","textContent"],Q1=["aria-label"],J1=e.defineComponent({__name:"NumberPicker",props:{label:{type:String,default:X.NUMBER},length:{type:Number,default:10},itemLabels:{type:Array,default:()=>[]},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,{smAndDown:t}=G.useDisplay(),l=e.computed(()=>t.value),r=a,{hasAnswered:s,emitInputEvent:c}=dt(n,r),i=e.computed(()=>[...Array(n.length)].map((p,f)=>({text:`${f+1}`,value:f+1}))),d=e.computed(()=>n.itemLabels.length===2);return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(f=>{f.setAttribute("aria-hidden","true")})}),(p,f)=>(e.openBlock(),e.createElementBlock("fieldset",U1,[e.createElementVNode("legend",Y1,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),l.value?(e.openBlock(),e.createBlock(Je,{key:0,"model-value":n.modelValue===-1?void 0:n.modelValue,label:n.label,disabled:n.readonly||e.unref(s),items:i.value,"onUpdate:modelValue":f[0]||(f[0]=g=>r("update:modelValue",g))},null,8,["model-value","label","disabled","items"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("legend",K1,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.unref(s)?(e.openBlock(),e.createElementBlock("p",{key:1,"aria-label":e.unref(Oe).ariaLabel(n.modelValue,n.length),class:"mb-0 d-flex align-center"},[e.createVNode(H.VBtn,{"aria-hidden":"true",disabled:!0,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"vd-btn-answer text-body-2 mr-1 pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.modelValue),1)]),_:1}),e.createTextVNode(" / "+e.toDisplayString(n.length),1)],8,Q1)):(e.openBlock(),e.createElementBlock("div",W1,[e.createVNode(Ke.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(s),class:"d-flex flex-wrap max-width-none","onUpdate:modelValue":f[1]||(f[1]=g=>r("update:modelValue",g))},{item:e.withCtx(({index:g})=>[e.createVNode(H.VBtn,{"aria-label":e.unref(Oe).ariaLabel(g+1,n.length),disabled:n.readonly,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"text-body-2 pa-0 mr-2",onClick:m=>e.unref(c)(g+1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g+1),1)]),_:2},1032,["aria-label","disabled","onClick"])]),_:1},8,["model-value","length","readonly"]),d.value?(e.openBlock(),e.createElementBlock("div",G1,[e.createElementVNode("span",{"aria-label":`${e.unref(Oe).ariaLabel(1,n.length)} ${n.itemLabels[0]}.`,class:"text-caption",textContent:e.toDisplayString(n.itemLabels[0])},null,8,j1),e.createElementVNode("span",{"aria-label":`${e.unref(Oe).ariaLabel(n.length,n.length)} ${n.itemLabels[1]}.`,class:"text-caption mr-2",textContent:e.toDisplayString(n.itemLabels[1])},null,8,X1)])):e.createCommentVNode("",!0)]))],64))]))}}),ei=v(J1,[["__scopeId","data-v-c3142f79"]]),ti={class:"vd-stars-picker"},ai={class:"text-h6 mb-6"},ni=["disabled","aria-pressed","aria-label","onMouseover","onFocus","onClick"],oi=e.defineComponent({__name:"StarsPicker",props:{label:{type:String,default:X.STARS},length:{type:Number,default:5},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{hasAnswered:l,emitInputEvent:r}=dt(n,t),s=tn,c=en,i=e.ref(-1);function d(f){return n.modelValue-1===f}function p(f){const g=i.value!==null&&i.value>=f,m=n.modelValue-1>=f;return g||m}return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(g=>{g.setAttribute("aria-hidden","true")})}),(f,g)=>(e.openBlock(),e.createElementBlock("fieldset",ti,[e.createElementVNode("legend",ai,[e.renderSlot(f.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.createVNode(Ke.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(l),class:"d-flex flex-wrap max-width-none mx-n3","onUpdate:modelValue":g[2]||(g[2]=m=>t("update:modelValue",m))},{item:e.withCtx(({index:m})=>[e.createElementVNode("button",{disabled:n.readonly,"aria-pressed":d(m),"aria-label":`${m+1} star`,onMouseover:u=>i.value=m,onFocus:u=>i.value=m,onMouseleave:g[0]||(g[0]=u=>i.value=-1),onBlur:g[1]||(g[1]=u=>i.value=-1),onClick:u=>e.unref(r)(m+1)},[e.createVNode(D.VIcon,{class:e.normalizeClass([p(m)?"text-primary":"text-blue-lighten","py-0 px-2"]),size:"36px"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(p(m)?e.unref(c):e.unref(s)),1)]),_:2},1032,["class"])],40,ni)]),_:1},8,["model-value","length","readonly"])]))}}),li=v(oi,[["__scopeId","data-v-14e84c18"]]),ri={close:"Fermer"},Va=v(e.defineComponent({__name:"SyAlert",props:e.mergeModels({type:{default:"info"},closable:{type:Boolean,default:!1},variant:{default:"tonal"}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(o,{expose:a}){const n=e.useModel(o,"modelValue"),t=o,l=e.computed(()=>({info:_e,success:Vt,warning:bt,error:gt})[t.type]);function r(){n.value=!1}return a({prependIcon:l,dismissAlert:r}),(s,c)=>(e.openBlock(),e.createBlock(_a.VAlert,{modelValue:n.value,"onUpdate:modelValue":c[0]||(c[0]=i=>n.value=i),type:s.type,closable:s.closable,variant:s.variant,class:e.normalizeClass(`alert alert--${s.type}`),color:s.type,border:s.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(D.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(l.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:2},[s.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(H.VBtn,{color:s.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:r},{default:e.withCtx(()=>[e.createVNode(D.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(ri).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),[["__scopeId","data-v-17fcce2d"]]),ii={thanks:"Merci pour votre réponse"},si={class:"vd-rating-picker"},ci=e.defineComponent({__name:"RatingPicker",props:{type:{type:String,required:!0,validator:o=>at("type",z1,o)},label:{type:String,default:null},readonly:{type:Boolean,default:!1},itemLabels:{type:Array,default:null},twoEmotions:{type:Boolean,default:!1},hideAlert:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,l=e.ref(ct),r=e.ref(-1),s=e.ref(!1),c=e.computed(()=>n.type===X.EMOTION?q1:n.type===X.NUMBER?ei:li),i=e.computed(()=>{if(n.type===X.EMOTION)return n.twoEmotions?2:3}),d=e.computed(()=>n.modelValue!==-1);function p(g){const m=n.type===X.STARS&&g<=3,u=n.type===X.NUMBER&&g<=7,h=n.type===X.EMOTION,b=n.twoEmotions?g<2:g<3;(m||u||h&&b)&&(s.value=!0)}function f(g){r.value=g,p(g),t("update:modelValue",g)}return(g,m)=>(e.openBlock(),e.createElementBlock("div",si,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(c.value),{"model-value":r.value,label:n.label,length:i.value,readonly:n.readonly||d.value,"item-labels":n.itemLabels||void 0,"onUpdate:modelValue":f},{label:e.withCtx(()=>[e.renderSlot(g.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)])]),_:3},8,["model-value","label","length","readonly","item-labels"])),d.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[n.hideAlert?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Va,{key:0,class:e.normalizeClass([{"mb-4":s.value},"mt-4"]),outlined:"",type:l.value.SUCCESS},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ii).thanks),1)]),_:1},8,["class","type"])),s.value?e.renderSlot(g.$slots,"default",{key:1}):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]))}}),di={btn:{height:"auto",minHeight:"40px",activeClass:"text-white",class:"py-2 d-flex align-items-center"},icon:{class:"text-white flex-shrink-0 ml-1"}},mi={class:"text-body-1"},ui=v(e.defineComponent({__name:"SelectBtnField",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},label:{default:void 0},multiple:{type:Boolean,default:!1},inline:{type:Boolean,default:!1},hint:{default:void 0},error:{type:Boolean,default:!1},errorMessages:{default:void 0},readonly:{type:Boolean,default:!1}},emits:["update:modelValue","update:error","update:error-messages"],setup(o,{emit:a}){const n=o,t=Y(di,n),l=a,r=e.ref(kt),s=e.ref(null),c=e.ref(G.useTheme().current.value.dark);e.watch(()=>n.modelValue,m=>{if(m===null&&n.multiple){s.value=[];return}s.value=m},{immediate:!0,deep:!0});const i=e.computed(()=>n.items.filter(m=>m.value!==null&&m.value!==void 0));function d(m){return n.multiple?Array.isArray(s.value)&&s.value.includes(m):s.value===m}function p(m){return{visibility:d(m.value)?"visible":"hidden"}}function f(m){if(n.multiple){const u=s.value,h=i.value.some(b=>b.unique&&u.includes(b.value));return m.unique||h?[m.value]:u.includes(m.value)?u.filter(b=>b!==m.value):[...u,m.value]}return s.value===m.value?null:m.value}function g(m){s.value=f(m),l("update:error",!1),l("update:error-messages",void 0),l("update:modelValue",s.value)}return(m,u)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([{"form-input":!m.inline},"select-btn-field"])},[e.createVNode(Ea.VBtnToggle,e.mergeProps(e.unref(t).btnToggle,{tag:"ul","model-value":s.value,multiple:m.multiple,"aria-label":m.label,class:[{"d-flex flex-column":!m.inline},"select-btn-field-toggle d-flex flex-wrap text-primary"]}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,(h,b)=>(e.openBlock(),e.createElementBlock("li",{key:`${b} + ${h.value}`,class:"select-list-item"},[e.createVNode(H.VBtn,e.mergeProps({ref_for:!0},e.unref(t).btn,{"aria-expanded":!0,value:h.value,disabled:m.readonly,variant:d(h.value)?"flat":"outlined",elevation:0,color:m.error?"error":"primary",class:{"text-error":m.error&&!d(h.value),"justify-start":!d(h.value),"justify-space-between":d(h.value)},label:d(h.value)?"Sélectionné":"",onClick:B=>g(h)}),{default:e.withCtx(()=>[e.createElementVNode("span",mi,e.toDisplayString(h.text),1),e.createVNode(D.VIcon,e.mergeProps({ref_for:!0},e.unref(t).icon,{style:p(h),role:"img","aria-hidden":!d(h.value),"aria-label":"Sélectionné"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:2},1040,["style","aria-hidden"])]),_:2},1040,["value","disabled","variant","color","class","label","onClick"])]))),128))]),_:1},16,["model-value","multiple","aria-label","class"]),m.errorMessages?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(m.errorMessages,(h,b)=>(e.openBlock(),e.createElementBlock("p",{key:b,class:e.normalizeClass([c.value?"theme--dark":"theme--light","v-messages text-error px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(h),3))),128)):m.hint?(e.openBlock(),e.createElementBlock("p",{key:1,class:e.normalizeClass([c.value?"theme--dark":"theme--light","v-messages px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(m.hint),3)):e.createCommentVNode("",!0)],2))}}),[["__scopeId","data-v-86fce8e6"]]),pi={label:"Aller au contenu principal"},fi={class:"vd-skip-link-container"},hi=["href"],gi=e.defineComponent({__name:"SkipLink",props:{label:{default:pi.label},target:{default:"#main"}},setup(o){const a=e.ref(null);return e.onMounted(()=>{var s,c;const n=e.getCurrentInstance();if(!n)return;const t=(s=n==null?void 0:n.appContext.app)==null?void 0:s.$nuxt;let l;t&&t.$router&&(l=t.$router);const r=(c=n.appContext.app.config.globalProperties)==null?void 0:c.$router;r&&(l=r),l&&l.afterEach&&l.afterEach((i,d,p)=>{p||i.path!==d.path&&e.nextTick(()=>{var f;(f=a.value)==null||f.focus()})})}),(n,t)=>(e.openBlock(),e.createElementBlock("div",fi,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:a,tabindex:"-1"},null,512),e.createElementVNode("a",{href:n.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(n.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)],8,hi)]))}}),bi=v(gi,[["__scopeId","data-v-aa139979"]]),yi={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},ki={backBtnText:"Retour"},Vi={class:"vd-sub-header-content d-flex justify-space-between"},wi={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},Ci={key:1,class:"text-h5 font-weight-bold"},Bi={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},Ni=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:ki.backBtnText},titleText:{default:void 0},subTitleText:{default:void 0},dataListGroupItems:{default:void 0},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item","back"],setup(o,{emit:a}){const n=o,t=Y(yi,n),{widthStyles:l}=Ee(n),r=e.ref(Ga),s=a;function c(i){s("click:list-item",i)}return(i,d)=>(e.openBlock(),e.createBlock(ge.VSheet,e.mergeProps(e.unref(t).sheet,{style:e.unref(l),class:"vd-sub-header white--text py-6 px-8"}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn",{},()=>[i.hideBackBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(he.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(Ia.VSkeletonLoader,{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(H.VBtn,e.mergeProps({key:1},e.unref(t).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:d[0]||(d[0]=p=>i.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn-icon",{},()=>[e.createVNode(D.VIcon,{class:"mr-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:1})],!0),e.createTextVNode(" "+e.toDisplayString(i.backBtnText),1)]),_:3},16))]),_:3}))],!0),e.createElementVNode("div",Vi,[e.createElementVNode("div",wi,[e.renderSlot(i.$slots,"title",{},()=>[e.createVNode(he.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(de,{key:0,width:"300",height:"2rem",color:"secondary"})):i.titleText?(e.openBlock(),e.createElementBlock("h2",Ci,e.toDisplayString(i.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(i.$slots,"sub-title",{},()=>[i.subTitleText?(e.openBlock(),e.createBlock(he.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(de,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",Bi,e.toDisplayString(i.subTitleText),1))]),_:1})):e.createCommentVNode("",!0)],!0),e.renderSlot(i.$slots,"additional-informations",{},void 0,!0)]),e.renderSlot(i.$slots,"right-content",{},()=>[i.dataListGroupItems?(e.openBlock(),e.createBlock(Dt,{key:0,items:i.dataListGroupItems,loading:i.loading,"render-html-value":i.renderHtmlValue,"item-width":"auto",class:"flex-nowrap flex-shrink-0","onClick:listItem":c},null,8,["items","loading","render-html-value"])):e.createCommentVNode("",!0)],!0)])]),_:3},16,["style"]))}}),Mi=v(Ni,[["__scopeId","data-v-69f0b82b"]]),Li={menu:{offsetY:!0,zIndex:4,minWidth:"198px",maxWidth:"auto",nudgeRight:0},btn:{variant:"text",height:"auto"},icon:{color:"secondary"},logoutListItem:{class:"text-primary",minWidth:"198px"},logoutIcon:{color:"primary",class:"mr-4"}},Si={class:"d-flex"},xi=v(e.defineComponent({__name:"UserMenuBtn",props:e.mergeModels({vuetifyOptions:{},menuItems:{default:()=>[]},additionalInformation:{default:"Information supplémentaire"},fullName:{default:"Prénom Nom"},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},hideUserIcon:{type:Boolean,default:!1}},{modelValue:{default:null},modelModifiers:{}}),emits:e.mergeModels(["logout"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),{smAndDown:t}=G.useDisplay(),l=Y(Li,a),r=e.computed(()=>a.isMobileView||t.value);return(s,c)=>(e.openBlock(),e.createBlock(Et,{modelValue:n.value,"onUpdate:modelValue":c[1]||(c[1]=i=>n.value=i),"hide-icon":s.hideUserIcon,"icon-only":r.value,"is-mobile-view":r.value,"menu-items":s.menuItems,options:e.unref(l),"primary-info":s.fullName,"secondary-info":s.additionalInformation,class:"user-menu-btn"},{"append-icon":e.withCtx(()=>[s.hideUserIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(D.VIcon,e.mergeProps({key:0,size:r.value?"x-large":"default",class:"vd-user-icon mr-0 pa-2"},e.unref(l).icon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ta)),1)]),_:1},16,["size"]))]),"footer-list-item":e.withCtx(()=>[s.hideLogoutBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(W.VListItem,e.mergeProps({key:0,class:"logout"},e.unref(l).logoutListItem,{onClick:c[0]||(c[0]=i=>s.$emit("logout"))}),{default:e.withCtx(()=>[e.createElementVNode("div",Si,[e.createVNode(D.VIcon,e.mergeProps({icon:e.unref(Xa),class:"mr-4"},e.unref(l).logoutIcon),null,16,["icon"]),e.createVNode(W.VListItemTitle,null,{default:e.withCtx(()=>c[2]||(c[2]=[e.createTextVNode(" Logout ")])),_:1})])]),_:1},16))]),_:1},8,["modelValue","hide-icon","icon-only","is-mobile-view","menu-items","options","primary-info","secondary-info"]))}}),[["__scopeId","data-v-eae274b3"]]);V.BackBtn=mn,V.BackToTopBtn=xn,V.CollapsibleList=An,V.ContextualMenu=Pn,V.CookieBanner=oo,V.CookiesInformation=vt,V.CookiesSelection=_t,V.CookiesTable=$t,V.CopyBtn=co,V.DataList=At,V.DataListGroup=Dt,V.DataListItem=Tt,V.DatePicker=sn,V.DialogBox=Io,V.DownloadBtn=Do,V.ErrorPage=tt,V.ExternalLinks=Wo,V.FileUpload=ol,V.FooterBar=Bl,V.FranceConnectBtn=$l,V.HeaderBar=Yt,V.HeaderBurgerMenu=jt,V.HeaderLoading=de,V.HeaderLogo=Ut,V.HeaderMenuBtn=lt,V.HeaderMenuItem=Xt,V.HeaderMenuSection=Qt,V.HeaderNavigationBar=kr,V.HeaderSubMenu=mr,V.HeaderToolbar=Sr,V.KEY_LENGTH=e1,V.LangBtn=Tr,V.Logo=nt,V.LogoBrandSection=Hr,V.MaintenancePage=Or,V.NUMBER_LENGTH=Jr,V.NirField=l1,V.NotFoundPage=d1,V.NotificationBar=f1,V.NotificationService=cn,V.PageContainer=Zt,V.PasswordField=g1,V.PhoneField=w1,V.RangeField=P1,V.RatingPicker=ci,V.SelectBtnField=ui,V.SkipLink=bi,V.SocialMediaLinks=Rt,V.SubHeader=Mi,V.SyAlert=Va,V.SyBtnSelect=Et,V.SyInputSelect=It,V.SySelect=Je,V.SyTextField=ie,V.UserMenuBtn=xi,V.checkNIR=sa,V.computeNIRKey=ca,V.isNIRKeyValid=da,V.useFieldValidation=ye,V.useNotificationService=je,V.useWidthable=Ee,Object.defineProperty(V,Symbol.toStringTag,{value:"Module"})});
|