@cnamts/synapse 0.0.4-alpha → 0.0.6-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 +1277 -499
- package/dist/design-system-v3.js +4193 -1573
- package/dist/design-system-v3.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +18 -17
- package/src/assets/settings.scss +3 -0
- package/src/assets/tokens.scss +16 -17
- package/src/components/BackBtn/Accessibilite.mdx +14 -0
- package/src/components/BackBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackBtn/AccessibiliteItems.ts +102 -0
- package/src/components/BackBtn/BackBtn.mdx +1 -1
- package/src/components/BackBtn/BackBtn.stories.ts +8 -8
- package/src/components/BackBtn/BackBtn.vue +0 -1
- package/src/components/BackBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/BackToTopBtn/Accessibilite.mdx +14 -0
- package/src/components/BackToTopBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackToTopBtn/AccessibiliteItems.ts +52 -0
- package/src/components/BackToTopBtn/BackToTopBtn.mdx +1 -1
- package/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CollapsibleList/Accessibilite.mdx +14 -0
- package/src/components/CollapsibleList/Accessibilite.stories.ts +170 -0
- package/src/components/CollapsibleList/AccessibiliteItems.ts +122 -0
- package/src/components/CollapsibleList/CollapsibleList.stories.ts +1 -1
- package/src/components/CollapsibleList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CookieBanner/Accessibilite.mdx +14 -0
- package/src/components/CookieBanner/Accessibilite.stories.ts +219 -0
- package/src/components/CookieBanner/AccessibiliteItems.ts +356 -0
- package/src/components/CookieBanner/CookieBanner.mdx +219 -0
- package/src/components/CookieBanner/CookieBanner.stories.ts +678 -0
- package/src/components/CookieBanner/CookieBanner.vue +225 -0
- package/src/components/CookieBanner/config.ts +38 -0
- package/src/components/CookieBanner/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CookieBanner/locales.ts +12 -0
- package/src/components/CookieBanner/tests/CookieBanner.spec.ts +129 -0
- package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +197 -0
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +123 -0
- package/src/components/CookiesSelection/CookiesInformation/locales.ts +21 -0
- package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +121 -0
- package/src/components/CookiesSelection/CookiesSelection.vue +127 -0
- package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +47 -0
- package/src/components/CookiesSelection/CookiesTable/headers.ts +14 -0
- package/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.ts +30 -0
- package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +3 -0
- package/src/components/CookiesSelection/locales.ts +10 -0
- package/src/components/CookiesSelection/tests/CookiesSelection.spec.ts +184 -0
- package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +192 -0
- package/src/components/CookiesSelection/types.ts +15 -0
- package/src/components/CopyBtn/Accessibilite.mdx +14 -0
- package/src/components/CopyBtn/Accessibilite.stories.ts +166 -0
- package/src/components/CopyBtn/AccessibiliteItems.ts +105 -0
- package/src/components/CopyBtn/CopyBtn.mdx +1 -1
- package/src/components/CopyBtn/CopyBtn.stories.ts +4 -4
- package/src/components/CopyBtn/CopyBtn.vue +0 -1
- package/src/components/CopyBtn/config.ts +2 -0
- package/src/components/CopyBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyBtnSelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyBtnSelect/Accessibilite.stories.ts +193 -0
- package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +139 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +45 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +662 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +254 -0
- package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +168 -0
- package/src/components/Customs/SyInputSelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyInputSelect/Accessibilite.stories.ts +166 -0
- package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +96 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +41 -0
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.stories.ts → SyInputSelect/SyInputSelect.stories.ts} +30 -83
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.vue → SyInputSelect/SyInputSelect.vue} +46 -6
- package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.ts +140 -0
- package/src/components/Customs/SySelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SySelect/Accessibilite.stories.ts +217 -0
- package/src/components/Customs/SySelect/AccessibiliteItems.ts +173 -0
- package/src/components/Customs/{CustomSelect/CustomSelect.mdx → SySelect/SySelect.mdx} +9 -8
- package/src/components/Customs/{CustomSelect/CustomSelect.stories.ts → SySelect/SySelect.stories.ts} +25 -79
- package/src/components/Customs/{CustomSelect/CustomSelect.vue → SySelect/SySelect.vue} +44 -13
- package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/{CustomInputSelect/tests/CustomInputSelect.spec.ts → SySelect/tests/SySelect.spec.ts} +48 -71
- package/src/components/Customs/SyTextField/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyTextField/Accessibilite.stories.ts +224 -0
- package/src/components/Customs/SyTextField/AccessibiliteItems.ts +198 -0
- package/src/components/Customs/SyTextField/SyTextField.mdx +44 -0
- package/src/components/Customs/{CustomTextField/CustomTextField.stories.ts → SyTextField/SyTextField.stories.ts} +145 -34
- package/src/components/Customs/{CustomTextField/CustomTextField.vue → SyTextField/SyTextField.vue} +27 -7
- package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/{CustomTextField/tests/CustomTextField.spec.ts → SyTextField/tests/SyTextField.spec.ts} +3 -3
- package/src/components/Customs/{CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap → SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap} +5 -6
- package/src/components/DataList/Accessibilite.mdx +14 -0
- package/src/components/DataList/Accessibilite.stories.ts +166 -0
- package/src/components/DataList/AccessibiliteItems.ts +47 -0
- package/src/components/DataList/DataList.mdx +1 -1
- package/src/components/DataList/DataList.stories.ts +10 -10
- package/src/components/DataList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DataListGroup/Accessibilite.mdx +14 -0
- package/src/components/DataListGroup/Accessibilite.stories.ts +225 -0
- package/src/components/DataListGroup/AccessibiliteItems.ts +79 -0
- package/src/components/DataListGroup/DataListGroup.mdx +1 -1
- package/src/components/DataListGroup/DataListGroup.stories.ts +7 -7
- package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DialogBox/Accessibilite.mdx +14 -0
- package/src/components/DialogBox/Accessibilite.stories.ts +189 -0
- package/src/components/DialogBox/AccessibiliteItems.ts +167 -0
- package/src/components/DialogBox/DialogBox.mdx +14 -0
- package/src/components/DialogBox/DialogBox.stories.ts +798 -0
- package/src/components/DialogBox/DialogBox.vue +181 -0
- package/src/components/DialogBox/config.ts +25 -0
- package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DialogBox/locales.ts +5 -0
- package/src/components/DialogBox/tests/DialogBox.spec.ts +329 -0
- package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +46 -0
- package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -31
- package/src/components/DownloadBtn/DownloadBtn.mdx +3 -3
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +6 -6
- package/src/components/ErrorPage/Accessibilite.mdx +14 -0
- package/src/components/ErrorPage/Accessibilite.stories.ts +189 -0
- package/src/components/ErrorPage/AccessibiliteItems.ts +205 -0
- package/src/components/ErrorPage/ErrorPage.mdx +21 -0
- package/src/components/ErrorPage/ErrorPage.stories.ts +133 -0
- package/src/components/ErrorPage/ErrorPage.vue +93 -0
- package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/ErrorPage/locales.ts +5 -0
- package/src/components/ErrorPage/tests/ErrorPage.spec.ts +40 -0
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +78 -0
- package/src/components/FooterBar/Accessibilite.mdx +14 -0
- package/src/components/FooterBar/Accessibilite.stories.ts +223 -0
- package/src/components/FooterBar/AccessibiliteItems.ts +257 -0
- package/src/components/FooterBar/FooterBar.mdx +2 -2
- package/src/components/FooterBar/FooterBar.stories.ts +556 -8
- package/src/components/FooterBar/FooterBar.vue +80 -73
- package/src/components/FooterBar/config.ts +2 -3
- package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FooterBar/tests/FooterBar.spec.ts +1 -1
- package/src/components/FooterBar/tests/FooterBarConfig.spec.ts +1 -1
- package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +24 -22
- package/src/components/FranceConnectBtn/Accessibilite.mdx +14 -0
- package/src/components/FranceConnectBtn/Accessibilite.stories.ts +194 -0
- package/src/components/FranceConnectBtn/AccessibiliteItems.ts +169 -0
- package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +3 -3
- package/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/Accessibilite.mdx +14 -0
- package/src/components/HeaderBar/Accessibilite.stories.ts +223 -0
- package/src/components/HeaderBar/AccessibiliteItems.ts +194 -0
- package/src/components/HeaderBar/HeaderBar.stories.ts +60 -2
- package/src/components/HeaderBar/HeaderBar.vue +1 -9
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +14 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +223 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +174 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +1 -1
- package/src/components/HeaderLoading/Accessibilite.mdx +14 -0
- package/src/components/HeaderLoading/Accessibilite.stories.ts +167 -0
- package/src/components/HeaderLoading/AccessibiliteItems.ts +29 -0
- package/src/components/HeaderLoading/HeaderLoading.mdx +1 -1
- package/src/components/HeaderLoading/HeaderLoading.stories.ts +1 -1
- package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +6 -6
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +35 -33
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +1 -1
- package/src/components/HeaderToolbar/Accessibilite.mdx +14 -0
- package/src/components/HeaderToolbar/Accessibilite.stories.ts +203 -0
- package/src/components/HeaderToolbar/AccessibiliteItems.ts +200 -0
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
- package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +2 -2
- package/src/components/HeaderToolbar/HeaderToolbar.vue +3 -2
- package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +36 -2
- package/src/components/LangBtn/Accessibilite.mdx +14 -0
- package/src/components/LangBtn/Accessibilite.stories.ts +168 -0
- package/src/components/LangBtn/AccessibiliteItems.ts +101 -0
- package/src/components/LangBtn/LangBtn.mdx +1 -1
- package/src/components/LangBtn/LangBtn.stories.ts +4 -4
- package/src/components/LangBtn/LangBtn.vue +3 -2
- package/src/components/LangBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/LangBtn/tests/LangBtn.spec.ts +1 -1
- package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +1 -1
- package/src/components/Logo/Accessibilite.mdx +14 -0
- package/src/components/Logo/Accessibilite.stories.ts +223 -0
- package/src/components/Logo/AccessibiliteItems.ts +155 -0
- package/src/components/Logo/Logo.mdx +1 -1
- package/src/components/Logo/Logo.stories.ts +8 -8
- package/src/components/Logo/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/LogoBrandSection/Accessibilite.mdx +14 -0
- package/src/components/LogoBrandSection/Accessibilite.stories.ts +223 -0
- package/src/components/LogoBrandSection/AccessibiliteItems.ts +194 -0
- package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/MaintenancePage/Accessibilite.mdx +14 -0
- package/src/components/MaintenancePage/Accessibilite.stories.ts +189 -0
- package/src/components/MaintenancePage/AccessibiliteItems.ts +173 -0
- package/src/components/MaintenancePage/MaintenancePage.mdx +11 -0
- package/src/components/MaintenancePage/MaintenancePage.stories.ts +41 -0
- package/src/components/MaintenancePage/MaintenancePage.vue +25 -0
- package/src/components/MaintenancePage/assets/maintenance.svg +1 -0
- package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/MaintenancePage/index.ts +3 -0
- package/src/components/MaintenancePage/locales.ts +5 -0
- package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +12 -0
- package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -0
- package/src/components/NirField/Accessibilite.mdx +14 -0
- package/src/components/NirField/Accessibilite.stories.ts +214 -0
- package/src/components/NirField/AccessibiliteItems.ts +243 -0
- package/src/components/NirField/NirField.mdx +216 -0
- package/src/components/NirField/NirField.stories.ts +359 -0
- package/src/components/NirField/NirField.vue +450 -0
- package/src/components/NirField/config.ts +16 -0
- package/src/components/NirField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NirField/locales.ts +12 -0
- package/src/components/NirField/nirValidation.ts +42 -0
- package/src/components/NirField/tests/NirField.spec.ts +119 -0
- package/src/components/NotFoundPage/Accessibilite.mdx +14 -0
- package/src/components/NotFoundPage/Accessibilite.stories.ts +190 -0
- package/src/components/NotFoundPage/AccessibiliteItems.ts +205 -0
- package/src/components/NotFoundPage/NotFoundPage.mdx +19 -0
- package/src/components/NotFoundPage/NotFoundPage.stories.ts +76 -0
- package/src/components/NotFoundPage/NotFoundPage.vue +52 -0
- package/src/components/NotFoundPage/assets/not-found.svg +1 -0
- package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NotFoundPage/locales.ts +6 -0
- package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +38 -0
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +76 -0
- package/src/components/NotificationBar/Accessibilite.mdx +14 -0
- package/src/components/NotificationBar/Accessibilite.stories.ts +166 -0
- package/src/components/NotificationBar/AccessibiliteItems.ts +144 -0
- package/src/components/NotificationBar/NotificationBar.mdx +1 -1
- package/src/components/NotificationBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NotificationBar/options.ts +1 -0
- package/src/components/PageContainer/Accessibilite.mdx +14 -0
- package/src/components/PageContainer/Accessibilite.stories.ts +166 -0
- package/src/components/PageContainer/AccessibiliteItems.ts +52 -0
- package/src/components/PageContainer/PageContainer.mdx +1 -1
- package/src/components/PageContainer/PageContainer.stories.ts +4 -4
- package/src/components/PageContainer/PageContainer.vue +16 -15
- package/src/components/PageContainer/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PageContainer/tests/PageContainer.spec.ts +1 -1
- package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +2 -2
- package/src/components/PhoneField/Accessibilite.mdx +14 -0
- package/src/components/PhoneField/Accessibilite.stories.ts +216 -0
- package/src/components/PhoneField/AccessibiliteItems.ts +238 -0
- package/src/components/PhoneField/PhoneField.mdx +1 -1
- package/src/components/PhoneField/PhoneField.stories.ts +2 -2
- package/src/components/PhoneField/PhoneField.vue +5 -6
- package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +3 -3
- package/src/components/SkipLink/Accessibilite.mdx +14 -0
- package/src/components/SkipLink/Accessibilite.stories.ts +167 -0
- package/src/components/SkipLink/AccessibiliteItems.ts +77 -0
- package/src/components/SkipLink/SkipLink.stories.ts +2 -2
- package/src/components/SkipLink/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SocialMediaLinks/Accessibilite.mdx +14 -0
- package/src/components/SocialMediaLinks/Accessibilite.stories.ts +170 -0
- package/src/components/SocialMediaLinks/AccessibiliteItems.ts +160 -0
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +18 -14
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +3 -2
- package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +1 -1
- package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
- package/src/components/SubHeader/Accessibilite.mdx +14 -0
- package/src/components/SubHeader/Accessibilite.stories.ts +166 -0
- package/src/components/SubHeader/AccessibiliteItems.ts +146 -0
- package/src/components/SubHeader/SubHeader.mdx +1 -1
- package/src/components/SubHeader/SubHeader.stories.ts +11 -11
- package/src/components/SubHeader/SubHeader.vue +1 -1
- package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SyAlert/Accessibilite.mdx +14 -0
- package/src/components/SyAlert/Accessibilite.stories.ts +166 -0
- package/src/components/SyAlert/AccessibiliteItems.ts +122 -0
- package/src/components/{Alert/Alert.mdx → SyAlert/SyAlert.mdx} +9 -9
- package/src/components/{Alert/Alert.stories.ts → SyAlert/SyAlert.stories.ts} +22 -22
- package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/{Alert/tests/Alert.spec.ts → SyAlert/tests/SyAlert.spec.ts} +5 -5
- package/src/components/{Alert/tests/__snapshots__/Alert.spec.ts.snap → SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap} +2 -2
- package/src/components/UserMenuBtn/Accessibilite.mdx +14 -0
- package/src/components/UserMenuBtn/Accessibilite.stories.ts +189 -0
- package/src/components/UserMenuBtn/AccessibiliteItems.ts +155 -0
- package/src/components/UserMenuBtn/UserMenuBtn.mdx +35 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +540 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +101 -0
- package/src/components/UserMenuBtn/config.ts +24 -0
- package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +125 -0
- package/src/components/index.ts +19 -4
- package/src/composables/index.ts +8 -0
- package/src/composables/rules/tests/useFieldValidation.spec.ts +84 -0
- package/src/composables/rules/useFieldValidation.ts +90 -0
- package/src/designTokens/index.ts +2 -0
- package/src/designTokens/tokens/cnam/cnamDarkTheme.ts +5 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +1 -0
- package/src/main.ts +3 -0
- package/src/stories/Fondamentaux/Arrondis.mdx +24 -0
- package/src/stories/{Guidelines → Fondamentaux}/Colors.mdx +1 -1
- package/src/stories/Fondamentaux/Conteneurs.mdx +7 -0
- package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +7 -0
- package/src/stories/Fondamentaux/Elevations.mdx +14 -0
- package/src/stories/Fondamentaux/Espacements.mdx +29 -0
- package/src/stories/{Guidelines → Fondamentaux}/Introduction.mdx +1 -1
- package/src/stories/Fondamentaux/StylesTypographiques.mdx +33 -0
- package/src/stories/Fondamentaux/Typographie.mdx +58 -0
- package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +120 -0
- package/src/stories/GuideDuDev/components.stories.ts +5 -5
- package/src/stories/GuideDuDev/moduleDeNotification.mdx +1 -1
- package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/{Fondamentaux → Guidelines}/EcoConception/Econception.stories.ts +2 -2
- package/src/stories/Guidelines/Vuetify/Vuetify.mdx +11 -0
- package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +138 -0
- package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +350 -0
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +0 -40
- package/src/components/Customs/CustomSelect/tests/CustomSelect.spec.ts +0 -236
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +0 -44
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +0 -3
- package/src/stories/Guidelines/Typo.mdx +0 -53
- /package/src/components/Customs/{CustomInputSelect → SyInputSelect}/config.ts +0 -0
- /package/src/components/Customs/{CustomTextField → SyTextField}/types.d.ts +0 -0
- /package/src/components/{Alert/Alert.vue → SyAlert/SyAlert.vue} +0 -0
- /package/src/components/{Alert → SyAlert}/locales.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/AccessibiliteItems.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/ExpertiseLevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/RGAALevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/EcoConception.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/ecoDesignItems.ts +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
(function(f,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/components"),require("vuetify"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/directives/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/components","vuetify","vuetify/lib/components/transitions/index.mjs","vuetify/lib/directives/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VSnackbar/index.mjs"],e):(f=typeof globalThis<"u"?globalThis:f||self,e(f.DesignSystemV3={},f.Vue,f.VAlert,f.VBtn,f.VIcon,f.components,f.Vuetify,f.transitions,f.vuetifyDirectives,f.VExpansionPanel,f.VInput,f.VDivider,f.VTextField,f.VChip,f.VSkeletonLoader,f.VFooter,f.VGrid,f.VSheet,f.VTabs,f.VList,f.VMenu,f.VSnackbar))})(this,function(f,e,Je,S,w,B,M,D,J,j,et,ee,tt,at,se,nt,ot,te,lt,ae,rt,it){"use strict";const ct={close:"Fermer"};var st="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",de="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",me="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",dt="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",pe="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",mt="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",he="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",pt="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",ht="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",ut="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",K="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",ft="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",bt="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",gt="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",ue="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",ne="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",kt="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",yt="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",vt="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",fe="M7,10L12,15L17,10H7Z",Vt="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",Nt="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 wt=e.defineComponent({__name:"Alert",props:e.mergeModels({type:{default:"info"},closable:{type:Boolean,default:!1},variant:{default:"tonal"}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(t,{expose:n}){const a=e.useModel(t,"modelValue"),l=t,o=e.computed(()=>({info:ne,success:he,warning:me,error:de})[l.type]);function r(){a.value=!1}return n({prependIcon:o,dismissAlert:r}),(s,c)=>(e.openBlock(),e.createBlock(Je.VAlert,{modelValue:a.value,"onUpdate:modelValue":c[0]||(c[0]=i=>a.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(w.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(o.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(S.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(w.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(K)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(ct).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),v=(t,n)=>{const a=t.__vccOpts||t;for(const[l,o]of n)a[l]=o;return a},Bt=v(wt,[["__scopeId","data-v-6f216856"]]),Ct={label:"Retour"},St=v(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(t){const n=t,a=e.ref(dt),l=e.computed(()=>n.dark??!1),o=e.computed(()=>l.value?"white":"primary"),r=e.computed(()=>l.value?"outlined":"text"),s=e.computed(()=>l.value?"dark":"light"),c=e.computed(()=>l.value?"white":"primary"),i=e.computed(()=>({"px-0":!l.value,"pr-1":!l.value&&!n.hideBackIcon}));return(d,p)=>(e.openBlock(),e.createBlock(e.unref(B.VBtn),e.mergeProps(d.$attrs,{variant:r.value,theme:s.value,color:c.value,outlined:l.value,class:["vd-back-btn","text-none",i.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[n.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(B.VIcon),{key:0,color:o.value,class:e.normalizeClass([{"ml-n1":l.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Ct).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-b9c7d584"]]);function be(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Mt=function(n){return Lt(n)&&!Zt(n)};function Lt(t){return!!t&&typeof t=="object"}function Zt(t){var n=Object.prototype.toString.call(t);return n==="[object RegExp]"||n==="[object Date]"||$t(t)}var _t=typeof Symbol=="function"&&Symbol.for,xt=_t?Symbol.for("react.element"):60103;function $t(t){return t.$$typeof===xt}function Et(t){return Array.isArray(t)?[]:{}}function z(t,n){return n.clone!==!1&&n.isMergeableObject(t)?I(Et(t),t,n):t}function Tt(t,n,a){return t.concat(n).map(function(l){return z(l,a)})}function It(t,n){if(!n.customMerge)return I;var a=n.customMerge(t);return typeof a=="function"?a:I}function At(t){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter(function(n){return Object.propertyIsEnumerable.call(t,n)}):[]}function ge(t){return Object.keys(t).concat(At(t))}function ke(t,n){try{return n in t}catch{return!1}}function Ht(t,n){return ke(t,n)&&!(Object.hasOwnProperty.call(t,n)&&Object.propertyIsEnumerable.call(t,n))}function Ot(t,n,a){var l={};return a.isMergeableObject(t)&&ge(t).forEach(function(o){l[o]=z(t[o],a)}),ge(n).forEach(function(o){Ht(t,o)||(ke(t,o)&&a.isMergeableObject(n[o])?l[o]=It(o,a)(t[o],n[o],a):l[o]=z(n[o],a))}),l}function I(t,n,a){a=a||{},a.arrayMerge=a.arrayMerge||Tt,a.isMergeableObject=a.isMergeableObject||Mt,a.cloneUnlessOtherwiseSpecified=z;var l=Array.isArray(n),o=Array.isArray(t),r=l===o;return r?l?a.arrayMerge(t,n,a):Ot(t,n,a):z(n,a)}I.all=function(n,a){if(!Array.isArray(n))throw new Error("first argument should be an array");return n.reduce(function(l,o){return I(l,o,a)},{})};var Dt=I,zt=Dt;const ye=be(zt);function L(t,n){return e.computed(()=>ye(t,e.toRaw(n.vuetifyOptions)??{}))}function P(t,n="px"){if(!(t==null||t===""))return isNaN(+t)?String(t):`${Number(t)}${n}`}const Pt={label:"Retour en haut"},Rt={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},Ft=v(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(t){const n=t,a=L(Rt,n),l=e.ref(!1),o=e.ref(!1),r=e.computed(()=>n.target?`#${n.target}`:null),s=e.computed(()=>{const u=P(n.nudgeRight)||"0";return{bottom:P(n.nudgeBottom)||"0",marginRight:u}}),c=e.computed(()=>o.value?"36px":void 0),i=e.computed(()=>({"d-sr-only":o.value})),d=M.useDisplay();e.watch(()=>d.smAndDown.value,u=>{o.value=u},{immediate:!0});const p=u=>{const g=u.currentTarget;g instanceof Window?l.value=window.scrollY>n.threshold:l.value=g.scrollTop>n.threshold},b=()=>{n.target?(document.getElementById(n.target)||window).scrollTo(0,0):window.scrollTo(0,0)},y=e.computed(()=>n.target?document.getElementById(n.target):window);return e.onMounted(()=>{var u;(u=y.value)==null||u.addEventListener("scroll",p)}),e.onUnmounted(()=>{var u;(u=y.value)==null||u.removeEventListener("scroll",p)}),(u,g)=>(e.openBlock(),e.createBlock(D.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({...e.unref(a).btn,...u.$attrs},{style:s.value,"min-width":c.value,class:"vd-back-to-top-btn",onClick:b}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(i.value)},[e.renderSlot(u.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Pt).label),1)],!0)],2),e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode(w.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(a).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pe)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,l.value],[J.Scroll,p,r.value]])]),_:3}))}}),[["__scopeId","data-v-c019b012"]]),jt={class:"pl-0"},Kt=["href","aria-label"],qt={key:1,class:"vd-collapse-list"},Ut={class:"text-subtitle-1 font-weight-bold mb-3"},Gt={class:"pl-0"},Wt=["href","aria-label"],Yt=v(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(t){const n=t,{smAndDown:a}=M.useDisplay(),l=e.computed(()=>a.value);return(o,r)=>l.value?(e.openBlock(),e.createBlock(j.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(j.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(j.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.listTitle),1)]),_:1}),e.createVNode(j.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",jt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.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,Kt)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",qt,[e.createElementVNode("h4",Ut,e.toDisplayString(o.listTitle),1),e.createElementVNode("ul",Gt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:e.normalizeClass({"mb-2":c<o.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,Wt)],2))),128))])]))}}),[["__scopeId","data-v-8456c2b9"]]);function Qt(t){const n=document.createElement("textarea");n.value=t,n.setAttribute("readonly",""),n.style.position="absolute",n.style.left="-9999px",document.body.appendChild(n);const a=document.getSelection();let l=!1;a&&(l=a.rangeCount>0?a.getRangeAt(0):!1),n.select(),navigator.clipboard?navigator.clipboard.writeText(t):document.execCommand("copy"),document.body.removeChild(n),a&&l&&(a.removeAllRanges(),a.addRange(l))}const Xt={tooltip:"Texte copié !"},Jt={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"}},e1=["id"],t1=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(t,{expose:n}){const a=t,l=L(Jt,a),o=e.ref(!1),r=ft;function s(){const c=typeof a.textToCopy=="function"?a.textToCopy():a.textToCopy;Qt(c),!a.hideTooltip&&setTimeout(()=>{o.value=!1},a.tooltipDuration)}return n({copy:s,tooltip:o}),(c,i)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns,class:"vd-copy-btn"},[e.createVNode(e.unref(B.VMenu),e.mergeProps(e.unref(l).menu,{id:a.ariaOwns,modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=d=>o.value=d),disabled:a.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(e.unref(B.VBtn),e.mergeProps({...d,...e.unref(l).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,"data-test-id":a.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createVNode(e.unref(B.VIcon),e.normalizeProps(e.guardReactiveProps(e.unref(l).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(Xt).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,e1))}}),a1={menu:{color:"primary"},option:{color:"primary"}},n1=["onKeydown"],o1=v(e.defineComponent({__name:"CustomInputSelect",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},textKey:{default:"text"},valueKey:{default:"value"},label:{default:"Sélectionnez une option"},outlined:{type:Boolean,default:!1},required:{type:Boolean,default:!1},errorMessages:{default:()=>[]}},emits:["update:modelValue"],setup(t,{emit:n}){const a=t,l=L(a1,a),o=n,r=e.ref(!1),s=e.ref(a.modelValue),c=()=>{r.value=!r.value},i=()=>{r.value=!1},d=e.ref(`custom-input-select-${Math.random().toString(36).substring(7)}`),p=k=>{s.value=k,o("update:modelValue",k),r.value=!1},b=k=>k[a.textKey],y=e.computed(()=>s.value&&typeof s.value=="object"?s.value[a.textKey]:a.label);e.watch(()=>a.modelValue,k=>{s.value=k}),e.watch(()=>a.errorMessages,k=>{h.value=k});const u=e.computed(()=>a.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),g=e.computed(()=>a.items.map(k=>typeof k=="string"?{[a.textKey]:k,[a.valueKey]:k}:k)),h=e.ref(a.errorMessages),m=()=>a.required&&!s.value?(h.value=["Le champ est requis."],!1):a.errorMessages.length>0?(h.value=a.errorMessages,!1):(h.value=[],!0);return(k,V)=>(e.openBlock(),e.createBlock(et.VInput,{id:d.value,modelValue:s.value,"onUpdate:modelValue":V[1]||(V[1]=C=>s.value=C),label:a.label,title:a.label,role:"menu","error-messages":h.value,onClick:m},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref:"menu",class:e.normalizeClass(["custom-select",u.value,"text-"+e.unref(l).menu.color]),role:"menu",tabindex:"0",onClick:c,onKeydown:[e.withKeys(e.withModifiers(c,["prevent"]),["enter"]),e.withKeys(e.withModifiers(c,["prevent"]),["space"])]},[e.createElementVNode("span",null,e.toDisplayString(y.value),1),e.createVNode(e.unref(B.VIcon),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pt)),1)]),_:1})],42,n1)),[[J.ClickOutside,i]]),r.value?(e.openBlock(),e.createBlock(e.unref(B.VList),e.mergeProps({key:0},e.unref(l).list,{class:"v-list",style:`max-width: ${k.$refs.menu?k.$refs.menu.getBoundingClientRect().width:0}px; ${a.outlined?"top: 36px;":"top: 30px;"}`,"aria-label":a.label,title:a.label,onKeydown:V[0]||(V[0]=e.withKeys(e.withModifiers(C=>r.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,(C,x)=>(e.openBlock(),e.createBlock(e.unref(B.VListItem),e.mergeProps({ref_for:!0},e.unref(l).option,{key:x,ref_for:!0,ref:"options-"+x,"base-color":e.unref(l).option.color,role:"option",class:"v-list-item","aria-selected":s.value===C,tabindex:x+1,onClick:re=>p(C)}),{default:e.withCtx(()=>[e.createVNode(e.unref(B.VListItemTitle),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b(C)),1)]),_:2},1024)]),_:2},1040,["base-color","aria-selected","tabindex","onClick"]))),128))]),_:1},16,["style","aria-label","title"])):e.createCommentVNode("",!0)]),_:1},8,["id","modelValue","label","title","error-messages"]))}}),[["__scopeId","data-v-4858239a"]]),l1=v(e.defineComponent({__name:"CustomSelect",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:"custom-select-menu"},outlined:{type:Boolean,default:!1},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"}},emits:["update:modelValue"],setup(t,{emit:n}){const a=t,l=n,o=e.ref(!1),r=e.ref(a.modelValue),s=e.ref(!1),c=()=>{o.value=!o.value},i=()=>{o.value=!1},d=e.ref(`custom-select-${Math.random().toString(36).substring(7)}`),p=h=>{r.value=h,l("update:modelValue",h),o.value=!1},b=h=>h[a.textKey],y=e.computed(()=>r.value&&typeof r.value=="object"?r.value[a.textKey]:a.label),u=e.computed(()=>a.items.map(h=>typeof h=="string"?{[a.textKey]:h,[a.valueKey]:h}:h)),g=e.computed(()=>(a.required||a.errorMessages.length>0)&&!r.value);return e.watch(()=>a.modelValue,h=>{r.value=h}),e.watch(o,h=>{s.value=!h&&!r.value&&g.value}),(h,m)=>{var k;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(e.unref(B.VTextField),{id:d.value,ref:"input",modelValue:y.value,"onUpdate:modelValue":m[0]||(m[0]=V=>y.value=V),title:"Sélectionnez une option",color:"primary",tabindex:"0",readonly:"",label:r.value?t.label:"","aria-label":r.value?t.label:"Sélectionnez une option","error-messages":t.errorMessages,variant:t.outlined?"outlined":"underlined",rules:g.value?["Le champ est requis."]:[],class:"custom-select",onClick:c,onKeydown:[e.withKeys(e.withModifiers(c,["prevent"]),["enter"]),e.withKeys(e.withModifiers(c,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[s.value?(e.openBlock(),e.createBlock(e.unref(B.VIcon),{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ue)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(e.unref(B.VIcon),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(fe)),1)]),_:1})]),_:1},8,["id","modelValue","label","aria-label","error-messages","variant","rules","onKeydown"])),[[J.ClickOutside,i]]),o.value?(e.openBlock(),e.createBlock(e.unref(B.VList),{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(k=h.$refs.input)==null?void 0:k.$el.offsetWidth}px`),onKeydown:m[1]||(m[1]=e.withKeys(e.withModifiers(V=>o.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(V,C)=>(e.openBlock(),e.createBlock(e.unref(B.VListItem),{key:C,ref_for:!0,ref:"options-"+C,role:"option",class:"v-list-item","aria-selected":r.value===V,tabindex:C+1,onClick:x=>p(V)},{default:e.withCtx(()=>[e.createVNode(e.unref(B.VListItemTitle),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b(V)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-8e832a54"]]),r1=e.defineComponent({__name:"CustomTextField",props:{prependIcon:{},appendIcon:{},prependInnerIcon:{},appendInnerIcon:{},variantStyle:{default:"outlined"},color:{},isClearable:{type:Boolean},showDivider:{type:Boolean},label:{}},setup(t,{expose:n}){const a=t,l={info:ne,success:mt,warning:me,error:ue,close:K},o=e.ref(""),r=e.computed(()=>a.appendInnerIcon==="error"||a.appendInnerIcon==="success"?a.appendInnerIcon:"black"),s={thickness:2,length:"25px",color:"primary",opacity:"1"};return n({appendInnerIconColor:r}),(c,i)=>(e.openBlock(),e.createBlock(tt.VTextField,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=d=>o.value=d),variant:a.variantStyle,color:a.color,clearable:a.isClearable,"clear-icon":l.close,"aria-label":a.label,label:a.label},{prepend:e.withCtx(()=>[e.renderSlot(c.$slots,"prepend",{},()=>[a.prependIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.prependIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),append:e.withCtx(()=>[e.renderSlot(c.$slots,"append",{},()=>[a.appendIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.appendIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),"prepend-inner":e.withCtx(()=>[e.renderSlot(c.$slots,"prepend-inner",{},()=>[a.prependInnerIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.prependInnerIcon]},null,8,["icon"])):e.createCommentVNode("",!0)]),a.showDivider?(e.openBlock(),e.createBlock(ee.VDivider,e.mergeProps({key:0},s,{class:"mt-4 pa-1",vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(c.$slots,"append-inner",{},()=>[a.appendInnerIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.appendInnerIcon],class:e.normalizeClass({"error-icon":a.appendInnerIcon==="error"}),color:r.value},null,8,["icon","class","color"])):e.createCommentVNode("",!0)])]),_:3},8,["modelValue","variant","color","clearable","clear-icon","aria-label","label"]))}}),i1={loadingLabel:"Le contenu est en cours de chargement."},c1={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"}},s1={placeholder:"…"},d1={class:"vd-data-list-item d-flex flex-wrap"},m1={class:"vd-data-list-item-content"},p1={class:"vd-data-list-item-value"},h1=["innerHTML"],u1=["textContent"],f1=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:s1.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(t,{emit:n}){const a=t,l=n,o=L(c1,a),r=M.useTheme(),s=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),c=e.computed(()=>typeof a.value=="number"?isNaN(a.value)?a.placeholder:a.value.toString():a.value||a.placeholder);return(i,d)=>(e.openBlock(),e.createElementBlock("li",d1,[e.renderSlot(i.$slots,"icon",{},()=>[i.icon?(e.openBlock(),e.createBlock(w.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(o).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",m1,[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",p1,[e.renderSlot(i.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:c.value})),()=>[i.chip?(e.openBlock(),e.createBlock(at.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(o).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,h1)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(c.value)},null,8,u1))],!0)])],2),e.renderSlot(i.$slots,"action",{},()=>[i.action?(e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({key:0},e.unref(o).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=p=>l("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),b1=v(f1,[["__scopeId","data-v-ac4bdcda"]]),A=v(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(t){const n=t;return(a,l)=>(e.openBlock(),e.createBlock(e.unref(se.VSkeletonLoader),e.mergeProps(a.$attrs,{width:n.width,height:n.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-7d435f46"]]),g1={"aria-hidden":"true",class:"vd-data-list-loading"},k1=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(t){const n=t,a=e.computed(()=>n.row?"150px":"90px");return(l,o)=>(e.openBlock(),e.createElementBlock("div",g1,[t.heading?(e.openBlock(),e.createBlock(A,{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(t.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==t.itemsNumber},"vd-data-list-loading-item"])},[t.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(A,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(A,{width:a.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function ve(t){return{widthStyles:e.computed(()=>({maxWidth:P(t.maxWidth),minWidth:P(t.minWidth),width:P(t.width??"100%")}))}}const y1=["aria-label"],v1={key:1},V1={key:0},Ve=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(t,{emit:n}){const a=t,{widthStyles:l}=ve(a),o=n,r=e.computed(()=>a.loading?i1.loadingLabel:void 0),s=i=>{var d;if(!(!i||!a.icons))return(d=a.icons)==null?void 0:d[i]},c=(i,d)=>[{"mb-2":i!==a.items.length-1},d];return(i,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(l)),class:"vd-data-list"},[e.createVNode(D.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[t.loading?(e.openBlock(),e.createBlock(k1,{key:0,"items-number":t.itemsNumberLoading,heading:t.headingLoading,"title-class":t.titleClass,row:t.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",v1,[e.renderSlot(i.$slots,"title",{},()=>[t.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(t.titleClass)},e.toDisplayString(t.listTitle),3)):e.createCommentVNode("",!0)],!0),t.items.length?(e.openBlock(),e.createElementBlock("ul",V1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(p,b)=>(e.openBlock(),e.createBlock(b1,{key:b,label:p.key,value:p.value,action:p.action,chip:p.chip,row:t.row,"render-html-value":t.renderHtmlValue,icon:s(p.icon),placeholder:t.placeholder,"vuetify-options":p.options,class:e.normalizeClass([c(b,p.class),"vd-data-list-item text-body-1"]),"onClick:action":y=>o("click:item-action",b)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,y1))}}),[["__scopeId","data-v-ec7b0098"]]),N1={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},Ne=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(t,{emit:n}){const a=t,l=n,o=(r,s)=>{l("click:list-item",{dataListIndex:r,itemIndex:s})};return(r,s)=>(e.openBlock(),e.createElementBlock("div",N1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(c,i)=>(e.openBlock(),e.createBlock(Ve,{key:`vd-data-list-${i}`,loading:a.loading,"render-html-value":a.renderHtmlValue,"list-title":c.title,items:c.items,"items-number-loading":c.itemsNumberLoading,"heading-loading":c.headingLoading,width:a.itemWidth,icons:a.icons,class:"ma-4","onClick:itemAction":d=>o(i,d)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}});function w1(t,n,a,l=!1){const o=l?["\uFEFF",t]:[t],r=window.navigator,s=new Blob(o,{type:a});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(s,n);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=n,document.body.appendChild(c),c.click(),document.body.removeChild(c),window.URL.revokeObjectURL(c.href)}}const B1={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},C1=v(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(t,{expose:n,emit:a}){const l=t,o=a,r=e.useAttrs(),s=e.ref("idle"),c=L(B1,l),i=e.computed(()=>ye(c.value.btn,r));function d(b){var h,m,k;const y=b["content-type"],u=b["content-disposition"];let g;return g=(k=(m=(h=u==null?void 0:u.split(";"))==null?void 0:h.find(V=>V.includes("filename=")))==null?void 0:m.split("="))==null?void 0:k[1],g||(g=l.fallbackFilename||"file"),{name:g,type:y}}async function p(){s.value="loading";try{const{data:b,headers:y}=await l.filePromise(),{name:u,type:g}=d(y);w1(b,u,g)}catch(b){s.value="error",o("error",b);return}s.value="success",o("success")}return n({getFileInfo:d,download:p,state:s}),(b,y)=>(e.openBlock(),e.createBlock(S.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(b.$slots,"icon",{},()=>[e.createVNode(w.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(c).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(bt)),1)]),_:1},16)],!0),e.renderSlot(b.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-ef3f6e33"]]);/*!
|
|
2
|
-
* vue-router v4.
|
|
1
|
+
(function(g,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VAlert/index.mjs"),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/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/VCard/index.mjs"),require("vuetify/lib/components/VDialog/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VSheet/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/VTable/index.mjs"),require("vuetify/lib/components/VRadio/index.mjs"),require("vuetify/lib/components/VRadioGroup/index.mjs"),require("vuetify/lib/components/VForm/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VAlert/index.mjs","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/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/VCard/index.mjs","vuetify/lib/components/VDialog/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VSheet/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/VTable/index.mjs","vuetify/lib/components/VRadio/index.mjs","vuetify/lib/components/VRadioGroup/index.mjs","vuetify/lib/components/VForm/index.mjs"],e):(g=typeof globalThis<"u"?globalThis:g||self,e(g.DesignSystemV3={},g.Vue,g.VAlert,g.VBtn,g.VIcon,g.Vuetify,null,g.transitions,g.vuetifyDirectives,g.VExpansionPanel,g.VMenu,g.VList,g.VInput,g.VTextField,g.VDivider,g.VChip,g.VSkeletonLoader,g.VCard,g.VDialog,g.VGrid,g.VSheet,g.VFooter,g.VTabs,g.VTooltip,g.VSnackbar,g.VSkeletonLoader,g.VTable,g.VRadio,g.VRadioGroup,g.VForm))})(this,function(g,e,oa,E,M,P,or,te,Ce,me,Le,H,Pe,Re,Se,ra,la,pe,ia,F,he,ca,Fe,qe,sa,da,ma,Ke,pa,ha){"use strict";const ua={close:"Fermer"};var fa="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",ga="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",Ue="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",Ge="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",ba="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",ka="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",We="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",ya="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",Ye="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",Va="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",wa="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",va="M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",G="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",Na="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",Ba="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",Ca="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z",ae="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",ue="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",La="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",Sa="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",Ma="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",xa="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Je="M7,10L12,15L17,10H7Z",_a="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",Ea="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",Ta="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 Ia=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(n,{expose:t}){const o=e.useModel(n,"modelValue"),a=n,l=e.computed(()=>({info:ue,success:je,warning:Ge,error:Ue})[a.type]);function r(){o.value=!1}return t({prependIcon:l,dismissAlert:r}),(c,s)=>(e.openBlock(),e.createBlock(oa.VAlert,{modelValue:o.value,"onUpdate:modelValue":s[0]||(s[0]=i=>o.value=i),type:c.type,closable:c.closable,variant:c.variant,class:e.normalizeClass(`alert alert--${c.type}`),color:c.type,border:c.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(M.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(l.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(c.$slots,"default",{},void 0,!0)]),_:2},[c.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(E.VBtn,{color:c.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:r},{default:e.withCtx(()=>[e.createVNode(M.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(G)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(ua).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),L=(n,t)=>{const o=n.__vccOpts||n;for(const[a,l]of t)o[a]=l;return o},Za=L(Ia,[["__scopeId","data-v-26444a7a"]]),Aa={label:"Retour"},$a=L(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(n){const t=n,o=e.ref(ba),a=e.computed(()=>t.dark??!1),l=e.computed(()=>a.value?"white":"primary"),r=e.computed(()=>a.value?"outlined":"text"),c=e.computed(()=>a.value?"dark":"light"),s=e.computed(()=>a.value?"white":"primary"),i=e.computed(()=>({"px-0":!a.value,"pr-1":!a.value&&!t.hideBackIcon}));return(d,m)=>(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps(d.$attrs,{variant:r.value,theme:c.value,color:s.value,outlined:a.value,class:["vd-back-btn","text-none",i.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[t.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(M.VIcon,{key:0,color:l.value,class:e.normalizeClass([{"ml-n1":a.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Aa).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-04e68a28"]]);function Qe(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var Da=function(t){return Ha(t)&&!Oa(t)};function Ha(n){return!!n&&typeof n=="object"}function Oa(n){var t=Object.prototype.toString.call(n);return t==="[object RegExp]"||t==="[object Date]"||Ra(n)}var za=typeof Symbol=="function"&&Symbol.for,Pa=za?Symbol.for("react.element"):60103;function Ra(n){return n.$$typeof===Pa}function Fa(n){return Array.isArray(n)?[]:{}}function ne(n,t){return t.clone!==!1&&t.isMergeableObject(n)?W(Fa(n),n,t):n}function qa(n,t,o){return n.concat(t).map(function(a){return ne(a,o)})}function Ka(n,t){if(!t.customMerge)return W;var o=t.customMerge(n);return typeof o=="function"?o:W}function Ua(n){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(n).filter(function(t){return Object.propertyIsEnumerable.call(n,t)}):[]}function Xe(n){return Object.keys(n).concat(Ua(n))}function et(n,t){try{return t in n}catch{return!1}}function Ga(n,t){return et(n,t)&&!(Object.hasOwnProperty.call(n,t)&&Object.propertyIsEnumerable.call(n,t))}function Wa(n,t,o){var a={};return o.isMergeableObject(n)&&Xe(n).forEach(function(l){a[l]=ne(n[l],o)}),Xe(t).forEach(function(l){Ga(n,l)||(et(n,l)&&o.isMergeableObject(t[l])?a[l]=Ka(l,o)(n[l],t[l],o):a[l]=ne(t[l],o))}),a}function W(n,t,o){o=o||{},o.arrayMerge=o.arrayMerge||qa,o.isMergeableObject=o.isMergeableObject||Da,o.cloneUnlessOtherwiseSpecified=ne;var a=Array.isArray(t),l=Array.isArray(n),r=a===l;return r?a?o.arrayMerge(n,t,o):Wa(n,t,o):ne(t,o)}W.all=function(t,o){if(!Array.isArray(t))throw new Error("first argument should be an array");return t.reduce(function(a,l){return W(a,l,o)},{})};var ja=W,Ya=ja;const tt=Qe(Ya);function O(n,t){return e.computed(()=>tt(n,e.toRaw(t.vuetifyOptions)??{}))}function oe(n,t="px"){if(!(n==null||n===""))return isNaN(+n)?String(n):`${Number(n)}${t}`}const Ja={label:"Retour en haut"},Qa={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},Xa=L(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(n){const t=n,o=O(Qa,t),a=e.ref(!1),l=e.ref(!1),r=e.computed(()=>t.target?`#${t.target}`:null),c=e.computed(()=>{const h=oe(t.nudgeRight)||"0";return{bottom:oe(t.nudgeBottom)||"0",marginRight:h}}),s=e.computed(()=>l.value?"36px":void 0),i=e.computed(()=>({"d-sr-only":l.value})),d=P.useDisplay();e.watch(()=>d.smAndDown.value,h=>{l.value=h},{immediate:!0});const m=h=>{const u=h.currentTarget;u instanceof Window?a.value=window.scrollY>t.threshold:a.value=u.scrollTop>t.threshold},p=()=>{t.target?(document.getElementById(t.target)||window).scrollTo(0,0):window.scrollTo(0,0)},y=e.computed(()=>t.target?document.getElementById(t.target):window);return e.onMounted(()=>{var h;(h=y.value)==null||h.addEventListener("scroll",m)}),e.onUnmounted(()=>{var h;(h=y.value)==null||h.removeEventListener("scroll",m)}),(h,u)=>(e.openBlock(),e.createBlock(te.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({...e.unref(o).btn,...h.$attrs},{style:c.value,"min-width":s.value,class:"vd-back-to-top-btn",onClick:p}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(i.value)},[e.renderSlot(h.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Ja).label),1)],!0)],2),e.renderSlot(h.$slots,"icon",{},()=>[e.createVNode(M.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(o).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(We)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,a.value],[Ce.Scroll,m,r.value]])]),_:3}))}}),[["__scopeId","data-v-c019b012"]]),en={class:"pl-0"},tn=["href","aria-label"],an={key:1,class:"vd-collapse-list"},nn={class:"text-subtitle-1 font-weight-bold mb-3"},on={class:"pl-0"},rn=["href","aria-label"],ln=L(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(n){const t=n,{smAndDown:o}=P.useDisplay(),a=e.computed(()=>o.value);return(l,r)=>a.value?(e.openBlock(),e.createBlock(me.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(me.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(me.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.listTitle),1)]),_:1}),e.createVNode(me.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",en,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(c,s)=>(e.openBlock(),e.createElementBlock("li",{key:s,class:"py-3"},[e.createElementVNode("a",{href:c.href,"aria-label":c.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(c.text),9,tn)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",an,[e.createElementVNode("h4",nn,e.toDisplayString(l.listTitle),1),e.createElementVNode("ul",on,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(c,s)=>(e.openBlock(),e.createElementBlock("li",{key:s,class:e.normalizeClass({"mb-2":s<l.items.length-1})},[e.createElementVNode("a",{href:c.href,"aria-label":c.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(c.text),9,rn)],2))),128))])]))}}),[["__scopeId","data-v-8456c2b9"]]);function cn(n){const t=document.createElement("textarea");t.value=n,t.setAttribute("readonly",""),t.style.position="absolute",t.style.left="-9999px",document.body.appendChild(t);const o=document.getSelection();let a=!1;o&&(a=o.rangeCount>0?o.getRangeAt(0):!1),t.select(),navigator.clipboard?navigator.clipboard.writeText(n):document.execCommand("copy"),document.body.removeChild(t),o&&a&&(o.removeAllRanges(),o.addRange(a))}const sn={tooltip:"Texte copié !"},dn={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"}},mn=["id"],pn=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(n,{expose:t}){const o=n,a=O(dn,o),l=e.ref(!1),r=Na;function c(){const s=typeof o.textToCopy=="function"?o.textToCopy():o.textToCopy;cn(s),!o.hideTooltip&&setTimeout(()=>{l.value=!1},o.tooltipDuration)}return t({copy:c,tooltip:l}),(s,i)=>(e.openBlock(),e.createElementBlock("div",{id:o.ariaOwns,class:"vd-copy-btn"},[e.createVNode(Le.VMenu,e.mergeProps(e.unref(a).menu,{id:o.ariaOwns,modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=d=>l.value=d),disabled:o.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(E.VBtn,e.mergeProps({...d,...e.unref(a).btn},{"aria-label":o.ariaLabel,"aria-owns":o.ariaOwns,"data-test-id":o.ariaOwns,onClick:c}),{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createVNode(M.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(a).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(s.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(sn).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,mn))}}),hn={class:"d-sr-only"},un={key:0,class:"d-flex flex-column align-end py-1 mr-1"},at=L(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(n,{expose:t,emit:o}){const a=n,l=o,r=e.useSlots(),{smAndDown:c}=P.useDisplay(),s=e.ref(!1),i=e.ref(a.modelValue),d=()=>{s.value=!s.value},m=e.ref(null),p=e.ref("");e.onMounted(()=>{m.value&&!w.value&&(p.value=`${m.value.getBoundingClientRect().width}px`)});const y=f=>{i.value=f,l("update:modelValue",f),s.value=!1},h=e.computed(()=>a.menuItems.map(f=>typeof f=="string"?{[a.textKey]:f,[a.valueKey]:f}:f)),u=e.computed(()=>a.hideIcon?"pa-1 pa-sm-2":w.value?"pa-0":"pa-1 pa-sm-3"),V=e.computed(()=>!!(r.default||!a.hideLogoutBtn)),w=e.computed(()=>a.isMobileView||c.value||a.iconOnly);e.watch(()=>a.modelValue,f=>{i.value=f});const C=e.ref(`custom-btn-select-${Math.random().toString(36).substring(7)}`);return t({isOpen:s,formattedItems:h,selectedItem:i}),(f,N)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"buttonRef",ref:m,class:"vd-user-menu-btn-ctn d-inline-block"},[e.createVNode(Le.VMenu,e.mergeProps({id:C.value,disabled:!V.value,location:"bottom end",transition:"fade-transition"},a.options.menu,{"z-index":"9999"}),{activator:e.withCtx(({props:b})=>[e.createVNode(E.VBtn,e.mergeProps({id:C.value,class:[u.value,"vd-user-menu-btn"],height:n.iconOnly?"auto":void 0,icon:n.iconOnly,size:n.iconOnly?"x-large":"default",width:n.iconOnly?"auto":void 0},{...b,...a.options.btn},{onClick:d}),{default:e.withCtx(()=>{var S,B,T,_;return[e.createElementVNode("div",{class:e.normalizeClass([["text-"+((S=a==null?void 0:a.options.btn)==null?void 0:S.color)],"d-flex align-center"])},[e.renderSlot(f.$slots,"prepend-icon",{},void 0,!0),e.createElementVNode("span",hn,e.toDisplayString(a.label),1),!w.value&&!n.iconOnly?(e.openBlock(),e.createElementBlock("span",un,[e.createElementVNode("span",{class:e.normalizeClass([`text-${(B=a==null?void 0:a.options.btn)==null?void 0:B.textColor}`,"font-weight-bold"])},e.toDisplayString(a.primaryInfo),3),e.createElementVNode("span",{class:e.normalizeClass([`text-${(T=a==null?void 0:a.options.btn)==null?void 0:T.textColor}`,"text-grey text-darken-2 font-weight-medium"])},e.toDisplayString(a.secondaryInfo),3)])):e.createCommentVNode("",!0),w.value&&!n.iconOnly?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass([`text-${(_=a==null?void 0:a.options.btn)==null?void 0:_.textColor}`,"font-weight-bold text-caption"])},e.toDisplayString(a.primaryInfo),3)):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"append-icon",{},void 0,!0)],2)]}),_:2},1040,["id","class","height","icon","size","width"])]),default:e.withCtx(()=>[e.renderSlot(f.$slots,"content",{},()=>[V.value?(e.openBlock(),e.createBlock(H.VList,e.normalizeProps(e.mergeProps({key:0},a.options.list)),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,(b,S)=>{var B;return e.openBlock(),e.createBlock(H.VListItem,e.mergeProps({key:S,class:`text-${(B=a==null?void 0:a.options.list)==null?void 0:B.textColor}`,ref_for:!0},a.options.list,{href:b.link,onClick:T=>y(b)}),{default:e.withCtx(()=>[e.createVNode(H.VListItemTitle,e.mergeProps({ref_for:!0},a.options.list),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b[a.textKey]),1)]),_:2},1040)]),_:2},1040,["class","href","onClick"])}),128)),e.renderSlot(f.$slots,"default",{},void 0,!0),e.renderSlot(f.$slots,"footer-list-item",{},void 0,!0)]),_:3},16)):e.createCommentVNode("",!0)],!0)]),_:3},16,["id","disabled"])],512))}}),[["__scopeId","data-v-ad6690a5"]]),fn={menu:{color:"primary"},option:{color:"primary"}},gn=["onKeydown"],nt=L(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(n,{expose:t,emit:o}){const a=n,l=O(fn,a),r=o,c=e.ref(!1),s=e.ref(a.modelValue),i=e.ref(!1),d=()=>{c.value=!c.value},m=()=>{c.value=!1},p=e.computed(()=>(a.required||a.errorMessages.length>0)&&!s.value),y=e.ref(`sy-input-select-${Math.random().toString(36).substring(7)}`),h=B=>{s.value=B,r("update:modelValue",B),c.value=!1},u=B=>B[a.textKey],V=e.computed(()=>s.value&&typeof s.value=="object"?s.value[a.textKey]:a.label);e.watch(()=>a.modelValue,B=>{s.value=B}),e.watch([c,i],([B,T])=>{B?i.value=T:i.value=!s.value&&p.value||a.errorMessages.length>0}),e.watch(()=>a.errorMessages,B=>{b.value=B,i.value=B.length>0});const w=e.ref(null),C=e.ref("");e.onMounted(()=>{e.watch([()=>c.value,()=>{var B;return(B=w.value)==null?void 0:B.getBoundingClientRect().width}],([B,T])=>{if(B&&T){const _=T+(a.isHeaderToolbar?32:0);C.value=`${_}`}})});const f=e.computed(()=>a.outlined&&i.value?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined error text-error":a.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),N=e.computed(()=>a.items.map(B=>typeof B=="string"?{[a.textKey]:B,[a.valueKey]:B}:B)),b=e.ref(a.errorMessages),S=()=>a.required&&!s.value?(b.value=["Le champ est requis."],!1):a.errorMessages.length>0?(b.value=a.errorMessages,!1):(b.value=[],!0);return t({isOpen:c,closeList:m,selectItem:h,selectedItem:s,getItemText:u}),(B,T)=>(e.openBlock(),e.createBlock(Pe.VInput,{id:y.value,modelValue:s.value,"onUpdate:modelValue":T[1]||(T[1]=_=>s.value=_),"error-messages":b.value,label:a.label,title:a.label,role:"menu",onClick:S},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"menu",ref:w,class:e.normalizeClass(["sy-input-select",f.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(M.VIcon,{key:0,class:"ml-2",color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ae)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(M.VIcon,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ye)),1)]),_:1})],42,gn)),[[Ce.ClickOutside,m]]),c.value?(e.openBlock(),e.createBlock(H.VList,e.mergeProps({key:0,"aria-label":a.label,"is-header-toolbar":a.isHeaderToolbar,style:`min-width:${C.value}px; ${a.outlined?"top: 36px;":"top: 30px;"}`,title:a.label,class:"v-list"},e.unref(l).list,{onKeydown:T[0]||(T[0]=e.withKeys(e.withModifiers(_=>c.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,(_,x)=>(e.openBlock(),e.createBlock(H.VListItem,e.mergeProps({key:x,ref_for:!0,ref:"options-"+x,"aria-selected":s.value===_,"base-color":e.unref(l).option.color,tabindex:x+1,class:"v-list-item",role:"option"},e.unref(l).option,{onClick:Z=>h(_)}),{default:e.withCtx(()=>[e.createVNode(H.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u(_)),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-12145ca1"]]),ot=L(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(n,{expose:t,emit:o}){const a=n,l=o,r=e.ref(!1),c=e.ref(a.modelValue),s=e.ref(!1),i=e.ref(0),d=e.ref(null),m=()=>{r.value=!r.value},p=()=>{r.value=!1},y=e.ref(`sy-select-${Math.random().toString(36).substring(7)}`),h=f=>{c.value=f,l("update:modelValue",f),r.value=!1},u=f=>f[a.textKey],V=e.computed(()=>c.value&&typeof c.value=="object"?c.value[a.textKey]:a.label),w=e.computed(()=>a.items.map(f=>typeof f=="string"?{[a.textKey]:f,[a.valueKey]:f}:f)),C=e.computed(()=>(a.required||a.errorMessages.length>0)&&!c.value);return e.watch(()=>a.modelValue,f=>{c.value=f}),e.watch([r,s],([f,N])=>{f?s.value=N:s.value=!c.value&&C.value||a.errorMessages.length>0}),e.watch(()=>a.errorMessages,f=>{s.value=f.length>0}),e.onMounted(()=>{d.value&&(i.value=d.value.offsetWidth+64)}),t({isOpen:r,closeList:p}),(f,N)=>{var b;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(Re.VTextField,{id:y.value,ref:"input",modelValue:V.value,"onUpdate:modelValue":N[0]||(N[0]=S=>V.value=S),title:"Sélectionnez une option",color:"primary",tabindex:"0",readonly:"",label:c.value?n.label:"","aria-label":c.value?n.label:"Sélectionnez une option","error-messages":n.errorMessages,variant:n.outlined?"outlined":"underlined",rules:C.value?["Le champ est requis."]:[],class:"sy-select",style:e.normalizeStyle(s.value?{minWidth:`${i.value+18}px`}:{minWidth:`${i.value}px`}),onClick:m,onKeydown:[e.withKeys(e.withModifiers(m,["prevent"]),["enter"]),e.withKeys(e.withModifiers(m,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[s.value?(e.openBlock(),e.createBlock(M.VIcon,{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ae)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(M.VIcon,{class:"arrow"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Je)),1)]),_:1})]),_:1},8,["id","modelValue","label","aria-label","error-messages","variant","rules","style","onKeydown"])),[[Ce.ClickOutside,p]]),e.createElementVNode("span",{ref_key:"labelRef",ref:d,class:"hidden-label"},e.toDisplayString(n.label),513),r.value?(e.openBlock(),e.createBlock(H.VList,{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(b=f.$refs.input)==null?void 0:b.$el.offsetWidth}px`),onKeydown:N[1]||(N[1]=e.withKeys(e.withModifiers(S=>r.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,(S,B)=>(e.openBlock(),e.createBlock(H.VListItem,{key:B,ref_for:!0,ref:"options-"+B,role:"option",class:"v-list-item","aria-selected":c.value===S,tabindex:B+1,onClick:T=>h(S)},{default:e.withCtx(()=>[e.createVNode(H.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u(S)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-ef2339e7"]]),fe=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(n,{expose:t}){const o=n,a={info:ue,success:ya,warning:Ge,error:ae,close:G},l=e.ref(""),r=e.ref(!1),c=e.computed(()=>o.required&&r.value&&!l.value||o.errorMessages&&o.errorMessages.length>0),s=()=>{r.value=!0},i=e.computed(()=>o.appendInnerIcon==="error"||o.appendInnerIcon==="success"?o.appendInnerIcon:"black"),d={thickness:2,length:"25px",color:"primary",opacity:"1"};return t({appendInnerIconColor:i}),(m,p)=>(e.openBlock(),e.createBlock(Re.VTextField,{modelValue:l.value,"onUpdate:modelValue":p[0]||(p[0]=y=>l.value=y),"aria-label":o.label,"clear-icon":a.close,clearable:o.isClearable,color:o.color,"error-messages":o.errorMessages,label:o.label,rules:o.required?["Le champ est requis."]:[],variant:o.variantStyle,onBlur:s},{prepend:e.withCtx(()=>[e.renderSlot(m.$slots,"prepend",{},()=>[o.prependIcon?(e.openBlock(),e.createBlock(M.VIcon,{key:0,icon:a[o.prependIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),append:e.withCtx(()=>[e.renderSlot(m.$slots,"append",{},()=>[o.appendIcon?(e.openBlock(),e.createBlock(M.VIcon,{key:0,icon:a[o.appendIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),"prepend-inner":e.withCtx(()=>[e.renderSlot(m.$slots,"prepend-inner",{},()=>[o.prependInnerIcon?(e.openBlock(),e.createBlock(M.VIcon,{key:0,icon:a[o.prependInnerIcon]},null,8,["icon"])):e.createCommentVNode("",!0)]),o.showDivider?(e.openBlock(),e.createBlock(Se.VDivider,e.mergeProps({key:0,class:"mt-4 pa-1"},d,{vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(m.$slots,"append-inner",{},()=>[c.value?(e.openBlock(),e.createBlock(M.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ae)),1)]),_:1})):e.createCommentVNode("",!0),o.appendInnerIcon?(e.openBlock(),e.createBlock(M.VIcon,{key:1,class:e.normalizeClass({"error-icon":o.appendInnerIcon==="error"}),color:i.value,icon:a[o.appendInnerIcon]},null,8,["class","color","icon"])):e.createCommentVNode("",!0)])]),details:e.withCtx(()=>[e.renderSlot(m.$slots,"details")]),_:3},8,["modelValue","aria-label","clear-icon","clearable","color","error-messages","label","rules","variant"]))}}),bn={loadingLabel:"Le contenu est en cours de chargement."},kn={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"}},yn={placeholder:"…"},Vn={class:"vd-data-list-item d-flex flex-wrap"},wn={class:"vd-data-list-item-content"},vn={class:"vd-data-list-item-value"},Nn=["innerHTML"],Bn=["textContent"],Cn=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:yn.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(n,{emit:t}){const o=n,a=t,l=O(kn,o),r=P.useTheme(),c=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),s=e.computed(()=>typeof o.value=="number"?isNaN(o.value)?o.placeholder:o.value.toString():o.value||o.placeholder);return(i,d)=>(e.openBlock(),e.createElementBlock("li",Vn,[e.renderSlot(i.$slots,"icon",{},()=>[i.icon?(e.openBlock(),e.createBlock(M.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",wn,[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:c.value})},e.toDisplayString(i.label),5),e.createElementVNode("div",vn,[e.renderSlot(i.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:s.value})),()=>[i.chip?(e.openBlock(),e.createBlock(ra.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(l).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.value),1)]),_:1},16)):i.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:s.value},null,8,Nn)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(s.value)},null,8,Bn))],!0)])],2),e.renderSlot(i.$slots,"action",{},()=>[i.action?(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({key:0},e.unref(l).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=m=>a("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),rt=L(Cn,[["__scopeId","data-v-ac4bdcda"]]),j=L(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(n){const t=n;return(o,a)=>(e.openBlock(),e.createBlock(e.unref(la.VSkeletonLoader),e.mergeProps(o.$attrs,{width:t.width,height:t.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-5a62b165"]]),Ln={"aria-hidden":"true",class:"vd-data-list-loading"},Sn=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(n){const t=n,o=e.computed(()=>t.row?"150px":"90px");return(a,l)=>(e.openBlock(),e.createElementBlock("div",Ln,[n.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(n.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==n.itemsNumber},"vd-data-list-loading-item"])},[n.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(j,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(j,{width:o.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function Me(n){return{widthStyles:e.computed(()=>({maxWidth:oe(n.maxWidth),minWidth:oe(n.minWidth),width:oe(n.width??"100%")}))}}const Mn=["aria-label"],xn={key:1},_n={key:0},lt=L(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(n,{emit:t}){const o=n,{widthStyles:a}=Me(o),l=t,r=e.computed(()=>o.loading?bn.loadingLabel:void 0),c=i=>{var d;if(!(!i||!o.icons))return(d=o.icons)==null?void 0:d[i]},s=(i,d)=>[{"mb-2":i!==o.items.length-1},d];return(i,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(a)),class:"vd-data-list"},[e.createVNode(te.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[n.loading?(e.openBlock(),e.createBlock(Sn,{key:0,"items-number":n.itemsNumberLoading,heading:n.headingLoading,"title-class":n.titleClass,row:n.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",xn,[e.renderSlot(i.$slots,"title",{},()=>[n.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(n.titleClass)},e.toDisplayString(n.listTitle),3)):e.createCommentVNode("",!0)],!0),n.items.length?(e.openBlock(),e.createElementBlock("ul",_n,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(m,p)=>(e.openBlock(),e.createBlock(rt,{key:p,label:m.key,value:m.value,action:m.action,chip:m.chip,row:n.row,"render-html-value":n.renderHtmlValue,icon:c(m.icon),placeholder:n.placeholder,"vuetify-options":m.options,class:e.normalizeClass([s(p,m.class),"vd-data-list-item text-body-1"]),"onClick:action":y=>l("click:item-action",p)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,Mn))}}),[["__scopeId","data-v-e625daaf"]]),En={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},it=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(n,{emit:t}){const o=n,a=t,l=(r,c)=>{a("click:list-item",{dataListIndex:r,itemIndex:c})};return(r,c)=>(e.openBlock(),e.createElementBlock("div",En,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(s,i)=>(e.openBlock(),e.createBlock(lt,{key:`vd-data-list-${i}`,loading:o.loading,"render-html-value":o.renderHtmlValue,"list-title":s.title,items:s.items,"items-number-loading":s.itemsNumberLoading,"heading-loading":s.headingLoading,width:o.itemWidth,icons:o.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))]))}}),Tn={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"}},xe={closeBtn:"Fermer la boîte de dialogue",cancelBtn:"Annuler",confirmBtn:"Valider"},In={key:0,class:"text-h6 font-weight-bold"},Zn=e.defineComponent({__name:"DialogBox",props:e.mergeModels({title:{default:void 0},width:{default:"800px"},cancelBtnText:{default:xe.cancelBtn},confirmBtnText:{default:xe.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(n){const t=n,o=e.useModel(n,"modelValue"),a=e.ref(void 0),l=O(Tn,t),r=G;async function c(){var p;const i=(p=a==null?void 0:a.value)==null?void 0:p.$el;return i?Array.from(i.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')).filter(y=>!y.hasAttribute("disabled")&&!y.getAttribute("aria-hidden")):[]}async function s(i){const d=await c(),m=d.findIndex(h=>h===i.target),p=m===-1,y=d.length-1;!i.shiftKey&&(p||m===y)?(i.preventDefault(),d[0].focus()):i.shiftKey&&(p||m===0)&&(i.preventDefault(),d[y].focus())}return(i,d)=>(e.openBlock(),e.createBlock(ia.VDialog,e.mergeProps({modelValue:o.value,"onUpdate:modelValue":d[3]||(d[3]=m=>o.value=m)},i.$attrs,{width:t.width,persistent:t.persistent,"retain-focus":!1,"aria-modal":"true",class:"vd-dialog-box",onKeydown:e.withKeys(s,["tab"])}),{default:e.withCtx(()=>[e.createVNode(pe.VCard,e.mergeProps(e.unref(l).card,{id:"dialogContent",ref_key:"dialogContent",ref:a,"aria-labelledby":t.title?t.title:"dialogContent"}),{default:e.withCtx(()=>[e.createVNode(pe.VCardTitle,e.normalizeProps(e.guardReactiveProps(e.unref(l).cardTitle)),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"title",{},()=>[i.title?(e.openBlock(),e.createElementBlock("h2",In,e.toDisplayString(t.title),1)):e.createCommentVNode("",!0)],!0),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).spacer)),null,16),t.persistent?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({key:0},e.unref(l).closeBtn,{"aria-label":e.unref(xe).closeBtn,onClick:d[0]||(d[0]=m=>o.value=!1)}),{default:e.withCtx(()=>[e.createVNode(M.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),t.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(E.VBtn,e.mergeProps(e.unref(l).cancelBtn,{onClick:d[1]||(d[1]=m=>i.$emit("cancel"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.cancelBtnText),1)]),_:1},16),e.createVNode(E.VBtn,e.mergeProps(e.unref(l).confirmBtn,{"data-test-id":"confirm-btn",onClick:d[2]||(d[2]=m=>i.$emit("confirm"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.confirmBtnText),1)]),_:1},16)],!0)],16))]),_:3},16,["aria-labelledby"])]),_:3},16,["modelValue","width","persistent"]))}}),An=L(Zn,[["__scopeId","data-v-111dda07"]]);function $n(n,t,o,a=!1){const l=a?["\uFEFF",n]:[n],r=window.navigator,c=new Blob(l,{type:o});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(c,t);else{const s=document.createElement("a");s.target="_blank",s.style.display="none",s.rel="noopener noreferrer",s.href=window.URL.createObjectURL(c),s.download=t,document.body.appendChild(s),s.click(),document.body.removeChild(s),window.URL.revokeObjectURL(s.href)}}const Dn={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},Hn=L(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(n,{expose:t,emit:o}){const a=n,l=o,r=e.useAttrs(),c=e.ref("idle"),s=O(Dn,a),i=e.computed(()=>tt(s.value.btn,r));function d(p){var V,w,C;const y=p["content-type"],h=p["content-disposition"];let u;return u=(C=(w=(V=h==null?void 0:h.split(";"))==null?void 0:V.find(f=>f.includes("filename=")))==null?void 0:w.split("="))==null?void 0:C[1],u||(u=a.fallbackFilename||"file"),{name:u,type:y}}async function m(){c.value="loading";try{const{data:p,headers:y}=await a.filePromise(),{name:h,type:u}=d(y);$n(p,h,u)}catch(p){c.value="error",l("error",p);return}c.value="success",l("success")}return t({getFileInfo:d,download:m,state:c}),(p,y)=>(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps(i.value,{loading:c.value==="loading",class:[i.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:m}),{default:e.withCtx(()=>[e.renderSlot(p.$slots,"icon",{},()=>[e.createVNode(M.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(s).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ba)),1)]),_:1},16)],!0),e.renderSlot(p.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-ef3f6e33"]]),On={errorCodeText:"Code d'erreur : ",supportIdMessage:"Votre identifiant de support :",btnText:"Retour à l’accueil"},ct=L(e.defineComponent({__name:"PageContainer",props:{size:{default:"xl"},spacing:{default:void 0},color:{default:"transparent"}},setup(n,{expose:t}){const o=n,a=P.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},c=e.computed(()=>o.spacing?`py-10 ${l[o.spacing]}`:`py-10 ${l[a.name.value]}`),s=e.computed(()=>r[a.name.value]??r[o.size??"xl"]);return t({spacingClass:c,containerSize:s}),(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([c.value,"vd-page-container d-flex justify-center"])},[e.createVNode(he.VSheet,{width:s.value,color:i.color},{default:e.withCtx(()=>[e.renderSlot(i.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-955c6758"]]),zn={key:0,class:"vd-code text-primary mb-4"},Pn={class:"d-sr-only"},Rn={key:1,class:"mb-2 font-weight-bold text-h5 mb-4"},Fn={key:2},qn=e.defineComponent({__name:"ErrorPage",props:{pageTitle:{default:void 0},message:{default:void 0},code:{default:void 0},codeErrorText:{default:On.errorCodeText},btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(n){return(t,o)=>(e.openBlock(),e.createBlock(ct,{size:"l"},{default:e.withCtx(()=>[e.createVNode(pe.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:t.$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(()=>[t.code?(e.openBlock(),e.createElementBlock("div",zn,[e.createElementVNode("span",Pn,e.toDisplayString(t.codeErrorText),1),e.createTextVNode(" "+e.toDisplayString(t.code),1)])):e.createCommentVNode("",!0),t.pageTitle?(e.openBlock(),e.createElementBlock("h2",Rn,e.toDisplayString(t.pageTitle),1)):e.createCommentVNode("",!0),t.message?(e.openBlock(),e.createElementBlock("p",Fn,e.toDisplayString(t.message),1)):e.createCommentVNode("",!0),e.renderSlot(t.$slots,"additional-content",{},void 0,!0),e.renderSlot(t.$slots,"action",{},()=>[!t.hideBtn&&t.btnText&&(t.btnLink||t.btnHref)?(e.openBlock(),e.createBlock(E.VBtn,{key:0,to:t.btnLink,href:t.btnHref,color:"primary",exact:"",class:"mt-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.btnText),1)]),_:1},8,["to","href"])):e.createCommentVNode("",!0)],!0)]),_:3},8,["sm"]),t.$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(t.$slots,"illustration",{},void 0,!0)]),_:3})):e.createCommentVNode("",!0)]),_:3})]),_:3})]),_:3}))}}),_e=L(qn,[["__scopeId","data-v-8c79b790"]]);/*!
|
|
2
|
+
* vue-router v4.5.0
|
|
3
3
|
* (c) 2024 Eduardo San Martin Morote
|
|
4
4
|
* @license MIT
|
|
5
|
-
*/const
|
|
6
|
-
- to:`,
|
|
7
|
-
- previous to:`,
|
|
8
|
-
- props:`,
|
|
9
|
-
- to:`,
|
|
10
|
-
- props:`,t)),o=p,l=!0),n.resolve(p)}),s=e.computed(()=>{const{matched:p}=r.value,{length:b}=p,y=p[b-1],u=a.matched;if(!y||!u.length)return-1;const g=u.findIndex(Be.bind(null,y));if(g>-1)return g;const h=$e(p[b-2]);return b>1&&$e(y)===h&&u[u.length-1].path!==h?u.findIndex(Be.bind(null,p[b-2])):g}),c=e.computed(()=>s.value>-1&&E1(a.params,r.value.params)),i=e.computed(()=>s.value>-1&&s.value===a.matched.length-1&&L1(a.params,r.value.params));function d(p={}){return $1(p)?n[e.unref(t.replace)?"replace":"push"](e.unref(t.to)).catch(M1):Promise.resolve()}if(process.env.NODE_ENV!=="production"&&S1){const p=e.getCurrentInstance();if(p){const b={route:r.value,isActive:c.value,isExactActive:i.value,error:null};p.__vrl_devtools=p.__vrl_devtools||[],p.__vrl_devtools.push(b),e.watchEffect(()=>{b.route=r.value,b.isActive=c.value,b.isExactActive=i.value,b.error=Le(e.unref(t.to))?null:'Invalid "to" value'},{flush:"post"})}}return{route:r,href:e.computed(()=>r.value.href),isActive:c,isExactActive:i,navigate:d}}const x1=e.defineComponent({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:xe,setup(t,{slots:n}){const a=e.reactive(xe(t)),{options:l}=e.inject(_e),o=e.computed(()=>({[Ee(t.activeClass,l.linkActiveClass,"router-link-active")]:a.isActive,[Ee(t.exactActiveClass,l.linkExactActiveClass,"router-link-exact-active")]:a.isExactActive}));return()=>{const r=n.default&&n.default(a);return t.custom?r:e.h("a",{"aria-current":a.isExactActive?t.ariaCurrentValue:null,href:a.href,onClick:a.navigate,class:o.value},r)}}});function $1(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&!(t.button!==void 0&&t.button!==0)){if(t.currentTarget&&t.currentTarget.getAttribute){const n=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(n))return}return t.preventDefault&&t.preventDefault(),!0}}function E1(t,n){for(const a in n){const l=n[a],o=t[a];if(typeof l=="string"){if(l!==o)return!1}else if(!q(o)||o.length!==l.length||l.some((r,s)=>r!==o[s]))return!1}return!0}function $e(t){return t?t.aliasOf?t.aliasOf.path:t.path:""}const Ee=(t,n,a)=>t??n??a,R={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},Z={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},T1=Object.values(Z),U={blue:{base:"#0c419a"},parma:{darken60:"#2f384d"},brick:{base:"#cd545b"}},Te={colors:{background:{accentContrasted:"#07275c"},text:{subduedOnDark:"rgba(255, 255, 255, 0.7)"}}},Ie={primary:U.blue.base,risquePro:U.brick.base},H=(t,n)=>({width:t,height:n}),I1={[Z.X_SMALL]:H("105","32"),[Z.SMALL]:H("131","40"),[Z.NORMAL]:H("211","64")},A1={[Z.X_SMALL]:H("32","32"),[Z.SMALL]:H("40","40"),[Z.NORMAL]:H("64","64")};function H1(t,n,a){const o=`(${n.join("|")})`,r=new RegExp(`^${o}$`);return a.match(r)!==null||console.error(`Invalid value for the \`${t}\` prop. Received: "${a}", expected one of: [${n.join(", ")}].`),!0}const O1=["fill","aria-label","width","height","viewBox","aria-hidden"],D1=["fill"],z1={key:1,"aria-hidden":"true",role:"presentation"},P1={key:2,role:"presentation","aria-hidden":"true"},R1={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:Z.NORMAL,validator:t=>H1("size",T1,t)}},setup(t){const n=t,a=e.ref(Ie.risquePro),l=e.computed(()=>n.dark?"#fff":Ie.primary),o=e.computed(()=>n.avatar?A1[n.size]:I1[n.size]),r=e.computed(()=>n.avatar?"0 0 64 64":n.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(n.ariaLabel)return n.ariaLabel;if(n.avatar)return"";const c=" : ",i=", ";let d=`${R.assuranceMaladie}`;return n.hideOrganism||(d=R.organism.concat(i,d)),n.hideSignature||(d=d.concat(c,R.signature)),n.risquePro&&(d=R.assuranceMaladie+": "+R.risquePro),d});return(c,i)=>(e.openBlock(),e.createElementBlock("svg",{fill:l.value,"aria-label":s.value,width:o.value.width,height:o.value.height,viewBox:r.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":t.avatar?"true":"false"},[t.risquePro&&!t.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:a.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,D1)):!t.hideSignature&&!t.avatar?(e.openBlock(),e.createElementBlock("g",z1,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),!t.hideOrganism&&!t.avatar?(e.openBlock(),e.createElementBlock("g",P1,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),t.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",R1,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,O1))}}),F1={followUs:"Suivez-nous :"},j1={class:"d-flex flex-column"},K1={class:"vd-social-media-links-label text-subtitle-2 text--primary"},q1={class:"d-flex max-width-none"},He=v(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(t){const n=t;return(a,l)=>(e.openBlock(),e.createElementBlock("div",j1,[e.createElementVNode("span",K1,e.toDisplayString(e.unref(F1).followUs),1),e.createElementVNode("ul",q1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.links,(o,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(S.VBtn,{id:`social-btn-${r}`,href:o.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${o.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode(w.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-82e1e286"]]),oe={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},U1=[{icon:yt,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:gt,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:Nt,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],G1={footer:{elevation:3,color:U.parma.darken60,height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:U.parma.darken60},goTopBtnIcon:{color:"white"}},_={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",[oe["non-compliant"]]:"non conforme",[oe["partially-compliant"]]:"partiellement conforme",[oe["fully-compliant"]]:"totalement conforme",a11yLabel:t=>`Accessibilité : ${t}`},W1={key:0,class:"d-flex align-start align-sm-center mb-6"},Y1={class:"d-flex flex-grow-1 flex-column flex-sm-row"},Q1={key:0,class:"text-primary my-3 mx-4"},X1=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:()=>U1},light:{type:Boolean,default:!1}},setup(t,{expose:n}){const a=t,l=pe,o=Z,r=e.useSlots(),s=M.useDisplay(),c=L(G1,a),i=g=>g.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const g=_[a.a11yCompliance];return typeof g=="string"?_.a11yLabel(g):""}),b=e.computed(()=>!!r.default),y=e.computed(()=>s.smAndDown.value?o.SMALL:o.NORMAL),u=e.computed(()=>a.linkItems?a.linkItems:[{text:_.sitemapLabel,to:a.sitemapRoute,hidden:a.hideSitemapLink},{text:_.cguLabel,to:a.cguRoute,hidden:a.hideCguLink},{text:_.cookiesLabel,to:a.cookiesRoute,hidden:a.hideCookiesLink},{text:_.legalNoticeLabel,to:a.legalNoticeRoute,hidden:a.hideLegalNoticeLink},{text:p.value,to:a.a11yStatementRoute,hidden:a.hideA11yLink}].filter(h=>!h.hidden));return n({logoSize:y}),(g,h)=>(e.openBlock(),e.createBlock(nt.VFooter,e.mergeProps({...e.unref(c).footer,...g.$attrs},{color:a.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":b.value,"v-theme--light":a.light,"v-theme--dark":!a.light}],role:"contentinfo"}),{default:e.withCtx(()=>[b.value?(e.openBlock(),e.createElementBlock("div",W1,[e.createElementVNode("div",Y1,[e.renderSlot(g.$slots,"logo",{},()=>[a.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ae,{key:0,size:y.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!a.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(ot.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(c).spacer)),null,16),a.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(He,{key:0,links:a.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(S.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(c).goTopBtn,{"aria-label":e.unref(_).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(w.VIcon,e.mergeProps(e.unref(c).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),b.value?(e.openBlock(),e.createBlock(ee.VDivider,e.mergeProps({key:1},e.unref(c).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"default",{},void 0,!0),b.value?(e.openBlock(),e.createBlock(ee.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":!b.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(g.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(m,k)=>(e.openBlock(),e.createElementBlock("li",{key:k},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i(m)),{href:m.href,to:m.to,"aria-label":m.ariaLabel,target:m.openInNewTab?"_blank":void 0,tabindex:k,rel:m.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),a.version?(e.openBlock(),e.createElementBlock("li",Q1,e.toDisplayString(e.unref(_).versionLabel)+" "+e.toDisplayString(a.version),1)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"append",{},void 0,!0)],2)]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-ccd9e76e"]]),Oe={btnLabel:t=>`S’identifier avec FranceConnect${t?"+":""}`,infoLinkLabel:t=>`Qu’est-ce que FranceConnect${t?"+":""} ?`},J1=["href","aria-label"],ea=["viewBox","width"],ta=["fill"],aa=["fill"],na=["href"],oa=v(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(t){const n=t,a=M.useTheme(),l=e.computed(()=>a.current.value.dark||n.dark),o=n.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>n.isConnectPlus?"245px":"209px"),s=e.computed(()=>o);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":l.value}])},[e.createElementVNode("a",{href:c.href,"aria-label":e.unref(Oe).btnLabel(c.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${n.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:l.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,ta),c.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:l.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,aa)):e.createCommentVNode("",!0)],8,ea))],8,J1),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(Oe).infoLinkLabel(c.isConnectPlus))+" ",1),e.createVNode(w.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Vt)),1)]),_:1})],8,na)],2))}}),[["__scopeId","data-v-7d3bb666"]]),la=990,De=Symbol("registerHeaderMenu");function G(){const t=e.ref(!1);let n;function a(l){t.value=l.matches}return e.onMounted(()=>{n=window.matchMedia(`(min-width: ${la}px)`),t.value=n.matches,n.addEventListener("change",a)}),e.onUnmounted(()=>{n.removeEventListener("change",a)}),{isDesktop:t}}const ra={ariaLabel:"Ouvrir le menu"},ia={},ca={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function sa(t,n){return e.openBlock(),e.createElementBlock("svg",ca,n[0]||(n[0]=[e.createStaticVNode('<g data-v-c84a4cb8><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-c84a4cb8></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-c84a4cb8></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-c84a4cb8></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-c84a4cb8></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-c84a4cb8></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-c84a4cb8></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-c84a4cb8></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-c84a4cb8></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-c84a4cb8></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-c84a4cb8></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-c84a4cb8></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-c84a4cb8></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-c84a4cb8></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-c84a4cb8></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-c84a4cb8></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-c84a4cb8></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-c84a4cb8></path>',8)]))}const da=v(ia,[["render",sa],["__scopeId","data-v-c84a4cb8"]]),ma={},pa={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function ha(t,n){return e.openBlock(),e.createElementBlock("svg",pa,n[0]||(n[0]=[e.createStaticVNode('<g data-v-3e4cb924><path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" data-v-3e4cb924></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" data-v-3e4cb924></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" data-v-3e4cb924></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" data-v-3e4cb924></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" data-v-3e4cb924></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" data-v-3e4cb924></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" data-v-3e4cb924></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" data-v-3e4cb924></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" data-v-3e4cb924></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" data-v-3e4cb924></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" data-v-3e4cb924></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" data-v-3e4cb924></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" data-v-3e4cb924></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" data-v-3e4cb924></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" data-v-3e4cb924></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" data-v-3e4cb924></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" data-v-3e4cb924></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" data-v-3e4cb924></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" data-v-3e4cb924></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" data-v-3e4cb924></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" data-v-3e4cb924></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" data-v-3e4cb924></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" data-v-3e4cb924></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-3e4cb924></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" data-v-3e4cb924></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" data-v-3e4cb924></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" data-v-3e4cb924></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" data-v-3e4cb924></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" data-v-3e4cb924></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-3e4cb924></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" data-v-3e4cb924></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-3e4cb924></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-3e4cb924></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-3e4cb924></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-3e4cb924></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-3e4cb924></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-3e4cb924></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-3e4cb924></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-3e4cb924></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-3e4cb924></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-3e4cb924></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-3e4cb924></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-3e4cb924></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-3e4cb924></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-3e4cb924></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-3e4cb924></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-3e4cb924></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-3e4cb924></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-3e4cb924></path>',10)]))}const ua=v(ma,[["render",ha],["__scopeId","data-v-3e4cb924"]]),fa={class:"logo"},ba=["fill"],ga={if:"serviceTitle"},ka={class:"service-title"},ya={key:0,class:"service-subtitle"},va=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:ra.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(t){e.useCssVars(o=>({"4db05cc3":e.unref(a)}));const a=M.useTheme().current.value.colors.primary,{isDesktop:l}=G();return(o,r)=>(e.openBlock(),e.createElementBlock("div",fa,[e.unref(l)?(e.openBlock(),e.createBlock(ua,{key:0,"aria-label":o.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(da,{key:1,"aria-label":o.ariaLabel},null,8,["aria-label"])),e.renderSlot(o.$slots,"brand-content",{},()=>[o.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(a),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},r[0]||(r[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,ba)):e.createCommentVNode("",!0),e.createElementVNode("div",ga,[e.createElementVNode("div",ka,e.toDisplayString(o.serviceTitle),1),o.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",ya,e.toDisplayString(o.serviceSubtitle),1)):e.createCommentVNode("",!0)])],!0)]))}}),ze=v(va,[["__scopeId","data-v-6dde3a6b"]]),Va={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function Na(){const t=e.ref(null),n=e.ref("");function a(){const l=document.documentElement.scrollTop;if(t.value===null)return t.value=l,"";n.value=l>=t.value?"bottom":"top",t.value=l}return e.onMounted(()=>{window.addEventListener("scroll",a)}),e.onUnmounted(()=>{window.removeEventListener("scroll",a)}),{scrollDirection:n}}const wa={key:0,class:"header-prepend"},Ba={class:"inner-header"},Ca={class:"header-logo"},Sa={key:0,class:"header-side"},Ma={key:1,class:"header-append"},La=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeAriaLabel:{default:Va.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(t){const n=e.ref(),a=t;function l(m){e.watch(m,k=>{n.value=k})}e.provide(De,l);const o=e.ref(null),r=e.ref(null),s=e.ref("auto"),c=e.ref(0),i=e.ref(!0),d=e.ref(!1),p=e.ref(!1);function b(){const m=o.value.getBoundingClientRect();c.value=m.top+window.scrollY,s.value=`${r.value.offsetHeight}px`,i.value=window.scrollY<=c.value,d.value=window.scrollY>c.value+m.height,p.value=window.scrollY>c.value+m.height*2}e.onMounted(()=>{b(),window.addEventListener("scroll",b),window.addEventListener("resize",b)}),e.onUnmounted(()=>{window.removeEventListener("scroll",b),window.removeEventListener("resize",b)});const y=e.computed(()=>({minHeight:s.value})),{scrollDirection:u}=Na(),{isDesktop:g}=G(),h=e.computed(()=>{if(a.hideWhenDown&&!g.value&&!n.value){const k=u.value===""&&i.value||u.value==="bottom"&&!d.value||u.value==="top"&&i.value,V=u.value==="bottom"&&d.value;return{position:k?"relative":"fixed",width:k?"100%":o.value.offsetWidth+"px",top:k?"auto":"0",transform:V?"translateY(-100%)":"none",transition:p.value?"transform 0.3s ease":"none"}}const m=!i.value&&a.sticky;return{position:m?"fixed":"relative",width:m?o.value.offsetWidth+"px":"100%",top:m?"0":"auto",transform:"none",transition:"none"}});return(m,k)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:o,class:"header",style:e.normalizeStyle(y.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:r,class:"sticky-header",style:e.normalizeStyle(h.value)},[m.$slots.prepend?(e.openBlock(),e.createElementBlock("div",wa,[e.renderSlot(m.$slots,"prepend",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Ba,[e.renderSlot(m.$slots,"menu",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",Ca,[e.renderSlot(m.$slots,"logo",{menuOpen:n.value,homeAriaLabel:m.homeAriaLabel,serviceTitle:m.serviceTitle,serviceSubtitle:m.serviceSubtitle},()=>[e.createVNode(ze,{"aria-label":m.homeAriaLabel,"service-title":m.serviceTitle,"service-subtitle":m.serviceSubtitle},{"brand-content":e.withCtx(()=>[e.renderSlot(m.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:m.homeAriaLabel,serviceTitle:m.serviceTitle,serviceSubtitle:m.serviceSubtitle},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle"])],!0)]),m.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",Sa,[e.renderSlot(m.$slots,"header-side",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0)]),m.$slots.append?(e.openBlock(),e.createElementBlock("div",Ma,[e.renderSlot(m.$slots,"append",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Pe=v(La,[["__scopeId","data-v-a7767594"]]),W={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},Za=["aria-label","title"],le=v(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(t,{expose:n}){const a=M.useTheme(),l=e.ref(null),o=e.ref(!1),r=e.useModel(t,"modelValue"),s=e.computed(()=>{const i=r.value||o.value;return{backgroundColor:i?"#fff":a.current.value.colors.primary,color:i?a.current.value.colors.primary:"#fff"}});function c(){var i;(i=l.value)==null||i.focus()}return n({focus:c}),(i,d)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:l,class:"header-menu-btn",style:e.normalizeStyle(s.value),type:"button","aria-label":r.value?e.unref(W).closeMenu:e.unref(W).openMenu,title:r.value?e.unref(W).closeMenu:e.unref(W).openMenu,onClick:d[0]||(d[0]=()=>r.value=!r.value),onFocus:d[1]||(d[1]=p=>o.value=!0),onBlur:d[2]||(d[2]=p=>o.value=!1)},[e.createVNode(w.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value?e.unref(K):e.unref(vt)),1)]),_:1}),d[3]||(d[3]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],44,Za))}}),[["__scopeId","data-v-cbbf13b1"]]),Re={mainMenu:"Menu principal",publicMenu:"Menu public"},Fe=Symbol("registerSubMenu");function je(t){const n=e.ref([]);function a(r,s){const i={id:String(n.value.length),status:r,close:s};n.value.push(i),e.watch(r,d=>{d&&l(i)})}function l(r){n.value.forEach(s=>{s.id!==r.id&&s.status&&s.close()})}e.watch(t,r=>{r||n.value.forEach(s=>{s.status&&s.close()})});const o=e.computed(()=>n.value.some(r=>r.status));return e.provide(Fe,a),{haveOpenSubMenu:o}}const _a=["aria-label"],xa={key:0,class:"overlay"},$a=["aria-label"],Ea={class:"header-menu"},Ke=v(e.defineComponent({__name:"HeaderBurgerMenu",setup(t){const n=e.ref(null),a=e.ref(null),l=e.ref(null),o=e.ref(null),r=e.ref(0),s=e.ref(0),c=e.ref("70vh");function i(){const h=a.value.getBoundingClientRect();r.value=h.left,s.value=h.top,c.value=`calc(100vh - ${h.top}px - 48px)`}e.onMounted(()=>{i(),window.addEventListener("scroll",i),window.addEventListener("resize",i),window.addEventListener("click",y,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",i),window.removeEventListener("resize",i),window.removeEventListener("click",y,{capture:!0})});const d=e.ref(!1);e.watch(d,async h=>{document.documentElement.style.overflow=h?"hidden":"auto",document.body.style.overflow=h?"hidden":"auto",h?(i(),await e.nextTick(),o.value.focus()):l.value.focus()});const{isDesktop:p}=G(),b=e.computed(()=>({left:`${r.value}px`,top:`${s.value}px`,height:p.value?c.value:void 0}));function y(h){if(!d.value)return;let m=h.target;for(;m&&m!==document.body;){if(m===n.value)return;m=m.parentElement}d.value=!1}const{haveOpenSubMenu:u}=je(e.readonly(d)),g=e.inject(De);return g&&g(d),(h,m)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(Re).mainMenu},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:a},[e.createVNode(le,{ref_key:"outerBtn",ref:l,modelValue:d.value,"onUpdate:modelValue":m[0]||(m[0]=k=>d.value=k)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[d.value?(e.openBlock(),e.createElementBlock("div",xa,[e.createElementVNode("div",{ref_key:"menuWrapper",ref:n,role:"menu",class:"menu-wrapper",style:e.normalizeStyle(b.value)},[e.createVNode(le,{ref_key:"innerBtn",ref:o,modelValue:d.value,"onUpdate:modelValue":m[1]||(m[1]=k=>d.value=k)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(u)}]),role:"navigation","aria-label":e.unref(Re).publicMenu},[e.createElementVNode("div",Ea,[e.renderSlot(h.$slots,"default",{},void 0,!0)])],10,$a)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,_a))}}),[["__scopeId","data-v-3e36a465"]]),Ta={},Ia={class:"header-menu-item"};function Aa(t,n){return e.openBlock(),e.createElementBlock("li",Ia,[e.renderSlot(t.$slots,"default",{},void 0,!0)])}const qe=v(Ta,[["render",Aa],["__scopeId","data-v-753dd5aa"]]),Ha={class:"header-menu-section"},Ue=v(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(t){const n=e.useId(),a=`${n}-group`,l=`${n}-group-title`;return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ha,[o.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:l,class:"header-menu-section-title"},e.toDisplayString(o.title),1)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:a,role:"group",class:"header-menu-section-list"},[e.renderSlot(o.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-c7879d24"]]),Oa=["aria-expanded","aria-controls","title"],Da=["id"],za={class:"sub-menu-content"},Pa=v(e.defineComponent({__name:"HeaderSubMenu",setup(t){const n=e.ref(!1),a=e.useId(),l=`${a}-btn`,o=e.inject(Fe,void 0);if(!o)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");o(n,()=>{n.value=!1});const{haveOpenSubMenu:r}=je(e.readonly(n));return(s,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":n.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:l,class:"sub-menu-btn",type:"button","aria-expanded":n.value?"true":"false","aria-controls":e.unref(a),title:n.value?"Close submenu":"Open submenu",onClick:c[0]||(c[0]=i=>n.value=!n.value)},[e.renderSlot(s.$slots,"title",{},void 0,!0),e.createVNode(w.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value?e.unref(ht):e.unref(ut)),1)]),_:1})],8,Oa),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(a),class:"sub-menu-content-wrapper","aria-labelledby":l},[e.createElementVNode("div",za,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],8,Da),[[e.vShow,n.value]])]),_:3})],2))}}),[["__scopeId","data-v-5b9763a6"]]),Ra={class:"horizontal-menu__item-link"},Fa=v(e.defineComponent({__name:"HorizontalNavbar",props:{items:{}},setup(t){const n=Te.colors.background.accentContrasted,a=Te.colors.text.subduedOnDark;return(l,o)=>(e.openBlock(),e.createBlock(te.VSheet,{class:"horizontal-menu px-12",dense:"",theme:"dark",color:e.unref(n)},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(l.$slots,"default",{},()=>[e.createVNode(e.unref(B.VTabs),{height:"53",class:"horizontal-menu__tabs","show-arrows":""},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(r,s)=>(e.openBlock(),e.createBlock(lt.VTab,{key:s,href:r.href,to:r.to,"slider-color":"#fff","base-color":e.unref(a),ripple:!1,tabindex:"0",class:"horizontal-menu__item"},{default:e.withCtx(()=>[e.createElementVNode("span",Ra,e.toDisplayString(r.label),1)]),_:2},1032,["href","to","base-color"]))),128))]),_:1})],!0),e.renderSlot(l.$slots,"navigation-bar-append",{},void 0,!0)]),_:3},8,["color"]))}}),[["__scopeId","data-v-22407376"]]),ja={class:"inner-vertical-menu"},Ka={class:"inner-vertical-menu__main-content"},qa=["href"],Ua=v(e.defineComponent({__name:"HeaderNavbar",props:{homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},sticky:{type:Boolean},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},setup(t){const n=t,{isDesktop:a}=G(),l=e.computed(()=>!a.value||n.items!==void 0&&n.items.length>0&&n.items.length>n.maxHorizontalMenuItems),o=e.ref();return(r,s)=>(e.openBlock(),e.createBlock(Pe,{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(Ke,{key:0},{default:e.withCtx(()=>[e.createElementVNode("div",ja,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:o.value},void 0,!0),e.createElementVNode("div",Ka,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:o.value},()=>[e.createVNode(Ue,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,c=>(e.openBlock(),e.createBlock(qe,{key:c.label},{default:e.withCtx(()=>[c.href?(e.openBlock(),e.createElementBlock("a",{key:0,href:c.href},e.toDisplayString(c.label),9,qa)):c.to?(e.openBlock(),e.createBlock(e.unref(x1),{key:1,to:c.to},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(r.$slots,"navigation-menu-append",{menuOpen:o.value},void 0,!0)])]),_:3})):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:o.value},void 0,!0)]),append:e.withCtx(()=>[n.items&&!l.value?(e.openBlock(),e.createBlock(Fa,{key:0,items:r.items},{"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"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"]))}}),[["__scopeId","data-v-542c3eaa"]]),Ga={label:"Choix de la langue. Actuellement"};var Wa={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 F=Wa,Ge={},Y={},We=[],Ye=[],Qe=[];for(const t in F){const{name:n,nativeName:a}=F[t];Ge[t]=Y[n.toLowerCase()]=Y[a.toLowerCase()]={code:t,name:n,nativeName:a},We.push(t),Ye.push(n),Qe.push(a)}var Ya=class X{static getLanguages(n=[]){return n.map(a=>X.validate(a)?Object.assign({},Ge[a]):{code:a,name:"",nativeName:""})}static getName(n){return X.validate(n)?F[n].name:""}static getAllNames(){return Ye.slice()}static getNativeName(n){return X.validate(n)?F[n].nativeName:""}static getAllNativeNames(){return Qe.slice()}static getCode(n){return n=n.toLowerCase(),Y.hasOwnProperty(n)?Y[n].code:""}static getAllCodes(){return We.slice()}static validate(n){return F.hasOwnProperty(n)}};const Q=be(Ya),Qa={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},Xa=["id"],Ja=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:Ga.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(t,{expose:n,emit:a}){const l=t,o=L(Qa,l),r=a,s=e.ref(!1),c=e.ref(l.modelValue);e.watch(()=>l.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"),b=e.computed(()=>{const u={};let g;return l.availableLanguages==="*"?g=Q.getAllCodes():g=l.availableLanguages,g.forEach(h=>{u[h]={code:h,name:Q.getName(h)||h,nativeName:Q.getNativeName(h)||Q.getName(h)||h}}),u}),y=e.computed(()=>{const u=b.value[c.value];return{name:(u==null?void 0:u.nativeName)||c.value,label:`${l.ariaLabel} ${(u==null?void 0:u.nativeName)||c.value}`}});return n({currentLangData:y,updateLang:i,selectedLanguage:c}),(u,g)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(rt.VMenu,e.mergeProps(e.unref(o).menu,{id:d.value?"lang-menu":p.value,modelValue:s.value,"onUpdate:modelValue":g[0]||(g[0]=h=>s.value=h),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:h})=>[e.createVNode(S.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${l.ariaLabel} ${y.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":d.value},{...e.unref(o).btn,...h},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.value.name)+" ",1),u.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(w.VIcon,e.mergeProps({key:0},e.unref(o).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(fe)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(ae.VList,e.mergeProps(e.unref(o).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,(h,m,k)=>(e.openBlock(),e.createBlock(ae.VListItem,e.mergeProps({ref_for:!0},e.unref(o).listTile,{key:m,role:"menuitem",tabindex:k+1,"aria-label":`${l.ariaLabel} ${h.nativeName}`,"aria-labelledby":`${p.value} ${h.nativeName}`,onClick:V=>i(m)}),{default:e.withCtx(()=>[e.createVNode(ae.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(o).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,Xa))}}),en=v(Ja,[["__scopeId","data-v-40aa801b"]]),O=e.ref([]);function Xe(){return{notificationQueue:O,addNotification:l=>{O.value.some(o=>o.id===l.id)||O.value.push(l)},removeNotification:l=>{O.value=O.value.filter(o=>o.id!==l)},clearQueue:()=>{O.value=[]}}}const tn=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:Xe},Symbol.toStringTag,{value:"Module"})),an={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},nn={key:0},on={class:"d-flex align-center ga-2"},ln=v(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(t,{expose:n}){const a=t,l=L(an,a),o=M.useDisplay(),{notificationQueue:r,removeNotification:s}=Xe(),c=e.getCurrentInstance(),i=e.ref(),d=e.ref(!1),p=e.ref(!1),b=e.computed(()=>!!(c!=null&&c.slots.action)),y=e.computed(()=>o.name.value==="xs"),u=e.computed(()=>o.name.value==="sm"),g=e.computed(()=>{var N,$;return((($=(N=i.value)==null?void 0:N.message)==null?void 0:$.length)??0)>50}),h={info:ne,success:he,warning:st,error:de},m=e.computed(()=>i.value?h[i.value.type]:null),k=e.computed(()=>i.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[i.value.type]||"info"),V=e.computed(()=>i.value?{contentColor:i.value.type==="success"||i.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),C=e.computed(()=>y.value&&!g.value&&!b.value),x=N=>{i.value={...N}},re=async()=>{for(p.value=!0;r.value.length>0;){const N=r.value[0];x(N),d.value=!0;let $=N.timeout??-1;$<=0?await new Promise(T=>{const E=e.watch(d,ce=>{ce||(E(),T())})}):await new Promise(T=>{const E=setTimeout(()=>{ie(),T()},$),ce=e.watch(d,wn=>{wn||(clearTimeout(E),ce(),T())})}),s(N.id)}p.value=!1},ie=()=>{d.value=!1,i.value&&(s(i.value.id),i.value=void 0)},Vn=N=>{x(N),d.value=!0},Nn=()=>{if(r.value.length>0){const N=r.value[0];x(N),d.value=!0}};return e.watch(()=>r.value.length,N=>{N>0&&!p.value&&re()}),n({openNotification:Vn,handleClearNotification:ie,showNextNotification:Nn,processNotificationQueue:re,currentNotification:i,isNotificationVisible:d,hasActionSlot:b,isMobileVersion:y,hasLongContent:g,color:k,icon:m,contentStyle:V,smallCloseBtn:C,isVertical:e.computed(()=>g.value&&y.value)}),(N,$)=>{var T;return i.value?(e.openBlock(),e.createElementBlock("div",nn,[e.createVNode(it.VSnackbar,e.mergeProps(e.unref(l).snackbar,{modelValue:d.value,"onUpdate:modelValue":$[0]||($[0]=E=>d.value=E),role:"status",color:k.value,location:a.bottom?"bottom":"top",vertical:g.value,"multi-line":g.value,timeout:((T=i.value)==null?void 0:T.timeout)??-1,width:y.value||u.value?"auto":"960px",rounded:a.rounded,class:[{"long-text":g.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",g.value?"action-section-longText":"action-section-shortText"]),style:{width:"100%"}},[e.renderSlot(N.$slots,"action",{},void 0,!0),e.createVNode(S.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":C.value}],"aria-label":"Fermer la notification"},e.unref(l).btn,{onClick:ie}),{default:e.withCtx(()=>[C.value?(e.openBlock(),e.createBlock(w.VIcon,{key:1,icon:e.unref(K)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(N.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var E;return[e.createElementVNode("div",on,[!y.value&&m.value?(e.openBlock(),e.createBlock(w.VIcon,e.mergeProps({key:0},e.unref(l).icon,{icon:m.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+V.value.contentColor)},e.toDisplayString((E=i.value)==null?void 0:E.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-93d35fbf"]]),rn=v(e.defineComponent({__name:"PageContainer",props:{size:{default:"xl"},spacing:{default:void 0},color:{default:"transparent"}},setup(t,{expose:n}){const a=t,l=M.useDisplay(),o={xs:"px-0",sm:"px-4",md:"px-8",lg:"px-8",xl:"px-8"},r=o[l.name.value],s=e.computed(()=>a.spacing?`py-10 ${o[a.spacing]}`:`py-10 ${r}`),c={xl:1440,l:960,m:800,s:600},i=e.computed(()=>c[a.size]);return n({spacingClass:s,containerSize:i}),(d,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(te.VSheet,{width:i.value,color:d.color},{default:e.withCtx(()=>[e.renderSlot(d.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-773c0ca7"]]),cn={label:"Aller au contenu principal"},sn={class:"vd-skip-link-container"},dn=["href"],mn=e.defineComponent({__name:"SkipLink",props:{label:{default:cn.label},target:{default:"#main"}},setup(t){const n=e.ref(null);return e.onMounted(()=>{var s,c;const a=e.getCurrentInstance();if(!a)return;const l=(s=a==null?void 0:a.appContext.app)==null?void 0:s.$nuxt;let o;l&&l.$router&&(o=l.$router);const r=(c=a.appContext.app.config.globalProperties)==null?void 0:c.$router;r&&(o=r),o&&o.afterEach&&o.afterEach((i,d,p)=>{p||i.path!==d.path&&e.nextTick(()=>{var b;(b=n.value)==null||b.focus()})})}),(a,l)=>(e.openBlock(),e.createElementBlock("div",sn,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:n,tabindex:"-1"},null,512),e.createElementVNode("a",{href:a.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(a.label),1)],!0)],8,dn)]))}}),pn=v(mn,[["__scopeId","data-v-2bd5b004"]]),hn={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},un={backBtnText:"Retour"},fn={class:"vd-sub-header-content d-flex justify-space-between"},bn={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},gn={key:1,class:"text-h5 font-weight-bold"},kn={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},yn=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:un.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(t,{emit:n}){const a=t,l=L(hn,a),{widthStyles:o}=ve(a),r=e.ref(kt),s=n;function c(i){s("click:list-item",i)}return(i,d)=>(e.openBlock(),e.createBlock(te.VSheet,e.mergeProps(e.unref(l).sheet,{style:e.unref(o),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(D.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(e.unref(se.VSkeletonLoader),{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({key:1},e.unref(l).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(w.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",fn,[e.createElementVNode("div",bn,[e.renderSlot(i.$slots,"title",{},()=>[e.createVNode(D.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(A,{key:0,width:"300",height:"2rem",color:"secondary"})):i.titleText?(e.openBlock(),e.createElementBlock("h2",gn,e.toDisplayString(i.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(i.$slots,"sub-title",{},()=>[i.subTitleText?(e.openBlock(),e.createBlock(D.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(A,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",kn,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(Ne,{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"]))}}),vn=v(yn,[["__scopeId","data-v-ac02e38f"]]);f.Alert=Bt,f.BackBtn=St,f.BackToTopBtn=Ft,f.CollapsibleList=Yt,f.CopyBtn=t1,f.CustomInputSelect=o1,f.CustomSelect=l1,f.CustomTextField=r1,f.DataList=Ve,f.DataListGroup=Ne,f.DownloadBtn=C1,f.FooterBar=X1,f.FranceConnectBtn=oa,f.HeaderBar=Pe,f.HeaderBurgerMenu=Ke,f.HeaderLoading=A,f.HeaderLogo=ze,f.HeaderMenuBtn=le,f.HeaderMenuItem=qe,f.HeaderMenuSection=Ue,f.HeaderNavbar=Ua,f.HeaderSubMenu=Pa,f.LangBtn=en,f.Logo=Ae,f.NotificationBar=ln,f.NotificationService=tn,f.PageContainer=rn,f.SkipLink=pn,f.SocialMediaLinks=He,f.SubHeader=vn,Object.defineProperty(f,Symbol.toStringTag,{value:"Module"})});
|
|
5
|
+
*/const Kn=typeof document<"u",Un=()=>{},ge=Array.isArray;function st(n){const t=Array.from(arguments).slice(1);console.warn.apply(console,["[Vue Router warn]: "+n].concat(t))}function dt(n,t){return(n.aliasOf||n)===(t.aliasOf||t)}function Gn(n,t){if(Object.keys(n).length!==Object.keys(t).length)return!1;for(const o in n)if(!Wn(n[o],t[o]))return!1;return!0}function Wn(n,t){return ge(n)?mt(n,t):ge(t)?mt(t,n):n===t}function mt(n,t){return ge(t)?n.length===t.length&&n.every((o,a)=>o===t[a]):n.length===1&&n[0]===t}var pt;(function(n){n.pop="pop",n.push="push"})(pt||(pt={}));var ht;(function(n){n.back="back",n.forward="forward",n.unknown=""})(ht||(ht={}));function ut(n){return typeof n=="string"||n&&typeof n=="object"}Symbol(process.env.NODE_ENV!=="production"?"navigation failure":"");var ft;(function(n){n[n.aborted=4]="aborted",n[n.cancelled=8]="cancelled",n[n.duplicated=16]="duplicated"})(ft||(ft={})),Symbol(process.env.NODE_ENV!=="production"?"router view location matched":""),Symbol(process.env.NODE_ENV!=="production"?"router view depth":"");const gt=Symbol(process.env.NODE_ENV!=="production"?"router":""),jn=Symbol(process.env.NODE_ENV!=="production"?"route location":"");Symbol(process.env.NODE_ENV!=="production"?"router view location":"");function bt(n){const t=e.inject(gt),o=e.inject(jn);let a=!1,l=null;const r=e.computed(()=>{const m=e.unref(n.to);return process.env.NODE_ENV!=="production"&&(!a||m!==l)&&(ut(m)||(a?st(`Invalid value for prop "to" in useLink()
|
|
6
|
+
- to:`,m,`
|
|
7
|
+
- previous to:`,l,`
|
|
8
|
+
- props:`,n):st(`Invalid value for prop "to" in useLink()
|
|
9
|
+
- to:`,m,`
|
|
10
|
+
- props:`,n)),l=m,a=!0),t.resolve(m)}),c=e.computed(()=>{const{matched:m}=r.value,{length:p}=m,y=m[p-1],h=o.matched;if(!y||!h.length)return-1;const u=h.findIndex(dt.bind(null,y));if(u>-1)return u;const V=kt(m[p-2]);return p>1&&kt(y)===V&&h[h.length-1].path!==V?h.findIndex(dt.bind(null,m[p-2])):u}),s=e.computed(()=>c.value>-1&&Xn(o.params,r.value.params)),i=e.computed(()=>c.value>-1&&c.value===o.matched.length-1&&Gn(o.params,r.value.params));function d(m={}){if(Qn(m)){const p=t[e.unref(n.replace)?"replace":"push"](e.unref(n.to)).catch(Un);return n.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>p),p}return Promise.resolve()}if(process.env.NODE_ENV!=="production"&&Kn){const m=e.getCurrentInstance();if(m){const p={route:r.value,isActive:s.value,isExactActive:i.value,error:null};m.__vrl_devtools=m.__vrl_devtools||[],m.__vrl_devtools.push(p),e.watchEffect(()=>{p.route=r.value,p.isActive=s.value,p.isExactActive=i.value,p.error=ut(e.unref(n.to))?null:'Invalid "to" value'},{flush:"post"})}}return{route:r,href:e.computed(()=>r.value.href),isActive:s,isExactActive:i,navigate:d}}function Yn(n){return n.length===1?n[0]:n}const Jn=e.defineComponent({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:bt,setup(n,{slots:t}){const o=e.reactive(bt(n)),{options:a}=e.inject(gt),l=e.computed(()=>({[yt(n.activeClass,a.linkActiveClass,"router-link-active")]:o.isActive,[yt(n.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:o.isExactActive}));return()=>{const r=t.default&&Yn(t.default(o));return n.custom?r:e.h("a",{"aria-current":o.isExactActive?n.ariaCurrentValue:null,href:o.href,onClick:o.navigate,class:l.value},r)}}});function Qn(n){if(!(n.metaKey||n.altKey||n.ctrlKey||n.shiftKey)&&!n.defaultPrevented&&!(n.button!==void 0&&n.button!==0)){if(n.currentTarget&&n.currentTarget.getAttribute){const t=n.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return n.preventDefault&&n.preventDefault(),!0}}function Xn(n,t){for(const o in t){const a=t[o],l=n[o];if(typeof a=="string"){if(a!==l)return!1}else if(!ge(l)||l.length!==a.length||a.some((r,c)=>r!==l[c]))return!1}return!0}function kt(n){return n?n.aliasOf?n.aliasOf.path:n.path:""}const yt=(n,t,o)=>n??t??o,re={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},z={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},eo=Object.values(z),R={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"}},k={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:R.blue.base,secondary:R.cyan.darken40,accent:R.cyan.base,error:R.orange.darken20,info:R.blue.base,avatar:R.cyan.darken20,success:R.turquoise.darken60,warning:R.yellow.darken60,risquePro:R.brick.base,onBackground:k.colors.background.surface,onSurfaceAlt:k.colors.background.surfaceAlt,onSurface:k.colors.background.surface,onWarning:k.colors.background.warning,overlayFullpage:k.colors.overlay.fullpage,overlayOnDark:k.colors.overlay.onDark,overlayOnLight:k.colors.overlay.onLight,interactiveDefault:k.colors.interactive.default,interactiveHover:k.colors.interactive.hover,interactivePressed:k.colors.interactive.pressed,interactiveFocus:k.colors.interactive.focus,interactiveDisabled:k.colors.interactive.disabled,interactiveHoverOnSelected:k.colors.interactive.hoverOnSelected,backgroundMain:k.colors.background.main,backgroundSurface:k.colors.background.surface,backgroundSurfaceAlt:k.colors.background.surfaceAlt,backgroungMainAlt:k.colors.background.mainAlt,backgroungRaised:k.colors.background.raised,backgroundAccent:k.colors.background.accent,backgroungAccentContrasted:k.colors.background.accentContrasted,backgroundAccentAlt:k.colors.background.accentAlt,backgroundInfo:k.colors.background.info,backgroundInfoSubdued:k.colors.background.infoSubdued,backgroundInfoContrasted:k.colors.background.infoContrasted,backgroundSuccess:k.colors.background.success,backgroundSuccessSubdued:k.colors.background.successSubdued,backgroundSuccessContrasted:k.colors.background.successContrasted,backgroundWarning:k.colors.background.warning,backgroundWarningSubdued:k.colors.background.warningSubdued,backgroundWarningContrasted:k.colors.background.warningContrasted,backgroundError:k.colors.background.error,backgroundErrorSubdued:k.colors.background.errorSubdued,backgroundErrorContrasted:k.colors.background.errorContrasted,backgroundDisabled:k.colors.background.disabled,backgroundDisabledOnDark:k.colors.background.disabledOnDark,backgroundAssure:k.colors.background.assure,backgroundProfessionnel:k.colors.background.professionnel,backgroundEntreprise:k.colors.background.entreprise,borderDarker:k.colors.border.darker,borderBase:k.colors.border.base,borderSubdued:k.colors.border.subdued,borderAccent:k.colors.border.accent,borderAccentContrasted:k.colors.border.accentContrasted,borderAccentOnDark:k.colors.border.accentOnDark,borderInfo:k.colors.border.info,borderSuccess:k.colors.border.success,borderWarning:k.colors.border.warning,borderError:k.colors.border.error,borderOnDark:k.colors.border.onDark,borderDisabled:k.colors.border.disabled,borderDisabledOnDark:k.colors.border.disabledOnDark,textBase:k.colors.text.base,textAccent:k.colors.text.accent,textAccentContrasted:k.colors.text.accentContrasted,textSubdued:k.colors.text.subdued,textInfo:k.colors.text.info,textSuccess:k.colors.text.success,textWarning:k.colors.text.warning,textError:k.colors.text.error,textDisabled:k.colors.text.disabled,textOnDark:k.colors.text.onDark,textSubduedOnDark:k.colors.text.subduedOnDark,textDisabledOnDark:k.colors.text.disabledOnDark,iconBase:k.colors.icon.base,iconSubdued:k.colors.icon.subdued,iconSubduedOnDark:k.colors.icon.subduedOnDark,iconAccent:k.colors.icon.accent,iconAccentContrasted:k.colors.icon.accentContrasted,iconInfo:k.colors.icon.info,iconSuccess:k.colors.icon.success,iconWarning:k.colors.icon.warning,iconError:k.colors.icon.error,iconOnDark:k.colors.icon.onDark,iconDisabled:k.colors.icon.disabled,iconDisabledOnDark:k.colors.icon.disabledOnDark,transparentBlue18:R.blue.base,transparentBlue8:R.transparentBlue.transparentBlue8},Y=(n,t)=>({width:n,height:t}),to={[z.X_SMALL]:Y("105","32"),[z.SMALL]:Y("131","40"),[z.NORMAL]:Y("211","64")},ao={[z.X_SMALL]:Y("32","32"),[z.SMALL]:Y("40","40"),[z.NORMAL]:Y("64","64")};function no(n,t,o){const l=`(${t.join("|")})`,r=new RegExp(`^${l}$`);return o.match(r)!==null||console.error(`Invalid value for the \`${n}\` prop. Received: "${o}", expected one of: [${t.join(", ")}].`),!0}const oo=["fill","aria-label","width","height","viewBox","aria-hidden"],ro=["fill"],lo={key:1,"aria-hidden":"true",role:"presentation"},io={key:2,role:"presentation","aria-hidden":"true"},co={key:3},Ee=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:z.NORMAL,validator:n=>no("size",eo,n)}},setup(n){const t=n,o=e.ref(be.risquePro),a=e.computed(()=>t.dark?"#fff":be.primary),l=e.computed(()=>t.avatar?ao[t.size]:to[t.size]),r=e.computed(()=>t.avatar?"0 0 64 64":t.hideSignature?"0 0 206 64":"0 0 211 64"),c=e.computed(()=>{if(t.ariaLabel)return t.ariaLabel;if(t.avatar)return"";const s=" : ",i=", ";let d=`${re.assuranceMaladie}`;return t.hideOrganism||(d=re.organism.concat(i,d)),t.hideSignature||(d=d.concat(s,re.signature)),t.risquePro&&(d=re.assuranceMaladie+": "+re.risquePro),d});return(s,i)=>(e.openBlock(),e.createElementBlock("svg",{fill:a.value,"aria-label":c.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":n.avatar?"true":"false"},[n.risquePro&&!n.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:o.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,ro)):!n.hideSignature&&!n.avatar?(e.openBlock(),e.createElementBlock("g",lo,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),!n.hideOrganism&&!n.avatar?(e.openBlock(),e.createElementBlock("g",io,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),n.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",co,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,oo))}}),so={followUs:"Suivez-nous :"},mo={class:"d-flex flex-column"},po={class:"vd-social-media-links-label text-subtitle-2 text--primary"},ho={class:"d-flex max-width-none"},Vt=L(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(n){const t=n;return(o,a)=>(e.openBlock(),e.createElementBlock("div",mo,[e.createElementVNode("span",po,e.toDisplayString(e.unref(so).followUs),1),e.createElementVNode("ul",ho,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.links,(l,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(E.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(M.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-82e1e286"]]),Te={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},uo=[{icon:Sa,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:Ca,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:Ta,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],fo={footer:{elevation:3,color:"backgroundSurface",height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:"backgroundSurface"},goTopBtnIcon:{color:"white"}},K={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",[Te["non-compliant"]]:"non conforme",[Te["partially-compliant"]]:"partiellement conforme",[Te["fully-compliant"]]:"totalement conforme",a11yLabel:n=>`Accessibilité : ${n}`},go={class:"container"},bo={key:0,class:"d-flex align-start align-sm-center mb-6"},ko={class:"d-flex flex-grow-1 flex-column flex-sm-row"},yo={key:0,class:"text-primary my-3 mx-4"},Vo=L(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:()=>uo},light:{type:Boolean,default:!1}},setup(n,{expose:t}){const o=n,a=We,l=z,r=e.useSlots(),c=P.useDisplay(),s=O(fo,o),i=u=>u.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},m=e.computed(()=>{const u=K[o.a11yCompliance];return typeof u=="string"?K.a11yLabel(u):""}),p=e.computed(()=>!!r.default),y=e.computed(()=>c.smAndDown.value?l.SMALL:l.NORMAL),h=e.computed(()=>o.linkItems?o.linkItems:[{text:K.sitemapLabel,to:o.sitemapRoute,hidden:o.hideSitemapLink},{text:K.cguLabel,to:o.cguRoute,hidden:o.hideCguLink},{text:K.cookiesLabel,to:o.cookiesRoute,hidden:o.hideCookiesLink},{text:K.legalNoticeLabel,to:o.legalNoticeRoute,hidden:o.hideLegalNoticeLink},{text:m.value,to:o.a11yStatementRoute,hidden:o.hideA11yLink}].filter(V=>!V.hidden));return t({logoSize:y}),(u,V)=>(e.openBlock(),e.createBlock(ca.VFooter,e.mergeProps({...e.unref(s).footer,...u.$attrs},{color:o.light?"white":e.unref(s).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":p.value,"v-theme--light":o.light,"v-theme--dark":!o.light}],role:"contentinfo"}),{default:e.withCtx(()=>[e.createElementVNode("div",go,[p.value?(e.openBlock(),e.createElementBlock("div",bo,[e.createElementVNode("div",ko,[e.renderSlot(u.$slots,"logo",{},()=>[o.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ee,{key:0,size:y.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!o.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(s).spacer)),null,16),o.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Vt,{key:0,links:o.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(E.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(s).goTopBtn,{"aria-label":e.unref(K).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(M.VIcon,e.mergeProps(e.unref(s).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),p.value?(e.openBlock(),e.createBlock(Se.VDivider,e.mergeProps({key:1},e.unref(s).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(u.$slots,"default",{},void 0,!0),p.value?(e.openBlock(),e.createBlock(Se.VDivider,e.mergeProps({key:2},e.unref(s).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"py-2 py-sm-0":!p.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(h.value,(w,C)=>(e.openBlock(),e.createElementBlock("li",{key:C},[(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:C,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)),o.version?(e.openBlock(),e.createElementBlock("li",yo,e.toDisplayString(e.unref(K).versionLabel)+" "+e.toDisplayString(o.version),1)):e.createCommentVNode("",!0),e.renderSlot(u.$slots,"append",{},void 0,!0)],2)])]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-6d7fdd14"]]),wt={btnLabel:n=>`S’identifier avec FranceConnect${n?"+":""}`,infoLinkLabel:n=>`Qu’est-ce que FranceConnect${n?"+":""} ?`},wo=["href","aria-label"],vo=["viewBox","width"],No=["fill"],Bo=["fill"],Co=["href"],Lo=L(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(n){const t=n,o=P.useTheme(),a=e.computed(()=>o.current.value.dark||t.dark),l=t.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>t.isConnectPlus?"245px":"209px"),c=e.computed(()=>l);return(s,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":a.value}])},[e.createElementVNode("a",{href:s.href,"aria-label":e.unref(wt).btnLabel(s.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${t.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:a.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,No),s.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:a.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,Bo)):e.createCommentVNode("",!0)],8,vo))],8,wo),e.createElementVNode("a",{href:c.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(wt).infoLinkLabel(s.isConnectPlus))+" ",1),e.createVNode(M.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(_a)),1)]),_:1})],8,Co)],2))}}),[["__scopeId","data-v-7d3bb666"]]);function vt(n,t){let o=null,a=0;return function(...l){o!==null&&window.clearTimeout(o),performance.now()-a>=t?(window.requestAnimationFrame(()=>n(...l)),a=performance.now()):o=window.setTimeout(()=>{n(...l),a=performance.now()},t)}}const So=990,Nt=Symbol("registerHeaderMenu");function ke(){const n=e.ref(!1);let t;function o(a){n.value=a.matches}return e.onMounted(()=>{t=window.matchMedia(`(min-width: ${So}px)`),n.value=t.matches,t.addEventListener("change",o)}),e.onUnmounted(()=>{t.removeEventListener("change",o)}),{isDesktop:n}}const Mo={ariaLabel:"Ouvrir le menu"},xo={},_o={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Eo(n,t){return e.openBlock(),e.createElementBlock("svg",_o,t[0]||(t[0]=[e.createStaticVNode('<g data-v-c84a4cb8><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-c84a4cb8></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-c84a4cb8></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-c84a4cb8></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-c84a4cb8></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-c84a4cb8></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-c84a4cb8></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-c84a4cb8></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-c84a4cb8></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-c84a4cb8></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-c84a4cb8></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-c84a4cb8></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-c84a4cb8></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-c84a4cb8></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-c84a4cb8></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-c84a4cb8></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-c84a4cb8></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-c84a4cb8></path>',8)]))}const To=L(xo,[["render",Eo],["__scopeId","data-v-c84a4cb8"]]),Io={},Zo={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Ao(n,t){return e.openBlock(),e.createElementBlock("svg",Zo,t[0]||(t[0]=[e.createStaticVNode('<g data-v-3e4cb924><path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" data-v-3e4cb924></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" data-v-3e4cb924></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" data-v-3e4cb924></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" data-v-3e4cb924></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" data-v-3e4cb924></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" data-v-3e4cb924></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" data-v-3e4cb924></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" data-v-3e4cb924></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" data-v-3e4cb924></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" data-v-3e4cb924></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" data-v-3e4cb924></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" data-v-3e4cb924></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" data-v-3e4cb924></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" data-v-3e4cb924></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" data-v-3e4cb924></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" data-v-3e4cb924></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" data-v-3e4cb924></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" data-v-3e4cb924></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" data-v-3e4cb924></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" data-v-3e4cb924></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" data-v-3e4cb924></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" data-v-3e4cb924></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" data-v-3e4cb924></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-3e4cb924></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" data-v-3e4cb924></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" data-v-3e4cb924></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" data-v-3e4cb924></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" data-v-3e4cb924></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" data-v-3e4cb924></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-3e4cb924></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" data-v-3e4cb924></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-3e4cb924></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-3e4cb924></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-3e4cb924></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-3e4cb924></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-3e4cb924></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-3e4cb924></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-3e4cb924></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-3e4cb924></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-3e4cb924></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-3e4cb924></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-3e4cb924></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-3e4cb924></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-3e4cb924></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-3e4cb924></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-3e4cb924></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-3e4cb924></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-3e4cb924></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-3e4cb924></path>',10)]))}const $o=L(Io,[["render",Ao],["__scopeId","data-v-3e4cb924"]]),Do=["fill"],Ho={key:1},Oo={class:"service-title"},zo={key:0,class:"service-subtitle"},Po=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:Mo.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:()=>({href:"/"})}},setup(n){const t=n,a=P.useTheme().current.value.colors.primary,{isDesktop:l}=ke(),r=e.computed(()=>{var c,s,i,d;if((c=t.homeLink)!=null&&c.to){const m=(i=(s=e.getCurrentInstance())==null?void 0:s.appContext)==null?void 0:i.components;return m&&"RouterLink"in m?"router-link":"div"}return(d=t.homeLink)!=null&&d.href?"a":"div"});return(c,s)=>{var i,d,m;return e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.value),e.mergeProps({to:"to"in c.homeLink?(i=c.homeLink)==null?void 0:i.to:void 0,href:"href"in c.homeLink?(d=c.homeLink)==null?void 0:d.href:void 0,"aria-label":"aria-label"in c.homeLink?(m=c.homeLink)==null?void 0:m["aria-label"]:void 0},{class:"logo"}),{default:e.withCtx(()=>[e.unref(l)?(e.openBlock(),e.createBlock($o,{key:0,"aria-label":t.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(To,{key:1,"aria-label":t.ariaLabel},null,8,["aria-label"])),e.renderSlot(c.$slots,"brand-content",{},()=>[c.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(a),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},s[0]||(s[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,Do)):e.createCommentVNode("",!0),c.serviceTitle?(e.openBlock(),e.createElementBlock("div",Ho,[e.createElementVNode("div",Oo,e.toDisplayString(c.serviceTitle),1),c.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",zo,e.toDisplayString(c.serviceSubtitle),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],!0)]),_:3},16)}}}),Bt=L(Po,[["__scopeId","data-v-b87d6ac8"]]),Ro={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function Fo(){const n=e.ref(null),t=e.ref("");function o(){const a=document.documentElement.scrollTop;if(n.value===null)return n.value=a,"";t.value=a>=n.value?"bottom":"top",n.value=a}return e.onMounted(()=>{window.addEventListener("scroll",o)}),e.onUnmounted(()=>{window.removeEventListener("scroll",o)}),{scrollDirection:t}}const qo={key:0,class:"header-prepend"},Ko={class:"inner-header"},Uo={class:"header-logo pl-xl-0 pl-md-14 pl-4"},Go={key:0,class:"header-side"},Wo={key:1,class:"header-append"},jo=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeLink:{default:void 0},homeAriaLabel:{default:Ro.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(n){const t=e.ref(),o=n;function a(f){e.watch(f,N=>{t.value=N})}e.provide(Nt,a);const l=e.ref(null),r=e.ref(null),c=e.ref("auto"),s=e.ref(0),i=e.ref("auto"),d=e.ref(!0),m=e.ref(!1),p=e.ref(!1);function y(){const f=l.value.getBoundingClientRect();s.value=f.top+window.scrollY,c.value=`${r.value.offsetHeight}px`,i.value=`${l.value.offsetWidth}px`,d.value=window.scrollY<=s.value,m.value=window.scrollY>s.value+f.height,p.value=window.scrollY>s.value+f.height*2}const h=vt(y,16);e.onMounted(()=>{y(),window.addEventListener("scroll",h),window.addEventListener("resize",h)}),e.onUnmounted(()=>{window.removeEventListener("scroll",h),window.removeEventListener("resize",h)});const u=e.computed(()=>({minHeight:c.value})),{scrollDirection:V}=Fo(),{isDesktop:w}=ke(),C=e.computed(()=>{if(o.hideWhenDown&&!w.value&&!t.value){const N=V.value===""&&d.value||V.value==="bottom"&&!m.value||V.value==="top"&&d.value,b=V.value==="bottom"&&m.value;return{position:N?"relative":"fixed",width:N?"100%":i.value,top:N?"auto":"0",transform:b?"translateY(-100%)":"none",transition:p.value?"transform 0.3s ease":"none"}}const f=!d.value&&o.sticky;return{position:f?"fixed":"relative",width:f?i.value:"100%",top:f?"0":"auto",transform:"none",transition:"none"}});return(f,N)=>(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(C.value)},[f.$slots.prepend?(e.openBlock(),e.createElementBlock("div",qo,[e.renderSlot(f.$slots,"prepend",{menuOpen:t.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Ko,[e.renderSlot(f.$slots,"menu",{menuOpen:t.value},void 0,!0),e.createElementVNode("div",Uo,[e.renderSlot(f.$slots,"logo",{menuOpen:t.value,homeAriaLabel:f.homeAriaLabel,serviceTitle:f.serviceTitle,serviceSubtitle:f.serviceSubtitle},()=>[e.createVNode(Bt,{"aria-label":f.homeAriaLabel,"service-title":f.serviceTitle,"service-subtitle":f.serviceSubtitle,"home-link":f.homeLink},{"brand-content":e.withCtx(()=>[e.renderSlot(f.$slots,"logo-brand-content",{menuOpen:t.value,homeAriaLabel:f.homeAriaLabel,serviceTitle:f.serviceTitle,serviceSubtitle:f.serviceSubtitle,homeLink:f.homeLink},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle","home-link"])],!0)]),f.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",Go,[e.renderSlot(f.$slots,"header-side",{menuOpen:t.value},void 0,!0)])):e.createCommentVNode("",!0)]),f.$slots.append?(e.openBlock(),e.createElementBlock("div",Wo,[e.renderSlot(f.$slots,"append",{menuOpen:t.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Ct=L(jo,[["__scopeId","data-v-0b978951"]]),ye={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},Yo=["aria-label","title"],Ie=L(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(n,{expose:t}){const o=e.ref(null),a=e.useModel(n,"modelValue");function l(){var r;(r=o.value)==null||r.focus()}return t({focus:l}),(r,c)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:o,class:e.normalizeClass(["header-menu-btn",{"header-menu-btn__open":a.value}]),type:"button","aria-label":a.value?e.unref(ye).closeMenu:e.unref(ye).openMenu,title:a.value?e.unref(ye).closeMenu:e.unref(ye).openMenu,onClick:c[0]||(c[0]=()=>{a.value=!a.value})},[e.createVNode(M.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(G):e.unref(xa)),1)]),_:1}),c[1]||(c[1]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],10,Yo))}}),[["__scopeId","data-v-9b8f4e67"]]),Lt={mainMenu:"Menu principal",publicMenu:"Menu public"},St=Symbol("registerSubMenu");function Mt(n){const t=e.ref([]);function o(r,c){const i={id:String(t.value.length),status:r,close:c};t.value.push(i),e.watch(r,d=>{d&&a(i)})}function a(r){t.value.forEach(c=>{c.id!==r.id&&c.status&&c.close()})}e.watch(n,r=>{r||t.value.forEach(c=>{c.status&&c.close()})});const l=e.computed(()=>t.value.some(r=>r.status));return e.provide(St,o),{haveOpenSubMenu:l}}const Jo=["aria-label"],Qo={key:0,class:"overlay"},Xo=["aria-label"],e1={class:"header-menu"},xt=L(e.defineComponent({__name:"HeaderBurgerMenu",props:{modelValue:{type:Boolean,default:!1},modelModifiers:{}},emits:["update:modelValue"],setup(n){const t=e.ref(null),o=e.ref(null),a=e.ref(null),l=e.ref(null),r=e.ref(0),c=e.ref(0),s=e.ref("70vh");function i(){const f=o.value.getBoundingClientRect();r.value=f.left,c.value=f.top,s.value=`calc(100vh - ${f.top}px - 48px)`}const d=vt(i,16),m=()=>{p.value&&d()};e.onMounted(()=>{i(),V(),window.addEventListener("scroll",m),window.addEventListener("resize",m),window.addEventListener("click",u,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",m),window.removeEventListener("resize",m),window.removeEventListener("click",u,{capture:!0}),document.documentElement.style.overflow="auto",document.body.style.overflow="auto"});const p=e.useModel(n,"modelValue");e.watch(p,async f=>{var N,b;V(),f?(i(),await e.nextTick(),(N=l.value)==null||N.focus()):(b=a.value)==null||b.focus()},{immediate:!0});const{isDesktop:y}=ke(),h=e.computed(()=>({left:`${r.value}px`,top:`${c.value}px`,height:y.value?s.value:void 0}));function u(f){if(!p.value)return;let N=f.target;for(;N&&N!==document.body;){if(N===t.value)return;N=N.parentElement}f.stopPropagation(),p.value=!1}function V(){typeof window<"u"&&(document.documentElement.style.overflow=p.value?"hidden":"auto",document.body.style.overflow=p.value?"hidden":"auto")}const{haveOpenSubMenu:w}=Mt(e.readonly(p)),C=e.inject(Nt);return C&&C(e.readonly(p)),(f,N)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(Lt).mainMenu},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:o},[e.createVNode(Ie,{ref_key:"outerBtn",ref:a,modelValue:p.value,"onUpdate:modelValue":N[0]||(N[0]=b=>p.value=b)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[p.value?(e.openBlock(),e.createElementBlock("div",Qo,[e.createElementVNode("div",{role:"menu",class:"menu-wrapper",style:e.normalizeStyle(h.value)},[e.createVNode(Ie,{ref_key:"innerBtn",ref:l,modelValue:p.value,"onUpdate:modelValue":N[1]||(N[1]=b=>p.value=b)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",ref_key:"headerMenuWrapper",ref:t,class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(w)}]),role:"navigation","aria-label":e.unref(Lt).publicMenu},[e.createElementVNode("div",e1,[e.renderSlot(f.$slots,"default",{},void 0,!0)])],10,Xo)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,Jo))}}),[["__scopeId","data-v-63b844d1"]]),t1={},a1={class:"header-menu-item"};function n1(n,t){return e.openBlock(),e.createElementBlock("li",a1,[e.renderSlot(n.$slots,"default",{},void 0,!0)])}const _t=L(t1,[["render",n1],["__scopeId","data-v-753dd5aa"]]),o1={class:"header-menu-section"},Et=L(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(n){const t=e.useId(),o=`${t}-group`,a=`${t}-group-title`;return(l,r)=>(e.openBlock(),e.createElementBlock("div",o1,[l.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:a,class:"header-menu-section-title"},[e.renderSlot(l.$slots,"title",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:o,role:"group",class:"header-menu-section-list"},[e.renderSlot(l.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-7c0df756"]]),r1=["aria-expanded","aria-controls","title"],l1=["id"],i1={class:"sub-menu-content"},c1=L(e.defineComponent({__name:"HeaderSubMenu",setup(n){const t=e.ref(!1),o=e.useId(),a=`${o}-btn`,l=e.inject(St,void 0);if(!l)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");l(t,()=>{t.value=!1});const{haveOpenSubMenu:r}=Mt(e.readonly(t));return(c,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":t.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:a,class:"sub-menu-btn",type:"button","aria-expanded":t.value?"true":"false","aria-controls":e.unref(o),title:t.value?"Close submenu":"Open submenu",onClick:s[0]||(s[0]=i=>t.value=!t.value)},[e.renderSlot(c.$slots,"title",{},void 0,!0),e.createVNode(M.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(Va):e.unref(wa)),1)]),_:1})],8,r1),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(o),class:"sub-menu-content-wrapper","aria-labelledby":a},[e.createElementVNode("div",i1,[e.renderSlot(c.$slots,"default",{},void 0,!0)])],8,l1),[[e.vShow,t.value]])]),_:3})],2))}}),[["__scopeId","data-v-e5697195"]]),s1={sheet:{theme:"dark",dense:!0,color:k.colors.background.accentContrasted},tabs:{height:"53","show-arrows":!0},tab:{"base-color":k.colors.text.subduedOnDark,"slider-color":"#fff",ripple:!1}},d1={class:"horizontal-menu px-xl-0 px-14"},m1={class:"horizontal-menu__item-link"},p1=L(e.defineComponent({__name:"HorizontalNavbar",props:{vuetifyOptions:{},items:{}},setup(n){const o=O(s1,n);return(a,l)=>(e.openBlock(),e.createBlock(he.VSheet,e.normalizeProps(e.guardReactiveProps(e.unref(o).sheet)),{default:e.withCtx(()=>[e.createElementVNode("div",d1,[e.renderSlot(a.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(a.$slots,"default",{},()=>[e.createVNode(Fe.VTabs,e.mergeProps({class:"horizontal-menu__tabs"},e.unref(o).tabs),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(r,c)=>(e.openBlock(),e.createBlock(Fe.VTab,e.mergeProps({key:c,href:r.href,to:r.to,ref_for:!0},e.unref(o).tab,{tabindex:"0",class:"horizontal-menu__item"}),{default:e.withCtx(()=>[e.createElementVNode("span",m1,e.toDisplayString(r.label),1)]),_:2},1040,["href","to"]))),128))]),_:1},16)],!0),e.renderSlot(a.$slots,"navigation-bar-append",{},void 0,!0)])]),_:3},16))}}),[["__scopeId","data-v-9905d7f9"]]),h1={class:"inner-vertical-menu"},u1={class:"inner-vertical-menu__main-content"},f1=["href"],g1=L(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(n){const t=n,o=e.useModel(n,"burgerMenu"),{isDesktop:a}=ke(),l=e.computed(()=>!a.value||t.items!==void 0&&t.items.length>0&&t.items.length>t.maxHorizontalMenuItems);return(r,c)=>(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(xt,{key:0,modelValue:o.value,"onUpdate:modelValue":c[0]||(c[0]=s=>o.value=s)},{default:e.withCtx(()=>[e.createElementVNode("div",h1,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:o.value},void 0,!0),e.createElementVNode("div",u1,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:o.value},()=>[e.createVNode(Et,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,s=>(e.openBlock(),e.createBlock(_t,{key:s.label},{default:e.withCtx(()=>["href"in s?(e.openBlock(),e.createElementBlock("a",{key:0,href:s.href},e.toDisplayString(s.label),9,f1)):s.to?(e.openBlock(),e.createBlock(e.unref(Jn),{key:1,to:s.to},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(r.$slots,"navigation-menu-append",{menuOpen:o.value},void 0,!0)])]),_:3},8,["modelValue"])):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:o.value},void 0,!0)]),append:e.withCtx(()=>[t.items&&!l.value?(e.openBlock(),e.createBlock(p1,{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-64e98667"]]),b1={class:"toolbar"},k1={class:"container"},y1=["aria-labelledby"],V1={key:0},w1={key:1,class:"link"},v1=["aria-labelledby"],N1={class:"right-menu-item"},B1=L(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(n,{expose:t}){const o=n,a=p=>p.href?"a":p.to?"RouterLink":"a",l=e.ref(!1),r=e.ref(!1),c=e.ref(null),s=()=>{var y;const p=(y=document.querySelector(".custom-select > span"))==null?void 0:y.textContent;p&&p==="Professionnel de santé"&&(r.value=!1),l.value=!1},i=p=>{p===1&&(l.value=!l.value)},d=p=>{c.value=p,p!==1&&(r.value=!1)},m=()=>{c.value=null};return t({hideOverlay:s,handleLink:i,checkActiveLink:d,deleteActiveLink:m,activeIndex:c,highlightMenu:r,showOverlay:l,getLinkComponent:a}),(p,y)=>(e.openBlock(),e.createElementBlock("div",b1,[e.createElementVNode("div",k1,[e.renderSlot(p.$slots,"left-menu",{},()=>[l.value?(e.openBlock(),e.createElementBlock("button",{key:0,"aria-label":"Close overlay",class:"overlay",onClick:s,onKeydown:[e.withKeys(s,["enter"]),e.withKeys(s,["esc"])]},null,32)):e.createCommentVNode("",!0),e.createElementVNode("nav",{id:"left-menu","aria-labelledby":o.ariaLeftMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.leftMenu,(h,u)=>(e.openBlock(),e.createElementBlock("li",{key:u,class:e.normalizeClass({active:c.value===u,highlight:r.value})},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(a(h)),{"aria-label":h.title,href:h.href,rel:h.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:h.openInNewTab?"_blank":void 0,title:h.title,to:h.to,onClick:V=>d(u),onFocus:V=>u===1&&l.value?r.value=!0:null,onMouseover:V=>u===1&&l.value?r.value=!0:null},{default:e.withCtx(()=>[n.itemsSelectMenu&&u===1?(e.openBlock(),e.createElementBlock("span",V1,[e.createVNode(nt,{items:n.itemsSelectMenu,label:h.title,outlined:!1,"is-header-toolbar":"",onClick:V=>i(u)},null,8,["items","label","onClick"])])):(e.openBlock(),e.createElementBlock("span",w1,e.toDisplayString(h.title),1))]),_:2},1064,["aria-label","href","rel","target","title","to","onClick","onFocus","onMouseover"]))],2))),128))])],8,y1)],!0),e.renderSlot(p.$slots,"right-menu",{},()=>[e.createElementVNode("nav",{id:"right-menu","aria-labelledby":o.ariaRightMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.rightMenu,(h,u)=>(e.openBlock(),e.createElementBlock("li",{key:u},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(a(h)),{"aria-label":h.title,href:h.href,rel:h.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:h.openInNewTab?"_blank":void 0,title:h.title,to:h.to,onClick:y[0]||(y[0]=V=>m())},{default:e.withCtx(()=>[e.createElementVNode("span",N1,e.toDisplayString(h.title),1)]),_:2},1032,["aria-label","href","rel","target","title","to"]))]))),128))])],8,v1)],!0)])]))}}),[["__scopeId","data-v-1708d64a"]]),C1={label:"Choix de la langue. Actuellement"};var L1={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 le=L1,Tt={},Ve={},It=[],Zt=[],At=[];for(const n in le){const{name:t,nativeName:o}=le[n];Tt[n]=Ve[t.toLowerCase()]=Ve[o.toLowerCase()]={code:n,name:t,nativeName:o},It.push(n),Zt.push(t),At.push(o)}var S1=class Be{static getLanguages(t=[]){return t.map(o=>Be.validate(o)?Object.assign({},Tt[o]):{code:o,name:"",nativeName:""})}static getName(t){return Be.validate(t)?le[t].name:""}static getAllNames(){return Zt.slice()}static getNativeName(t){return Be.validate(t)?le[t].nativeName:""}static getAllNativeNames(){return At.slice()}static getCode(t){return t=t.toLowerCase(),Ve.hasOwnProperty(t)?Ve[t].code:""}static getAllCodes(){return It.slice()}static validate(t){return le.hasOwnProperty(t)}};const we=Qe(S1),M1={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},x1=["id"],_1=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:C1.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(n,{expose:t,emit:o}){const a=n,l=O(M1,a),r=o,c=e.ref(!1),s=e.ref(a.modelValue);e.watch(()=>a.modelValue,h=>{s.value=h});function i(h){s.value=h,r("update:modelValue",h),r("change",h),c.value=!1}const d=e.computed(()=>c.value),m=e.computed(()=>"lang-menu-id"),p=e.computed(()=>{const h={};let u;return a.availableLanguages==="*"?u=we.getAllCodes():u=a.availableLanguages,u.forEach(V=>{h[V]={code:V,name:we.getName(V)||V,nativeName:we.getNativeName(V)||we.getName(V)||V}}),h}),y=e.computed(()=>{const h=p.value[s.value];return{name:(h==null?void 0:h.nativeName)||s.value,label:`${a.ariaLabel} ${(h==null?void 0:h.nativeName)||s.value}`}});return t({currentLangData:y,updateLang:i,selectedLanguage:s}),(h,u)=>(e.openBlock(),e.createElementBlock("div",{id:m.value},[e.createVNode(Le.VMenu,e.mergeProps(e.unref(l).menu,{id:d.value?"lang-menu":m.value,modelValue:c.value,"onUpdate:modelValue":u[0]||(u[0]=V=>c.value=V),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:V})=>[e.createVNode(E.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${a.ariaLabel} ${y.value.name}`,"aria-haspopup":"menu","aria-controls":m.value,"aria-owns":m.value,"aria-expanded":d.value},{...e.unref(l).btn,...V},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.value.name)+" ",1),h.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(M.VIcon,e.mergeProps({key:0},e.unref(l).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Je)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(H.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(p.value,(V,w,C)=>(e.openBlock(),e.createBlock(H.VListItem,e.mergeProps({ref_for:!0},e.unref(l).listTile,{key:w,role:"menuitem",tabindex:C+1,"aria-label":`${a.ariaLabel} ${V.nativeName}`,"aria-labelledby":`${m.value} ${V.nativeName}`,onClick:f=>i(w)}),{default:e.withCtx(()=>[e.createVNode(H.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,x1))}}),E1=L(_1,[["__scopeId","data-v-4c0d182f"]]),Ze={xSmall:{width:"11",height:"32"},small:{width:"14",height:"40"},normal:{width:"22",height:"64"}},J={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"}},$t={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:J.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:J.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:J.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:J.logoCompteAmeli}},T1=["height"],I1=["width","height","fill"],Z1=["src","alt"],A1={key:2,class:"vd-title-container d-flex justify-center flex-column text-primary"},$1={key:1,class:"vd-title text-caption"},D1=L(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(n){const t=n,o=e.useSlots(),a=e.computed(()=>{if(t.theme==="compte-entreprise"){const{title:_,subTitle:x}=J.compteEntreprise;return{title:_,subTitle:x}}return{title:t.serviceTitle||"",subTitle:t.serviceSubTitle||""}}),l=e.computed(()=>t.mobileVersion&&p.value),r=e.computed(()=>l.value?"32px":t.mobileVersion?"40px":"64px"),c=e.computed(()=>!t.reduceLogo&&t.theme==="risque-pro"),s=e.computed(()=>t.theme==="compte-entreprise"),i=e.computed(()=>t.theme==="compte-ameli"&&t.mobileVersion),d=e.computed(()=>t.reduceLogo||s.value||i.value),m=e.computed(()=>t.theme in $t?$t[t.theme]:null),p=e.computed(()=>!!m.value),y=e.computed(()=>t.theme==="ameli-pro"||t.theme==="ameli"),h=e.computed(()=>{var _,x,Z,D;if((_=t.homeLink)!=null&&_.to){const I=(Z=(x=e.getCurrentInstance())==null?void 0:x.appContext)==null?void 0:Z.components;return I&&"RouterLink"in I?"router-link":"div"}return(D=t.homeLink)!=null&&D.href?"a":"div"}),u=e.computed(()=>y.value?h.value:"div"),V=e.computed(()=>y.value&&m.value?`${J.homeLinkPrefix} ${m.value.alt}`:null),w=e.computed(()=>t.reduceLogo?p.value:!1),C=e.computed(()=>!!o["brand-content"]),f=e.computed(()=>!!(a.value.title||a.value.subTitle||C.value||p.value)),N=e.computed(()=>t.reduceLogo?!1:f.value),b=e.computed(()=>!!(a.value.title&&a.value.subTitle&&!t.mobileVersion)),S=e.computed(()=>{switch(t.theme){case"cnam":case"ameli-pro":return be.secondary;case"compte-entreprise":return"#cd545b";default:return be.primary}}),B=e.computed(()=>t.mobileVersion?p.value?Ze.xSmall:Ze.small:Ze.normal),T=e.computed(()=>t.mobileVersion?p.value?z.X_SMALL:z.SMALL:z.NORMAL);return(_,x)=>{var Z,D;return e.openBlock(),e.createElementBlock("div",{height:r.value,class:"vd-logo-brand-section d-flex"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(h.value),{to:h.value==="router-link"?(Z=_.homeLink)==null?void 0:Z.to:void 0,href:h.value==="a"?(D=_.homeLink)==null?void 0:D.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>{var I;return[e.createVNode(Ee,{"hide-signature":d.value,"hide-organism":i.value,"risque-pro":c.value,"aria-label":(I=_.homeLink)==null?void 0:I.ariaLabel,avatar:w.value,size:T.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(_.$slots,"default",{},()=>{var I,q;return[N.value?(e.openBlock(),e.createElementBlock("svg",{key:0,width:B.value.width,height:B.value.height,fill:S.value,role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},x[0]||(x[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,I1)):e.createCommentVNode("",!0),m.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.value),{key:1,"aria-label":V.value,to:u.value==="router-link"?(I=_.homeLink)==null?void 0:I.to:void 0,href:u.value==="a"?(q=_.homeLink)==null?void 0:q.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>[e.createElementVNode("img",{src:m.value.src,alt:m.value.alt},null,8,Z1)]),_:1},8,["aria-label","to","href"])):f.value?(e.openBlock(),e.createElementBlock("div",A1,[e.renderSlot(_.$slots,"brand-content",{},()=>[a.value.title?(e.openBlock(),e.createElementBlock("h1",{key:0,class:e.normalizeClass([{"vd-compte-entreprise-title":s.value},"vd-title text-caption text-md-subtitle-1 font-weight-medium"])},[typeof a.value.title=="string"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(a.value.title),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(a.value.title.text)+" ",1),e.createElementVNode("span",null,e.toDisplayString(a.value.title.highlight),1)],64))],2)):e.createCommentVNode("",!0),b.value?(e.openBlock(),e.createElementBlock("h2",$1,e.toDisplayString(a.value.subTitle),1)):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]},!0)],8,T1)}}}),[["__scopeId","data-v-ca95c6a8"]]),H1="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",Ae={pageTitle:"Maintenance en cours",message:"L’application n’est pas disponible pour le moment, veuillez nous excuser pour la gêne occasionnée."},O1=["alt"],z1=L(e.defineComponent({__name:"MaintenancePage",setup(n){return(t,o)=>(e.openBlock(),e.createBlock(_e,{"page-title":e.unref(Ae).pageTitle,message:e.unref(Ae).message,"no-btn":""},{illustration:e.withCtx(()=>[e.createElementVNode("img",{src:H1,alt:e.unref(Ae).pageTitle},null,8,O1)]),_:1},8,["page-title","message"]))}}),[["__scopeId","data-v-aea9e609"]]),P1="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",ie={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"},R1={class:"mt-4"},F1=["alt"],q1="support_id",K1=L(e.defineComponent({__name:"NotFoundPage",setup(n){const t=e.ref();return e.onMounted(()=>{var l;let a=new URLSearchParams(document.location.search).get(q1);a&&(t.value=(l=a.trim().match(/.{1,4}/g))==null?void 0:l.join(" "))}),(o,a)=>(e.openBlock(),e.createBlock(_e,{code:e.unref(ie).code,"page-title":e.unref(ie).pageTitle,message:e.unref(ie).message},e.createSlots({illustration:e.withCtx(()=>[e.createElementVNode("img",{src:P1,alt:e.unref(ie).pageTitle},null,8,F1)]),_:2},[t.value?{name:"additional-content",fn:e.withCtx(()=>[e.createElementVNode("p",R1,[e.createTextVNode(e.toDisplayString(e.unref(ie).supportIdMessage)+" ",1),e.createElementVNode("b",null,e.toDisplayString(t.value),1),a[0]||(a[0]=e.createTextVNode(" . "))])]),key:"0"}:void 0]),1032,["code","page-title","message"]))}}),[["__scopeId","data-v-1ff99a74"]]);function Dt(){const n=(o,a={})=>{const l=r=>a.ignoreSpace?r.replace(/\s/g,"").length:r.length;return r=>{var c,s;if(o!=="required"&&typeof r=="string"&&r.trim()==="")return{};switch(o){case"required":return typeof r=="string"&&r.trim()?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`Vous devez renseigner ${a.fieldName||"ce champ"}.`};case"min":return typeof r=="number"&&r>=(a.value??0)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`La valeur doit être supérieure ou égale à ${a.value}.`};case"minLength":return typeof r=="string"&&l(r)>=(a.length??0)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`Ce champ doit avoir au moins ${a.length} caractères.`};case"max":return typeof r=="number"&&r<=(a.value??1/0)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`La valeur doit être inférieure ou égale à ${a.value}.`};case"maxLength":return typeof r=="string"&&l(r)<=(a.length??1/0)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`Ce champ ne doit pas dépasser ${a.length} caractères.`};case"exactLength":return typeof r=="string"&&l(r)===(a.length??0)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||`Ce champ doit avoir exactement ${a.length} caractères.`};case"email":return typeof r=="string"&&/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(r)?{success:a.successMessage||"Le champ est valide."}:{error:a.message||"Veuillez entrer un email valide."};case"matchPattern":return typeof r=="string"&&((c=a.pattern)!=null&&c.test(r))?{success:a.successMessage||"Le champ est valide."}:{error:a.message||"Format invalide."};case"custom":{const i=(s=a.validate)==null?void 0:s.call(a,r);return i===!0?{success:a.successMessage||"Le champ est valide."}:{error:typeof i=="string"?i:a.message||"Validation échouée."}}default:return{error:"La règle spécifiée n'existe pas."}}}};return{generateRules:o=>o.map(a=>n(a.type,a.options))}}var U1=Object.defineProperty,G1=(n,t,o)=>t in n?U1(n,t,{enumerable:!0,configurable:!0,writable:!0,value:o}):n[t]=o,ce=(n,t,o)=>G1(n,typeof t!="symbol"?t+"":t,o);const Ht={"#":{pattern:/[0-9]/},"@":{pattern:/[a-zA-Z]/},"*":{pattern:/[a-zA-Z0-9]/}},Ot=(n,t,o)=>n.replaceAll(t,"").replace(o,".").replace("..",".").replace(/[^.\d]/g,""),zt=(n,t,o)=>{var a;return new Intl.NumberFormat(((a=o.number)==null?void 0:a.locale)??"en",{minimumFractionDigits:n,maximumFractionDigits:t,roundingMode:"trunc"})},W1=(n,t=!0,o)=>{var a,l,r,c;const s=((a=o.number)==null?void 0:a.unsigned)!==!0&&n.startsWith("-")?"-":"",i=((l=o.number)==null?void 0:l.fraction)??0;let d=zt(0,i,o);const m=d.formatToParts(1000.12),p=((r=m.find(w=>w.type==="group"))==null?void 0:r.value)??" ",y=((c=m.find(w=>w.type==="decimal"))==null?void 0:c.value)??".",h=Ot(n,p,y);if(Number.isNaN(parseFloat(h)))return s;const u=h.split(".");if(u[1]!=null&&u[1].length>=1){const w=u[1].length<=i?u[1].length:i;d=zt(w,i,o)}let V=d.format(parseFloat(h));return t?i>0&&h.endsWith(".")&&!h.slice(0,-1).includes(".")&&(V+=y):V=Ot(V,p,y),s+V};class j1{constructor(t={}){ce(this,"opts",{}),ce(this,"memo",new Map);const o={...t};if(o.tokens!=null){o.tokens=o.tokensReplace?{...o.tokens}:{...Ht,...o.tokens};for(const a of Object.values(o.tokens))typeof a.pattern=="string"&&(a.pattern=new RegExp(a.pattern))}else o.tokens=Ht;Array.isArray(o.mask)&&(o.mask.length>1?o.mask=[...o.mask].sort((a,l)=>a.length-l.length):o.mask=o.mask[0]??""),o.mask===""&&(o.mask=null),this.opts=o}masked(t){return this.process(t,this.findMask(t))}unmasked(t){return this.process(t,this.findMask(t),!1)}isEager(){return this.opts.eager===!0}isReversed(){return this.opts.reversed===!0}completed(t){const o=this.findMask(t);if(this.opts.mask==null||o==null)return!1;const a=this.process(t,o).length;return typeof this.opts.mask=="string"?a>=this.opts.mask.length:a>=o.length}findMask(t){const o=this.opts.mask;if(o==null)return null;if(typeof o=="string")return o;if(typeof o=="function")return o(t);const a=this.process(t,o.slice(-1).pop()??"",!1);return o.find(l=>this.process(t,l,!1).length>=a.length)??""}escapeMask(t){const o=[],a=[];return t.split("").forEach((l,r)=>{l==="!"&&t[r-1]!=="!"?a.push(r-a.length):o.push(l)}),{mask:o.join(""),escaped:a}}process(t,o,a=!0){if(this.opts.number!=null)return W1(t,a,this.opts);if(o==null)return t;const l=`v=${t},mr=${o},m=${a?1:0}`;if(this.memo.has(l))return this.memo.get(l);const{mask:r,escaped:c}=this.escapeMask(o),s=[],i=this.opts.tokens!=null?this.opts.tokens:{},d=this.isReversed()?-1:1,m=this.isReversed()?"unshift":"push",p=this.isReversed()?0:r.length-1,y=this.isReversed()?()=>w>-1&&C>-1:()=>w<r.length&&C<t.length,h=N=>!this.isReversed()&&N<=p||this.isReversed()&&N>=p;let u,V=-1,w=this.isReversed()?r.length-1:0,C=this.isReversed()?t.length-1:0,f=!1;for(;y();){const N=r.charAt(w),b=i[N],S=(b==null?void 0:b.transform)!=null?b.transform(t.charAt(C)):t.charAt(C);if(!c.includes(w)&&b!=null?(S.match(b.pattern)!=null?(s[m](S),b.repeated?(V===-1?V=w:w===p&&w!==V&&(w=V-d),p===V&&(w-=d)):b.multiple&&(f=!0,w-=d),w+=d):b.multiple?f&&(w+=d,C-=d,f=!1):S===u?u=void 0:b.optional&&(w+=d,C-=d),C+=d):(a&&!this.isEager()&&s[m](N),S===N&&!this.isEager()?C+=d:u=N,this.isEager()||(w+=d)),this.isEager())for(;h(w)&&(i[r.charAt(w)]==null||c.includes(w));){if(a){if(s[m](r.charAt(w)),t.charAt(C)===r.charAt(w)){w+=d,C+=d;continue}}else r.charAt(w)===t.charAt(C)&&(C+=d);w+=d}}return this.memo.set(l,s.join("")),this.memo.get(l)}}const Pt=n=>JSON.parse(n.replaceAll("'",'"')),Y1=(n,t={})=>{const o={...t};n.dataset.maska!=null&&n.dataset.maska!==""&&(o.mask=J1(n.dataset.maska)),n.dataset.maskaEager!=null&&(o.eager=ve(n.dataset.maskaEager)),n.dataset.maskaReversed!=null&&(o.reversed=ve(n.dataset.maskaReversed)),n.dataset.maskaTokensReplace!=null&&(o.tokensReplace=ve(n.dataset.maskaTokensReplace)),n.dataset.maskaTokens!=null&&(o.tokens=Q1(n.dataset.maskaTokens));const a={};return n.dataset.maskaNumberLocale!=null&&(a.locale=n.dataset.maskaNumberLocale),n.dataset.maskaNumberFraction!=null&&(a.fraction=parseInt(n.dataset.maskaNumberFraction)),n.dataset.maskaNumberUnsigned!=null&&(a.unsigned=ve(n.dataset.maskaNumberUnsigned)),(n.dataset.maskaNumber!=null||Object.values(a).length>0)&&(o.number=a),o},ve=n=>n!==""?!!JSON.parse(n):!0,J1=n=>n.startsWith("[")&&n.endsWith("]")?Pt(n):n,Q1=n=>{if(n.startsWith("{")&&n.endsWith("}"))return Pt(n);const t={};return n.split("|").forEach(o=>{const a=o.split(":");t[a[0]]={pattern:new RegExp(a[1]),optional:a[2]==="optional",multiple:a[2]==="multiple",repeated:a[2]==="repeated"}}),t};class X1{constructor(t,o={}){ce(this,"items",new Map),ce(this,"eventAbortController"),ce(this,"onInput",a=>{if(a instanceof CustomEvent&&a.type==="input"&&!a.isTrusted&&!a.bubbles)return;const l=a.target,r=this.items.get(l),c="inputType"in a&&a.inputType.startsWith("delete"),s=r.isEager(),i=c&&s&&r.unmasked(l.value)===""?"":l.value;this.fixCursor(l,c,()=>this.setValue(l,i))}),this.options=o,this.eventAbortController=new AbortController,this.init(this.getInputs(t))}update(t={}){this.options={...t},this.init(Array.from(this.items.keys()))}updateValue(t){t.value!==""&&t.value!==this.processInput(t).masked&&this.setValue(t,t.value)}destroy(){this.eventAbortController.abort(),this.items.clear()}init(t){const o=this.getOptions(this.options);for(const a of t){if(!this.items.has(a)){const{signal:r}=this.eventAbortController;a.addEventListener("input",this.onInput,{capture:!0,signal:r})}const l=new j1(Y1(a,o));this.items.set(a,l),queueMicrotask(()=>this.updateValue(a)),a.selectionStart===null&&l.isEager()&&console.warn("Maska: input of `%s` type is not supported",a.type)}}getInputs(t){return typeof t=="string"?Array.from(document.querySelectorAll(t)):"length"in t?Array.from(t):[t]}getOptions(t){const{onMaska:o,preProcess:a,postProcess:l,...r}=t;return r}fixCursor(t,o,a){const l=t.selectionStart,r=t.value;if(a(),l===null||l===r.length&&!o)return;const c=t.value,s=r.slice(0,l),i=c.slice(0,l),d=this.processInput(t,s).unmasked,m=this.processInput(t,i).unmasked;let p=l;s!==i&&(p+=o?c.length-r.length:d.length-m.length),t.setSelectionRange(p,p)}setValue(t,o){const a=this.processInput(t,o);t.value=a.masked,this.options.onMaska!=null&&(Array.isArray(this.options.onMaska)?this.options.onMaska.forEach(l=>l(a)):this.options.onMaska(a)),t.dispatchEvent(new CustomEvent("maska",{detail:a})),t.dispatchEvent(new CustomEvent("input",{detail:a.masked}))}processInput(t,o){const a=this.items.get(t);let l=o??t.value;this.options.preProcess!=null&&(l=this.options.preProcess(l));let r=a.masked(l);return this.options.postProcess!=null&&(r=this.options.postProcess(r)),{masked:r,unmasked:a.unmasked(l),completed:a.completed(l)}}}const $e=new WeakMap,e2=(n,t)=>{if(n.arg==null||n.instance==null)return;const o="setup"in n.instance.$.type;n.arg in n.instance?n.instance[n.arg]=t:o&&console.warn("Maska: please expose `%s` using defineExpose",n.arg)},De=(n,t)=>{var o;const a=n instanceof HTMLInputElement?n:n.querySelector("input");if(a==null||(a==null?void 0:a.type)==="file")return;let l={};if(t.value!=null&&(l=typeof t.value=="string"?{mask:t.value}:{...t.value}),t.arg!=null){const r=c=>{const s=t.modifiers.unmasked?c.unmasked:t.modifiers.completed?c.completed:c.masked;e2(t,s)};l.onMaska=l.onMaska==null?r:Array.isArray(l.onMaska)?[...l.onMaska,r]:[l.onMaska,r]}$e.has(a)?(o=$e.get(a))==null||o.update(l):$e.set(a,new X1(a,l))},t2=13,a2=2;function Rt(n){return n=n.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(n)}function Ft(n){n=n.replace(/\s+/g,"").toUpperCase();let t=n.substring(0,13);return t=t.replace("2A","19").replace("2B","18"),(97n-BigInt(t)%97n).toString().padStart(2,"0")}function qt(n){n=n.replace(/\s+/g,"").toUpperCase();const t=n.substring(13,15),o=Ft(n);return t===o}const Ne={errorRequiredNumber:"Le numéro de sécurité sociale est requis.",errorLengthNumber:n=>`Le numéro de sécurité sociale doit contenir ${n} 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:n=>`La clé du numéro de sécurité sociale doit contenir ${n} 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"},n2={persistentHint:{persistentHint:!0},validateOn:{validateOn:"blur"},icon:{color:""},tooltip:{location:"top"}},o2={class:"d-flex align-start"},r2={class:"custom-counter"},l2={class:"custom-counter"},i2=L(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},customNumberRules:{default:[]},customKeyRules:{default:[]}},emits:["update:modelValue"],setup(n,{expose:t,emit:o}){var Qt,Xt,ea,ta,aa,na;const a=n,l=o,r=O(n2,a),c=ue,s=e.ref(""),i=e.ref(""),d=e.ref(!1),m=e.ref(null),p=e.ref(null),y=e.computed(()=>s.value.replace(/\s/g,""));e.watch(()=>a.modelValue,async v=>{s.value=(v==null?void 0:v.slice(0,13))??"",i.value=(v==null?void 0:v.slice(13,15))??""},{immediate:!0});const h=e.ref([]),u=e.ref([]),V=e.ref(!1),w={mask:"# ## ## #C ### ###",preProcess:v=>v.toUpperCase(),tokens:{C:{pattern:/[0-9AB]/,transform:v=>v.toUpperCase()}}},C={mask:"##"},{generateRules:f}=Dt(),N=[{type:"exactLength",options:{length:13,message:Ne.errorLengthNumber(13),ignoreSpace:!0,fieldIdentifier:"numéro"}},{type:"custom",options:{validate:Rt,message:"Le numéro de sécurité sociale est invalide.",successMessage:"Le numéro de sécurité sociale est valide.",fieldIdentifier:"numéro"}},...a.required?[{type:"required",options:{message:"Le numéro de sécurité sociale est requis.",fieldIdentifier:"numéro"}}]:[]],b=[{type:"exactLength",options:{length:2,message:Ne.errorLengthKey(2),ignoreSpace:!0,fieldIdentifier:"clé"}},{type:"custom",options:{validate:()=>qt(`${s.value}${i.value}`),message:"La clé du numéro de sécurité sociale est invalide.",successMessage:"Le champ clé est valide.",fieldIdentifier:"clé"}},...a.required?[{type:"required",options:{message:"La clé est requise.",fieldIdentifier:"clé"}}]:[]],S=(Xt=(Qt=N[0])==null?void 0:Qt.options)==null?void 0:Xt.fieldIdentifier,B=(ta=(ea=b[0])==null?void 0:ea.options)==null?void 0:ta.fieldIdentifier,T=e.computed(()=>h.value.some(v=>v.includes(S))),_=e.computed(()=>h.value.some(v=>v.includes(B))),x=e.computed(()=>u.value.some(v=>v.includes(S))),Z=e.computed(()=>u.value.some(v=>v.includes(B))),D=(aa=a.customNumberRules)!=null&&aa.length?f(a.customNumberRules):f(N),I=a.displayKey?(na=a.customKeyRules)!=null&&na.length?f(a.customKeyRules):f(b):[];function q(v,A){A.forEach($=>{const{error:de,success:ze}=$(v);de&&h.value.push(de),ze&&ze!=="Le champ est valide."&&u.value.push(ze)})}function ee(v=!1){h.value=[],u.value=[];const A=v||V.value||s.value.length===18,$=a.displayKey&&(v||V.value||i.value.length===2);A&&q(s.value,D),$&&q(i.value,I),u.value=Array.from(new Set(u.value))}const er=e.computed(()=>{const v=s.value.replace(/\s/g,"").length;return`${Math.min(v,13)}/13`}),tr=e.computed(()=>{const v=i.value.replace(/\s/g,"").length;return`${Math.min(v,2)}/2`});e.watch([y,i],()=>{ee(),y.value+i.value!==a.modelValue&&l("update:modelValue",`${y.value}${i.value}`)}),e.watch(i,(v,A)=>{d.value=!!(!v&&A)}),e.watch(s,()=>{y.value.length<13&&(d.value=!1)});const ar=e.computed(()=>{var v,A,$,de;return a.displayKey&&s.value.length===18?d.value?(de=($=p.value)==null?void 0:$.$el)==null?void 0:de.querySelector("input"):(A=(v=m.value)==null?void 0:v.$el)==null?void 0:A.querySelector("input"):null});e.watch(ar,v=>{e.nextTick(()=>{v==null||v.focus()})});function nr(){return V.value=!0,ee(),h.value.length===0}return t({validateOnSubmit:nr}),(v,A)=>(e.openBlock(),e.createElementBlock("div",o2,[e.createVNode(Pe.VInput,{ref:"vInput",class:e.normalizeClass([{"v-messages__message--success":u.value.length>0,"v-messages__message--error":h.value.length>0},"vd-nir-field__fields-wrapper multi-line"]),"error-messages":h.value,label:v.numberLabel,"max-errors":3,messages:u.value,"model-value":[s.value,i.value],"validate-on":"blur lazy"},{default:e.withCtx(()=>[v.nirTooltip?(e.openBlock(),e.createBlock(qe.VTooltip,{key:0},{activator:e.withCtx(({props:$})=>[e.createVNode(M.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 mr-4"},{...$,...e.unref(r).tooltip}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(c)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(v.$slots,"nirTooltip",{},()=>[e.createTextVNode(e.toDisplayString(v.nirTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(fe,{ref_key:"numberField",ref:p,modelValue:s.value,"onUpdate:modelValue":A[0]||(A[0]=$=>s.value=$),"append-inner-icon":T.value?"error":x.value?"success":void 0,"aria-errormessage":T.value?"number-field-errors":void 0,"aria-invalid":T.value,"aria-required":v.required,color:T.value?"error":"primary",error:T.value,hint:e.unref(Ne).numberHint,label:v.numberLabel,variant:v.outlined?"outlined":"underlined",class:"vd-number-field",title:"nirField",onBlur:A[1]||(A[1]=$=>ee(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",r2,e.toDisplayString(er.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(De),w]]),v.displayKey?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.withDirectives((e.openBlock(),e.createBlock(fe,{ref_key:"keyField",ref:m,modelValue:i.value,"onUpdate:modelValue":A[2]||(A[2]=$=>i.value=$),"append-inner-icon":_.value?"error":Z.value?"success":void 0,"aria-errormessage":_.value?"key-field-errors":void 0,"aria-invalid":_.value,"aria-required":v.required,color:_.value?"error":"primary",error:_.value,hint:e.unref(Ne).keyHint,label:v.keyLabel,variant:v.outlined?"outlined":"underlined",class:"vd-key-field",title:"nirKeyField",onBlur:A[3]||(A[3]=$=>ee(!0))},{details:e.withCtx(()=>[e.createElementVNode("span",l2,e.toDisplayString(tr.value),1)]),_:1},8,["modelValue","append-inner-icon","aria-errormessage","aria-invalid","aria-required","color","error","hint","label","variant"])),[[e.unref(De),C]]),v.keyTooltip?(e.openBlock(),e.createBlock(qe.VTooltip,{key:0},{activator:e.withCtx(({props:$})=>[e.createVNode(M.VIcon,e.mergeProps({class:"vd-tooltip-icon mt-4 ml-4"},{...$,...e.unref(r).icon}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(c)),1)]),_:2},1040)]),default:e.withCtx(()=>[e.renderSlot(v.$slots,"keyTooltip",{},()=>[e.createTextVNode(e.toDisplayString(v.keyTooltip),1)],!0)]),_:3})):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]),_:3},8,["class","error-messages","label","messages","model-value"])]))}}),[["__scopeId","data-v-53a042d6"]]),Q=e.ref([]);function Kt(){return{notificationQueue:Q,addNotification:a=>{Q.value.some(l=>l.id===a.id)||Q.value.push(a)},removeNotification:a=>{Q.value=Q.value.filter(l=>l.id!==a)},clearQueue:()=>{Q.value=[]}}}const c2=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:Kt},Symbol.toStringTag,{value:"Module"})),s2={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},d2={key:0},m2={class:"d-flex align-center ga-2"},p2=L(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(n,{expose:t}){const o=n,a=O(s2,o),l=P.useDisplay(),{notificationQueue:r,removeNotification:c}=Kt(),s=e.getCurrentInstance(),i=e.ref(),d=e.ref(!1),m=e.ref(!1),p=e.computed(()=>!!(s!=null&&s.slots.action)),y=e.computed(()=>l.name.value==="xs"),h=e.computed(()=>l.name.value==="sm"),u=e.computed(()=>{var x,Z;return(((Z=(x=i.value)==null?void 0:x.message)==null?void 0:Z.length)??0)>50}),V={info:ue,success:je,warning:ga,error:Ue},w=e.computed(()=>i.value?V[i.value.type]:null),C=e.computed(()=>i.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[i.value.type]||"info"),f=e.computed(()=>i.value?{contentColor:i.value.type==="success"||i.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),N=e.computed(()=>y.value&&!u.value&&!p.value),b=x=>{i.value={...x}},S=async()=>{for(m.value=!0;r.value.length>0;){const x=r.value[0];b(x),d.value=!0;let Z=x.timeout??-1;Z<=0?await new Promise(D=>{const I=e.watch(d,q=>{q||(I(),D())})}):await new Promise(D=>{const I=setTimeout(()=>{B(),D()},Z),q=e.watch(d,ee=>{ee||(clearTimeout(I),q(),D())})}),c(x.id)}m.value=!1},B=()=>{d.value=!1,i.value&&(c(i.value.id),i.value=void 0)},T=x=>{b(x),d.value=!0},_=()=>{if(r.value.length>0){const x=r.value[0];b(x),d.value=!0}};return e.watch(()=>r.value.length,x=>{x>0&&!m.value&&S()}),t({openNotification:T,handleClearNotification:B,showNextNotification:_,processNotificationQueue:S,currentNotification:i,isNotificationVisible:d,hasActionSlot:p,isMobileVersion:y,hasLongContent:u,color:C,icon:w,contentStyle:f,smallCloseBtn:N,isVertical:e.computed(()=>u.value&&y.value)}),(x,Z)=>{var D;return i.value?(e.openBlock(),e.createElementBlock("div",d2,[e.createVNode(sa.VSnackbar,e.mergeProps(e.unref(a).snackbar,{modelValue:d.value,"onUpdate:modelValue":Z[0]||(Z[0]=I=>d.value=I),role:"status",color:C.value,location:o.bottom?"bottom":"top",vertical:u.value,"multi-line":u.value,timeout:((D=i.value)==null?void 0:D.timeout)??-1,width:y.value||h.value?"auto":"960px",rounded:o.rounded,class:[{"long-text":u.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",u.value?"action-section-longText":"action-section-shortText"]),style:{width:"100%"}},[e.renderSlot(x.$slots,"action",{},void 0,!0),e.createVNode(E.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":N.value}],"aria-label":"Fermer la notification"},e.unref(a).btn,{onClick:B}),{default:e.withCtx(()=>[N.value?(e.openBlock(),e.createBlock(M.VIcon,{key:1,icon:e.unref(G)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(x.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var I;return[e.createElementVNode("div",m2,[!y.value&&w.value?(e.openBlock(),e.createBlock(M.VIcon,e.mergeProps({key:0},e.unref(a).icon,{icon:w.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+f.value.contentColor)},e.toDisplayString((I=i.value)==null?void 0:I.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-93d35fbf"]]);function Ut(n,t,o=[]){return typeof n[t]=="function"?n[t](...o):n[t]}const h2={default:"Le champ est requis."};function u2(n=h2){return t=>{let o;return Array.isArray(t)?o=t.length!==0:o=!!(typeof t=="string"?t.trim():t),o||Ut(n,"default")}}const He=u2(),f2={default:n=>`La longueur du champ doit être de ${n} caractères.`};function g2(n,t=!1,o=f2){return a=>a?(t&&(a=a.replace(/\s/g,"")),a.length===n||Ut(o,"default",[n])):!0}const Gt=g2,b2=[{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:"### ####"}],Wt={label:"Numéro de téléphone",indicatifLabel:"Indicatif"},k2={class:"phone-field-container"},y2=L(e.defineComponent({__name:"PhoneField",props:{modelValue:{type:String,default:""},dialCodeModel:{type:[String,Object],default:""},required:{type:Boolean,default:!1},outlined:{type:Boolean,default:!1},outlinedIndicatif:{type:Boolean,default:!1},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(n,{expose:t,emit:o}){const a=n,l=o,r=e.ref(a.modelValue||""),c=e.ref(a.dialCodeModel||""),s=e.ref(10),i=e.ref("## ## ## ## ##"),d=e.ref(!1),m=e.ref(!1),p=e.computed(()=>a.useCustomIndicatifsOnly?a.customIndicatifs:[...b2,...a.customIndicatifs]),y=e.computed(()=>p.value.map(b=>({...b,displayText:h(b)})));function h(b){return{code:b.code,"code-abbreviation":`${b.code} (${b.abbreviation})`,"code-country":`${b.code} ${b.country}`,country:b.country,abbreviation:b.abbreviation}[a.displayFormat]||b.code}const u=e.computed(()=>{const b=e.toRaw(c.value);return y.value.find(S=>S.code===String(b))});function V(b){var S;if(b=b.replace(/\D/g,""),(S=u.value)!=null&&S.mask){const B=new RegExp(u.value.mask.replace(/#/g,"\\d"));return b.replace(B,u.value.mask).trim()}return b.replace(/(.{2})/g,"$1 ").trim()}function w(b){const S=b.target.value.replace(/\s|\D/g,"");r.value=S.startsWith(String(c.value)||"")?S.slice(String(c.value||"").length):S,l("update:modelValue",r.value),l("change",r.value)}function C(){if(!a.isValidatedOnBlur)return;d.value=!1;const b=!a.required||He(r.value)===!0,S=Gt(s.value,!0)(r.value)===!0;d.value=!(b&&S),m.value=!0}const f=e.computed(()=>{const b=[Gt(s.value,!0)];return a.required&&b.unshift(He),b}),N=e.computed(()=>r.value?V(r.value):"");return e.watch(()=>a.modelValue,b=>{r.value=b||""}),e.watch(c,b=>{l("update:selectedDialCode",b)}),e.watch(c,b=>{b&&(s.value=(b==null?void 0:b.phoneLength)||10,i.value=(b==null?void 0:b.mask)||"## ## ## ## ##")}),t({computedValue:N,dialCode:c,phoneMask:i,counter:s,hasError:d,phoneNumber:r,mergedDialCodes:p}),(b,S)=>(e.openBlock(),e.createElementBlock("div",k2,[a.withCountryCode?(e.openBlock(),e.createBlock(ot,{key:0,modelValue:c.value,"onUpdate:modelValue":S[0]||(S[0]=B=>c.value=B),items:y.value,"text-key":"displayText","value-key":"code",label:e.unref(Wt).indicatifLabel,required:a.countryCodeRequired,class:"custom-select",outlined:n.outlinedIndicatif},null,8,["modelValue","items","label","required","outlined"])):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(fe,{"model-value":N.value,rules:f.value,required:a.required,counter:s.value,"counter-value":B=>B.replace(/\s/g,"").length,label:e.unref(Wt).label,variant:n.outlined?"outlined":"underlined",color:"primary",class:"phoneField",onInput:w,onBlur:C},{"append-inner":e.withCtx(()=>[e.createVNode(M.VIcon,{class:"mr-2",color:"#222324"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ea)),1)]),_:1}),d.value?(e.openBlock(),e.createBlock(M.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ae)),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["model-value","rules","required","counter","counter-value","label","variant"])),[[e.unref(De),i.value]])]))}}),[["__scopeId","data-v-4ee90459"]]),V2={label:"Aller au contenu principal"},w2={class:"vd-skip-link-container"},v2=["href"],N2=e.defineComponent({__name:"SkipLink",props:{label:{default:V2.label},target:{default:"#main"}},setup(n){const t=e.ref(null);return e.onMounted(()=>{var c,s;const o=e.getCurrentInstance();if(!o)return;const a=(c=o==null?void 0:o.appContext.app)==null?void 0:c.$nuxt;let l;a&&a.$router&&(l=a.$router);const r=(s=o.appContext.app.config.globalProperties)==null?void 0:s.$router;r&&(l=r),l&&l.afterEach&&l.afterEach((i,d,m)=>{m||i.path!==d.path&&e.nextTick(()=>{var p;(p=t.value)==null||p.focus()})})}),(o,a)=>(e.openBlock(),e.createElementBlock("div",w2,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:t,tabindex:"-1"},null,512),e.createElementVNode("a",{href:o.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(o.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(o.label),1)],!0)],8,v2)]))}}),B2=L(N2,[["__scopeId","data-v-2bd5b004"]]),C2={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},L2={backBtnText:"Retour"},S2={class:"vd-sub-header-content d-flex justify-space-between"},M2={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},x2={key:1,class:"text-h5 font-weight-bold"},_2={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},E2=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:L2.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(n,{emit:t}){const o=n,a=O(C2,o),{widthStyles:l}=Me(o),r=e.ref(La),c=t;function s(i){c("click:list-item",i)}return(i,d)=>(e.openBlock(),e.createBlock(he.VSheet,e.mergeProps(e.unref(a).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(te.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(da.VSkeletonLoader,{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({key:1},e.unref(a).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:d[0]||(d[0]=m=>i.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn-icon",{},()=>[e.createVNode(M.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",S2,[e.createElementVNode("div",M2,[e.renderSlot(i.$slots,"title",{},()=>[e.createVNode(te.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",x2,e.toDisplayString(i.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(i.$slots,"sub-title",{},()=>[i.subTitleText?(e.openBlock(),e.createBlock(te.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",_2,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(it,{key:0,items:i.dataListGroupItems,loading:i.loading,"render-html-value":i.renderHtmlValue,"item-width":"auto",class:"flex-nowrap flex-shrink-0","onClick:listItem":s},null,8,["items","loading","render-html-value"])):e.createCommentVNode("",!0)],!0)])]),_:3},16,["style"]))}}),T2=L(E2,[["__scopeId","data-v-93d57abf"]]),I2={menu:{offsetY:!0,zIndex:4,minWidth:"198px",maxWidth:"auto",nudgeRight:0},btn:{variant:"text",height:"auto"},icon:{color:"avatar"},logoutListItem:{class:"text-primary",minWidth:"198px"},logoutIcon:{color:"primary",class:"mr-4"}},Z2={class:"d-flex"},A2=L(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(n){const t=n,o=e.useModel(n,"modelValue"),{smAndDown:a}=P.useDisplay(),l=O(I2,t),r=e.computed(()=>t.isMobileView||a.value);return(c,s)=>(e.openBlock(),e.createBlock(at,{modelValue:o.value,"onUpdate:modelValue":s[1]||(s[1]=i=>o.value=i),"hide-icon":c.hideUserIcon,"icon-only":r.value,"is-mobile-view":r.value,"menu-items":c.menuItems,options:e.unref(l),"primary-info":c.fullName,"secondary-info":c.additionalInformation,class:"user-menu-btn"},{"append-icon":e.withCtx(()=>[c.hideUserIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(M.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(fa)),1)]),_:1},16,["size"]))]),"footer-list-item":e.withCtx(()=>[c.hideLogoutBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(H.VListItem,e.mergeProps({key:0,class:"logout"},e.unref(l).logoutListItem,{onClick:s[0]||(s[0]=i=>c.$emit("logout"))}),{default:e.withCtx(()=>[e.createElementVNode("div",Z2,[e.createVNode(M.VIcon,e.mergeProps({icon:e.unref(Ma),class:"mr-4"},e.unref(l).logoutIcon),null,16,["icon"]),e.createVNode(H.VListItemTitle,null,{default:e.withCtx(()=>s[2]||(s[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-7cf8bf85"]]),Oe={color:"primary",height:"auto",minHeight:"44px",class:"text-wrap"},$2={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:{...Oe,variant:"outlined"},rejectBtn:{...Oe},acceptBtn:{...Oe}},U={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"},D2=[{label:"Dénomination du cookie",width:"180px"},{label:"Finalité",width:"328px"},{label:"Durée de conservation",width:"180px"}],jt=L(e.defineComponent({__name:"CookiesTable",props:{items:{}},setup(n){return(t,o)=>(e.openBlock(),e.createBlock(ma.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(D2),(a,l)=>(e.openBlock(),e.createElementBlock("th",{key:l,style:e.normalizeStyle({width:a.width}),class:"text-left"},e.toDisplayString(a.label),5))),128))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,a=>(e.openBlock(),e.createElementBlock("tr",{key:a.name},[e.createElementVNode("td",null,e.toDisplayString(a.name),1),e.createElementVNode("td",null,[e.renderSlot(t.$slots,"cookie-description-"+a.name,{cookie:a},()=>[e.createTextVNode(e.toDisplayString(a.description),1)],!0)]),e.createElementVNode("td",null,e.toDisplayString(a.conservation),1)]))),128))])]),_:3}))}}),[["__scopeId","data-v-e018bb81"]]),X={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"},H2={class:"vd-cookies-information"},O2={class:"text-subtitle-1 font-weight-bold mb-2"},z2={class:"mb-4"},P2={class:"mb-1"},Yt=L(e.defineComponent({__name:"CookiesInformation",props:e.mergeModels({type:{},tableItems:{}},{modelValue:{type:Boolean},modelModifiers:{}}),emits:["update:modelValue"],setup(n){const t=e.useModel(n,"modelValue"),o=e.computed(()=>{if(t.value===!0)return"accept";if(t.value===!1)return"reject"}),a=e.ref(!1);function l(r){a.value=r.newState==="open"}return(r,c)=>(e.openBlock(),e.createElementBlock("div",H2,[e.createElementVNode("h2",O2,e.toDisplayString(e.unref(X)[r.type].title),1),e.createElementVNode("p",z2,e.toDisplayString(e.unref(X)[r.type].description),1),e.createElementVNode("details",{onToggle:l},[e.createElementVNode("summary",P2,[e.createTextVNode(e.toDisplayString(a.value?e.unref(X).hideInformation:e.unref(X).showInformation)+" ",1),e.createVNode(M.VIcon,{class:"mr-2","data-test":"chevron"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(va):e.unref(Ye)),1)]),_:1})]),e.createVNode(jt,{items:r.tableItems,class:"mb-2"},e.createSlots({_:2},[e.renderList(r.$slots,(s,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(pa.VRadioGroup,{key:0,"model-value":o.value,rules:[e.unref(He)],"data-test-id":"radio-group",inline:"","hide-details":"auto",class:"vd-cookies-information__radio-group","onUpdate:modelValue":c[0]||(c[0]=s=>t.value=s==="accept")},{default:e.withCtx(()=>[e.createVNode(F.VSpacer),e.createVNode(Ke.VRadio,{label:e.unref(X).reject,value:"reject",color:"primary"},null,8,["label"]),e.createVNode(Ke.VRadio,{label:e.unref(X).accept,value:"accept",class:"mr-0",color:"primary"},null,8,["label"])]),_:1},8,["model-value","rules"])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-76037a97"]]),se={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"},R2={class:"mb-4"},F2={class:"mb-4"},q2={class:"d-flex flex-wrap justify-end mx-n2 mt-n2 mb-6"},K2={class:"d-flex mt-16"},Jt=e.defineComponent({__name:"CookiesSelection",props:{items:{}},emits:["submit"],setup(n,{emit:t}){const o=n,a=t,l=e.ref(null),r=e.ref({essentials:void 0,functional:void 0,analytics:void 0}),c=e.computed(()=>{const d={};return Object.entries(r.value).forEach(([m,p])=>{m!="essentials"&&o.items[m]&&(d[m]=p)}),d});function s(d){r.value.functional=d,r.value.analytics=d}async function i(){const{valid:d}=await l.value.validate();d&&a("submit",c.value)}return(d,m)=>d.items?(e.openBlock(),e.createBlock(pe.VCard,{key:0,elevation:"0",color:"transparent",class:"vd-cookies-card"},{default:e.withCtx(()=>[e.createVNode(ha.VForm,{ref_key:"form",ref:l},{default:e.withCtx(()=>[e.createElementVNode("p",R2,e.toDisplayString(e.unref(se).description),1),e.createElementVNode("p",F2,e.toDisplayString(e.unref(se).cookieDefinition),1),e.createElementVNode("div",q2,[e.createVNode(E.VBtn,{"data-test-id":"reject-all",color:"primary",variant:"outlined",class:"ma-2",onClick:m[0]||(m[0]=p=>s(!1))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(se).rejectAll),1)]),_:1}),e.createVNode(E.VBtn,{"data-test-id":"accept-all",color:"primary",variant:"outlined",class:"ma-2",onClick:m[1]||(m[1]=p=>s(!0))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(se).acceptAll),1)]),_:1})]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.items,(p,y)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:y},[p?(e.openBlock(),e.createBlock(Yt,{key:0,modelValue:r.value[y],"onUpdate:modelValue":h=>r.value[y]=h,type:y,"table-items":p,class:"mb-6"},e.createSlots({_:2},[e.renderList(d.$slots,(h,u)=>({name:u,fn:e.withCtx(V=>[String(u).startsWith("cookie-description")?e.renderSlot(d.$slots,u,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",K2,[e.createVNode(F.VSpacer),e.createVNode(E.VBtn,{"data-test-id":"submit",color:"primary",onClick:i},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(se).saveBtn),1)]),_:1})])]),_:3},512)]),_:3})):e.createCommentVNode("",!0)}}),U2={class:"vd-cookie-banner__inner"},G2={class:"d-flex align-start flex-nowrap pa-0 mb-6"},W2={class:"text-h5 font-weight-bold"},j2={class:"vd-cookie-banner-content"},Y2={key:0},J2={key:1},Q2={class:"vd-cookie-banner-action-ctn d-flex align-center flex-wrap max-width-none mt-6 ga-4"},X2=L(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(n,{emit:t}){const o=n,a=O($2,o),l=t,r=e.useModel(n,"modelValue"),c=e.ref(!1),s=P.useDisplay(),i=e.computed(()=>s.smAndDown.value?"100%":"auto");function d(){r.value=!1,l("reject")}function m(){r.value=!1,l("accept")}function p(){o.items&&(c.value=!0),l("customize")}function y(h){l("submit",h),c.value=!1,r.value=!1}return(h,u)=>r.value?(e.openBlock(),e.createBlock(e.Teleport,{key:0,to:"body"},[e.createVNode(he.VSheet,e.mergeProps(e.unref(a).banner,{"aria-label":e.unref(U).label,class:"vd-cookie-banner"}),{default:e.withCtx(()=>[e.createElementVNode("div",U2,[e.createElementVNode("div",G2,[e.createElementVNode("h2",W2,e.toDisplayString(e.unref(U).title),1),e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(a).spacer)),null,16),c.value?(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({key:0},e.unref(a).backBtn,{"aria-label":e.unref(U).backBtn,onClick:u[0]||(u[0]=V=>c.value=!1)}),{default:e.withCtx(()=>[e.createVNode(M.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(a).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ka)),1)]),_:1},16)]),_:1},16,["aria-label"])):(e.openBlock(),e.createBlock(E.VBtn,e.mergeProps({key:1},e.unref(a).closeBtn,{"aria-label":e.unref(U).closeBtn,onClick:d}),{default:e.withCtx(()=>[e.createVNode(M.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(a).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(G)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),e.createElementVNode("div",j2,[e.createVNode(e.Transition,{name:"height"},{default:e.withCtx(()=>[c.value&&h.items?(e.openBlock(),e.createElementBlock("div",Y2,[e.createVNode(Jt,{items:h.items,onSubmit:y},e.createSlots({_:2},[e.renderList(h.$slots,(V,w)=>({name:w,fn:e.withCtx(C=>[e.renderSlot(h.$slots,w,e.normalizeProps(e.guardReactiveProps(C||{})),void 0,!0)])}))]),1032,["items"])])):(e.openBlock(),e.createElementBlock("div",J2,[e.renderSlot(h.$slots,"default",{},()=>[e.createElementVNode("p",null,e.toDisplayString(e.unref(U).description),1)],!0),e.createElementVNode("div",Q2,[e.createVNode(F.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(a).actionsSpacer)),null,16),e.createVNode(E.VBtn,e.mergeProps(e.unref(a).customizeBtn,{"data-test-id":"customize",width:i.value,onClick:p}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(U).customizeBtnText),1)]),_:1},16,["width"]),e.createVNode(E.VBtn,e.mergeProps(e.unref(a).rejectBtn,{"data-test-id":"reject",width:i.value,onClick:d}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(U).rejectBtnText),1)]),_:1},16,["width"]),e.createVNode(E.VBtn,e.mergeProps(e.unref(a).acceptBtn,{"data-test-id":"accept",width:i.value,onClick:m}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(U).acceptBtnText),1)]),_:1},16,["width"])])]))]),_:3})])])]),_:3},16,["aria-label"])])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-d6db9002"]]);g.BackBtn=$a,g.BackToTopBtn=Xa,g.CollapsibleList=ln,g.CookieBanner=X2,g.CookiesInformation=Yt,g.CookiesSelection=Jt,g.CookiesTable=jt,g.CopyBtn=pn,g.DataList=lt,g.DataListGroup=it,g.DataListItem=rt,g.DialogBox=An,g.DownloadBtn=Hn,g.ErrorPage=_e,g.FooterBar=Vo,g.FranceConnectBtn=Lo,g.HeaderBar=Ct,g.HeaderBurgerMenu=xt,g.HeaderLoading=j,g.HeaderLogo=Bt,g.HeaderMenuBtn=Ie,g.HeaderMenuItem=_t,g.HeaderMenuSection=Et,g.HeaderNavigationBar=g1,g.HeaderSubMenu=c1,g.HeaderToolbar=B1,g.KEY_LENGTH=a2,g.LangBtn=E1,g.Logo=Ee,g.LogoBrandSection=D1,g.MaintenancePage=z1,g.NUMBER_LENGTH=t2,g.NirField=i2,g.NotFoundPage=K1,g.NotificationBar=p2,g.NotificationService=c2,g.PageContainer=ct,g.PhoneField=y2,g.SkipLink=B2,g.SocialMediaLinks=Vt,g.SubHeader=T2,g.SyAlert=Za,g.SyBtnSelect=at,g.SyInputSelect=nt,g.SySelect=ot,g.SyTextField=fe,g.UserMenuBtn=A2,g.checkNIR=Rt,g.computeNIRKey=Ft,g.isNIRKeyValid=qt,g.useFieldValidation=Dt,g.useWidthable=Me,Object.defineProperty(g,Symbol.toStringTag,{value:"Module"})});
|