@cnamts/synapse 0.0.12-alpha → 0.0.13-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.js +4913 -4021
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/src/components/Amelipro/types/types.d.ts +30 -57
- package/dist/src/components/Customs/SyTextField/SyTextField.d.ts +2 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +36 -44
- package/dist/src/components/DatePicker/DateTextInput.d.ts +33 -36
- package/dist/src/components/FilterInline/AccessibiliteItems.d.ts +30 -0
- package/dist/src/components/FilterInline/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FilterSideBar/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/FilterSideBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NirField/NirField.d.ts +14 -2
- package/dist/src/components/NotificationBar/NotificationBar.d.ts +5 -5
- package/dist/src/components/PasswordField/PasswordField.d.ts +2 -0
- package/dist/src/components/PeriodField/PeriodField.d.ts +159 -157
- package/dist/src/components/PhoneField/PhoneField.d.ts +22 -1
- package/dist/src/components/UploadWorkflow/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Usages/Usages.d.ts +10 -0
- package/dist/src/components/index.d.ts +3 -0
- package/dist/src/composables/date/tests/useDatePickerAccessibility.spec.d.ts +1 -0
- package/dist/src/composables/date/useDateFormat.d.ts +26 -0
- package/dist/src/composables/date/useDateInitialization.d.ts +18 -0
- package/dist/src/composables/date/useDatePickerAccessibility.d.ts +8 -0
- package/dist/src/composables/useFilterable/useFilterable.d.ts +1 -1
- package/dist/src/composables/validation/useValidation.d.ts +1 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/utils/formatDate/index.d.ts +3 -0
- package/dist/src/utils/formatDate/tests/formatDate.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isDateAfter/index.d.ts +2 -0
- package/dist/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isDateBefore/index.d.ts +2 -0
- package/dist/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isDateInRange/index.d.ts +3 -0
- package/dist/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isDateValid/index.d.ts +9 -0
- package/dist/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isEmailValid/tests/isEmailValid.spec.d.ts +1 -0
- package/dist/src/utils/functions/validation/isWeekend/index.d.ts +3 -0
- package/dist/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.d.ts +1 -0
- package/dist/src/utils/parseDate/index.d.ts +3 -0
- package/dist/src/utils/parseDate/tests/parseDate.spec.d.ts +1 -0
- package/dist/src/utils/rules/doMatchPattern/index.d.ts +3 -0
- package/dist/src/utils/rules/doMatchPattern/tests/matchPattern.spec.d.ts +1 -0
- package/dist/src/utils/rules/index.d.ts +11 -0
- package/dist/src/utils/rules/isDateValid/index.d.ts +4 -0
- package/dist/src/utils/rules/isDateValid/tests/isDateValid.spec.d.ts +1 -0
- package/dist/src/utils/rules/isExactLength/index.d.ts +3 -0
- package/dist/src/utils/rules/isExactLength/locales.d.ts +2 -0
- package/dist/src/utils/rules/isExactLength/tests/exactLength.spec.d.ts +1 -0
- package/dist/src/utils/rules/isMaxLength/index.d.ts +3 -0
- package/dist/src/utils/rules/isMaxLength/locales.d.ts +2 -0
- package/dist/src/utils/rules/isMaxLength/tests/isMaxLength.spec.d.ts +1 -0
- package/dist/src/utils/rules/isMinLength/index.d.ts +3 -0
- package/dist/src/utils/rules/isMinLength/locales.d.ts +2 -0
- package/dist/src/utils/rules/isMinLength/tests/isMinLength.spec.d.ts +1 -0
- package/dist/src/utils/rules/isNotAfterDate/index.d.ts +3 -0
- package/dist/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.d.ts +1 -0
- package/dist/src/utils/rules/isNotAfterToday/index.d.ts +4 -0
- package/dist/src/utils/rules/isNotAfterToday/locales.d.ts +2 -0
- package/dist/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.d.ts +1 -0
- package/dist/src/utils/rules/isNotBeforeDate/index.d.ts +3 -0
- package/dist/src/utils/rules/isNotBeforeDate/locales.d.ts +2 -0
- package/dist/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.d.ts +1 -0
- package/dist/src/utils/rules/isNotBeforeToday/index.d.ts +4 -0
- package/dist/src/utils/rules/isNotBeforeToday/locales.d.ts +2 -0
- package/dist/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.d.ts +1 -0
- package/dist/src/utils/rules/isRequired/index.d.ts +4 -0
- package/dist/src/utils/rules/isRequired/locales.d.ts +2 -0
- package/dist/src/utils/rules/isRequired/tests/isRequred.spec.d.ts +1 -0
- package/dist/src/utils/rules/isValidEmail/index.d.ts +4 -0
- package/dist/src/utils/rules/isValidEmail/locales.d.ts +2 -0
- package/dist/src/utils/rules/isValidEmail/tests/isValidEmail.spec.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/src/assets/_radius.scss +12 -6
- package/src/assets/settings.scss +8 -0
- package/src/components/Amelipro/types/types.ts +40 -0
- package/src/components/ChipList/ChipList.stories.ts +26 -27
- package/src/components/ChipList/ChipList.vue +5 -1
- package/src/components/ChipList/config.ts +1 -0
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +2 -2
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +1 -1
- package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +1 -1
- package/src/components/Customs/SySelect/SySelect.mdx +1 -1
- package/src/components/Customs/SySelect/SySelect.vue +19 -4
- package/src/components/Customs/SyTextField/SyTextField.mdx +2 -2
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +239 -0
- package/src/components/Customs/SyTextField/SyTextField.vue +3 -0
- package/src/components/DatePicker/DatePicker.stories.ts +177 -5
- package/src/components/DatePicker/DatePicker.vue +148 -347
- package/src/components/DatePicker/DateTextInput.vue +91 -251
- package/src/components/DatePicker/tests/DatePicker.spec.ts +118 -48
- package/src/components/DatePicker/tests/DateTextInput.spec.ts +202 -6
- package/src/components/FileList/Accessibilite.stories.ts +1 -1
- package/src/components/FileList/AccessibiliteItems.ts +22 -0
- package/src/components/FileUpload/FileUpload.stories.ts +9 -7
- package/src/components/FilterInline/Accessibilite.mdx +14 -0
- package/src/components/FilterInline/Accessibilite.stories.ts +216 -0
- package/src/components/FilterInline/AccessibiliteItems.ts +132 -0
- package/src/components/FilterInline/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilterSideBar/Accessibilite.mdx +14 -0
- package/src/components/FilterSideBar/Accessibilite.stories.ts +216 -0
- package/src/components/FilterSideBar/AccessibiliteItems.ts +153 -0
- package/src/components/FilterSideBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NirField/NirField.stories.ts +165 -0
- package/src/components/NirField/NirField.vue +6 -2
- package/src/components/NirField/tests/config.spec.ts +65 -0
- package/src/components/NotificationBar/NotificationBar.mdx +2 -2
- package/src/components/NotificationBar/NotificationBar.stories.ts +59 -11
- package/src/components/NotificationBar/NotificationBar.vue +42 -114
- package/src/components/NotificationBar/tests/NotificationBar.spec.ts +28 -33
- package/src/components/NotificationBar/tests/__snapshots__/NotificationBar.spec.ts.snap +1 -1
- package/src/components/PaginatedTable/PaginatedTable.vue +6 -10
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +4 -4
- package/src/components/PasswordField/PasswordField.stories.ts +191 -4
- package/src/components/PasswordField/PasswordField.vue +3 -0
- package/src/components/PeriodField/PeriodField.stories.ts +214 -118
- package/src/components/PeriodField/PeriodField.vue +195 -148
- package/src/components/PeriodField/tests/PeriodField.spec.ts +146 -0
- package/src/components/PhoneField/PhoneField.stories.ts +101 -0
- package/src/components/PhoneField/PhoneField.vue +73 -17
- package/src/components/PhoneField/tests/PhoneField.spec.ts +40 -0
- package/src/components/RatingPicker/RatingPicker.stories.ts +7 -7
- package/src/components/SearchListField/SearchListField.stories.ts +1 -1
- package/src/components/UploadWorkflow/Accessibilite.mdx +14 -0
- package/src/components/UploadWorkflow/Accessibilite.stories.ts +216 -0
- package/src/components/UploadWorkflow/AccessibiliteItems.ts +192 -0
- package/src/components/UploadWorkflow/UploadWorkflow.vue +2 -2
- package/src/components/UploadWorkflow/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Usages/tests/Usages.spec.ts +183 -0
- package/src/components/index.ts +3 -0
- package/src/composables/date/tests/useDateFormat.spec.ts +67 -0
- package/src/composables/date/tests/useDateInitialization.spec.ts +89 -0
- package/src/composables/date/tests/useDatePickerAccessibility.spec.ts +102 -0
- package/src/composables/date/useDateFormat.ts +94 -0
- package/src/composables/date/useDateInitialization.ts +92 -0
- package/src/composables/date/useDatePickerAccessibility.ts +78 -0
- package/src/composables/rules/tests/useFieldValidation.spec.ts +385 -4
- package/src/composables/useFilterable/useFilterable.ts +5 -4
- package/src/composables/validation/useValidation.ts +15 -0
- package/src/main.ts +1 -0
- package/src/stories/Accessibilite/Aculturation/AuditDesignSystem.mdx +28 -0
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +2 -2
- package/src/stories/Accessibilite/Audit/RGAA.mdx +6 -6
- package/src/stories/Accessibilite/Introduction.mdx +2 -1
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +1 -1
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +8 -11
- package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +77 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +9 -3
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +2 -2
- package/src/stories/Demarrer/Introduction.stories.ts +3 -3
- package/src/stories/Demarrer/Releases.mdx +8 -0
- package/src/stories/Demarrer/Releases.stories.ts +66 -0
- package/src/stories/DesignTokens/Conteneurs.stories.ts +3 -3
- package/src/stories/GuideDuDev/LesBreackingChanges.mdx +36 -0
- package/src/stories/GuideDuDev/UtiliserLesRules.mdx +2 -2
- package/src/utils/formatDate/index.ts +6 -0
- package/src/utils/formatDate/tests/formatDate.spec.ts +18 -0
- package/src/utils/functions/validation/isDateAfter/index.ts +9 -0
- package/src/utils/functions/validation/isDateAfter/tests/isDateAfter.spec.ts +18 -0
- package/src/utils/functions/validation/isDateBefore/index.ts +9 -0
- package/src/utils/functions/validation/isDateBefore/tests/isDateBefore.spec.ts +23 -0
- package/src/utils/functions/validation/isDateInRange/index.ts +22 -0
- package/src/utils/functions/validation/isDateInRange/tests/isDateInRange.spec.ts +28 -0
- package/src/utils/functions/validation/isDateValid/index.ts +67 -0
- package/src/utils/functions/validation/isDateValid/tests/isDateValid.spec.ts +46 -0
- package/src/utils/functions/validation/isEmailValid/index.ts +9 -0
- package/src/utils/functions/validation/isWeekend/index.ts +10 -0
- package/src/utils/functions/validation/isWeekend/tests/isWeekend.spec.ts +16 -0
- package/src/utils/parseDate/index.ts +29 -0
- package/src/utils/parseDate/tests/parseDate.spec.ts +52 -0
- package/src/utils/rules/Rules.mdx +16 -0
- package/src/utils/rules/doMatchPattern/DoMachPattern.mdx +66 -0
- package/src/utils/rules/doMatchPattern/DoMatchPattern.stories.ts +106 -0
- package/src/utils/rules/doMatchPattern/index.ts +28 -0
- package/src/utils/rules/doMatchPattern/locales.ts +5 -0
- package/src/utils/rules/doMatchPattern/tests/matchPattern.spec.ts +38 -0
- package/src/utils/rules/index.ts +11 -0
- package/src/utils/rules/isDateValid/IsDateValid.mdx +87 -0
- package/src/utils/rules/isDateValid/IsDateValid.stories.ts +113 -0
- package/src/utils/rules/isDateValid/index.ts +32 -0
- package/src/utils/rules/isDateValid/locales.ts +10 -0
- package/src/utils/rules/isDateValid/tests/isDateValid.spec.ts +27 -0
- package/src/utils/rules/isExactLength/IsExactLenght.mdx +68 -0
- package/src/utils/rules/isExactLength/IsExactLength.stories.ts +151 -0
- package/src/utils/rules/{exactLength → isExactLength}/index.ts +2 -4
- package/src/utils/rules/isExactLength/tests/exactLength.spec.ts +48 -0
- package/src/utils/rules/isMaxLength/IsMaxLength.mdx +68 -0
- package/src/utils/rules/isMaxLength/IsMaxLength.stories.ts +152 -0
- package/src/utils/rules/isMaxLength/index.ts +30 -0
- package/src/utils/rules/isMaxLength/locales.ts +6 -0
- package/src/utils/rules/isMaxLength/tests/isMaxLength.spec.ts +42 -0
- package/src/utils/rules/isMinLength/IsMinLength.mdx +68 -0
- package/src/utils/rules/isMinLength/IsMinLength.stories.ts +152 -0
- package/src/utils/rules/isMinLength/index.ts +30 -0
- package/src/utils/rules/isMinLength/locales.ts +6 -0
- package/src/utils/rules/isMinLength/tests/isMinLength.spec.ts +42 -0
- package/src/utils/rules/isNotAfterDate/IsNotAfterDate.mdx +68 -0
- package/src/utils/rules/isNotAfterDate/IsNotAfterDate.stories.ts +109 -0
- package/src/utils/rules/isNotAfterDate/index.ts +25 -0
- package/src/utils/rules/isNotAfterDate/locales.ts +6 -0
- package/src/utils/rules/isNotAfterDate/tests/isNotAfterDate.spec.ts +25 -0
- package/src/utils/rules/isNotAfterToday/IsNotAfterToday.mdx +83 -0
- package/src/utils/rules/isNotAfterToday/IsNotAfterToday.stories.ts +110 -0
- package/src/utils/rules/isNotAfterToday/index.ts +28 -0
- package/src/utils/rules/isNotAfterToday/locales.ts +5 -0
- package/src/utils/rules/isNotAfterToday/tests/isNotAfterToday.spec.ts +30 -0
- package/src/utils/rules/isNotBeforeDate/IsNotBeforeDate.mdx +68 -0
- package/src/utils/rules/isNotBeforeDate/IsNotBeforeDate.stories.ts +114 -0
- package/src/utils/rules/isNotBeforeDate/index.ts +25 -0
- package/src/utils/rules/isNotBeforeDate/locales.ts +6 -0
- package/src/utils/rules/isNotBeforeDate/tests/IsNotBeforeDate.spec.ts +25 -0
- package/src/utils/rules/isNotBeforeToday/IsNotBeforeToday.mdx +83 -0
- package/src/utils/rules/isNotBeforeToday/IsNotBeforeToday.stories.ts +110 -0
- package/src/utils/rules/isNotBeforeToday/index.ts +28 -0
- package/src/utils/rules/isNotBeforeToday/locales.ts +5 -0
- package/src/utils/rules/isNotBeforeToday/tests/notBeforeToday.spec.ts +36 -0
- package/src/utils/rules/isRequired/IsRequired.mdx +81 -0
- package/src/utils/rules/isRequired/IsRequired.stories.ts +101 -0
- package/src/utils/rules/{required → isRequired}/index.ts +3 -3
- package/src/utils/rules/{required/tests/index.spec.ts → isRequired/tests/isRequred.spec.ts} +9 -9
- package/src/utils/rules/isValidEmail/IsValidEmail.mdx +81 -0
- package/src/utils/rules/isValidEmail/IsValidEmail.stories.ts +101 -0
- package/src/utils/rules/{email → isValidEmail}/index.ts +3 -5
- package/src/utils/rules/{email/tests/email.spec.ts → isValidEmail/tests/isValidEmail.spec.ts} +5 -5
- package/dist/src/components/Amelipro/types/languages.d.ts +0 -6
- package/dist/src/utils/rules/email/index.d.ts +0 -4
- package/dist/src/utils/rules/exactLength/index.d.ts +0 -4
- package/dist/src/utils/rules/required/index.d.ts +0 -4
- package/dist/src/utils/rules/required/ruleMessageHelper.d.ts +0 -3
- package/src/components/Amelipro/types/languages.d.ts +0 -6
- package/src/components/Amelipro/types/types.d.ts +0 -65
- package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +0 -58
- package/src/utils/functions/isEmailValid/index.ts +0 -8
- package/src/utils/rules/required/ruleMessageHelper.ts +0 -14
- package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +0 -22
- /package/dist/src/{utils/functions/isEmailValid/tests/isEmailValid.spec.d.ts → components/NirField/tests/config.spec.d.ts} +0 -0
- /package/dist/src/{utils/rules/email/tests/email.spec.d.ts → components/Usages/tests/Usages.spec.d.ts} +0 -0
- /package/dist/src/{utils/rules/required/tests/index.spec.d.ts → composables/date/tests/useDateFormat.spec.d.ts} +0 -0
- /package/dist/src/{utils/rules/required/tests/rulesMessageHelper.spec.d.ts → composables/date/tests/useDateInitialization.spec.d.ts} +0 -0
- /package/dist/src/utils/functions/{isEmailValid → validation/isEmailValid}/index.d.ts +0 -0
- /package/dist/src/utils/rules/{exactLength → doMatchPattern}/locales.d.ts +0 -0
- /package/dist/src/utils/rules/{email → isDateValid}/locales.d.ts +0 -0
- /package/dist/src/utils/rules/{required → isNotAfterDate}/locales.d.ts +0 -0
- /package/src/components/NirField/{tests → examples}//342/200/257dataset/342/200/257.md" +0 -0
- /package/src/utils/functions/{isEmailValid → validation/isEmailValid}/tests/isEmailValid.spec.ts +0 -0
- /package/src/utils/rules/{exactLength → isExactLength}/locales.ts +0 -0
- /package/src/utils/rules/{required → isRequired}/locales.ts +0 -0
- /package/src/utils/rules/{email → isValidEmail}/locales.ts +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(C,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/lib/components/VTooltip/index.mjs"),require("vuetify/components"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify"),require("vuetify/directives"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VTable/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VRadio/index.mjs"),require("vuetify/lib/components/VRadioGroup/index.mjs"),require("vuetify/lib/components/VCard/index.mjs"),require("vuetify/lib/components/VForm/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VDialog/index.mjs"),require("vuetify/lib/components/VProgressLinear/index.mjs"),require("vuetify/lib/components/VBadge/index.mjs"),require("vuetify/lib/components/VNavigationDrawer/index.mjs"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs"),require("vuetify/lib/components/VDataTable/index.mjs"),require("vuetify/lib/components/VRating/index.mjs"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtnToggle/index.mjs"),require("vuetify/lib/components/VSkeletonLoader/index.mjs"),require("vuetify/lib/components/VSelect/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/lib/components/VTooltip/index.mjs","vuetify/components","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify","vuetify/directives","vuetify/lib/components/transitions/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VTable/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VRadio/index.mjs","vuetify/lib/components/VRadioGroup/index.mjs","vuetify/lib/components/VCard/index.mjs","vuetify/lib/components/VForm/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VDialog/index.mjs","vuetify/lib/components/VProgressLinear/index.mjs","vuetify/lib/components/VBadge/index.mjs","vuetify/lib/components/VNavigationDrawer/index.mjs","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VSnackbar/index.mjs","vuetify/lib/components/VDataTable/index.mjs","vuetify/lib/components/VRating/index.mjs","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtnToggle/index.mjs","vuetify/lib/components/VSkeletonLoader/index.mjs","vuetify/lib/components/VSelect/index.mjs"],e):(C=typeof globalThis<"u"?globalThis:C||self,e(C.DesignSystemV3={},C.Vue,C.VDivider,C.VIcon,C.VTextField,C.VTooltip,C.components,C.VMenu,C.VBtn,C.Vuetify,C.vuetifyDirectives,C.transitions,C.VChip,C.VExpansionPanel,C.VTable,C.VGrid,C.VRadio,C.VRadioGroup,C.VCard,C.VForm,C.VSheet,C.VList,C.VInput,C.VSkeletonLoader,C.VDialog,C.VProgressLinear,C.VBadge,C.VNavigationDrawer,C.VFooter,C.VTabs,C.VSnackbar,C.VDataTable,C.VRating,C.VAlert,C.VBtnToggle,C.VSkeletonLoader,C.VSelect))})(this,function(C,e,oe,$,De,Et,Ya,ge,q,j,Qe,Le,et,le,Ga,ee,It,ja,Ze,_t,ye,G,Ja,Xa,Qa,en,Tt,tn,an,At,nn,$t,tt,on,ln,rn,sn){"use strict";var lc=Object.defineProperty;var rc=(C,e,oe)=>e in C?lc(C,e,{enumerable:!0,configurable:!0,writable:!0,value:oe}):C[e]=oe;var Me=(C,e,oe)=>rc(C,typeof e!="symbol"?e+"":e,oe);const Dt=/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;function ve(){const o=(r,l)=>l?r.replace(/\s/g,"").length:r.length,a=(r,l="DD/MM/YYYY")=>{if(!r)return null;if(r instanceof Date)return r;const i=r.split(/[-/.]/),c=l.split(/[-/.]/);if(i.length!==c.length)return null;let s=1,m=0,p=1970;for(let f=0;f<c.length;f++){const u=parseInt(i[f],10);if(isNaN(u))return null;switch(c[f].toUpperCase()){case"DD":s=u;break;case"MM":m=u-1;break;case"YY":p=u+2e3;break;case"YYYY":p=u;break}}if(m<0||m>11||s<1||s>31||p<1900||p>2100)return null;const d=new Date(p,m,s);return d.getFullYear()!==p||d.getMonth()!==m||d.getDate()!==s?null:d},n=(r,l={})=>i=>{var p;if(r!=="required"&&typeof i=="string"&&i.trim()==="")return{};const c=l.fieldIdentifier?`${l.fieldIdentifier}`:l.fieldName||"ce champ",s={success:l.successMessage||"Le champ est valide.",error:l.message||`Validation pour ${c}.`,warning:l.warningMessage||`Attention : ${c} peut contenir une erreur.`},m=(d,f)=>d?{success:s.success}:l.isWarning?{warning:f||s.warning}:{error:f||s.error};switch(r){case"required":return m(typeof i=="string"&&i.trim()!==""||i instanceof Date||typeof i=="object"&&i!==null,l.message||l.warningMessage||`Vous devez renseigner ${c}.`);case"min":return m(typeof i=="number"&&i>=(l.value??0),l.message||l.warningMessage||`La valeur de ${c} doit être supérieure ou égale à ${l.value}.`);case"max":return m(typeof i=="number"&&i<=(l.value??1/0),l.message||l.warningMessage||`La valeur de ${c} doit être inférieure ou égale à ${l.value}.`);case"minLength":return m(typeof i=="string"&&o(i,l.ignoreSpace)>=(l.length??0),l.message||l.warningMessage||`${c} doit contenir au moins ${l.length} caractères.`);case"maxLength":return m(typeof i=="string"&&o(i,l.ignoreSpace)<=(l.length??1/0),l.message||l.warningMessage||`${c} ne doit pas dépasser ${l.length} caractères.`);case"exactLength":return m(typeof i=="string"&&o(i,l.ignoreSpace)===(l.length??0),l.message||l.warningMessage||`${c} doit contenir exactement ${l.length} caractères.`);case"email":return m(typeof i=="string"&&Dt.test(i),l.message||l.warningMessage||`${c} doit être un email valide.`);case"matchPattern":return m(typeof i=="string"&&!!l.pattern&&l.pattern.test(i),l.message||l.warningMessage||`Le format de ${c} est invalide.`);case"notWeekend":{const d=new Date(i);return m(!(d.getDay()===0||d.getDay()===6),l.message||l.warningMessage||`${c} ne peut pas être un jour de weekend.`)}case"notBeforeToday":{const d=new Date(i);return m(d>=new Date,l.message||l.warningMessage||`${c} ne peut pas être antérieur à aujourd'hui.`)}case"notAfterToday":{const d=new Date(i);return m(d<=new Date,l.message||l.warningMessage||`${c} ne peut pas être postérieur à aujourd'hui.`)}case"notBeforeDate":{if(!l.date)return{error:"Configuration de la règle invalide"};const d=a(i);if(!d)return{error:"Date invalide"};if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(l.date);return f?m(d>=f,l.message||l.warningMessage||`${c} ne peut pas être avant le ${l.date}.`):{error:"Date de référence invalide"}}case"notAfterDate":{if(!l.date)return{error:"Configuration de la règle invalide"};const d=a(i);if(!d)return{error:"Date invalide"};if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(l.date);return f?m(d<=f,l.message||l.warningMessage||`${c} ne peut pas être après le ${l.date}.`):{error:"Date de référence invalide"}}case"dateExact":{if(!l.date)return{error:"Configuration de la règle invalide"};const d=a(i);if(!d)return{error:"Date invalide"};if(typeof l.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(l.date);return f?m(d.getTime()===f.getTime(),l.message||l.warningMessage||`${c} doit être exactement le ${l.date}.`):{error:"Date de référence invalide"}}case"custom":{const d=(p=l.validate)==null?void 0:p.call(l,i);return d===!0?{success:s.success}:l.isWarning?{warning:typeof d=="string"?d:s.warning}:{error:typeof d=="string"?d:s.error}}default:return{error:`La règle spécifiée pour ${c} n'existe pas.`}}};return{generateRules:r=>r.map(l=>n(l.type,l.options)),parseDate:a}}function Pe(o={showSuccessMessages:!0}){const a=e.ref([]),n=e.ref([]),t=e.ref([]),{generateRules:r}=ve(),l=e.computed(()=>a.value.length>0),i=e.computed(()=>n.value.length>0),c=e.computed(()=>t.value.length>0&&!l.value&&!i.value),s=()=>{a.value=[],n.value=[],t.value=[]};return{errors:a,warnings:n,successes:t,hasError:l,hasWarning:i,hasSuccess:c,validateField:(d,f=[],u=[],h=[])=>{var k;s();const b=f.map(w=>({type:w.type,options:{...w.options,fieldIdentifier:o.fieldIdentifier||w.options.fieldIdentifier}})),g=r(b);let V=!1;if(g.forEach(w=>{const B=w(d);B.error&&(a.value.push(B.error),V=!0)}),!V&&d&&o.showSuccessMessages!==!1){const w=(k=f.find(B=>B.options.successMessage))==null?void 0:k.options.successMessage;if(w)t.value.push(w);else{const B=o.fieldIdentifier?`Le champ ${o.fieldIdentifier} est valide.`:"Champ valide";t.value.push(B)}}return V||r(u.map(B=>({type:B.type,options:{...B.options,isWarning:!0,fieldIdentifier:o.fieldIdentifier||B.options.fieldIdentifier}}))).forEach(B=>{const L=B(d);L.warning&&n.value.push(L.warning)}),!V&&!i.value&&r(h.map(B=>({type:B.type,options:{...B.options,isSuccess:!0,fieldIdentifier:o.fieldIdentifier||B.options.fieldIdentifier}}))).forEach(B=>{const L=B(d);L.success&&o.showSuccessMessages!==!1&&t.value.push(L.success)}),{hasError:l.value,hasWarning:i.value,hasSuccess:c.value,state:{errors:a.value,warnings:n.value,successes:t.value}}},validateOnSubmit:async()=>!l.value,clearValidation:s}}var cn="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",dn="M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z",at="M13,13H11V7H13M13,17H11V15H13M12,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",mn="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",Zt="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",nt="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",un="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",pn="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",Pt="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",fn="M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",Rt="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",ot="M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z",zt="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",lt="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",rt="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",it="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",hn="M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",be="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",gn="M11 20H6.5Q4.22 20 2.61 18.43 1 16.85 1 14.58 1 12.63 2.17 11.1 3.35 9.57 5.25 9.15 5.88 6.85 7.75 5.43 9.63 4 12 4 14.93 4 16.96 6.04 19 8.07 19 11 20.73 11.2 21.86 12.5 23 13.78 23 15.5 23 17.38 21.69 18.69 20.38 20 18.5 20H13V12.85L14.6 14.4L16 13L12 9L8 13L9.4 14.4L11 12.85Z",yn="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",bn="M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19M8,9H16V19H8V9M15.5,4L14.5,3H9.5L8.5,4H5V6H19V4H15.5Z",kn="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",Vn="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8C16.3,8 17,8.7 17,9.5M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z",wn="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M8.5,11A1.5,1.5 0 0,1 7,9.5A1.5,1.5 0 0,1 8.5,8A1.5,1.5 0 0,1 10,9.5A1.5,1.5 0 0,1 8.5,11M17,9.5A1.5,1.5 0 0,1 15.5,11A1.5,1.5 0 0,1 14,9.5A1.5,1.5 0 0,1 15.5,8A1.5,1.5 0 0,1 17,9.5M16,14V16H8V14H16Z",Bn="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M15.5,8C16.3,8 17,8.7 17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M12,14C13.75,14 15.29,14.72 16.19,15.81L14.77,17.23C14.32,16.5 13.25,16 12,16C10.75,16 9.68,16.5 9.23,17.23L7.81,15.81C8.71,14.72 10.25,14 12,14Z",Cn="M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",Nn="M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",Sn="M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9M12,4.5C17,4.5 21.27,7.61 23,12C21.27,16.39 17,19.5 12,19.5C7,19.5 2.73,16.39 1,12C2.73,7.61 7,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C15.76,17.5 19.17,15.36 20.82,12C19.17,8.64 15.76,6.5 12,6.5C8.24,6.5 4.83,8.64 3.18,12Z",Mn="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",Ln="M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z",vn="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",Re="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",ze="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",xn="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",En="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",In="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",_n="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Ot="M7,10L12,15L17,10H7Z",Ft="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",Tn="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",An="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",$n="M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",Dn="M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 2L6.46 7.46L7.88 8.88L11 5.75V15H13V5.75L16.13 8.88L17.55 7.45L12 2Z",Zn="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",Pn="M13.46,12L19,17.54V19H17.54L12,13.46L6.46,19H5V17.54L10.54,12L5,6.46V5H6.46L12,10.54L17.54,5H19V6.46L13.46,12Z";const Rn=e.defineComponent({__name:"SyTextField",props:{modelValue:{default:void 0},prependIcon:{default:void 0},appendIcon:{default:void 0},prependInnerIcon:{default:void 0},appendInnerIcon:{default:void 0},prependTooltip:{default:void 0},appendTooltip:{default:void 0},tooltipLocation:{default:"top"},variantStyle:{default:"outlined"},color:{default:"primary"},isClearable:{type:Boolean,default:!1},showDivider:{type:Boolean},label:{default:"custom label"},required:{type:Boolean},errorMessages:{default:null},warningMessages:{default:null},successMessages:{default:null},isReadOnly:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},baseColor:{default:void 0},bgColor:{default:void 0},centerAffix:{type:Boolean,default:void 0},counter:{type:[String,Number,Boolean],default:!1},counterValue:{type:[Number,Function],default:void 0},density:{default:"default"},direction:{default:"horizontal"},isDirty:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},isOnError:{type:Boolean,default:!1},isFlat:{type:Boolean,default:!1},isFocused:{type:Boolean,default:!1},areDetailsHidden:{type:[Boolean,String],default:!1},areSpinButtonsHidden:{type:Boolean,default:!1},hint:{default:void 0},id:{default:void 0},loading:{type:[String,Boolean],default:!1},maxErrors:{default:void 0},maxWidth:{default:void 0},messages:{default:void 0},minWidth:{default:void 0},name:{default:void 0},displayPersistentClear:{type:Boolean,default:!1},displayPersistentCounter:{type:Boolean,default:!1},displayPersistentHint:{type:Boolean,default:!1},displayPersistentPlaceholder:{type:Boolean,default:!1},placeholder:{default:void 0},prefix:{default:void 0},isReversed:{type:Boolean,default:!1},role:{default:void 0},rounded:{type:[String,Number,Boolean],default:void 0},isOnSingleLine:{type:Boolean,default:!1},suffix:{default:void 0},theme:{default:void 0},isTiled:{type:Boolean,default:!1},type:{default:"text"},width:{default:void 0},displayAsterisk:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},customSuccessRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},isValidateOnBlur:{type:Boolean,default:!0}},emits:["update:modelValue","clear","prepend-icon-click","append-icon-click"],setup(o,{expose:a,emit:n}){const t=o,r={info:ze,success:Rt,warning:nt,error:Re,close:be,calendar:fn},l=n,i=e.computed({get(){return t.modelValue},set(v){l("update:modelValue",v)}}),c=e.ref(!1),s=Pe({customRules:t.customRules,warningRules:t.customWarningRules,successRules:t.customSuccessRules,showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.label});e.watch(()=>t.errorMessages,v=>{s.errors.value=v||[]},{immediate:!0}),e.watch(()=>t.warningMessages,v=>{s.warnings.value=v||[]},{immediate:!0}),e.watch(()=>t.successMessages,v=>{s.successes.value=v||[]},{immediate:!0});const m=e.computed(()=>t.required?[{type:"required",options:{message:`Le champ ${t.label||"ce champ"} est requis.`,fieldIdentifier:t.label}}]:[]),p=v=>!v&&!t.required?(s.clearValidation(),!0):!s.validateField(v,[...m.value,...t.customRules],t.customWarningRules).hasError,d=()=>(c.value=!0,p(i.value??null)),f=()=>{c.value=!0,p(i.value??null),l("update:modelValue",i.value)};e.watch(i,v=>{t.isValidateOnBlur||p(v??null),t.isClearable&&v===""&&l("clear")});const u=e.computed(()=>s.hasError.value),h=e.computed(()=>s.hasWarning.value),b=e.computed(()=>s.hasSuccess.value),g=e.computed(()=>s.errors.value),V=e.computed(()=>s.warnings.value),k=e.computed(()=>s.successes.value),w=e.computed(()=>t.appendInnerIcon==="error"?"error":t.appendInnerIcon==="success"?"success":"rgba(0, 0, 0, 1)"),B=()=>{l("prepend-icon-click")},L=()=>{l("append-icon-click")},T=e.computed(()=>u.value?r.error:h.value?r.warning:b.value?r.success:null),A=e.computed(()=>t.displayAsterisk&&t.required),M=e.computed(()=>A.value?`${t.label} *`:t.label),I={thickness:2,length:"25px",color:"primary",opacity:"1"};return a({validation:s,validateOnSubmit:d,checkErrorOnBlur:f}),(v,D)=>(e.openBlock(),e.createBlock(De.VTextField,{id:t.id,modelValue:i.value,"onUpdate:modelValue":D[0]||(D[0]=Z=>i.value=Z),active:t.isActive,title:t.label,"aria-label":t.label,"base-color":t.baseColor,"bg-color":t.bgColor,"center-affix":t.centerAffix,"clear-icon":r.close,clearable:t.isClearable,color:t.color,"counter-value":t.counterValue,density:t.density,direction:t.direction,dirty:t.isDirty,disabled:t.isDisabled,"display-asterisk":A.value,error:u.value,"error-messages":g.value,flat:t.isFlat,focused:t.isFocused,"hide-details":t.areDetailsHidden,"hide-spin-buttons":t.areSpinButtonsHidden,hint:t.hint,label:M.value,loading:t.loading,"max-errors":t.maxErrors,"max-width":t.maxWidth,messages:u.value?g.value:h.value?V.value:b.value&&t.showSuccessMessages?k.value:[],"min-width":t.minWidth,name:t.name,"no-icon":t.noIcon,"persistent-clear":t.displayPersistentClear,"persistent-counter":t.displayPersistentCounter,"persistent-hint":t.displayPersistentHint,"persistent-placeholder":v.displayPersistentPlaceholder,placeholder:t.placeholder,prefix:t.prefix,readonly:t.isReadOnly,reverse:t.isReversed,role:t.role,rounded:t.rounded,"single-line":t.isOnSingleLine,suffix:t.suffix,theme:t.theme,tile:t.isTiled,type:t.type,variant:t.variantStyle,width:t.width,class:e.normalizeClass({"error-field":u.value,"warning-field":h.value,"success-field":b.value,"basic-field":!u.value&&!h.value&&!b.value}),onBlur:f},e.createSlots({"prepend-inner":e.withCtx(()=>[e.renderSlot(v.$slots,"prepend-inner",{},()=>[t.prependInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock($.VIcon,{key:0,"aria-label":t.label?`${t.label} - bouton ${t.prependInnerIcon}`:`Bouton ${t.prependInnerIcon}`,icon:r[t.prependInnerIcon]},null,8,["aria-label","icon"])):e.createCommentVNode("",!0)],!0),t.showDivider?(e.openBlock(),e.createBlock(oe.VDivider,e.mergeProps({key:0,class:"mt-4 pa-1"},I,{vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(v.$slots,"append-inner",{},()=>[T.value&&!t.appendInnerIcon?(e.openBlock(),e.createBlock($.VIcon,{key:0,icon:T.value},null,8,["icon"])):e.createCommentVNode("",!0),t.appendInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock($.VIcon,{key:1,color:w.value},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r[t.appendInnerIcon]),1)]),_:1},8,["color"])):e.createCommentVNode("",!0)],!0)]),details:e.withCtx(()=>[e.renderSlot(v.$slots,"details",{},void 0,!0)]),_:2},[t.prependIcon||t.prependTooltip?{name:"prepend",fn:e.withCtx(()=>[e.renderSlot(v.$slots,"prepend",{},()=>[t.prependTooltip?(e.openBlock(),e.createBlock(Et.VTooltip,{key:0,text:t.prependTooltip,location:t.tooltipLocation},{activator:e.withCtx(({props:Z})=>[e.createVNode($.VIcon,e.mergeProps(Z,{"aria-label":t.label?`${t.label} - info`:"Info",color:w.value,icon:r.info,role:"button"}),null,16,["aria-label","color","icon"])]),_:1},8,["text","location"])):t.prependIcon?(e.openBlock(),e.createBlock($.VIcon,{key:1,"aria-label":t.label?`${t.label} - bouton ${t.prependIcon}`:`Bouton ${t.prependIcon}`,color:w.value,icon:r[t.prependIcon],role:"button",onClick:B},null,8,["aria-label","color","icon"])):e.createCommentVNode("",!0)],!0)]),key:"0"}:void 0,t.appendIcon||t.appendTooltip?{name:"append",fn:e.withCtx(()=>[e.renderSlot(v.$slots,"append",{},()=>[t.appendTooltip?(e.openBlock(),e.createBlock(Et.VTooltip,{key:0,text:t.appendTooltip,location:t.tooltipLocation},{activator:e.withCtx(({props:Z})=>[e.createVNode($.VIcon,e.mergeProps(Z,{"aria-label":t.label?`${t.label} - info`:"Info",color:w.value,icon:r.info,role:"button"}),null,16,["aria-label","color","icon"])]),_:1},8,["text","location"])):t.appendIcon?(e.openBlock(),e.createBlock($.VIcon,{key:1,"aria-label":t.label?`${t.label} - bouton ${t.appendIcon}`:`Bouton ${t.appendIcon}`,color:w.value,icon:r[t.appendIcon],role:"button",onClick:L},null,8,["aria-label","color","icon"])):e.createCommentVNode("",!0)],!0)]),key:"1"}:void 0]),1032,["id","modelValue","active","title","aria-label","base-color","bg-color","center-affix","clear-icon","clearable","color","counter-value","density","direction","dirty","disabled","display-asterisk","error","error-messages","flat","focused","hide-details","hide-spin-buttons","hint","label","loading","max-errors","max-width","messages","min-width","name","no-icon","persistent-clear","persistent-counter","persistent-hint","persistent-placeholder","placeholder","prefix","readonly","reverse","role","rounded","single-line","suffix","theme","tile","type","variant","width","class"]))}}),_=(o,a)=>{const n=o.__vccOpts||o;for(const[t,r]of a)n[t]=r;return n},ue=_(Rn,[["__scopeId","data-v-b15dc9f2"]]),zn=_(e.defineComponent({__name:"DateTextInput",props:{modelValue:{default:null},placeholder:{default:"Sélectionner une date"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:void 0},label:{default:void 0},required:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},isReadOnly:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},displayPrependIcon:{type:Boolean,default:!0}},emits:["update:model-value","focus","blur"],setup(o,{expose:a,emit:n}){var H,S,P;const t=o,r=n,l=e.ref(""),i=e.ref(!1),c=e.ref(!1),s=e.ref([]),m=e.ref([]),p=e.ref([]),d=(y,N=t.format)=>{const x=y.split(/[-/.]/),E=N.split(/[-/.]/);if(x.length!==E.length)return null;let R=1,F=0,z=1970;for(let U=0;U<E.length;U++){const W=parseInt(x[U],10);if(isNaN(W))return null;switch(E[U].toUpperCase()){case"DD":R=W;break;case"MM":F=W-1;break;case"YY":z=W+2e3;break;case"YYYY":z=W;break}}if(F<0||F>11||R<1||R>31||z<1e3||z>9999)return null;const O=new Date(z,F,R);return O.getFullYear()!==z||O.getMonth()!==F||O.getDate()!==R?null:O},f=(y,N)=>{const x=y.getDate().toString().padStart(2,"0"),E=(y.getMonth()+1).toString().padStart(2,"0"),R=y.getFullYear(),F=(R%100).toString().padStart(2,"0"),z=N.includes("/")?"/":N.includes("-")?"-":".",O=[];return N.split(/[-/.]/).forEach(U=>{switch(U.toUpperCase()){case"DD":O.push(x);break;case"MM":O.push(E);break;case"YY":O.push(F);break;case"YYYY":O.push(R.toString());break}}),O.join(z)},u=(y,N)=>{const x=t.format.includes("/")?"/":t.format.includes("-")?"-":".",E=t.format.split(/[/.-]/),R=E.findIndex(Q=>Q.toUpperCase().includes("D")),F=E.findIndex(Q=>Q.toUpperCase().includes("M")),z=E.findIndex(Q=>Q.toUpperCase().includes("Y")),O=Array(3).fill("__");O[z]="____";const U=O.join(x);let W=U,me=N||0,J=y;if(y.includes(x)?J=y.split(x).map(ae=>ae.replace(/\D/g,"")).join(x):J=y.replace(/\D/g,""),J.includes(x)){const Q=J.split(x),ae=Array(3).fill("__");ae[z]=(Q[z]||"").padEnd(4,"_"),ae[F]=(Q[F]||"").padEnd(2,"_"),ae[R]=(Q[R]||"").padEnd(2,"_"),W=ae.join(x)}else{const Q=[R,F,z];let ae=0;for(let qa=0;ae<Math.min(J.length,8);qa++){const Wa=Q[qa%3],ac=E[Wa].toUpperCase().includes("Y")?4:2,nc=Wa*3;for(let xt=0;xt<ac&&ae<J.length;xt++){const oc=J[ae],Ka=nc+xt;W=W.substring(0,Ka)+oc+W.substring(Ka+1),ae++}}}return N!==void 0&&(me=N,U[me]===x&&me++),{formatted:W,cursorPos:me}},h=y=>y.replace(/[^\d/.-]/g,""),b=y=>{if(!y)return{isValid:!t.required||!c.value,message:t.required&&c.value?"La date est requise":""};if(!/^[\d/.-]*$/.test(y))return{isValid:!1,message:"Format de date invalide"};let N=d(y,t.format);return!N&&t.dateFormatReturn&&(N=d(y,t.dateFormatReturn)),N?{isValid:!0,message:""}:{isValid:!1,message:"Format de date invalide"}},g=y=>{if(s.value=[],m.value=[],p.value=[],!y){t.required&&c.value&&s.value.push("La date est requise");return}const N=b(y);if(!N.isValid){s.value.push(N.message);return}const x=R=>{let F=!0;const z=[];R.forEach(O=>{const U=O(y);U!=null&&U.error?(s.value.push(U.error),F=!1):!(U!=null&&U.warning)&&!(U!=null&&U.error)&&z.push((U==null?void 0:U.success)||"Date valide")}),F&&z.length>0&&p.value.push(...z)},E=R=>{let F=!0;const z=[];R.forEach(O=>{const U=O(y);U!=null&&U.warning?(m.value.push(U.warning),F=!1):U!=null&&U.success&&z.push(U.success)}),F&&z.length>0&&p.value.push(...z)};x(w),E(B),s.value=[...new Set(s.value)],m.value=[...new Set(m.value)],p.value=[...new Set(p.value)]},{generateRules:V}=ve(),k=y=>y.map(N=>x=>{if(N.type==="custom"){const{validate:E,message:R,warningMessage:F,successMessage:z,isWarning:O}=N.options;if(typeof E!="function")return!0;const U=E(x);return O?U?{success:z}:{warning:F||R}:U?{success:z}:{error:R}}return null}),w=[...k(((H=t.customRules)==null?void 0:H.filter(y=>y.type==="custom"&&!y.options.isWarning))||[]),...V(((S=t.customRules)==null?void 0:S.filter(y=>y.type!=="custom"))||[])],B=[...k(t.customWarningRules||[]),...k(((P=t.customRules)==null?void 0:P.filter(y=>y.type==="custom"&&y.options.isWarning))||[])],L=e.computed(()=>s.value.length>0),T=e.computed(()=>m.value.length>0),A=e.computed(()=>p.value.length>0),M=e.computed(()=>{if(s.value.length>0)return"error";if(m.value.length>0)return"warning";if(p.value.length>0&&!m.value.length)return"success"}),I=y=>{y.ctrlKey||y.metaKey},v=y=>{var R;y.preventDefault();const N=(R=y.clipboardData)==null?void 0:R.getData("text");if(!N)return;const x=h(N),E=u(x).formatted;l.value=E},D=e.ref(null),Z=e.ref(!1);e.watch(l,async(y,N)=>{var x;if(!(Z.value||y===N))try{if(Z.value=!0,!y){r("update:model-value",null),g("");return}const E=(x=D.value)==null?void 0:x.$el.querySelector("input"),R=(E==null?void 0:E.selectionStart)||0,{formatted:F,cursorPos:z}=u(y,R);if(F!==y&&(l.value=F,await e.nextTick(),E==null||E.setSelectionRange(z,z)),!F.includes("_")){if(b(F).isValid){const W=d(F);if(W){const me=t.dateFormatReturn?f(W,t.dateFormatReturn):F;await e.nextTick(),r("update:model-value",me)}}g(F)}else s.value=[],m.value=[],p.value=[]}finally{await e.nextTick(),Z.value=!1}}),e.watch(()=>t.modelValue,y=>{if(Z.value)return;if(!y){l.value="";return}const N=d(y,t.dateFormatReturn);if(N){const x=f(N,t.format);l.value=x}else l.value=y});const Y=()=>{i.value=!0,r("focus")},ne=()=>{if(i.value=!1,c.value=!0,r("blur"),l.value)if(b(l.value).isValid){const N=d(l.value);if(N){const x=t.dateFormatReturn?f(N,t.dateFormatReturn):l.value;r("update:model-value",x)}}else r("update:model-value",t.modelValue);else t.required?r("update:model-value",t.modelValue):r("update:model-value",null);g(l.value||"")},fe=e.ref(!1);return a({validateOnSubmit:()=>{if(fe.value=!0,t.required&&!l.value)return s.value=["Ce champ est requis"],!1;if(!l.value)return!0;const{isValid:y,message:N}=b(l.value);return y?(g(l.value),s.value.length===0):(s.value=[N],!1)},focus:()=>{const y=document.querySelector("input");y&&y.focus()},blur:()=>{const y=document.querySelector("input");y&&y.blur()}}),e.onMounted(()=>{if(!t.modelValue)return;const y=d(t.modelValue,t.format);if(y){if(t.dateFormatReturn&&t.dateFormatReturn!==t.format){const N=f(y,t.dateFormatReturn);r("update:model-value",N)}l.value=f(y,t.format),g(l.value)}else l.value=t.modelValue,g(t.modelValue)}),(y,N)=>(e.openBlock(),e.createBlock(ue,{ref_key:"inputRef",ref:D,modelValue:l.value,"onUpdate:modelValue":N[0]||(N[0]=x=>l.value=x),placeholder:y.placeholder,label:y.label,"error-messages":s.value,"warning-messages":m.value,"success-messages":p.value,"is-on-error":L.value,"is-disabled":y.isDisabled,"is-read-only":y.isReadOnly,"display-icon":y.displayIcon,"display-append-icon":y.displayAppendIcon,"no-icon":y.noIcon,"prepend-icon":t.displayPrependIcon&&!t.displayAppendIcon?"calendar":void 0,"append-icon":t.displayAppendIcon?"calendar":void 0,"append-inner-icon":M.value,"variant-style":y.isOutlined?"outlined":"filled",class:e.normalizeClass({"error-field":L.value,"warning-field":T.value,"success-field":A.value}),onKeydown:I,onFocus:Y,onBlur:ne,onPaste:v},null,8,["modelValue","placeholder","label","error-messages","warning-messages","success-messages","is-on-error","is-disabled","is-read-only","display-icon","display-append-icon","no-icon","prepend-icon","append-icon","append-inner-icon","variant-style","class"]))}}),[["__scopeId","data-v-d96892f7"]]),On={class:"mx-auto my-auto ml-5 mb-4"},st=_(e.defineComponent({__name:"DatePicker",props:{modelValue:{default:void 0},placeholder:{default:"Sélectionner une date"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:""},isBirthDate:{type:Boolean,default:!1},showWeekNumber:{type:Boolean,default:!1},required:{type:Boolean,default:!1},displayRange:{type:Boolean,default:!1},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},displayPrependIcon:{type:Boolean,default:!0},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},isDisabled:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},noCalendar:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},isReadOnly:{type:Boolean,default:!1},width:{default:"100%"}},emits:["update:modelValue","closed","focus","blur"],setup(o,{expose:a,emit:n}){e.useCssVars(y=>({"1d5bda28":t.width}));const t=o,r=n,l=(y,N=t.format)=>{if(!y)return null;const x=N.includes("/")?"/":N.includes("-")?"-":".",E=N.split(x),R=y.split(x);if(E.length!==R.length)return null;let F=0,z=0,O=0;if(E.forEach((W,me)=>{const J=parseInt(R[me],10);isNaN(J)||(W.includes("DD")||W.includes("D")?F=J:W.includes("MM")||W.includes("M")?z=J-1:W.includes("YYYY")?O=J:W.includes("YY")&&(O=J<50?2e3+J:1900+J))}),F<1||F>31||z<0||z>11||O<1e3||O>9999)return null;const U=new Date(O,z,F,12,0,0);return U.getFullYear()!==O||U.getMonth()!==z||U.getDate()!==F?null:U};function i(y){if(!y)return null;const N=t.dateFormatReturn||t.format;if(Array.isArray(y)){if(y.length>=2){let E=[l(y[0],N),l(y[1],N)];return E.some(R=>R===null)&&t.dateFormatReturn&&(E=[l(y[0],t.format),l(y[1],t.format)]),E.some(R=>R===null)?[]:E[0]&&E[1]&&E[0]>E[1]?[]:E.filter(R=>R!==null)}if(y.length===1){let E=l(y[0],N);return E===null&&t.dateFormatReturn&&(E=l(y[0],t.format)),E===null?[]:[E]}return[]}if(typeof y=="object")return null;let x=l(y,N);return x===null&&t.dateFormatReturn&&(x=l(y,t.format)),x===null?null:x}const c=e.ref(i(t.modelValue)),s=e.ref(!1),m=e.ref([]),p=e.ref([]),d=e.ref([]),f=e.ref(""),u=e.ref(""),h=e.ref(!1),b=e.ref(t.customRules||[]),g=e.ref(t.customWarningRules||[]),{generateRules:V}=ve(),k=V(b.value),w=V(g.value),B=(y=!1)=>{if(m.value=[],p.value=[],d.value=[],t.noCalendar)return;if((y||!h.value)&&t.required&&(!c.value||Array.isArray(c.value)&&c.value.length===0)){m.value.push("La date est requise.");return}if(!c.value)return;const N=Array.isArray(c.value)?c.value:[c.value],x=[],E=[],R=[];N.forEach(F=>{k.forEach(z=>{const O=z(F);O!=null&&O.error?x.push(O.error):O!=null&&O.success&&R.push(O.success)}),w.forEach(z=>{const O=z(F);O!=null&&O.warning?E.push(O.warning):O!=null&&O.success&&!x.length&&R.push(O.success)})}),m.value=[...new Set(x)],d.value=[...new Set(E)],p.value=[...new Set(R)]},L=y=>{if(JSON.stringify(y)!==JSON.stringify(t.modelValue))try{h.value=!0,r("update:modelValue",y)}finally{setTimeout(()=>{h.value=!1},0)}};e.watch(c,y=>{if(B(),y!==null){L(I.value);try{h.value=!0,Array.isArray(y)?y.length>0&&(u.value=M(y[0],t.format)):u.value=M(y,t.format)}finally{setTimeout(()=>{h.value=!1},0)}}else L(null),u.value="";t.displayRange?Array.isArray(y)&&y.length>=2&&(s.value=!1,r("closed")):(s.value=!1,r("closed"))});const T=()=>({"dp-width":!0,"v-messages__message--success":p.value.length>0,"v-messages__message--error":m.value.length>0,"v-messages__message--warning":d.value.length>0&&m.value.length<1}),A=e.computed(()=>({"min-width":"100%"})),M=(y,N)=>{if(!y)return"";const x=y.getDate().toString().padStart(2,"0"),E=(y.getMonth()+1).toString().padStart(2,"0"),R=y.getFullYear().toString(),F=R.slice(-2),z=y.getDate().toString(),O=(y.getMonth()+1).toString();return N.replace(/YYYY/g,R).replace(/YY/g,F).replace(/MM/g,E).replace(/M/g,O).replace(/DD/g,x).replace(/D/g,z)},I=e.computed(()=>{if(!c.value)return"";const y=t.dateFormatReturn||t.format;return Array.isArray(c.value)?c.value.length>=2?[M(c.value[0],y),M(c.value[1],y)]:"":M(c.value,y)});e.watch(I,y=>{if(!y||y==="")u.value="";else if(typeof y=="string")if(t.dateFormatReturn){const N=l(y,t.dateFormatReturn);N&&(u.value=M(N,t.format))}else u.value=y},{immediate:!0}),e.watch(u,y=>{if(h.value)return;const N=l(y,t.format);if(N){const x=t.dateFormatReturn?M(N,t.dateFormatReturn):M(N,t.format);L(x);try{h.value=!0,c.value=N,f.value=M(N,t.format)}finally{setTimeout(()=>{h.value=!1},0)}}else if(y){L(y);try{h.value=!0,f.value=y}finally{setTimeout(()=>{h.value=!1},0)}}else{L(null);try{h.value=!0,f.value="",c.value=null}finally{setTimeout(()=>{h.value=!1},0)}}});const v=e.computed(()=>c.value?Array.isArray(c.value)?c.value.length>=2?`${M(c.value[0],t.format)} - ${M(c.value[c.value.length-1],t.format)}`:M(c.value[0],t.format):M(c.value,t.format):null);e.watch(v,y=>{!t.noCalendar&&y&&(f.value=y)});const D=y=>{if(Array.isArray(y)){const x=y.map(E=>E?l(E):null).filter(E=>E!==null);if(x.length===0){c.value=null;return}c.value=x;return}const N=y?l(y):null;c.value=N===null?null:N},Z=y=>{!s.value||y.target.closest(".date-picker-container")||(r("closed"),B())},Y=e.computed(()=>new Date().toLocaleDateString("fr-FR",{weekday:"long",month:"long",day:"numeric"}).replace(/\b\w/g,y=>y.toUpperCase()));e.watch(()=>t.modelValue,y=>{if(!h.value)try{h.value=!0,!y||y===""?(c.value=null,u.value="",f.value=""):(c.value=i(y),c.value&&(f.value=v.value||"")),B()}finally{setTimeout(()=>{h.value=!1},0)}},{immediate:!0}),e.onMounted(()=>{document.addEventListener("click",Z),v.value&&(f.value=v.value),B()}),e.onBeforeUnmount(()=>{document.removeEventListener("click",Z)});const ne=e.ref();a({validateOnSubmit:()=>{var y;return t.noCalendar?(y=ne.value)==null?void 0:y.validateOnSubmit():(B(!0),m.value.length===0)},isDatePickerVisible:s,selectedDates:c,errorMessages:m,handleClickOutside:Z,initializeSelectedDates:i});const he=async()=>{await e.nextTick();const y=document.querySelector(".v-date-picker");if(!y)return;y.setAttribute("role","application"),y.setAttribute("aria-label","Sélecteur de date"),y.querySelectorAll("button").forEach(E=>{const R=E.querySelector(".v-icon");if(!R)return;const F=R.textContent||"",z=R.className||"";z.includes("mdi-chevron-left")||F.includes("chevron-left")?E.setAttribute("aria-label","Mois précédent"):z.includes("mdi-chevron-right")||F.includes("chevron-right")?E.setAttribute("aria-label","Mois suivant"):(z.includes("mdi-chevron-down")||F.includes("chevron-down")||z.includes("mdi-menu-down")||F.includes("menu-down"))&&E.setAttribute("aria-label","Changer de vue")});let x=y.querySelector(".sr-only-instructions");if(!x){x=document.createElement("span"),x.className="sr-only-instructions",x.setAttribute("aria-live","polite");const E=x;E.style.position="absolute",E.style.width="1px",E.style.height="1px",E.style.padding="0",E.style.margin="-1px",E.style.overflow="hidden",E.style.clip="rect(0, 0, 0, 0)",E.style.whiteSpace="nowrap",E.style.border="0",x.textContent="Utilisez les flèches pour naviguer entre les dates et Entrée pour sélectionner une date",y.prepend(x)}};e.watch(s,async y=>{y&&await he()});const H=()=>{s.value=!0},S=()=>{s.value=!0},P=()=>{if(!t.noCalendar)switch(!0){case m.value.length>0:return"error";case d.value.length>0:return"warning";case p.value.length>0:return"success";default:return}};return e.watch(()=>t.modelValue,y=>{if(!h.value)try{h.value=!0,!y||y===""?(c.value=null,u.value="",f.value=""):(c.value=i(y),c.value&&(Array.isArray(c.value)?c.value.length>0&&(u.value=M(c.value[0],t.format),f.value=v.value||""):(u.value=M(c.value,t.format),f.value=v.value||""))),B()}finally{setTimeout(()=>{h.value=!1},0)}},{immediate:!0}),(y,N)=>(e.openBlock(),e.createElementBlock("div",{class:"date-picker-container",style:e.normalizeStyle(A.value)},[t.noCalendar?(e.openBlock(),e.createBlock(zn,{key:0,ref_key:"dateTextInputRef",ref:ne,modelValue:u.value,"onUpdate:modelValue":N[0]||(N[0]=x=>u.value=x),class:e.normalizeClass([T(),"label-hidden-on-focus"]),"date-format-return":t.dateFormatReturn,format:t.format,label:t.placeholder,placeholder:t.placeholder,required:t.required,"custom-rules":t.customRules,"custom-warning-rules":t.customWarningRules,"is-disabled":t.isDisabled,"is-read-only":t.isReadOnly,"is-outlined":t.isOutlined,"display-icon":t.displayIcon,"display-append-icon":t.displayAppendIcon,"display-prepend-icon":t.displayPrependIcon,"no-icon":t.noIcon,title:"Date text input",onFocus:N[1]||(N[1]=x=>r("focus")),onBlur:N[2]||(N[2]=x=>r("blur"))},null,8,["modelValue","class","date-format-return","format","label","placeholder","required","custom-rules","custom-warning-rules","is-disabled","is-read-only","is-outlined","display-icon","display-append-icon","display-prepend-icon","no-icon"])):(e.openBlock(),e.createBlock(ue,{key:1,modelValue:f.value,"onUpdate:modelValue":[N[3]||(N[3]=x=>f.value=x),D],"append-icon":y.displayIcon&&y.displayAppendIcon?"calendar":void 0,"append-inner-icon":P(),class:e.normalizeClass([T(),"label-hidden-on-focus"]),"error-messages":m.value,"warning-messages":d.value,"success-messages":p.value,"is-disabled":t.isDisabled,"is-read-only":!0,label:t.placeholder,"no-icon":t.noIcon,"prepend-icon":y.displayIcon&&!y.displayAppendIcon?"calendar":void 0,"variant-style":t.isOutlined?"outlined":"underlined",color:"primary","is-clearable":"",title:"Date Picker",onFocus:N[4]||(N[4]=x=>s.value=!0),onPrependIconClick:H,onAppendIconClick:S},null,8,["modelValue","append-icon","append-inner-icon","class","error-messages","warning-messages","success-messages","is-disabled","label","no-icon","prepend-icon","variant-style"])),e.createElementVNode("div",null,[t.noCalendar?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ge.VMenu,{key:0,modelValue:s.value,"onUpdate:modelValue":N[6]||(N[6]=x=>s.value=x),activator:"parent","min-width":0,location:"bottom","close-on-content-click":!1,"open-on-click":!1,transition:"fade-transition",attach:"body",offset:[-20,5]},{default:e.withCtx(()=>[e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[s.value&&!t.noCalendar?(e.openBlock(),e.createBlock(e.unref(Ya.VDatePicker),{key:0,modelValue:c.value,"onUpdate:modelValue":N[5]||(N[5]=x=>c.value=x),"first-day-of-week":1,multiple:t.displayRange?"range":!1,"show-adjacent-months":!0,"show-week":t.showWeekNumber,"view-mode":t.isBirthDate?"year":"month",color:"primary"},{title:e.withCtx(()=>N[7]||(N[7]=[e.createTextVNode(" Sélectionnez une date ")])),header:e.withCtx(()=>[e.createElementVNode("h3",On,e.toDisplayString(Y.value),1)]),_:1},8,["modelValue","multiple","show-week","view-mode"])):e.createCommentVNode("",!0)]),_:1})]),_:1},8,["modelValue"]))])],4))}}),[["__scopeId","data-v-6a76db31"]]),ke=e.ref([]);function ct(){return{notificationQueue:ke,addNotification:t=>{ke.value.some(r=>r.id===t.id)||ke.value.push(t)},removeNotification:t=>{ke.value=ke.value.filter(r=>r.id!==t)},clearQueue:()=>{ke.value=[]}}}const Fn=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:ct},Symbol.toStringTag,{value:"Module"})),Hn={label:"Retour"},Un=_(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(o){const a=o,n=e.ref(un),t=e.computed(()=>a.dark??!1),r=e.computed(()=>t.value?"white":"primary"),l=e.computed(()=>t.value?"outlined":"text"),i=e.computed(()=>t.value?"dark":"light"),c=e.computed(()=>t.value?"white":"primary"),s=e.computed(()=>({"px-0":!t.value,"pr-1":!t.value&&!a.hideBackIcon}));return(m,p)=>(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps(m.$attrs,{variant:l.value,theme:i.value,color:c.value,outlined:t.value,class:["vd-back-btn","text-none",s.value]}),{default:e.withCtx(()=>[e.renderSlot(m.$slots,"icon",{},()=>[a.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($.VIcon,{key:0,color:r.value,class:e.normalizeClass([{"ml-n1":t.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(m.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Hn).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-86fe77d5"]]);var qn=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function dt(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var Wn=function(a){return Kn(a)&&!Yn(a)};function Kn(o){return!!o&&typeof o=="object"}function Yn(o){var a=Object.prototype.toString.call(o);return a==="[object RegExp]"||a==="[object Date]"||Jn(o)}var Gn=typeof Symbol=="function"&&Symbol.for,jn=Gn?Symbol.for("react.element"):60103;function Jn(o){return o.$$typeof===jn}function Xn(o){return Array.isArray(o)?[]:{}}function xe(o,a){return a.clone!==!1&&a.isMergeableObject(o)?Ve(Xn(o),o,a):o}function Qn(o,a,n){return o.concat(a).map(function(t){return xe(t,n)})}function eo(o,a){if(!a.customMerge)return Ve;var n=a.customMerge(o);return typeof n=="function"?n:Ve}function to(o){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(o).filter(function(a){return Object.propertyIsEnumerable.call(o,a)}):[]}function Ht(o){return Object.keys(o).concat(to(o))}function Ut(o,a){try{return a in o}catch{return!1}}function ao(o,a){return Ut(o,a)&&!(Object.hasOwnProperty.call(o,a)&&Object.propertyIsEnumerable.call(o,a))}function no(o,a,n){var t={};return n.isMergeableObject(o)&&Ht(o).forEach(function(r){t[r]=xe(o[r],n)}),Ht(a).forEach(function(r){ao(o,r)||(Ut(o,r)&&n.isMergeableObject(a[r])?t[r]=eo(r,n)(o[r],a[r],n):t[r]=xe(a[r],n))}),t}function Ve(o,a,n){n=n||{},n.arrayMerge=n.arrayMerge||Qn,n.isMergeableObject=n.isMergeableObject||Wn,n.cloneUnlessOtherwiseSpecified=xe;var t=Array.isArray(a),r=Array.isArray(o),l=t===r;return l?t?n.arrayMerge(o,a,n):no(o,a,n):xe(a,n)}Ve.all=function(a,n){if(!Array.isArray(a))throw new Error("first argument should be an array");return a.reduce(function(t,r){return Ve(t,r,n)},{})};var oo=Ve,lo=oo;const mt=dt(lo);function K(o,a){return e.computed(()=>mt(o,e.toRaw(a.vuetifyOptions)??{}))}function pe(o,a="px"){if(!(o==null||o===""))return isNaN(+o)?String(o):`${Number(o)}${a}`}const ro={label:"Retour en haut"},io={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},so=_(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(o){const a=o,n=K(io,a),t=e.ref(!1),r=e.ref(!1),l=e.computed(()=>a.target?`#${a.target}`:null),i=e.computed(()=>{const u=pe(a.nudgeRight)||"0";return{bottom:pe(a.nudgeBottom)||"0",marginRight:u}}),c=e.computed(()=>r.value?"36px":void 0),s=e.computed(()=>({"d-sr-only":r.value})),m=j.useDisplay();e.watch(()=>m.smAndDown.value,u=>{r.value=u},{immediate:!0});const p=u=>{const h=u.currentTarget;h instanceof Window?t.value=window.scrollY>a.threshold:t.value=h.scrollTop>a.threshold},d=()=>{a.target?(document.getElementById(a.target)||window).scrollTo(0,0):window.scrollTo(0,0)},f=e.computed(()=>a.target?document.getElementById(a.target):window);return e.onMounted(()=>{var u;(u=f.value)==null||u.addEventListener("scroll",p)}),e.onUnmounted(()=>{var u;(u=f.value)==null||u.removeEventListener("scroll",p)}),(u,h)=>(e.openBlock(),e.createBlock(Le.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({...e.unref(n).btn,...u.$attrs},{style:i.value,"min-width":c.value,class:"vd-back-to-top-btn",onClick:d}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(s.value)},[e.renderSlot(u.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ro).label),1)],!0)],2),e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Pt)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,t.value],[Qe.Scroll,p,l.value]])]),_:3}))}}),[["__scopeId","data-v-316d8462"]]),co={chip:{color:"primary",size:"small",variant:"flat",class:"ma-1"},btn:{size:"small",density:"compact",variant:"text"},icon:{size:"medium"}},mo={closeBtnLabel:"Supprimer le filtre pour cette valeur",reset:"Réinitialiser le filtre",chipGroupLabel:"Liste des filtres sélectionnés",overflowLabel:"Filtres supplémentaires"},uo=["aria-label"],po={class:"d-flex align-center justify-center ga-sm-1"},fo={key:0,class:"d-flex align-center"},ut=_(e.defineComponent({__name:"ChipList",props:{items:{default:()=>[]},overflowLimit:{default:4},readonly:{type:Boolean,default:!1},resetText:{default:void 0},displayPrependStateIcon:{type:Boolean,default:!1},displayAppendStateIcon:{type:Boolean,default:!1},customIcon:{default:void 0},vuetifyOptions:{default:()=>({})}},emits:["remove","reset"],setup(o,{emit:a}){const n={success:"backgroundSuccessSubdued",warning:"backgroundWarningSubdued",error:"backgroundErrorSubdued",info:"backgroundInfoSubdued"},t=o,r=K(co,t),l=a,i=e.ref(mo),c=e.ref(Pn),s=e.computed(()=>t.items.slice(0,t.overflowLimit-1)),m=e.computed(()=>t.items.length>=t.overflowLimit),p=e.computed(()=>`+${t.items.length-t.overflowLimit+1}`),d=e.computed(()=>t.resetText??i.value.reset);function f(g){var k,w;const V=(w=(k=t.vuetifyOptions)==null?void 0:k.chip)==null?void 0:w.color;return typeof V=="string"&&V?V:g?n[g]:"primary"}function u(g){switch(g){case"success":return ot;case"warning":return nt;case"error":return at;case"info":return ze;default:return""}}function h(g){t.readonly||l("remove",g)}function b(){t.readonly||l("reset")}return(g,V)=>g.items.length?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass([{"flex-column":m.value},"chip-list d-flex flex-wrap max-width-none mx-n1 mt-n1"]),role:"list"},[e.createElementVNode("div",{class:"d-flex flex-wrap align-center",role:"group","aria-label":i.value.chipGroupLabel},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,k=>(e.openBlock(),e.createBlock(et.VChip,e.mergeProps({ref_for:!0},e.unref(r).chip,{key:k.text,color:f(k.state),class:{"sy-chip-success":k.state==="success","sy-chip-info":k.state==="info","sy-chip-warning":k.state==="warning","sy-chip-error":k.state==="error"},role:"listitem"}),{default:e.withCtx(()=>[e.createElementVNode("div",po,[g.displayPrependStateIcon?(e.openBlock(),e.createBlock($.VIcon,e.mergeProps({key:0,ref_for:!0},e.unref(r).icon,{icon:g.customIcon||u(k.state),color:k.state}),null,16,["icon","color"])):e.createCommentVNode("",!0),e.createElementVNode("span",null,e.toDisplayString(k.text),1),g.displayAppendStateIcon?(e.openBlock(),e.createBlock($.VIcon,e.mergeProps({key:1,ref_for:!0},e.unref(r).icon,{icon:g.customIcon||u(k.state)}),null,16,["icon"])):e.createCommentVNode("",!0),g.readonly?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:2,ref_for:!0},e.unref(r).btn,{"aria-label":i.value.closeBtnLabel,icon:"",class:"remove-chip",onClick:w=>h(k)}),{default:e.withCtx(()=>[e.createVNode($.VIcon,e.mergeProps({ref_for:!0},e.unref(r).icon,{icon:c.value}),null,16,["icon"])]),_:2},1040,["aria-label","onClick"]))])]),_:2},1040,["color","class"]))),128))],8,uo),m.value||!g.readonly?(e.openBlock(),e.createElementBlock("div",fo,[m.value?(e.openBlock(),e.createBlock(et.VChip,e.mergeProps({key:0},e.unref(r).chip,{class:"overflow-chip text-cyan-darken-40 ma-1",role:"status","aria-label":i.value.overflowLabel}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(p.value),1)]),_:1},16,["aria-label"])):e.createCommentVNode("",!0),g.readonly?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(q.VBtn,{key:1,variant:"text",color:"primary",size:"small","data-test-id":"reset-btn",class:"overflow-btn px-1 ml-0 my-1",onClick:b},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(d.value),1)]),_:1}))])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-a63146a8"]]),ho={class:"pl-0"},go=["href","aria-label"],yo={key:1,class:"vd-collapse-list"},bo={class:"text-subtitle-1 font-weight-bold mb-3"},ko={class:"pl-0"},Vo=["href","aria-label"],wo=_(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(o){const a=o,{smAndDown:n}=j.useDisplay(),t=e.computed(()=>n.value);return(r,l)=>t.value?(e.openBlock(),e.createBlock(le.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(le.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(le.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.listTitle),1)]),_:1}),e.createVNode(le.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",ho,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(i,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:"py-3"},[e.createElementVNode("a",{href:i.href,"aria-label":i.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(i.text),9,go)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",yo,[e.createElementVNode("h4",bo,e.toDisplayString(r.listTitle),1),e.createElementVNode("ul",ko,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,(i,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:e.normalizeClass({"mb-2":c<r.items.length-1})},[e.createElementVNode("a",{href:i.href,"aria-label":i.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(i.text),9,Vo)],2))),128))])]))}}),[["__scopeId","data-v-a4e2c3b6"]]),Bo={key:0,class:"vd-contextual-menu"},Co=["href","onClick","textContent"],No=_(e.defineComponent({__name:"ContextualMenu",props:e.mergeModels({items:{}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue");e.onMounted(()=>{!a.value&&window.location.hash&&(a.value=window.location.hash),addEventListener("hashchange",()=>{a.value=window.location.hash})}),e.watch(a,(t,r)=>{t&&t!==r&&n(t)},{immediate:!0});function n(t){window.location.hash!==t&&(window.location.hash=t,a.value=t)}return(t,r)=>t.items.length?(e.openBlock(),e.createElementBlock("ul",Bo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,({text:l,hash:i,level:c})=>(e.openBlock(),e.createElementBlock("li",{key:i},[e.createElementVNode("a",{href:i,class:e.normalizeClass([{"text-primary active":a.value===i,"text-medium-emphasis":a.value!==i,"ps-4":c===2,"ps-6":c===3,"ps-9":c===4,"ps-12":c===5,"ps-14":c===6},"d-flex align-center text-decoration-none text-body-1 px-4 py-2"]),onClick:e.withModifiers(s=>n(i),["prevent","stop"]),textContent:e.toDisplayString(l)},null,10,Co)]))),128))])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-4af557c1"]]),pt={color:"primary",height:"auto",minHeight:"44px",class:"text-wrap"},So={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:{...pt,variant:"outlined"},rejectBtn:{...pt},acceptBtn:{...pt}},re={label:"Gestion des cookies",title:"À propos des cookies",closeBtn:"Continuer sans accepter",backBtn:"Précédent",description:"Ce site utilise des cookies qui nous permettent de vous proposer une expérience en ligne optimale en enregistrant certaines informations lors de votre navigation.",moreInformationLabel:"En savoir plus",customizeBtnText:"Personnaliser mes choix",rejectBtnText:"Continuer sans accepter",acceptBtnText:"Tout accepter"};function qt(o,a,n=[]){return typeof o[a]=="function"?o[a](...n):o[a]}const Mo={default:"Le champ est requis."};function Lo(o=Mo){return a=>{let n;return Array.isArray(a)?n=a.length!==0:n=!!(typeof a=="string"?a.trim():a),n||qt(o,"default")}}const Oe=Lo(),vo=[{label:"Dénomination du cookie",width:"180px"},{label:"Finalité",width:"328px"},{label:"Durée de conservation",width:"180px"}],Wt=_(e.defineComponent({__name:"CookiesTable",props:{items:{}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(Ga.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(vo),(t,r)=>(e.openBlock(),e.createElementBlock("th",{key:r,style:e.normalizeStyle({width:t.width}),class:"text-left",scope:"col"},e.toDisplayString(t.label),5))),128))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,t=>(e.openBlock(),e.createElementBlock("tr",{key:t.name},[e.createElementVNode("td",null,e.toDisplayString(t.name),1),e.createElementVNode("td",null,[e.renderSlot(a.$slots,"cookie-description-"+t.name,{cookie:t},()=>[e.createTextVNode(e.toDisplayString(t.description),1)],!0)]),e.createElementVNode("td",null,e.toDisplayString(t.conservation),1)]))),128))])]),_:3}))}}),[["__scopeId","data-v-395de867"]]),ie={essentials:{title:"Cookies requis",description:"Ces cookies sont indispensables au fonctionnement du site et ne peuvent être désactivés."},functional:{title:"Cookies fonctionnels",description:"Ces cookies sont utilisés pour capturer vos préférences sur notre site. Ils permettent de vous assurer un confort dans votre navigation."},analytics:{title:"Cookies d’analyse",description:"Ces cookies sont dédiés à l’amélioration de notre site en analysant votre expérience d’utilisation. Ils nous sont très utiles pour vous proposer un site de bonne qualité."},showInformation:"Afficher les cookies",hideInformation:"Masquer les cookies",reject:"Refuser",accept:"Accepter",fieldLabel:o=>`Accepter les cookies de type ${o}, ce champ est requis.`},xo={class:"vd-cookies-information"},Eo={class:"text-subtitle-1 font-weight-bold mb-2"},Io={class:"mb-4"},_o={class:"mb-1"},Kt=_(e.defineComponent({__name:"CookiesInformation",props:e.mergeModels({type:{},tableItems:{}},{modelValue:{type:Boolean},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue"),n=e.computed(()=>{if(a.value===!0)return"accept";if(a.value===!1)return"reject"}),t=e.ref(!1);function r(l){t.value=l.newState==="open"}return(l,i)=>(e.openBlock(),e.createElementBlock("div",xo,[e.createElementVNode("h2",Eo,e.toDisplayString(e.unref(ie)[l.type].title),1),e.createElementVNode("p",Io,e.toDisplayString(e.unref(ie)[l.type].description),1),e.createElementVNode("details",{onToggle:r},[e.createElementVNode("summary",_o,[e.createTextVNode(e.toDisplayString(t.value?e.unref(ie).hideInformation:e.unref(ie).showInformation)+" ",1),e.createVNode($.VIcon,{class:"mr-2","data-test":"chevron"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(hn):e.unref(lt)),1)]),_:1})]),e.createVNode(Wt,{items:l.tableItems,class:"mb-2"},e.createSlots({_:2},[e.renderList(l.$slots,(c,s)=>({name:s,fn:e.withCtx(m=>[e.renderSlot(l.$slots,s,e.normalizeProps(e.guardReactiveProps(m??{})),void 0,!0)])}))]),1032,["items"])],32),l.type!=="essentials"?(e.openBlock(),e.createBlock(ja.VRadioGroup,{key:0,"model-value":n.value,rules:[e.unref(Oe)],"data-test-id":"radio-group",inline:"",label:e.unref(ie).fieldLabel(e.unref(ie)[l.type].title),"hide-details":"auto",class:"vd-cookies-information__radio-group","onUpdate:modelValue":i[0]||(i[0]=c=>a.value=c==="accept")},{default:e.withCtx(()=>[e.createVNode(ee.VSpacer),e.createVNode(It.VRadio,{label:e.unref(ie).reject,value:"reject",color:"primary"},null,8,["label"]),e.createVNode(It.VRadio,{label:e.unref(ie).accept,value:"accept",class:"mr-0",color:"primary"},null,8,["label"])]),_:1},8,["model-value","rules","label"])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-b88c0006"]]),Ee={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"},To={class:"mb-4"},Ao={class:"mb-4"},$o={class:"d-flex flex-wrap justify-end mx-n2 mt-n2 mb-6"},Do={class:"d-flex mt-16"},Yt=e.defineComponent({__name:"CookiesSelection",props:{items:{}},emits:["submit"],setup(o,{emit:a}){const n=o,t=a,r=e.ref(null),l=e.ref({essentials:void 0,functional:void 0,analytics:void 0}),i=e.computed(()=>{const m={};return Object.entries(l.value).forEach(([p,d])=>{p!="essentials"&&n.items[p]&&(m[p]=d)}),m});function c(m){l.value.functional=m,l.value.analytics=m}async function s(){const{valid:m}=await r.value.validate();m&&t("submit",i.value)}return(m,p)=>m.items?(e.openBlock(),e.createBlock(Ze.VCard,{key:0,elevation:"0",color:"transparent",class:"vd-cookies-card"},{default:e.withCtx(()=>[e.createVNode(_t.VForm,{ref_key:"form",ref:r},{default:e.withCtx(()=>[e.createElementVNode("p",To,e.toDisplayString(e.unref(Ee).description),1),e.createElementVNode("p",Ao,e.toDisplayString(e.unref(Ee).cookieDefinition),1),e.createElementVNode("div",$o,[e.createVNode(q.VBtn,{"data-test-id":"reject-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[0]||(p[0]=d=>c(!1))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ee).rejectAll),1)]),_:1}),e.createVNode(q.VBtn,{"data-test-id":"accept-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[1]||(p[1]=d=>c(!0))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ee).acceptAll),1)]),_:1})]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.items,(d,f)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:f},[d?(e.openBlock(),e.createBlock(Kt,{key:0,modelValue:l.value[f],"onUpdate:modelValue":u=>l.value[f]=u,type:f,"table-items":d,class:"mb-6"},e.createSlots({_:2},[e.renderList(m.$slots,(u,h)=>({name:h,fn:e.withCtx(b=>[String(h).startsWith("cookie-description")?e.renderSlot(m.$slots,h,e.mergeProps({key:0,ref_for:!0},b??{})):e.createCommentVNode("",!0)])}))]),1032,["modelValue","onUpdate:modelValue","type","table-items"])):e.createCommentVNode("",!0)],64))),128)),e.createElementVNode("div",Do,[e.createVNode(ee.VSpacer),e.createVNode(q.VBtn,{"data-test-id":"submit",color:"primary",onClick:s},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ee).saveBtn),1)]),_:1})])]),_:3},512)]),_:3})):e.createCommentVNode("",!0)}}),Zo={class:"vd-cookie-banner__inner"},Po={class:"d-flex align-start flex-nowrap pa-0 mb-6"},Ro={class:"text-h5 font-weight-bold"},zo={class:"vd-cookie-banner-content"},Oo={key:0},Fo={key:1},Ho={class:"vd-cookie-banner-action-ctn d-flex align-center flex-wrap max-width-none mt-6 ga-4"},Uo=_(e.defineComponent({__name:"CookieBanner",props:e.mergeModels({vuetifyOptions:{},items:{}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:e.mergeModels(["reject","accept","customize","submit"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=K(So,n),r=a,l=e.useModel(o,"modelValue"),i=e.ref(!1),c=j.useDisplay(),s=e.computed(()=>c.smAndDown.value?"100%":"auto");function m(){l.value=!1,r("reject")}function p(){l.value=!1,r("accept")}function d(){n.items&&(i.value=!0),r("customize")}function f(u){r("submit",u),i.value=!1,l.value=!1}return(u,h)=>l.value?(e.openBlock(),e.createBlock(e.Teleport,{key:0,to:"body"},[e.createVNode(ye.VSheet,e.mergeProps(e.unref(t).banner,{"aria-label":e.unref(re).label,class:"vd-cookie-banner"}),{default:e.withCtx(()=>[e.createElementVNode("div",Zo,[e.createElementVNode("div",Po,[e.createElementVNode("h2",Ro,e.toDisplayString(e.unref(re).title),1),e.createVNode(ee.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).spacer)),null,16),i.value?(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:0},e.unref(t).backBtn,{"aria-label":e.unref(re).backBtn,onClick:h[0]||(h[0]=b=>i.value=!1)}),{default:e.withCtx(()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pn)),1)]),_:1},16)]),_:1},16,["aria-label"])):(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:1},e.unref(t).closeBtn,{"aria-label":e.unref(re).closeBtn,onClick:m}),{default:e.withCtx(()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),e.createElementVNode("div",zo,[e.createVNode(e.Transition,{name:"height"},{default:e.withCtx(()=>[i.value&&u.items?(e.openBlock(),e.createElementBlock("div",Oo,[e.createVNode(Yt,{items:u.items,onSubmit:f},e.createSlots({_:2},[e.renderList(u.$slots,(b,g)=>({name:g,fn:e.withCtx(V=>[e.renderSlot(u.$slots,g,e.normalizeProps(e.guardReactiveProps(V||{})),void 0,!0)])}))]),1032,["items"])])):(e.openBlock(),e.createElementBlock("div",Fo,[e.renderSlot(u.$slots,"default",{},()=>[e.createElementVNode("p",null,e.toDisplayString(e.unref(re).description),1)],!0),e.createElementVNode("div",Ho,[e.createVNode(ee.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).actionsSpacer)),null,16),e.createVNode(q.VBtn,e.mergeProps(e.unref(t).customizeBtn,{"data-test-id":"customize",width:s.value,onClick:d}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).customizeBtnText),1)]),_:1},16,["width"]),e.createVNode(q.VBtn,e.mergeProps(e.unref(t).rejectBtn,{"data-test-id":"reject",width:s.value,onClick:m}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).rejectBtnText),1)]),_:1},16,["width"]),e.createVNode(q.VBtn,e.mergeProps(e.unref(t).acceptBtn,{"data-test-id":"accept",width:s.value,onClick:p}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(re).acceptBtnText),1)]),_:1},16,["width"])])]))]),_:3})])])]),_:3},16,["aria-label"])])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-f308fef2"]]);function qo(o){const a=document.createElement("textarea");a.value=o,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a);const n=document.getSelection();let t=!1;n&&(t=n.rangeCount>0?n.getRangeAt(0):!1),a.select(),navigator.clipboard?navigator.clipboard.writeText(o):document.execCommand("copy"),document.body.removeChild(a),n&&t&&(n.removeAllRanges(),n.addRange(t))}const Wo={tooltip:"Texte copié !"},Ko={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"}},Yo=["id"],Go=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(o,{expose:a}){const n=o,t=K(Ko,n),r=e.ref(!1),l=yn;function i(){const c=typeof n.textToCopy=="function"?n.textToCopy():n.textToCopy;qo(c),!n.hideTooltip&&setTimeout(()=>{r.value=!1},n.tooltipDuration)}return a({copy:i,tooltip:r}),(c,s)=>(e.openBlock(),e.createElementBlock("div",{id:n.ariaOwns,class:"vd-copy-btn"},[e.createVNode(ge.VMenu,e.mergeProps(e.unref(t).menu,{id:n.ariaOwns,modelValue:r.value,"onUpdate:modelValue":s[0]||(s[0]=m=>r.value=m),disabled:n.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:m})=>[e.createVNode(q.VBtn,e.mergeProps({...m,...e.unref(t).btn},{"aria-label":n.ariaLabel,"aria-owns":n.ariaOwns,"data-test-id":n.ariaOwns,onClick:i}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l)),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(Wo).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,Yo))}}),jo={class:"d-sr-only"},Jo={key:0,class:"d-flex flex-column align-end py-1 mr-1"},Gt=_(e.defineComponent({__name:"SyBtnSelect",props:{modelValue:{type:[Object,String,null],default:null},menuItems:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},required:{type:Boolean,default:!1},menuId:{type:String,default:"custom-btn-select-menu"},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},primaryInfo:{type:String,default:"Information principale"},secondaryInfo:{type:String,default:void 0},hideIcon:{type:Boolean,default:!1},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},iconOnly:{type:Boolean,default:!1},options:{type:Object,default:()=>({menu:{},btn:{},list:{}})}},emits:["update:modelValue","logout"],setup(o,{expose:a,emit:n}){const t=o,r=n,l=e.useSlots(),{smAndDown:i}=j.useDisplay(),c=e.ref(!1),s=e.ref(t.modelValue),m=()=>{c.value=!c.value},p=e.ref(null),d=e.ref("");e.onMounted(()=>{p.value&&!g.value&&(d.value=`${p.value.getBoundingClientRect().width}px`)});const f=k=>{s.value=k,r("update:modelValue",k),c.value=!1},u=e.computed(()=>t.menuItems.map(k=>typeof k=="string"?{[t.textKey]:k,[t.valueKey]:k}:k)),h=e.computed(()=>t.hideIcon?"pa-1 pa-sm-2":g.value?"pa-0":"pa-1 pa-sm-3"),b=e.computed(()=>!!(l.default||!t.hideLogoutBtn)),g=e.computed(()=>t.isMobileView||i.value||t.iconOnly);e.watch(()=>t.modelValue,k=>{s.value=k});const V=e.ref(`custom-btn-select-${Math.random().toString(36).substring(7)}`);return a({isOpen:c,formattedItems:u,selectedItem:s}),(k,w)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"buttonRef",ref:p,class:"vd-user-menu-btn-ctn d-inline-block"},[e.createVNode(ge.VMenu,e.mergeProps({id:V.value,disabled:!b.value,location:"bottom end",transition:"fade-transition"},t.options.menu,{"z-index":"9999"}),{activator:e.withCtx(({props:B})=>[e.createVNode(q.VBtn,e.mergeProps({id:V.value,class:[h.value,"vd-user-menu-btn"],height:o.iconOnly?"auto":void 0,icon:o.iconOnly,size:o.iconOnly?"x-large":"default",width:o.iconOnly?"auto":void 0},{...B,...t.options.btn},{onClick:m}),{default:e.withCtx(()=>{var L,T,A,M;return[e.createElementVNode("div",{class:e.normalizeClass([["text-"+((L=t==null?void 0:t.options.btn)==null?void 0:L.color)],"d-flex align-center"])},[e.renderSlot(k.$slots,"prepend-icon",{},void 0,!0),e.createElementVNode("span",jo,e.toDisplayString(t.label),1),!g.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",Jo,[e.createElementVNode("span",{class:e.normalizeClass([`text-${(T=t==null?void 0:t.options.btn)==null?void 0:T.textColor}`,"font-weight-bold"])},e.toDisplayString(t.primaryInfo),3),e.createElementVNode("span",{class:e.normalizeClass([`text-${(A=t==null?void 0:t.options.btn)==null?void 0:A.textColor}`,"text-grey text-darken-2 font-weight-medium"])},e.toDisplayString(t.secondaryInfo),3)])):e.createCommentVNode("",!0),g.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass([`text-${(M=t==null?void 0:t.options.btn)==null?void 0:M.textColor}`,"font-weight-bold text-caption"])},e.toDisplayString(t.primaryInfo),3)):e.createCommentVNode("",!0),e.renderSlot(k.$slots,"append-icon",{},void 0,!0)],2)]}),_:2},1040,["id","class","height","icon","size","width"])]),default:e.withCtx(()=>[e.renderSlot(k.$slots,"content",{},()=>[b.value?(e.openBlock(),e.createBlock(G.VList,e.normalizeProps(e.mergeProps({key:0},t.options.list)),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(B,L)=>{var T;return e.openBlock(),e.createBlock(G.VListItem,e.mergeProps({key:L,class:`text-${(T=t==null?void 0:t.options.list)==null?void 0:T.textColor}`,ref_for:!0},t.options.list,{href:B.link,onClick:A=>f(B)}),{default:e.withCtx(()=>[e.createVNode(G.VListItemTitle,e.mergeProps({ref_for:!0},t.options.list),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(B[t.textKey]),1)]),_:2},1040)]),_:2},1040,["class","href","onClick"])}),128)),e.renderSlot(k.$slots,"default",{},void 0,!0),e.renderSlot(k.$slots,"footer-list-item",{},void 0,!0)]),_:3},16)):e.createCommentVNode("",!0)],!0)]),_:3},16,["id","disabled"])],512))}}),[["__scopeId","data-v-27dd5864"]]),Xo={menu:{color:"primary"},option:{color:"primary"}},Qo=["onKeydown"],jt=_(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},displayAsterisk:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,r=K(Xo,t),l=n,i=e.ref(!1),c=e.ref(t.modelValue),s=e.ref(!1),m=()=>{i.value=!i.value},p=()=>{i.value=!1},d=e.computed(()=>(t.required||t.errorMessages.length>0)&&!c.value),f=e.ref(`sy-input-select-${Math.random().toString(36).substring(7)}`),u=M=>{c.value=M,l("update:modelValue",M),i.value=!1},h=M=>M[t.textKey],b=e.computed(()=>c.value&&typeof c.value=="object"?c.value[t.textKey]:V.value),g=e.computed(()=>t.displayAsterisk&&t.required),V=e.computed(()=>g.value?`${t.label} *`:t.label);e.watch(()=>t.modelValue,M=>{c.value=M}),e.watch([i,s],([M,I])=>{M?s.value=I:s.value=!c.value&&d.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,M=>{T.value=M,s.value=M.length>0});const k=e.ref(null),w=e.ref("");e.onMounted(()=>{e.watch([()=>i.value,()=>{var M;return(M=k.value)==null?void 0:M.getBoundingClientRect().width}],([M,I])=>{if(M&&I){const v=I+(t.isHeaderToolbar?32:0);w.value=`${v}`}})});const B=e.computed(()=>t.outlined&&s.value?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined error text-error":t.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),L=e.computed(()=>t.items.map(M=>typeof M=="string"?{[t.textKey]:M,[t.valueKey]:M}:M)),T=e.ref(t.errorMessages),A=()=>t.required&&!c.value?(T.value=["Le champ est requis."],!1):t.errorMessages.length>0?(T.value=t.errorMessages,!1):(T.value=[],!0);return a({isOpen:i,closeList:p,selectItem:u,selectedItem:c,getItemText:h}),(M,I)=>(e.openBlock(),e.createBlock(Ja.VInput,{id:f.value,modelValue:c.value,"onUpdate:modelValue":I[1]||(I[1]=v=>c.value=v),"error-messages":T.value,label:V.value,title:V.value,role:"menu",onClick:A},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"menu",ref:k,class:e.normalizeClass(["sy-input-select",B.value,"text-"+e.unref(r).menu.color]),role:"menu",tabindex:"0",onClick:m,onKeydown:[e.withKeys(e.withModifiers(m,["prevent"]),["enter"]),e.withKeys(e.withModifiers(m,["prevent"]),["space"])]},[e.createElementVNode("span",null,e.toDisplayString(b.value),1),s.value?(e.openBlock(),e.createBlock($.VIcon,{key:0,class:"ml-2",color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Re)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode($.VIcon,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(lt)),1)]),_:1})],42,Qo)),[[Qe.ClickOutside,p]]),i.value?(e.openBlock(),e.createBlock(G.VList,e.mergeProps({key:0,"aria-label":t.label,"is-header-toolbar":t.isHeaderToolbar,style:`min-width:${w.value}px; ${t.outlined?"top: 36px;":"top: 30px;"}`,title:t.label,class:"v-list"},e.unref(r).list,{onKeydown:I[0]||(I[0]=e.withKeys(e.withModifiers(v=>i.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(L.value,(v,D)=>(e.openBlock(),e.createBlock(G.VListItem,e.mergeProps({key:D,ref_for:!0,ref:"options-"+D,"aria-selected":c.value===v,"base-color":e.unref(r).option.color,tabindex:D+1,class:"v-list-item",role:"option"},e.unref(r).option,{onClick:Z=>u(v)}),{default:e.withCtx(()=>[e.createVNode(G.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h(v)),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-a5281111"]]),ft=_(e.defineComponent({__name:"SySelect",props:{modelValue:{type:[Object,String,Number],default:null},items:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},errorMessages:{type:[String,Array],default:()=>[]},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},menuId:{type:String,default:"sy-select-menu"},outlined:{type:Boolean,default:!0},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},displayAsterisk:{type:Boolean,default:!1},returnObject:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,r=n,l=e.ref(!1),i=e.ref(t.modelValue),c=e.ref(!1),s=e.ref(0),m=e.ref(null),p=()=>{l.value=!l.value},d=()=>{l.value=!1},f=e.ref(`sy-select-${Math.random().toString(36).substring(7)}`),u=L=>{t.returnObject?(i.value=L,r("update:modelValue",L)):(i.value=L[t.valueKey],r("update:modelValue",L[t.valueKey])),l.value=!1},h=L=>L[t.textKey],b=e.computed(()=>{var L;return i.value?t.returnObject?i.value[t.textKey]:(L=t.items.find(T=>T[t.valueKey]===i.value))==null?void 0:L[t.textKey]:""}),g=e.computed(()=>t.displayAsterisk&&t.required),V=e.computed(()=>g.value?`${t.label} *`:t.label),k=e.computed(()=>t.items.map(L=>typeof L=="string"?{[t.textKey]:L,[t.valueKey]:L}:L)),w=e.computed(()=>(t.required||t.errorMessages.length>0)&&!i.value),B=e.ref(null);return e.watch(()=>t.modelValue,L=>{i.value=L}),e.watch([l,c],([L,T])=>{L?c.value=T:c.value=!i.value&&w.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,L=>{c.value=L.length>0}),e.onMounted(()=>{m.value&&(s.value=m.value.offsetWidth+64)}),a({isOpen:l,closeList:d}),(L,T)=>{var A;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(De.VTextField,{id:f.value,ref_key:"input",ref:B,modelValue:b.value,"onUpdate:modelValue":T[0]||(T[0]=M=>b.value=M),title:V.value,color:"primary",tabindex:"0",readonly:"",disabled:o.disabled,label:V.value,"aria-label":V.value,"error-messages":o.errorMessages,variant:o.outlined?"outlined":"underlined",rules:w.value?["Le champ est requis."]:[],"display-asterisk":o.displayAsterisk,class:"sy-select",style:e.normalizeStyle(c.value?{minWidth:`${s.value+18}px`}:{minWidth:`${s.value}px`}),onClick:p,onKeydown:[e.withKeys(e.withModifiers(p,["prevent"]),["enter"]),e.withKeys(e.withModifiers(p,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[c.value?(e.openBlock(),e.createBlock($.VIcon,{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Re)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode($.VIcon,{class:"arrow"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ot)),1)]),_:1})]),_:1},8,["id","modelValue","title","disabled","label","aria-label","error-messages","variant","rules","display-asterisk","style","onKeydown"])),[[Qe.ClickOutside,d]]),e.createElementVNode("span",{ref_key:"labelRef",ref:m,class:"hidden-label"},e.toDisplayString(o.label),513),l.value?(e.openBlock(),e.createBlock(G.VList,{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(A=B.value)==null?void 0:A.$el.offsetWidth}px`),onKeydown:T[1]||(T[1]=e.withKeys(e.withModifiers(M=>l.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(k.value,(M,I)=>(e.openBlock(),e.createBlock(G.VListItem,{key:I,ref_for:!0,ref:"options-"+I,role:"option",class:"v-list-item","aria-selected":i.value===M,tabindex:I+1,onClick:v=>u(M)},{default:e.withCtx(()=>[e.createVNode(G.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h(M)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-b1c8d13a"]]),el={loadingLabel:"Le contenu est en cours de chargement."},tl={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"}},al={placeholder:"…"},nl={class:"vd-data-list-item d-flex flex-wrap"},ol={class:"vd-data-list-item-content"},ll={class:"vd-data-list-item-value"},rl=["innerHTML"],il=["textContent"],sl=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:al.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(o,{emit:a}){const n=o,t=a,r=K(tl,n),l=j.useTheme(),i=e.computed(()=>l.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),c=e.computed(()=>typeof n.value=="number"?isNaN(n.value)?n.placeholder:n.value.toString():n.value||n.placeholder);return(s,m)=>(e.openBlock(),e.createElementBlock("li",nl,[e.renderSlot(s.$slots,"icon",{},()=>[s.icon?(e.openBlock(),e.createBlock($.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(r).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",ol,[e.createElementVNode("div",{class:e.normalizeClass({"vd-row":s.row})},[e.createElementVNode("div",{class:"vd-data-list-item-label text-caption",style:e.normalizeStyle({color:i.value})},e.toDisplayString(s.label),5),e.createElementVNode("div",ll,[e.renderSlot(s.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:c.value})),()=>[s.chip?(e.openBlock(),e.createBlock(et.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(r).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.value),1)]),_:1},16)):s.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:c.value},null,8,rl)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(c.value)},null,8,il))],!0)])],2),e.renderSlot(s.$slots,"action",{},()=>[s.action?(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:0},e.unref(r).actionBtn,{class:"vd-data-list-item-action-btn",onClick:m[0]||(m[0]=p=>t("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),Jt=_(sl,[["__scopeId","data-v-bca44d3d"]]),we=_(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createBlock(e.unref(Xa.VSkeletonLoader),e.mergeProps(n.$attrs,{width:a.width,height:a.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-abf44671"]]),cl={"aria-hidden":"true",class:"vd-data-list-loading"},dl=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(o){const a=o,n=e.computed(()=>a.row?"150px":"90px");return(t,r)=>(e.openBlock(),e.createElementBlock("div",cl,[o.heading?(e.openBlock(),e.createBlock(we,{key:0,width:"100px",height:"1.5rem",class:"mb-4"})):e.createCommentVNode("",!0),e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.itemsNumber,l=>(e.openBlock(),e.createElementBlock("li",{key:l+"-loading-item",class:e.normalizeClass([{"mb-4":l!==o.itemsNumber},"vd-data-list-loading-item"])},[o.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(we,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(we,{width:n.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function Be(o){return{widthStyles:e.computed(()=>({maxWidth:pe(o.maxWidth),minWidth:pe(o.minWidth),width:pe(o.width??"100%")}))}}const ml=["aria-label"],ul={key:1},pl={key:0},Xt=_(e.defineComponent({__name:"DataList",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},listTitle:{type:String,default:void 0},titleClass:{type:String,default:"text-subtitle-1 font-weight-bold mb-3"},row:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},loading:{type:Boolean,default:!1},itemsNumberLoading:{type:Number,default:1},headingLoading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1},maxWidth:{type:String,default:void 0},minWidth:{type:String,default:void 0},width:{type:String,default:void 0}},emits:["click:item-action"],setup(o,{emit:a}){const n=o,{widthStyles:t}=Be(n),r=a,l=e.computed(()=>n.loading?el.loadingLabel:void 0),i=s=>{var m;if(!(!s||!n.icons))return(m=n.icons)==null?void 0:m[s]},c=(s,m)=>[{"mb-2":s!==n.items.length-1},m];return(s,m)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":l.value,style:e.normalizeStyle(e.unref(t)),class:"vd-data-list"},[e.createVNode(Le.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[o.loading?(e.openBlock(),e.createBlock(dl,{key:0,"items-number":o.itemsNumberLoading,heading:o.headingLoading,"title-class":o.titleClass,row:o.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",ul,[e.renderSlot(s.$slots,"title",{},()=>[o.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(o.titleClass)},e.toDisplayString(o.listTitle),3)):e.createCommentVNode("",!0)],!0),o.items.length?(e.openBlock(),e.createElementBlock("ul",pl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(p,d)=>(e.openBlock(),e.createBlock(Jt,{key:d,label:p.key,value:p.value,action:p.action,chip:p.chip,row:o.row,"render-html-value":o.renderHtmlValue,icon:i(p.icon),placeholder:o.placeholder,"vuetify-options":p.options,class:e.normalizeClass([c(d,p.class),"vd-data-list-item text-body-1"]),"onClick:action":f=>r("click:item-action",d)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,ml))}}),[["__scopeId","data-v-674d3ac2"]]),fl={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},Qt=e.defineComponent({__name:"DataListGroup",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},itemWidth:{type:String,default:"200px"},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item"],setup(o,{emit:a}){const n=o,t=a,r=(l,i)=>{t("click:list-item",{dataListIndex:l,itemIndex:i})};return(l,i)=>(e.openBlock(),e.createElementBlock("div",fl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(c,s)=>(e.openBlock(),e.createBlock(Xt,{key:`vd-data-list-${s}`,loading:n.loading,"render-html-value":n.renderHtmlValue,"list-title":c.title,items:c.items,"items-number-loading":c.itemsNumberLoading,"heading-loading":c.headingLoading,width:n.itemWidth,icons:n.icons,class:"ma-4","onClick:itemAction":m=>r(s,m)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}}),hl={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"}},ht={closeBtn:"Fermer la boîte de dialogue",cancelBtn:"Annuler",confirmBtn:"Valider"},gl={key:0,class:"text-h6 font-weight-bold"},yl=e.defineComponent({__name:"DialogBox",props:e.mergeModels({title:{default:void 0},width:{default:"800px"},cancelBtnText:{default:ht.cancelBtn},confirmBtnText:{default:ht.confirmBtn},hideActions:{type:Boolean,default:!1},persistent:{type:Boolean,default:!1},vuetifyOptions:{}},{modelValue:{type:Boolean,default:!1},modelModifiers:{}}),emits:e.mergeModels(["cancel","confirm","update:modelValue"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),t=e.ref(void 0),r=K(hl,a),l=be;async function i(){var d;const s=(d=t==null?void 0:t.value)==null?void 0:d.$el;return s?Array.from(s.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')).filter(f=>!f.hasAttribute("disabled")&&!f.getAttribute("aria-hidden")):[]}async function c(s){const m=await i(),p=m.findIndex(u=>u===s.target),d=p===-1,f=m.length-1;!s.shiftKey&&(d||p===f)?(s.preventDefault(),m[0].focus()):s.shiftKey&&(d||p===0)&&(s.preventDefault(),m[f].focus())}return(s,m)=>(e.openBlock(),e.createBlock(Qa.VDialog,e.mergeProps({modelValue:n.value,"onUpdate:modelValue":m[3]||(m[3]=p=>n.value=p)},s.$attrs,{width:a.width,persistent:a.persistent,"retain-focus":!1,"aria-modal":"true",class:"vd-dialog-box",onKeydown:e.withKeys(c,["tab"])}),{default:e.withCtx(()=>[e.createVNode(Ze.VCard,e.mergeProps(e.unref(r).card,{id:"dialogContent",ref_key:"dialogContent",ref:t,"aria-labelledby":a.title?a.title:"dialogContent"}),{default:e.withCtx(()=>[e.createVNode(Ze.VCardTitle,e.normalizeProps(e.guardReactiveProps(e.unref(r).cardTitle)),{default:e.withCtx(()=>[e.renderSlot(s.$slots,"title",{},()=>[s.title?(e.openBlock(),e.createElementBlock("h2",gl,e.toDisplayString(a.title),1)):e.createCommentVNode("",!0)],!0),e.createVNode(ee.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(r).spacer)),null,16),a.persistent?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:0},e.unref(r).closeBtn,{"aria-label":e.unref(ht).closeBtn,onClick:m[0]||(m[0]=p=>n.value=!1)}),{default:e.withCtx(()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(r).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),_:3},16),e.renderSlot(s.$slots,"default",{},void 0,!0),a.hideActions?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0},e.unref(r).actionsCtn,{class:"vd-dialog-box-actions-ctn"}),[e.createVNode(ee.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(r).actionsSpacer)),null,16),e.renderSlot(s.$slots,"actions",{},()=>[e.createVNode(q.VBtn,e.mergeProps(e.unref(r).cancelBtn,{onClick:m[1]||(m[1]=p=>s.$emit("cancel"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.cancelBtnText),1)]),_:1},16),e.createVNode(q.VBtn,e.mergeProps(e.unref(r).confirmBtn,{"data-test-id":"confirm-btn",onClick:m[2]||(m[2]=p=>s.$emit("confirm"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.confirmBtnText),1)]),_:1},16)],!0)],16))]),_:3},16,["aria-labelledby"])]),_:3},16,["modelValue","width","persistent"]))}}),gt=_(yl,[["__scopeId","data-v-72e0adc9"]]);function bl(o,a,n,t=!1){const r=t?["\uFEFF",o]:[o],l=window.navigator,i=new Blob(r,{type:n});if(l.msSaveOrOpenBlob)l.msSaveOrOpenBlob(i,a);else{const c=document.createElement("a");c.target="_blank",c.style.display="none",c.rel="noopener noreferrer",c.href=window.URL.createObjectURL(i),c.download=a,document.body.appendChild(c),c.click(),document.body.removeChild(c),window.URL.revokeObjectURL(c.href)}}const kl={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},Vl=_(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(o,{expose:a,emit:n}){const t=o,r=n,l=e.useAttrs(),i=e.ref("idle"),c=K(kl,t),s=e.computed(()=>mt(c.value.btn,l));function m(d){var b,g,V;const f=d["content-type"],u=d["content-disposition"];let h;return h=(V=(g=(b=u==null?void 0:u.split(";"))==null?void 0:b.find(k=>k.includes("filename=")))==null?void 0:g.split("="))==null?void 0:V[1],h||(h=t.fallbackFilename||"file"),{name:h,type:f}}async function p(){i.value="loading";try{const{data:d,headers:f}=await t.filePromise(),{name:u,type:h}=m(f);bl(d,u,h)}catch(d){i.value="error",r("error",d);return}i.value="success",r("success")}return a({getFileInfo:m,download:p,state:i}),(d,f)=>(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps(s.value,{loading:i.value==="loading",class:[s.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:p}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(c).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(kn)),1)]),_:1},16)],!0),e.renderSlot(d.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-dab2a719"]]),wl={errorCodeText:"Code d'erreur : "},ea=_(e.defineComponent({__name:"PageContainer",props:{size:{default:void 0},spacing:{default:void 0},color:{default:"transparent"}},setup(o,{expose:a}){const n=o,t=j.useDisplay(),r={xs:"px-4",sm:"px-4",md:"px-14",lg:"px-14",xl:"px-0"},l={xs:340,sm:540,md:800,lg:1280,xl:1712},i=e.computed(()=>n.spacing?`py-10 ${r[n.spacing]}`:`py-10 ${r[t.name.value]}`),c=e.computed(()=>n.size?l[n.size]:l[t.name.value]??l.xl);return a({spacingClass:i,containerSize:c}),(s,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([i.value,"vd-page-container d-flex justify-center"])},[e.createVNode(ye.VSheet,{width:c.value,color:s.color},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-cbb17930"]]),Bl={key:0,class:"vd-code text-primary mb-4"},Cl={class:"d-sr-only"},Nl={key:1,class:"mb-2 font-weight-bold text-h5 mb-4"},Sl={key:2},Ml=e.defineComponent({__name:"ErrorPage",props:{pageTitle:{default:void 0},message:{default:void 0},code:{default:void 0},codeErrorText:{default:wl.errorCodeText},btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(ea,{size:"md"},{default:e.withCtx(()=>[e.createVNode(Ze.VCard,{elevation:0,class:"pa-6 pa-sm-16"},{default:e.withCtx(()=>[e.createVNode(ee.VRow,{class:"max-width-none"},{default:e.withCtx(()=>[e.createVNode(ee.VCol,{sm:a.$slots.illustration?6:12,cols:"12",class:"order-last order-sm-first text-center text-sm-left d-flex flex-column justify-center align-sm-start"},{default:e.withCtx(()=>[a.code?(e.openBlock(),e.createElementBlock("div",Bl,[e.createElementVNode("span",Cl,e.toDisplayString(a.codeErrorText),1),e.createTextVNode(" "+e.toDisplayString(a.code),1)])):e.createCommentVNode("",!0),a.pageTitle?(e.openBlock(),e.createElementBlock("h2",Nl,e.toDisplayString(a.pageTitle),1)):e.createCommentVNode("",!0),a.message?(e.openBlock(),e.createElementBlock("p",Sl,e.toDisplayString(a.message),1)):e.createCommentVNode("",!0),e.renderSlot(a.$slots,"additional-content",{},void 0,!0),e.renderSlot(a.$slots,"action",{},()=>[!a.hideBtn&&a.btnText&&(a.btnLink||a.btnHref)?(e.openBlock(),e.createBlock(q.VBtn,{key:0,to:a.btnLink,href:a.btnHref,color:"primary",exact:"",class:"mt-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.btnText),1)]),_:1},8,["to","href"])):e.createCommentVNode("",!0)],!0)]),_:3},8,["sm"]),a.$slots.illustration?(e.openBlock(),e.createBlock(ee.VCol,{key:0,cols:"12",sm:"6",class:"d-flex align-center justify-center"},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"illustration",{},void 0,!0)]),_:3})):e.createCommentVNode("",!0)]),_:3})]),_:3})]),_:3}))}}),yt=_(Ml,[["__scopeId","data-v-8a08901d"]]),ta={noData:"Pas de données.",btnText:"Consulter les données externes"},se={blue:{base:"#0c419a",lighten20:"#3d67ae",lighten40:"#6d8dc2",lighten80:"#ced9eb"},cyan:{darken40:"#006386"},brick:{base:"#cd545b"},grey:{lighten20:"#76797a"}},Ll={menu:{tile:!0,zIndex:4,offset:0},btn:{tile:!0,minHeight:"48px",minWidth:"328px",color:se.blue.lighten20,class:"d-flex px-3"},btnIcon:{color:"white"},linkIcon:{color:"rgba(0, 0, 0, .54)"},list:{border:!1,elevation:3,class:"py-0"},listItem:{target:"_blank",rel:"noopener noreferrer"},sheet:{class:"px-4 py-3"}},vl=["id"],xl={class:"d-flex flex-row justify-space-between"},El={class:"mb-0"},Il=e.defineComponent({__name:"ExternalLinks",props:{vuetifyOptions:{},items:{},position:{default:"top left"},btnText:{default:ta.btnText},nudgeTop:{default:0},nudgeBottom:{default:0},fixed:{type:Boolean,default:!1},ariaLabel:{default:"external-link-btn"},ariaOwns:{default:"external-link-btn"}},setup(o){const a=o,n=K(Ll,a),t=e.ref(!1),r=e.ref(!1),l=e.computed(()=>t.value||r.value),i=e.computed(()=>a.position.includes("left")),c=e.computed(()=>a.position.includes("top")),s=e.computed(()=>{const p="48px",d=i.value?`translateX(calc(-100% + ${p}))`:`translateX(calc(100% - ${p}))`;return{transform:l.value?"translateX(0)":d,position:a.fixed?"fixed":"absolute",flexDirection:i.value?"row":"row-reverse",top:c.value?pe(a.nudgeTop):"auto",bottom:c.value?"auto":pe(a.nudgeBottom),left:i.value?0:"auto",right:i.value?"auto":0,zIndex:c.value?"4":"5"}}),m=e.computed(()=>l.value?i.value?rt:it:i.value?it:rt);return(p,d)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns},[e.createVNode(ge.VMenu,e.mergeProps(e.unref(n).menu,{id:a.ariaOwns,modelValue:t.value,"onUpdate:modelValue":d[4]||(d[4]=f=>t.value=f),location:c.value?"bottom":"top",attach:"",transition:"fade-transition",class:["vd-external-links",{"vd-external-links--left":i.value,"vd-external-links--right":!i.value}]}),{activator:e.withCtx(({props:f})=>[e.createVNode(q.VBtn,e.mergeProps({...f,...e.unref(n).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,style:s.value,class:"vd-external-links-btn",onMouseenter:d[0]||(d[0]=u=>r.value=!0),onMouseleave:d[1]||(d[1]=u=>r.value=!1),onFocusin:d[2]||(d[2]=u=>r.value=!0),onFocusout:d[3]||(d[3]=u=>r.value=!1)}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass([{"ml-3":!i.value,"mr-3":i.value},"vd-external-links-btn-text white--text"])},e.toDisplayString(p.btnText),3),e.createVNode($.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).btnIcon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m.value),1)]),_:1},16)]),_:2},1040,["aria-label","aria-owns","style"])]),default:e.withCtx(()=>[p.items.length?(e.openBlock(),e.createBlock(G.VList,e.mergeProps({key:0},e.unref(n).list,{class:"vd-external-links-list"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.items,(f,u)=>(e.openBlock(),e.createBlock(G.VListItem,e.mergeProps({key:u,href:f.href,ref_for:!0},e.unref(n).listItem),{default:e.withCtx(()=>[e.createElementVNode("div",xl,[e.createVNode(G.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(n).listItemTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.text),1)]),_:2},1040),e.renderSlot(p.$slots,"link-icon",{},()=>[e.createVNode($.VIcon,e.mergeProps({ref_for:!0},e.unref(n).linkIcon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ft)),1)]),_:1},16)],!0)])]),_:2},1040,["href"]))),128))]),_:3},16)):(e.openBlock(),e.createBlock(ye.VSheet,e.normalizeProps(e.mergeProps({key:1},e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("p",El,e.toDisplayString(e.unref(ta).noData),1)]),_:1},16))]),_:3},16,["id","modelValue","location","class"])],8,vl))}}),_l=_(Il,[["__scopeId","data-v-91ee355f"]]),bt={colors:{background:"#ffffff",border:"#dddddd",text:"#333333",icon:"#666666",overlay:"rgba(0, 0, 0, 0.5)",interactive:"#007bff"},gap:{0:"0",1:"4px",2:"8px",3:"122px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",13:"52px",14:"56px",15:"60px",16:"64px"},iconSize:{xsmall:"8px",small:"16px",default:"24px",large:"32px"},radius:{rounded0:"0",rounded:"4px",roundedLg:"8px",roundedPill:"64px"},padding:{0:"0",2:"8px",3:"12px",4:"16px",6:"24px",8:"32px",10:"40px",14:"56px",16:"64px"},fontSize:{titres:"24px",titresAlternatifs:"20px",corpsDeTexte:"16px",liensEtLibelles:"14px"}},aa={optionalDocument:"Document facultatif",see:"Voir",delete:"Supprimer",uploading:"En cours",success:"Téléchargé",error:"Erreur",errorOccurred:"Une erreur est survenue pendant le téléchargement."},Tl={class:"file-item__description"},Al={class:"file-item__content"},$l={class:"file-item__icon"},Dl={key:0,class:"d-sr-only"},Zl={key:1,class:"d-sr-only"},Pl={class:"file-item__title"},Rl={class:"file-item__name text-base"},zl={key:0,class:"file-item__message text-base"},Ol={key:1,class:"file-item__error-message text-error"},Fl={class:"file-item__actions"},Hl={key:0,class:"file-item__message-progress"},Ul={class:"d-sr-only"},ql=_(e.defineComponent({__name:"UploadItem",props:{itemId:{},title:{},fileName:{default:void 0},message:{default:void 0},optional:{type:Boolean,default:!1},state:{default:"initial"},progress:{default:void 0},showUploadBtn:{type:Boolean,default:!0},showDeleteBtn:{type:Boolean,default:!0},showPreviewBtn:{type:Boolean,default:!1},tag:{default:"div"},locales:{default:()=>aa}},emits:["upload","preview","delete"],setup(o){return(a,n)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(a.tag),{class:"file-item"},{default:e.withCtx(()=>[e.createElementVNode("div",Tl,[e.createElementVNode("div",Al,[e.createElementVNode("span",$l,[e.renderSlot(a.$slots,"file-icon",{state:a.state},()=>[a.state==="success"?(e.openBlock(),e.createElementBlock("span",Dl,e.toDisplayString(a.locales.success),1)):a.state==="error"?(e.openBlock(),e.createElementBlock("span",Zl,e.toDisplayString(a.locales.error),1)):e.createCommentVNode("",!0),a.state==="error"?(e.openBlock(),e.createBlock($.VIcon,{key:2,size:e.unref(bt).iconSize.default,"aria-label":a.locales.error,color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(at)),1)]),_:1},8,["size","aria-label"])):a.state==="success"?(e.openBlock(),e.createBlock($.VIcon,{key:3,size:e.unref(bt).iconSize.default,"aria-label":a.locales.success,color:"success"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ot)),1)]),_:1},8,["size","aria-label"])):(e.openBlock(),e.createBlock($.VIcon,{key:4,size:e.unref(bt).iconSize.default,color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ln)),1)]),_:1},8,["size"]))],!0)]),e.createElementVNode("div",null,[e.createElementVNode("div",Pl,e.toDisplayString(a.title),1),e.createElementVNode("div",Rl,e.toDisplayString(a.fileName),1),a.message||a.optional?(e.openBlock(),e.createElementBlock("div",zl,e.toDisplayString(a.message??a.locales.optionalDocument),1)):e.createCommentVNode("",!0),a.state==="error"?(e.openBlock(),e.createElementBlock("div",Ol,e.toDisplayString(a.locales.error),1)):e.createCommentVNode("",!0)])]),e.createElementVNode("div",Fl,[(a.state==="initial"||a.state=="error")&&a.showUploadBtn?(e.openBlock(),e.createBlock(q.VBtn,{key:0,class:"file-item__action file-item__action-upload text-primary",variant:"text",onClick:n[0]||(n[0]=t=>a.$emit("upload",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode($.VIcon,{color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Dn)),1)]),_:1})]),default:e.withCtx(()=>[n[3]||(n[3]=e.createElementVNode("span",null,"Importer",-1))]),_:1})):e.createCommentVNode("",!0),a.state==="success"&&a.showPreviewBtn?(e.openBlock(),e.createBlock(q.VBtn,{key:1,class:"file-item__action file-item__action-preview text-primary",variant:"text",onClick:n[1]||(n[1]=t=>a.$emit("preview",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode($.VIcon,{color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Sn)),1)]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(a.locales.see),1)]),_:1})):e.createCommentVNode("",!0),a.state==="success"&&a.showDeleteBtn?(e.openBlock(),e.createBlock(q.VBtn,{key:2,class:"file-item__action file-item__action-delete text-error",variant:"text",onClick:n[2]||(n[2]=t=>a.$emit("delete",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode($.VIcon,{color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(bn)),1)]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(a.locales.delete),1)]),_:1})):e.createCommentVNode("",!0)])]),a.state==="loading"?(e.openBlock(),e.createElementBlock("div",Hl,[e.createElementVNode("p",Ul,e.toDisplayString(a.locales.uploading),1),e.createVNode(en.VProgressLinear,{indeterminate:a.progress===void 0,"model-value":a.progress,progress:a.progress,height:"7",color:"primary",rounded:"true"},null,8,["indeterminate","model-value","progress"])])):e.createCommentVNode("",!0)]),_:3}))}}),[["__scopeId","data-v-9b386f7d"]]),na=_(e.defineComponent({__name:"FileList",props:{uploadList:{},locales:{default:()=>aa},maxWidth:{},minWidth:{},width:{}},emits:["upload","preview","delete"],setup(o){const a=o,{widthStyles:n}=Be(a);return(t,r)=>(e.openBlock(),e.createElementBlock("ul",{class:"upload-list",style:e.normalizeStyle(e.unref(n))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.uploadList,l=>(e.openBlock(),e.createBlock(ql,{key:l.id,"item-id":l.id,title:l.title,"file-name":l.fileName,optional:l.optional,state:l.state,progress:l.progress,"show-upload-btn":l.showUploadBtn,"show-preview-btn":l.showPreviewBtn,"show-delete-btn":l.showDeleteBtn,tag:"li",locales:t.locales,onUpload:()=>t.$emit("upload",t.uploadList.find(i=>i.id===l.id)),onPreview:()=>t.$emit("preview",t.uploadList.find(i=>i.id===l.id)),onDelete:()=>t.$emit("delete",t.uploadList.find(i=>i.id===l.id))},{"file-icon":e.withCtx(i=>[e.renderSlot(t.$slots,`file-icon-${l.id}`,e.mergeProps({ref_for:!0},i),void 0,!0)]),_:2},1032,["item-id","title","file-name","optional","state","progress","show-upload-btn","show-preview-btn","show-delete-btn","locales","onUpload","onPreview","onDelete"]))),128))],4))}}),[["__scopeId","data-v-2fa21e0d"]]),Wl={pdf:{height:"556px",width:"100%"},image:{style:"width: 100%;"}},Kl={previewNotAvailable:"Impossible de prévisualiser le fichier.",previewTypeNotAvailable:"Impossible de prévisualiser ce type de fichier."},Yl={key:0,class:"sy-file-preview"},Gl=["data"],jl={class:"mb-0"},Jl=["src","alt"],Xl={class:"mb-0"},kt=e.defineComponent({__name:"FilePreview",props:{file:{default:void 0},options:{default:void 0},locales:{default:()=>Kl}},setup(o){const a=o,n=e.ref(""),t=e.computed(()=>{var s;return((s=a.file)==null?void 0:s.type)==="application/pdf"}),r=e.computed(()=>a.file?/^image\//.test(a.file.type):!1),l=e.computed(()=>mt(Wl,a.options||{})),i=()=>{!a.file||!(t.value||r.value)||(n.value=URL.createObjectURL(a.file))},c=()=>{URL.revokeObjectURL(n.value)};return e.watch(()=>a.file,i,{immediate:!0}),e.onUnmounted(c),(s,m)=>s.file?(e.openBlock(),e.createElementBlock("div",Yl,[t.value?(e.openBlock(),e.createElementBlock("object",e.mergeProps({key:0,data:n.value},l.value.pdf,{type:"application/pdf",onLoad:c}),[e.createElementVNode("p",jl,e.toDisplayString(s.locales.previewNotAvailable),1)],16,Gl)):r.value?(e.openBlock(),e.createElementBlock("img",e.mergeProps({key:1,src:n.value,alt:l.value.image.alt||""},l.value.image,{onLoad:c}),null,16,Jl)):e.renderSlot(s.$slots,"default",{key:2},()=>[e.createElementVNode("p",Xl,e.toDisplayString(s.locales.previewTypeNotAvailable),1)])])):e.createCommentVNode("",!0)}});function oa(o,a,n=" "){const t=Math.floor(Math.log(o)/Math.log(1024));return Number((o/Math.pow(1024,t)).toFixed(2))*1+n+a[t]}const ce={or:"Ou",chooseFile:o=>o?"Choisir des fichiers":"Choisir un fichier",infoText:(o,a)=>`Taille max. : ${o}. ${a.length===1?"Format accepté":"Formats acceptés"} : ${a.join(", ")}`,fileSizeUnits:["o","Ko","Mo","Go","To"],dropFilesHere:o=>o?"Déposer vos fichiers ici":"Déposer votre fichier ici",errorSize:(o,a)=>`Le fichier ${o} est trop volumineux. Taille max. : ${a}`,errorExtension:(o,a)=>`Le fichier ${o} a une extension invalide. Extensions acceptées : ${a.join(", ")}`},Ql={class:"sy-file-upload-placeholder"},er={class:"mt-1 font-weight-medium text-black"},tr={class:"mb-2 sy-file-upload-caption"},ar={class:"sy-file-upload-btn bg-primary text-white elevation-2"},nr={class:"mt-4 sy-file-upload-caption"},or=_(e.defineComponent({__name:"FileUploadContent",props:{allowedExtensions:{},fileSizeUnits:{},fileSizeMax:{},multiple:{type:Boolean}},setup(o){const a=o,n=e.computed(()=>oa(a.fileSizeMax,a.fileSizeUnits));return(t,r)=>(e.openBlock(),e.createElementBlock("span",Ql,[e.renderSlot(t.$slots,"icon",{},()=>[e.createVNode($.VIcon,{size:"40",color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(gn)),1)]),_:1})],!0),e.createElementVNode("span",er,[e.renderSlot(t.$slots,"action-text",{multiple:t.multiple},()=>[e.createElementVNode("span",null,e.toDisplayString(e.unref(ce).dropFilesHere(t.multiple)),1)],!0)]),e.createElementVNode("span",tr,[e.renderSlot(t.$slots,"or",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ce).or),1)],!0)]),e.createElementVNode("span",ar,[e.renderSlot(t.$slots,"button-text",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ce).chooseFile(t.multiple)),1)],!0)]),e.createElementVNode("span",nr,[e.renderSlot(t.$slots,"info-text",{maxSize:n.value,extensions:t.allowedExtensions},()=>[e.createTextVNode(e.toDisplayString(e.unref(ce).infoText(n.value,t.allowedExtensions)),1)],!0)])]))}}),[["__scopeId","data-v-03a3b5b3"]]);function lr(o,a){e.onMounted(()=>{const n=e.toValue(o);n&&n.addEventListener("drop",t=>{var l;t.preventDefault(),t.stopPropagation();const r=(l=t.dataTransfer)==null?void 0:l.files;r!=null&&r.length&&a(Array.from(r))})})}function rr(o,a,n,t){const r=[],l=[];for(const i of o){let c=!0;i.size>a&&(r.push(ce.errorSize(i.name,oa(a,t))),c=!1),!n.includes(i.name.split(".").pop()||"")&&n.length>0&&(r.push(ce.errorExtension(i.name,n)),c=!1),c&&l.push(i)}return{errors:r,validFiles:l}}const ir=["disabled","multiple","accept"],la=_(e.defineComponent({__name:"FileUpload",props:{modelValue:{},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},fileSizeMax:{default:10485760},fileSizeUnits:{default:()=>ce.fileSizeUnits},allowedExtensions:{default:()=>["pdf","jpg","jpeg","png"]},locales:{default:()=>ce},maxWidth:{},minWidth:{},width:{}},emits:["update:modelValue","error"],setup(o,{expose:a,emit:n}){const t=o,r=n,l=e.ref(!1),i="file-upload-"+e.useId(),c=e.ref(null),s=e.ref(null),m=e.ref([]),p=j.useTheme().current.value.dark;a({fileInput:s}),e.watch(()=>t.modelValue,h=>{m.value=h},{immediate:!0}),e.watch(m,h=>{r("update:modelValue",h)});const{widthStyles:d}=Be(t);function f(h){if(t.disabled)return;t.multiple||(h=h.slice(0,1));const{errors:b,validFiles:g}=rr(h,t.fileSizeMax,t.allowedExtensions,t.fileSizeUnits);if(b.length){r("error",b);return}t.multiple?m.value=[...m.value,...g]:m.value=g}lr(c,f);function u(h){const b=h.target.files;b&&(f(Array.from(b)),h.target.value="")}return(h,b)=>(e.openBlock(),e.createElementBlock("label",{ref_key:"dropZone",ref:c,for:i,class:e.normalizeClass([[{dragover:l.value,"sy-file-upload--disabled":h.disabled,"dark-mode":e.unref(p)}],"sy-file-upload d-block pa-4"]),style:e.normalizeStyle(e.unref(d)),onDragover:b[0]||(b[0]=e.withModifiers(g=>l.value=!0,["prevent"])),onDragleave:b[1]||(b[1]=g=>l.value=!1)},[e.createElementVNode("input",{id:i,ref_key:"fileInput",ref:s,type:"file",disabled:h.disabled,multiple:h.multiple,accept:h.allowedExtensions.map(g=>`.${g}`).join(", "),class:"sy-file-upload-input",onChange:u},null,40,ir),e.renderSlot(h.$slots,"default",{},()=>[e.createVNode(or,{"allowed-extensions":h.allowedExtensions,multiple:h.multiple,"file-size-max":h.fileSizeMax,"file-size-units":h.fileSizeUnits},e.createSlots({_:2},[e.renderList(h.$slots,(g,V)=>({name:V,fn:e.withCtx(k=>[e.renderSlot(h.$slots,V,e.normalizeProps(e.guardReactiveProps(k||{})),void 0,!0)])}))]),1032,["allowed-extensions","multiple","file-size-max","file-size-units"])],!0)],38))}}),[["__scopeId","data-v-ddb06402"]]);var ra={exports:{}};(function(o,a){(function(n,t,r){o.exports=r(),o.exports.default=r()})("slugify",qn,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),t=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function r(l,i){if(typeof l!="string")throw new Error("slugify: string argument expected");i=typeof i=="string"?{replacement:i}:i||{};var c=t[i.locale]||{},s=i.replacement===void 0?"-":i.replacement,m=i.trim===void 0?!0:i.trim,p=l.normalize().split("").reduce(function(d,f){var u=c[f];return u===void 0&&(u=n[f]),u===void 0&&(u=f),u===s&&(u=" "),d+u.replace(i.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return i.strict&&(p=p.replace(/[^A-Za-z0-9\s]/g,"")),m&&(p=p.trim()),p=p.replace(/\s+/g,s),i.lower&&(p=p.toLowerCase()),p}return r.extend=function(l){Object.assign(n,l)},r})})(ra);var sr=ra.exports;const cr=dt(sr);function ia(o){let a=o,n;if(o&&typeof o=="object"){a=Object.prototype.toString.call(o)==="[object Array]"?[]:{};for(n in o)o[n]!==void 0&&(a[n]=ia(o[n]))}return a}function sa(o,a){const n=e.ref([]);e.watch(o,p=>{n.value=ia(p)},{deep:!0,immediate:!0});function t(p){return l(p).length}function r(p){return cr(p,{lower:!0})}function l(p){const{value:d,formatChip:f}=p;if(d!==void 0&&f)return f(d);const u=typeof d=="string",h=typeof d=="number",b=typeof d=="object"&&d!==null,g=Array.isArray(d);if(u||h)return d===""?[]:[{text:d.toString(),value:d}];if(g)return d.map(V=>typeof V!="object"?{text:V.toString(),value:V}:{text:V.text||V.value.toString(),value:V});if(b){const V=d;return V.from!==void 0&&V.to!==void 0?V.from===null||V.to===null?[]:[{text:`${V.from} – ${V.to}`,value:V}]:Object.keys(V).map(w=>{var L;return{text:V[w].text||((L=V[w].value)==null?void 0:L.toString())||V[w].toString(),value:V[w]}})}return[]}function i(p,d){const f=p.value,u=typeof f=="string",h=typeof f=="number",b=typeof f=="object"&&f!==null,g=Array.isArray(f);if((u||h)&&(p.value=void 0),g){const V=f,k=d.value,w=V.filter(L=>Array.isArray(k)?!k.includes(L):typeof L=="object"?L.value!==k.value:L!==k),B=w.length?w:void 0;p.value=B,m();return}if(b){const V=f,k=d.value;if(V.from!==void 0&&V.to!==void 0){p.value=void 0,m();return}delete V[k],p.value=V}m()}function c(p){p.value=void 0,m()}function s(){n.value.forEach(p=>{p.value=void 0}),m()}function m(){a("update:modelValue",n.value)}return{filters:n,updateValue:m,removeChip:i,resetFilter:c,resetAllFilters:s,getChips:l,getFilterCount:t,formatFilterName:r}}const dr={badgeLabel:o=>`${o} filtre${o>1?"s":""}`},mr={class:"sy-filters-inline d-flex flex-wrap max-width-none ma-n2"},ur=_(e.defineComponent({__name:"FilterInline",props:{modelValue:{default:()=>[]},locales:{default:()=>dr}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{filters:r,updateValue:l,removeChip:i,resetFilter:c,getChips:s,getFilterCount:m,formatFilterName:p}=sa(e.toRef(n,"modelValue"),t);return(d,f)=>(e.openBlock(),e.createElementBlock("div",mr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),u=>(e.openBlock(),e.createBlock(ge.VMenu,{key:u.name,"close-on-content-click":!1,"min-width":"300px",width:"400px",offset:"12","nudge-bottom":"10px"},{activator:e.withCtx(({props:h})=>[e.createVNode(q.VBtn,e.mergeProps({ref_for:!0},h,{class:[`sy-filter-${u.name}`,"ma-2"],variant:e.unref(m)(u)?void 0:"outlined",color:"secondary",rounded:""}),{default:e.withCtx(()=>[e.unref(m)(u)?(e.openBlock(),e.createBlock(Tt.VBadge,{key:0,content:e.unref(m)(u),label:d.locales.badgeLabel(e.unref(m)(u)),inline:"",class:"ml-n1 mr-1"},null,8,["content","label"])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(u.title)+" ",1),e.createVNode($.VIcon,{size:"small",class:"ml-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(lt)),1)]),_:1})]),_:2},1040,["class","variant"])]),default:e.withCtx(()=>[e.createVNode(ye.VSheet,{color:"white",class:"pa-4"},{default:e.withCtx(()=>[e.createVNode(ut,{items:e.unref(s)(u),"overflow-limit":u.chipOverflowLimit,class:"mb-5","vuetify-options":{chip:{color:"secondary"},icon:{color:"white"}},onRemove:h=>e.unref(i)(u,h),onReset:h=>e.unref(c)(u)},null,8,["items","overflow-limit","onRemove","onReset"]),e.renderSlot(d.$slots,`${e.unref(p)(u.name)}`,{props:{modelValue:u.value,"onUpdate:modelValue":h=>{h!==u.value&&(u.value=h,e.unref(l)())}}},void 0,!0)]),_:2},1024)]),_:2},1024))),128))]))}}),[["__scopeId","data-v-2da581a4"]]),pr={filterBtnLabel:"Filtres",badgeLabel:o=>`${o} filtre${o>1?"s":""}`,reset:"Réinitialiser",close:"Fermer",apply:"Appliquer"},fr={class:"sy-filters-side-bar"},hr={key:0,class:"ml-1"},gr={class:"px-4 pb-4 pt-10"},yr=_(e.defineComponent({__name:"FilterSideBar",props:{modelValue:{default:()=>[]},locales:{default:()=>pr}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{filters:r,updateValue:l,removeChip:i,resetFilter:c,getChips:s,getFilterCount:m,formatFilterName:p,resetAllFilters:d}=sa(e.toRef(n,"modelValue"),t),f=e.ref(!1),u=e.computed(()=>n.modelValue.reduce((g,V)=>g+m(V),0));function h(){f.value=!f.value}function b(){l(),f.value=!1}return(g,V)=>(e.openBlock(),e.createElementBlock("div",fr,[e.createVNode(q.VBtn,{class:e.normalizeClass(["px-8 py-3",{"v-btn--active":f.value}]),color:"primary",variant:"text",size:"large",onClick:h},{default:e.withCtx(()=>[u.value?(e.openBlock(),e.createBlock(Tt.VBadge,{key:0,content:u.value,label:g.locales.badgeLabel(u.value),color:"secondary",inline:"",class:"ml-n1 mr-1"},null,8,["content","label"])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(g.locales.filterBtnLabel)+" ",1),e.createVNode($.VIcon,{class:"ml-2",size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(vn)),1)]),_:1})]),_:1},8,["class"]),e.createVNode(tn.VNavigationDrawer,{"model-value":f.value,sticky:"",temporary:"",location:"right",rounded:"0",scrim:!1,rail:"","rail-width":"395","disable-resize-watcher":"",class:"elevation-6"},{default:e.withCtx(()=>[e.createVNode(le.VExpansionPanels,{variant:"accordion"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),k=>(e.openBlock(),e.createBlock(le.VExpansionPanel,{key:k.name,class:e.normalizeClass(`vd-filter-${k.name}`),tile:"",elevation:"0"},{default:e.withCtx(()=>[e.createVNode(le.VExpansionPanelTitle,{class:"text-subtitle-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.title)+" ",1),e.unref(m)(k)?(e.openBlock(),e.createElementBlock("span",hr," ("+e.toDisplayString(e.unref(m)(k))+") ",1)):e.createCommentVNode("",!0)]),_:2},1024),e.createVNode(le.VExpansionPanelText,null,{default:e.withCtx(()=>[e.createVNode(ut,{items:e.unref(s)(k),"overflow-limit":k.chipOverflowLimit,class:"mb-5","vuetify-options":{chip:{color:"secondary"},icon:{color:"white"}},onRemove:w=>e.unref(i)(k,w),onReset:w=>e.unref(c)(k)},null,8,["items","overflow-limit","onRemove","onReset"]),e.renderSlot(g.$slots,`${e.unref(p)(k.name)}`,{props:{modelValue:k.value,"onUpdate:modelValue":w=>k.value=w}},void 0,!0)]),_:2},1024)]),_:2},1032,["class"]))),128))]),_:3}),e.createVNode(ee.VSpacer),e.createElementVNode("div",gr,[e.createVNode(q.VBtn,{color:"primary",block:"",size:"large",variant:"outlined",class:"mb-4",onClick:V[0]||(V[0]=k=>f.value=!1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.locales.close),1)]),_:1}),e.createVNode(q.VBtn,{color:"primary",block:"",size:"large",variant:"outlined",class:"mb-4",onClick:e.withModifiers(e.unref(d),["stop"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.locales.reset),1)]),_:1},8,["onClick"]),e.createVNode(q.VBtn,{block:"",size:"large",color:"primary",onClick:e.withModifiers(b,["stop"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.locales.apply),1)]),_:1})])]),_:3},8,["model-value"])]))}}),[["__scopeId","data-v-093e7cc2"]]),Ie={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},X={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},br=Object.values(X),ca={colors:{background:{accentContrasted:"#07275c"},text:{subduedOnDark:"rgba(255, 255, 255, 0.7)"}}},Fe={primary:se.blue.base,secondary:se.cyan.darken40,risquePro:se.brick.base},Ce=(o,a)=>({width:o,height:a}),kr={[X.X_SMALL]:Ce("105","32"),[X.SMALL]:Ce("131","40"),[X.NORMAL]:Ce("211","64")},Vr={[X.X_SMALL]:Ce("32","32"),[X.SMALL]:Ce("40","40"),[X.NORMAL]:Ce("64","64")};function Vt(o,a,n){const r=`(${a.join("|")})`,l=new RegExp(`^${r}$`);return n.match(l)!==null||console.error(`Invalid value for the \`${o}\` prop. Received: "${n}", expected one of: [${a.join(", ")}].`),!0}const wr=["fill","aria-label","width","height","viewBox","aria-hidden"],Br=["fill"],Cr={key:1,"aria-hidden":"true",role:"presentation"},Nr={key:2,role:"presentation","aria-hidden":"true"},Sr={key:3},wt=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:X.NORMAL,validator:o=>Vt("size",br,o)}},setup(o){const a=o,n=e.ref(Fe.risquePro),t=e.computed(()=>a.dark?"#fff":Fe.primary),r=e.computed(()=>a.avatar?Vr[a.size]:kr[a.size]),l=e.computed(()=>a.avatar?"0 0 64 64":a.hideSignature?"0 0 206 64":"0 0 211 64"),i=e.computed(()=>{if(a.ariaLabel)return a.ariaLabel;if(a.avatar)return"";const c=" : ",s=", ";let m=`${Ie.assuranceMaladie}`;return a.hideOrganism||(m=Ie.organism.concat(s,m)),a.hideSignature||(m=m.concat(c,Ie.signature)),a.risquePro&&(m=Ie.assuranceMaladie+": "+Ie.risquePro),m});return(c,s)=>(e.openBlock(),e.createElementBlock("svg",{fill:t.value,"aria-label":i.value,width:r.value.width,height:r.value.height,viewBox:l.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":o.avatar?"true":"false"},[o.risquePro&&!o.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:n.value,d:"M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"},null,8,Br)):!o.hideSignature&&!o.avatar?(e.openBlock(),e.createElementBlock("g",Cr,s[0]||(s[0]=[e.createStaticVNode('<path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z"></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z"></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z"></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z"></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z"></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z"></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z"></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z"></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z"></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z"></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z"></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z"></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z"></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z"></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z"></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z"></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z"></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z"></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z"></path>',27)]))):e.createCommentVNode("",!0),!o.hideOrganism&&!o.avatar?(e.openBlock(),e.createElementBlock("g",Nr,s[1]||(s[1]=[e.createStaticVNode('<path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z"></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z"></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z"></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z"></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z"></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z"></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z"></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z"></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>',15)]))):e.createCommentVNode("",!0),o.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",Sr,s[2]||(s[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)]))),s[3]||(s[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,wr))}}),Mr={followUs:"Suivez-nous :"},Lr={class:"d-flex flex-column"},vr={class:"vd-social-media-links-label text-subtitle-2 text--primary"},xr={class:"vd-social-media-links-content d-flex max-width-none"},da=_(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",Lr,[e.createElementVNode("span",vr,e.toDisplayString(e.unref(Mr).followUs),1),e.createElementVNode("ul",xr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.links,(r,l)=>(e.openBlock(),e.createElementBlock("li",{key:l},[e.createVNode(q.VBtn,{id:`social-btn-${l}`,href:r.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${r.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode($.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-9639b916"]]),Bt={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},Er=[{icon:En,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:Mn,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:Zn,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],Ir={footer:{elevation:3,color:"backgroundSurface",height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:"backgroundSurface"},goTopBtnIcon:{color:"white"}},de={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",[Bt["non-compliant"]]:"non conforme",[Bt["partially-compliant"]]:"partiellement conforme",[Bt["fully-compliant"]]:"totalement conforme",a11yLabel:o=>`Accessibilité : ${o}`},_r={class:"container"},Tr={key:0,class:"d-flex align-start align-sm-center mb-6"},Ar={class:"d-flex flex-grow-1 flex-column flex-sm-row"},$r={key:0,class:"text-primary my-3 mx-4"},Dr=_(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:()=>Er},light:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=Pt,r=X,l=e.useSlots(),i=j.useDisplay(),c=K(Ir,n),s=h=>h.href?"a":"RouterLink",m=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const h=de[n.a11yCompliance];return typeof h=="string"?de.a11yLabel(h):""}),d=e.computed(()=>!!l.default),f=e.computed(()=>i.smAndDown.value?r.SMALL:r.NORMAL),u=e.computed(()=>n.linkItems?n.linkItems:[{text:de.sitemapLabel,to:n.sitemapRoute,hidden:n.hideSitemapLink},{text:de.cguLabel,to:n.cguRoute,hidden:n.hideCguLink},{text:de.cookiesLabel,to:n.cookiesRoute,hidden:n.hideCookiesLink},{text:de.legalNoticeLabel,to:n.legalNoticeRoute,hidden:n.hideLegalNoticeLink},{text:p.value,to:n.a11yStatementRoute,hidden:n.hideA11yLink}].filter(b=>!b.hidden));return a({logoSize:f}),(h,b)=>(e.openBlock(),e.createBlock(an.VFooter,e.mergeProps({...e.unref(c).footer,...h.$attrs},{color:n.light?"white":e.unref(c).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":d.value,"v-theme--light":n.light,"v-theme--dark":!n.light}],role:"contentinfo"}),{default:e.withCtx(()=>[e.createElementVNode("div",_r,[d.value?(e.openBlock(),e.createElementBlock("div",Tr,[e.createElementVNode("div",Ar,[e.renderSlot(h.$slots,"logo",{},()=>[n.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(wt,{key:0,size:f.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!n.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(ee.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(c).spacer)),null,16),n.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(da,{key:0,links:n.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(q.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(c).goTopBtn,{"aria-label":e.unref(de).goTopBtnLabel,onClick:m}),{default:e.withCtx(()=>[e.createVNode($.VIcon,e.mergeProps(e.unref(c).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),d.value?(e.openBlock(),e.createBlock(oe.VDivider,e.mergeProps({key:1},e.unref(c).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(h.$slots,"default",{},void 0,!0),d.value?(e.openBlock(),e.createBlock(oe.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":!d.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(h.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(g,V)=>(e.openBlock(),e.createElementBlock("li",{key:V},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(s(g)),{href:g.href,to:g.to,"aria-label":g.ariaLabel,target:g.openInNewTab?"_blank":void 0,tabindex:V,rel:g.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),n.version?(e.openBlock(),e.createElementBlock("li",$r,e.toDisplayString(e.unref(de).versionLabel)+" "+e.toDisplayString(n.version),1)):e.createCommentVNode("",!0),e.renderSlot(h.$slots,"append",{},void 0,!0)],2)])]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-a1074b6c"]]),ma={btnLabel:o=>`S’identifier avec FranceConnect${o?"+":""}`,infoLinkLabel:o=>`Qu’est-ce que FranceConnect${o?"+":""} ?`},Zr=["href","aria-label"],Pr=["viewBox","width"],Rr=["fill"],zr=["fill"],Or=["href"],Fr=_(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(o){const a=o,n=j.useTheme(),t=e.computed(()=>n.current.value.dark||a.dark),r=a.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",l=e.computed(()=>a.isConnectPlus?"245px":"209px"),i=e.computed(()=>r);return(c,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":t.value}])},[e.createElementVNode("a",{href:c.href,"aria-label":e.unref(ma).btnLabel(c.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${a.isConnectPlus?"245":"209"} 56`,width:l.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[s[0]||(s[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)),s[1]||(s[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)),s[2]||(s[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)),s[3]||(s[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:t.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,Rr),c.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:t.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,zr)):e.createCommentVNode("",!0)],8,Pr))],8,Zr),e.createElementVNode("a",{href:i.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(ma).infoLinkLabel(c.isConnectPlus))+" ",1),e.createVNode($.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ft)),1)]),_:1})],8,Or)],2))}}),[["__scopeId","data-v-5bd47a0e"]]);function ua(o,a){let n=null,t=0;return function(...r){n!==null&&window.clearTimeout(n),performance.now()-t>=a?(window.requestAnimationFrame(()=>o(...r)),t=performance.now()):n=window.setTimeout(()=>{o(...r),t=performance.now()},a)}}const Hr=990,pa=Symbol("registerHeaderMenu");function He(){const o=e.ref(!1);let a;function n(t){o.value=t.matches}return e.onMounted(()=>{a=window.matchMedia(`(min-width: ${Hr}px)`),o.value=a.matches,a.addEventListener("change",n)}),e.onUnmounted(()=>{a.removeEventListener("change",n)}),{isDesktop:o}}const Ur={ariaLabel:"Ouvrir le menu"},qr={},Wr={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Kr(o,a){return e.openBlock(),e.createElementBlock("svg",Wr,a[0]||(a[0]=[e.createStaticVNode('<g data-v-51224cf0><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-51224cf0></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-51224cf0></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-51224cf0></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-51224cf0></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-51224cf0></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-51224cf0></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-51224cf0></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-51224cf0></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-51224cf0></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-51224cf0></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-51224cf0></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-51224cf0></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-51224cf0></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-51224cf0></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-51224cf0></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-51224cf0></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-51224cf0></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-51224cf0></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-51224cf0></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-51224cf0></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-51224cf0></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-51224cf0></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-51224cf0></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-51224cf0></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-51224cf0></path>',8)]))}const Yr=_(qr,[["render",Kr],["__scopeId","data-v-51224cf0"]]),Gr={},jr={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Jr(o,a){return e.openBlock(),e.createElementBlock("svg",jr,a[0]||(a[0]=[e.createStaticVNode('<g data-v-e01c8927><path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" data-v-e01c8927></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-e01c8927></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" data-v-e01c8927></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" data-v-e01c8927></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" data-v-e01c8927></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" data-v-e01c8927></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" data-v-e01c8927></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" data-v-e01c8927></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" data-v-e01c8927></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" data-v-e01c8927></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" data-v-e01c8927></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" data-v-e01c8927></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" data-v-e01c8927></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" data-v-e01c8927></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-e01c8927></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" data-v-e01c8927></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" data-v-e01c8927></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" data-v-e01c8927></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" data-v-e01c8927></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" data-v-e01c8927></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" data-v-e01c8927></path></g><g data-v-e01c8927><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" data-v-e01c8927></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" data-v-e01c8927></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" data-v-e01c8927></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" data-v-e01c8927></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" data-v-e01c8927></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-e01c8927></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" data-v-e01c8927></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" data-v-e01c8927></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" data-v-e01c8927></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" data-v-e01c8927></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" data-v-e01c8927></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-e01c8927></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" data-v-e01c8927></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-e01c8927></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-e01c8927></path></g><g data-v-e01c8927><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-e01c8927></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-e01c8927></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-e01c8927></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-e01c8927></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-e01c8927></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-e01c8927></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-e01c8927></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-e01c8927></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-e01c8927></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-e01c8927></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-e01c8927></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-e01c8927></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-e01c8927></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-e01c8927></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-e01c8927></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-e01c8927></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-e01c8927></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-e01c8927></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-e01c8927></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-e01c8927></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-e01c8927></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-e01c8927></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-e01c8927></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-e01c8927></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-e01c8927></path>',10)]))}const Xr=_(Gr,[["render",Jr],["__scopeId","data-v-e01c8927"]]),Qr=["fill"],ei={key:1},ti={class:"service-title"},ai={key:0,class:"service-subtitle"},ni=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:Ur.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,t=j.useTheme().current.value.colors.primary,{isDesktop:r}=He(),l=e.computed(()=>{var i,c,s,m;if((i=a.homeLink)!=null&&i.to){const p=(s=(c=e.getCurrentInstance())==null?void 0:c.appContext)==null?void 0:s.components;return p&&"RouterLink"in p?"router-link":"div"}return(m=a.homeLink)!=null&&m.href?"a":"div"});return(i,c)=>{var s,m,p;return e.openBlock(),e.createBlock(e.resolveDynamicComponent(l.value),e.mergeProps({to:"to"in i.homeLink?(s=i.homeLink)==null?void 0:s.to:void 0,href:"href"in i.homeLink?(m=i.homeLink)==null?void 0:m.href:void 0,"aria-label":"aria-label"in i.homeLink?(p=i.homeLink)==null?void 0:p["aria-label"]:void 0},{class:"logo"}),{default:e.withCtx(()=>[e.unref(r)?(e.openBlock(),e.createBlock(Xr,{key:0,"aria-label":a.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(Yr,{key:1,"aria-label":a.ariaLabel},null,8,["aria-label"])),e.renderSlot(i.$slots,"brand-content",{},()=>[i.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(t),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},c[0]||(c[0]=[e.createElementVNode("path",{d:"M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"},null,-1)]),8,Qr)):e.createCommentVNode("",!0),i.serviceTitle?(e.openBlock(),e.createElementBlock("div",ei,[e.createElementVNode("div",ti,e.toDisplayString(i.serviceTitle),1),i.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",ai,e.toDisplayString(i.serviceSubtitle),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],!0)]),_:3},16)}}}),fa=_(ni,[["__scopeId","data-v-8295d36d"]]),oi={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function li(){const o=e.ref(null),a=e.ref("");function n(){const t=document.documentElement.scrollTop;if(o.value===null)return o.value=t,"";a.value=t>=o.value?"bottom":"top",o.value=t}return e.onMounted(()=>{window.addEventListener("scroll",n)}),e.onUnmounted(()=>{window.removeEventListener("scroll",n)}),{scrollDirection:a}}const ri={key:0,class:"header-prepend"},ii={class:"inner-header"},si={class:"header-logo pl-xl-0 pl-md-14 pl-4"},ci={key:0,class:"header-side"},di={key:1,class:"header-append"},mi=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeLink:{default:void 0},homeAriaLabel:{default:oi.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(o){const a=e.ref(),n=o;function t(k){e.watch(k,w=>{a.value=w})}e.provide(pa,t);const r=e.ref(null),l=e.ref(null),i=e.ref("auto"),c=e.ref(0),s=e.ref("auto"),m=e.ref(!0),p=e.ref(!1),d=e.ref(!1);function f(){const k=r.value.getBoundingClientRect();c.value=k.top+window.scrollY,i.value=`${l.value.offsetHeight}px`,s.value=`${r.value.offsetWidth}px`,m.value=window.scrollY<=c.value,p.value=window.scrollY>c.value+k.height,d.value=window.scrollY>c.value+k.height*2}const u=ua(f,16);e.onMounted(()=>{f(),window.addEventListener("scroll",u),window.addEventListener("resize",u)}),e.onUnmounted(()=>{window.removeEventListener("scroll",u),window.removeEventListener("resize",u)});const h=e.computed(()=>({minHeight:i.value})),{scrollDirection:b}=li(),{isDesktop:g}=He(),V=e.computed(()=>{if(n.hideWhenDown&&!g.value&&!a.value){const w=b.value===""&&m.value||b.value==="bottom"&&!p.value||b.value==="top"&&m.value,B=b.value==="bottom"&&p.value;return{position:w?"relative":"fixed",width:w?"100%":s.value,top:w?"auto":"0",transform:B?"translateY(-100%)":"none",transition:d.value?"transform 0.3s ease":"none"}}const k=!m.value&&n.sticky;return{position:k?"fixed":"relative",width:k?s.value:"100%",top:k?"0":"auto",transform:"none",transition:"none"}});return(k,w)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:r,class:"header",style:e.normalizeStyle(h.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:l,class:"sticky-header",style:e.normalizeStyle(V.value)},[k.$slots.prepend?(e.openBlock(),e.createElementBlock("div",ri,[e.renderSlot(k.$slots,"prepend",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",ii,[e.renderSlot(k.$slots,"menu",{menuOpen:a.value},void 0,!0),e.createElementVNode("div",si,[e.renderSlot(k.$slots,"logo",{menuOpen:a.value,homeAriaLabel:k.homeAriaLabel,serviceTitle:k.serviceTitle,serviceSubtitle:k.serviceSubtitle},()=>[e.createVNode(fa,{"aria-label":k.homeAriaLabel,"service-title":k.serviceTitle,"service-subtitle":k.serviceSubtitle,"home-link":k.homeLink},{"brand-content":e.withCtx(()=>[e.renderSlot(k.$slots,"logo-brand-content",{menuOpen:a.value,homeAriaLabel:k.homeAriaLabel,serviceTitle:k.serviceTitle,serviceSubtitle:k.serviceSubtitle,homeLink:k.homeLink},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle","home-link"])],!0)]),k.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",ci,[e.renderSlot(k.$slots,"header-side",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)]),k.$slots.append?(e.openBlock(),e.createElementBlock("div",di,[e.renderSlot(k.$slots,"append",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),ha=_(mi,[["__scopeId","data-v-639c8426"]]),Ue={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},ui=["aria-label","title"],Ct=_(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(o,{expose:a}){const n=e.ref(null),t=e.useModel(o,"modelValue");function r(){var l;(l=n.value)==null||l.focus()}return a({focus:r}),(l,i)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:n,class:e.normalizeClass(["header-menu-btn",{"header-menu-btn__open":t.value}]),type:"button","aria-label":t.value?e.unref(Ue).closeMenu:e.unref(Ue).openMenu,title:t.value?e.unref(Ue).closeMenu:e.unref(Ue).openMenu,onClick:i[0]||(i[0]=()=>{t.value=!t.value})},[e.createVNode($.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(be):e.unref(_n)),1)]),_:1}),i[1]||(i[1]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],10,ui))}}),[["__scopeId","data-v-82f2559e"]]),ga={mainMenu:"Menu principal",publicMenu:"Menu public"},ya=Symbol("registerSubMenu");function ba(o){const a=e.ref([]);function n(l,i){const s={id:String(a.value.length),status:l,close:i};a.value.push(s),e.watch(l,m=>{m&&t(s)})}function t(l){a.value.forEach(i=>{i.id!==l.id&&i.status&&i.close()})}e.watch(o,l=>{l||a.value.forEach(i=>{i.status&&i.close()})});const r=e.computed(()=>a.value.some(l=>l.status));return e.provide(ya,n),{haveOpenSubMenu:r}}const pi=["aria-label"],fi={key:0,class:"overlay"},hi=["aria-label"],gi={class:"header-menu"},ka=_(e.defineComponent({__name:"HeaderBurgerMenu",props:{modelValue:{type:Boolean,default:!1},modelModifiers:{}},emits:["update:modelValue"],setup(o){const a=e.ref(null),n=e.ref(null),t=e.ref(null),r=e.ref(null),l=e.ref(0),i=e.ref(0),c=e.ref("70vh");function s(){const k=n.value.getBoundingClientRect();l.value=k.left,i.value=k.top,c.value=`calc(100vh - ${k.top}px - 48px)`}const m=ua(s,16),p=()=>{d.value&&m()};e.onMounted(()=>{s(),b(),window.addEventListener("scroll",p),window.addEventListener("resize",p),window.addEventListener("click",h,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",p),window.removeEventListener("resize",p),window.removeEventListener("click",h,{capture:!0}),document.documentElement.style.overflow="auto",document.body.style.overflow="auto"});const d=e.useModel(o,"modelValue");e.watch(d,async k=>{var w,B;b(),k?(s(),await e.nextTick(),(w=r.value)==null||w.focus()):(B=t.value)==null||B.focus()},{immediate:!0});const{isDesktop:f}=He(),u=e.computed(()=>({left:`${l.value}px`,top:`${i.value}px`,height:f.value?c.value:void 0}));function h(k){if(!d.value)return;let w=k.target;for(;w&&w!==document.body;){if(w===a.value)return;w=w.parentElement}k.stopPropagation(),d.value=!1}function b(){typeof window<"u"&&(document.documentElement.style.overflow=d.value?"hidden":"auto",document.body.style.overflow=d.value?"hidden":"auto")}const{haveOpenSubMenu:g}=ba(e.readonly(d)),V=e.inject(pa);return V&&V(e.readonly(d)),(k,w)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(ga).mainMenu,class:"menu mr-4"},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:n},[e.createVNode(Ct,{ref_key:"outerBtn",ref:t,modelValue:d.value,"onUpdate:modelValue":w[0]||(w[0]=B=>d.value=B)},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",fi,[e.createElementVNode("div",{role:"menu",class:"menu-wrapper",style:e.normalizeStyle(u.value)},[e.createVNode(Ct,{ref_key:"innerBtn",ref:r,modelValue:d.value,"onUpdate:modelValue":w[1]||(w[1]=B=>d.value=B)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",ref_key:"headerMenuWrapper",ref:a,class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(g)}]),role:"navigation","aria-label":e.unref(ga).publicMenu},[e.createElementVNode("div",gi,[e.renderSlot(k.$slots,"default",{},void 0,!0)])],10,hi)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,pi))}}),[["__scopeId","data-v-8bfe741c"]]),yi={},bi={class:"header-menu-item"};function ki(o,a){return e.openBlock(),e.createElementBlock("li",bi,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const Va=_(yi,[["render",ki],["__scopeId","data-v-eebfe4fb"]]),Vi={class:"header-menu-section"},wa=_(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(o){const a=e.useId(),n=`${a}-group`,t=`${a}-group-title`;return(r,l)=>(e.openBlock(),e.createElementBlock("div",Vi,[r.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:t,class:"header-menu-section-title"},[e.renderSlot(r.$slots,"title",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:n,role:"group",class:"header-menu-section-list"},[e.renderSlot(r.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-fe759639"]]),wi=["aria-expanded","aria-controls","title"],Bi=["id"],Ci={class:"sub-menu-content"},Ni=_(e.defineComponent({__name:"HeaderSubMenu",setup(o){const a=e.ref(!1),n=e.useId(),t=`${n}-btn`,r=e.inject(ya,void 0);if(!r)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");r(a,()=>{a.value=!1});const{haveOpenSubMenu:l}=ba(e.readonly(a));return(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":a.value,"sub-menu--child-open":e.unref(l)}])},[e.createElementVNode("button",{id:t,class:"sub-menu-btn",type:"button","aria-expanded":a.value?"true":"false","aria-controls":e.unref(n),title:a.value?"Close submenu":"Open submenu",onClick:c[0]||(c[0]=s=>a.value=!a.value)},[e.renderSlot(i.$slots,"title",{},void 0,!0),e.createVNode($.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(rt):e.unref(it)),1)]),_:1})],8,wi),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(n),class:"sub-menu-content-wrapper","aria-labelledby":t},[e.createElementVNode("div",Ci,[e.renderSlot(i.$slots,"default",{},void 0,!0)])],8,Bi),[[e.vShow,a.value]])]),_:3})],2))}}),[["__scopeId","data-v-fa108bc3"]]),Si={sheet:{theme:"dark",dense:!0,color:ca.colors.background.accentContrasted},tabs:{height:"53","show-arrows":!0},tab:{"base-color":ca.colors.text.subduedOnDark,"slider-color":"#fff",ripple:!1}},Mi={class:"horizontal-menu px-xl-0 px-14"},Li={class:"horizontal-menu__item-link"},vi=_(e.defineComponent({__name:"HorizontalNavbar",props:{vuetifyOptions:{},items:{}},setup(o){const n=K(Si,o);return(t,r)=>(e.openBlock(),e.createBlock(ye.VSheet,e.normalizeProps(e.guardReactiveProps(e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("div",Mi,[e.renderSlot(t.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(t.$slots,"default",{},()=>[e.createVNode(At.VTabs,e.mergeProps({class:"horizontal-menu__tabs"},e.unref(n).tabs),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(l,i)=>(e.openBlock(),e.createBlock(At.VTab,e.mergeProps({key:i,href:l.href,to:l.to,ref_for:!0},e.unref(n).tab,{tabindex:"0",class:"horizontal-menu__item"}),{default:e.withCtx(()=>[e.createElementVNode("span",Li,e.toDisplayString(l.label),1)]),_:2},1040,["href","to"]))),128))]),_:1},16)],!0),e.renderSlot(t.$slots,"navigation-bar-append",{},void 0,!0)])]),_:3},16))}}),[["__scopeId","data-v-a37442cd"]]),xi={class:"inner-vertical-menu"},Ei={class:"inner-vertical-menu__main-content"},Ii=["href"],_i=_(e.defineComponent({__name:"HeaderNavigationBar",props:e.mergeModels({vuetifyOptions:{},homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:void 0},sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},{burgerMenu:{type:Boolean,default:!1},burgerMenuModifiers:{}}),emits:["update:burgerMenu"],setup(o){const a=o,n=e.useModel(o,"burgerMenu"),{isDesktop:t}=He(),r=e.computed(()=>!t.value||a.items!==void 0&&a.items.length>0&&a.items.length>a.maxHorizontalMenuItems);return(l,i)=>{const c=e.resolveComponent("RouterLink");return e.openBlock(),e.createBlock(ha,{sticky:l.sticky,"hide-when-down":l.hideWhenDown,"home-aria-label":l.homeAriaLabel,"service-title":l.serviceTitle,"service-subtitle":l.serviceSubtitle},{menu:e.withCtx(()=>[r.value?(e.openBlock(),e.createBlock(ka,{key:0,modelValue:n.value,"onUpdate:modelValue":i[1]||(i[1]=s=>n.value=s)},{default:e.withCtx(()=>[e.createElementVNode("div",xi,[e.renderSlot(l.$slots,"navigation-menu-prepend",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",Ei,[e.renderSlot(l.$slots,"navigation-menu-content",{menuOpen:n.value},()=>[e.createVNode(wa,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,s=>(e.openBlock(),e.createBlock(Va,{key:s.label},{default:e.withCtx(()=>["href"in s?(e.openBlock(),e.createElementBlock("a",{key:0,href:s.href},e.toDisplayString(s.label),9,Ii)):s.to?(e.openBlock(),e.createBlock(c,{key:1,to:s.to,onClick:i[0]||(i[0]=m=>n.value=!1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(l.$slots,"navigation-menu-append",{menuOpen:n.value},void 0,!0)])]),_:3},8,["modelValue"])):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(l.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:l.homeAriaLabel,serviceTitle:l.serviceTitle,serviceSubtitle:l.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(l.$slots,"logo",{menuOpen:n.value,homeAriaLabel:l.homeAriaLabel,serviceTitle:l.serviceTitle,serviceSubtitle:l.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(l.$slots,"header-side",{menuOpen:n.value},void 0,!0)]),append:e.withCtx(()=>[a.items&&!r.value?(e.openBlock(),e.createBlock(vi,{key:0,items:l.items,"vuetify-options":l.vuetifyOptions},{"navigation-bar-prepend":e.withCtx(()=>[e.renderSlot(l.$slots,"navigation-bar-prepend",{},void 0,!0)]),"navigation-bar-append":e.withCtx(()=>[e.renderSlot(l.$slots,"navigation-bar-append",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(l.$slots,"navigation-bar-content",{},void 0,!0)]),_:3},8,["items","vuetify-options"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"])}}}),[["__scopeId","data-v-1d872dbc"]]),Ti={class:"toolbar"},Ai={class:"container"},$i=["aria-labelledby"],Di={key:0},Zi={key:1,class:"link"},Pi=["aria-labelledby"],Ri={class:"right-menu-item"},zi=_(e.defineComponent({__name:"HeaderToolbar",props:{leftMenu:{type:Array,default:()=>[{title:"Assuré",href:"https://www.ameli.fr/assure",openInNewTab:!0},{title:"Professionnel de santé"},{title:"Entreprise",href:"https://www.ameli.fr/entreprise",openInNewTab:!0}]},rightMenu:{type:Array,default:()=>[{title:"Qui sommes-nous ?",href:"https://www.assurance-maladie.ameli.fr/qui-sommes-nous",openInNewTab:!0},{title:"Carrières",href:"https://www.assurance-maladie.ameli.fr/carrieres",openInNewTab:!0},{title:"Études et données",href:"https://www.assurance-maladie.ameli.fr/etudes-et-donnees",openInNewTab:!0},{title:"Presse",href:"https://www.assurance-maladie.ameli.fr/presse",openInNewTab:!0}]},itemsSelectMenu:{type:Array,default:()=>[{text:"Chirurgien-dentiste",value:"Chirurgien-dentiste",href:"https://www.ameli.fr/chirurgien-dentiste",openInNewTab:!0},{text:"Établissement",value:"Établissement",href:"https://www.ameli.fr/etablissement",openInNewTab:!0},{text:"Exercice coordonné",value:"Exercice coordonné",href:"https://www.ameli.fr/exercice-coordonne",openInNewTab:!0},{text:"Infirmier",value:"Infirmier",href:"https://www.ameli.fr/infirmier",openInNewTab:!0},{text:"Laboratoire d'analyses médicales",value:"Laboratoire d'analyses médicales",href:"https://www.ameli.fr/laboratoire-danalyses-medicales",openInNewTab:!0},{text:"Masseur-kinésithérapeute",value:"Masseur-kinésithérapeute",href:"https://www.ameli.fr/masseur-kinesitherapeute",openInNewTab:!0},{text:"Médecin",value:"Médecin",href:"https://www.ameli.fr/medecin",openInNewTab:!0},{text:"Orthophoniste",value:"Orthophoniste",href:"https://www.ameli.fr/orthophoniste",openInNewTab:!0},{text:"Orthoptiste",value:"Orthoptiste",href:"https://www.ameli.fr/orthoptiste",openInNewTab:!0},{text:"Pédicure-podologue",value:"Pédicure-podologue",href:"https://www.ameli.fr/pedicure-podologue",openInNewTab:!0},{text:"Pharmacien",value:"Pharmacien",href:"https://www.ameli.fr/pharmacien",openInNewTab:!0},{text:"Professionnel de la LPP/LATM",value:"Professionnel de la LPP/LATM",href:"https://www.ameli.fr/professionnel-de-la-lpplatm",openInNewTab:!0},{text:"Psychologue",value:"Psychologue",href:"https://www.ameli.fr/psychologue",openInNewTab:!0},{text:"Sage-femme",value:"Sage-femme",href:"https://www.ameli.fr/sage-femme",openInNewTab:!0},{text:"Taxi conventionné",value:"Taxi conventionné",href:"https://www.ameli.fr/taxi-conventionne",openInNewTab:!0},{text:"Transporteur sanitaire",value:"Transporteur sanitaire",href:"https://www.ameli.fr/transporteur-sanitaire",openInNewTab:!0}]},ariaLeftMenu:{type:String,default:"left-menu"},ariaRightMenu:{type:String,default:"right-menu"}},setup(o,{expose:a}){const n=o,t=d=>d.href?"a":d.to?"RouterLink":"a",r=e.ref(!1),l=e.ref(!1),i=e.ref(null),c=()=>{var f;const d=(f=document.querySelector(".custom-select > span"))==null?void 0:f.textContent;d&&d==="Professionnel de santé"&&(l.value=!1),r.value=!1},s=d=>{d===1&&(r.value=!r.value)},m=d=>{i.value=d,d!==1&&(l.value=!1)},p=()=>{i.value=null};return a({hideOverlay:c,handleLink:s,checkActiveLink:m,deleteActiveLink:p,activeIndex:i,highlightMenu:l,showOverlay:r,getLinkComponent:t}),(d,f)=>(e.openBlock(),e.createElementBlock("div",Ti,[e.createElementVNode("div",Ai,[e.renderSlot(d.$slots,"left-menu",{},()=>[r.value?(e.openBlock(),e.createElementBlock("button",{key:0,"aria-label":"Close overlay",class:"overlay",onClick:c,onKeydown:[e.withKeys(c,["enter"]),e.withKeys(c,["esc"])]},null,32)):e.createCommentVNode("",!0),e.createElementVNode("nav",{id:"left-menu","aria-labelledby":n.ariaLeftMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.leftMenu,(u,h)=>(e.openBlock(),e.createElementBlock("li",{key:h,class:e.normalizeClass({active:i.value===h,highlight:l.value})},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(u)),{"aria-label":u.title,href:u.href,rel:u.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:u.openInNewTab?"_blank":void 0,title:u.title,to:u.to,onClick:b=>m(h),onFocus:b=>h===1&&r.value?l.value=!0:null,onMouseover:b=>h===1&&r.value?l.value=!0:null},{default:e.withCtx(()=>[o.itemsSelectMenu&&h===1?(e.openBlock(),e.createElementBlock("span",Di,[e.createVNode(jt,{items:o.itemsSelectMenu,label:u.title,outlined:!1,"is-header-toolbar":"",onClick:b=>s(h)},null,8,["items","label","onClick"])])):(e.openBlock(),e.createElementBlock("span",Zi,e.toDisplayString(u.title),1))]),_:2},1064,["aria-label","href","rel","target","title","to","onClick","onFocus","onMouseover"]))],2))),128))])],8,$i)],!0),e.renderSlot(d.$slots,"right-menu",{},()=>[e.createElementVNode("nav",{id:"right-menu","aria-labelledby":n.ariaRightMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.rightMenu,(u,h)=>(e.openBlock(),e.createElementBlock("li",{key:h},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(u)),{"aria-label":u.title,href:u.href,rel:u.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:u.openInNewTab?"_blank":void 0,title:u.title,to:u.to,onClick:f[0]||(f[0]=b=>p())},{default:e.withCtx(()=>[e.createElementVNode("span",Ri,e.toDisplayString(u.title),1)]),_:2},1032,["aria-label","href","rel","target","title","to"]))]))),128))])],8,Pi)],!0)])]))}}),[["__scopeId","data-v-e2d11fb5"]]),Oi={label:"Choix de la langue. Actuellement"};var Fi={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 _e=Fi,Ba={},qe={},Ca=[],Na=[],Sa=[];for(const o in _e){const{name:a,nativeName:n}=_e[o];Ba[o]=qe[a.toLowerCase()]=qe[n.toLowerCase()]={code:o,name:a,nativeName:n},Ca.push(o),Na.push(a),Sa.push(n)}var Hi=class Xe{static getLanguages(a=[]){return a.map(n=>Xe.validate(n)?Object.assign({},Ba[n]):{code:n,name:"",nativeName:""})}static getName(a){return Xe.validate(a)?_e[a].name:""}static getAllNames(){return Na.slice()}static getNativeName(a){return Xe.validate(a)?_e[a].nativeName:""}static getAllNativeNames(){return Sa.slice()}static getCode(a){return a=a.toLowerCase(),qe.hasOwnProperty(a)?qe[a].code:""}static getAllCodes(){return Ca.slice()}static validate(a){return _e.hasOwnProperty(a)}};const We=dt(Hi),Ui={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},qi=["id"],Wi=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:Oi.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(o,{expose:a,emit:n}){const t=o,r=K(Ui,t),l=n,i=e.ref(!1),c=e.ref(t.modelValue);e.watch(()=>t.modelValue,u=>{c.value=u});function s(u){c.value=u,l("update:modelValue",u),l("change",u),i.value=!1}const m=e.computed(()=>i.value),p=e.computed(()=>"lang-menu-id"),d=e.computed(()=>{const u={};let h;return t.availableLanguages==="*"?h=We.getAllCodes():h=t.availableLanguages,h.forEach(b=>{u[b]={code:b,name:We.getName(b)||b,nativeName:We.getNativeName(b)||We.getName(b)||b}}),u}),f=e.computed(()=>{const u=d.value[c.value];return{name:(u==null?void 0:u.nativeName)||c.value,label:`${t.ariaLabel} ${(u==null?void 0:u.nativeName)||c.value}`}});return a({currentLangData:f,updateLang:s,selectedLanguage:c}),(u,h)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(ge.VMenu,e.mergeProps(e.unref(r).menu,{id:m.value?"lang-menu":p.value,modelValue:i.value,"onUpdate:modelValue":h[0]||(h[0]=b=>i.value=b),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:b})=>[e.createVNode(q.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${t.ariaLabel} ${f.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":m.value},{...e.unref(r).btn,...b},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.value.name)+" ",1),u.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($.VIcon,e.mergeProps({key:0},e.unref(r).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ot)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(G.VList,e.mergeProps(e.unref(r).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,(b,g,V)=>(e.openBlock(),e.createBlock(G.VListItem,e.mergeProps({ref_for:!0},e.unref(r).listTile,{key:g,role:"menuitem",tabindex:V+1,"aria-label":`${t.ariaLabel} ${b.nativeName}`,"aria-labelledby":`${p.value} ${b.nativeName}`,onClick:k=>s(g)}),{default:e.withCtx(()=>[e.createVNode(G.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(r).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,qi))}}),Ki=_(Wi,[["__scopeId","data-v-06ec7485"]]),Nt={xSmall:{width:"11",height:"32"},small:{width:"14",height:"40"},normal:{width:"22",height:"64"}},Ne={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"}},Ma={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:Ne.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:Ne.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:Ne.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:Ne.logoCompteAmeli}},Yi=["height"],Gi=["width","height","fill"],ji=["src","alt"],Ji={key:2,class:"vd-title-container d-flex justify-center flex-column text-primary"},Xi={key:1,class:"vd-title text-caption"},Qi=_(e.defineComponent({__name:"LogoBrandSection",props:{theme:{default:"default"},serviceTitle:{default:void 0},serviceSubTitle:{default:void 0},mobileVersion:{type:Boolean,default:!1},reduceLogo:{type:Boolean,default:!1},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,n=e.useSlots(),t=e.computed(()=>{if(a.theme==="compte-entreprise"){const{title:M,subTitle:I}=Ne.compteEntreprise;return{title:M,subTitle:I}}return{title:a.serviceTitle||"",subTitle:a.serviceSubTitle||""}}),r=e.computed(()=>a.mobileVersion&&d.value),l=e.computed(()=>r.value?"32px":a.mobileVersion?"40px":"64px"),i=e.computed(()=>!a.reduceLogo&&a.theme==="risque-pro"),c=e.computed(()=>a.theme==="compte-entreprise"),s=e.computed(()=>a.theme==="compte-ameli"&&a.mobileVersion),m=e.computed(()=>a.reduceLogo||c.value||s.value),p=e.computed(()=>a.theme in Ma?Ma[a.theme]:null),d=e.computed(()=>!!p.value),f=e.computed(()=>a.theme==="ameli-pro"||a.theme==="ameli"),u=e.computed(()=>{var M,I,v,D;if((M=a.homeLink)!=null&&M.to){const Z=(v=(I=e.getCurrentInstance())==null?void 0:I.appContext)==null?void 0:v.components;return Z&&"RouterLink"in Z?"router-link":"div"}return(D=a.homeLink)!=null&&D.href?"a":"div"}),h=e.computed(()=>f.value?u.value:"div"),b=e.computed(()=>f.value&&p.value?`${Ne.homeLinkPrefix} ${p.value.alt}`:null),g=e.computed(()=>a.reduceLogo?d.value:!1),V=e.computed(()=>!!n["brand-content"]),k=e.computed(()=>!!(t.value.title||t.value.subTitle||V.value||d.value)),w=e.computed(()=>a.reduceLogo?!1:k.value),B=e.computed(()=>!!(t.value.title&&t.value.subTitle&&!a.mobileVersion)),L=e.computed(()=>{switch(a.theme){case"cnam":case"ameli-pro":return Fe.secondary;case"compte-entreprise":return"#cd545b";default:return Fe.primary}}),T=e.computed(()=>a.mobileVersion?d.value?Nt.xSmall:Nt.small:Nt.normal),A=e.computed(()=>a.mobileVersion?d.value?X.X_SMALL:X.SMALL:X.NORMAL);return(M,I)=>{var v,D;return e.openBlock(),e.createElementBlock("div",{height:l.value,class:"vd-logo-brand-section d-flex"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.value),{to:u.value==="router-link"?(v=M.homeLink)==null?void 0:v.to:void 0,href:u.value==="a"?(D=M.homeLink)==null?void 0:D.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>{var Z;return[e.createVNode(wt,{"hide-signature":m.value,"hide-organism":s.value,"risque-pro":i.value,"aria-label":(Z=M.homeLink)==null?void 0:Z.ariaLabel,avatar:g.value,size:A.value,class:e.normalizeClass({"mr-2":g.value})},null,8,["hide-signature","hide-organism","risque-pro","aria-label","avatar","size","class"])]}),_:1},8,["to","href"])),e.renderSlot(M.$slots,"default",{},()=>{var Z,Y;return[w.value?(e.openBlock(),e.createElementBlock("svg",{key:0,width:T.value.width,height:T.value.height,fill:L.value,role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},I[0]||(I[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,Gi)):e.createCommentVNode("",!0),p.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(h.value),{key:1,"aria-label":b.value,to:h.value==="router-link"?(Z=M.homeLink)==null?void 0:Z.to:void 0,href:h.value==="a"?(Y=M.homeLink)==null?void 0:Y.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>[e.createElementVNode("img",{src:p.value.src,alt:p.value.alt},null,8,ji)]),_:1},8,["aria-label","to","href"])):k.value?(e.openBlock(),e.createElementBlock("div",Ji,[e.renderSlot(M.$slots,"brand-content",{},()=>[t.value.title?(e.openBlock(),e.createElementBlock("h1",{key:0,class:e.normalizeClass([{"vd-compte-entreprise-title":c.value},"vd-title text-caption text-md-subtitle-1 font-weight-medium"])},[typeof t.value.title=="string"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.value.title),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(t.value.title.text)+" ",1),e.createElementVNode("span",null,e.toDisplayString(t.value.title.highlight),1)],64))],2)):e.createCommentVNode("",!0),B.value?(e.openBlock(),e.createElementBlock("h2",Xi,e.toDisplayString(t.value.subTitle),1)):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]},!0)],8,Yi)}}}),[["__scopeId","data-v-ca95c6a8"]]),es="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",St={pageTitle:"Maintenance en cours",message:"L’application n’est pas disponible pour le moment, veuillez nous excuser pour la gêne occasionnée."},ts=["alt"],as=_(e.defineComponent({__name:"MaintenancePage",setup(o){return(a,n)=>(e.openBlock(),e.createBlock(yt,{"page-title":e.unref(St).pageTitle,message:e.unref(St).message,"no-btn":""},{illustration:e.withCtx(()=>[e.createElementVNode("img",{src:es,alt:e.unref(St).pageTitle},null,8,ts)]),_:1},8,["page-title","message"]))}}),[["__scopeId","data-v-aea9e609"]]);var ns=Object.defineProperty,os=(o,a,n)=>a in o?ns(o,a,{enumerable:!0,configurable:!0,writable:!0,value:n}):o[a]=n,Te=(o,a,n)=>os(o,typeof a!="symbol"?a+"":a,n);const La={"#":{pattern:/[0-9]/},"@":{pattern:/[a-zA-Z]/},"*":{pattern:/[a-zA-Z0-9]/}},va=(o,a,n)=>o.replaceAll(a,"").replace(n,".").replace("..",".").replace(/[^.\d]/g,""),xa=(o,a,n)=>{var t;return new Intl.NumberFormat(((t=n.number)==null?void 0:t.locale)??"en",{minimumFractionDigits:o,maximumFractionDigits:a,roundingMode:"trunc"})},ls=(o,a=!0,n)=>{var t,r,l,i;const c=((t=n.number)==null?void 0:t.unsigned)!==!0&&o.startsWith("-")?"-":"",s=((r=n.number)==null?void 0:r.fraction)??0;let m=xa(0,s,n);const p=m.formatToParts(1000.12),d=((l=p.find(g=>g.type==="group"))==null?void 0:l.value)??" ",f=((i=p.find(g=>g.type==="decimal"))==null?void 0:i.value)??".",u=va(o,d,f);if(Number.isNaN(parseFloat(u)))return c;const h=u.split(".");if(h[1]!=null&&h[1].length>=1){const g=h[1].length<=s?h[1].length:s;m=xa(g,s,n)}let b=m.format(parseFloat(u));return a?s>0&&u.endsWith(".")&&!u.slice(0,-1).includes(".")&&(b+=f):b=va(b,d,f),c+b};class rs{constructor(a={}){Te(this,"opts",{}),Te(this,"memo",new Map);const n={...a};if(n.tokens!=null){n.tokens=n.tokensReplace?{...n.tokens}:{...La,...n.tokens};for(const t of Object.values(n.tokens))typeof t.pattern=="string"&&(t.pattern=new RegExp(t.pattern))}else n.tokens=La;Array.isArray(n.mask)&&(n.mask.length>1?n.mask=[...n.mask].sort((t,r)=>t.length-r.length):n.mask=n.mask[0]??""),n.mask===""&&(n.mask=null),this.opts=n}masked(a){return this.process(String(a),this.findMask(String(a)))}unmasked(a){return this.process(String(a),this.findMask(String(a)),!1)}isEager(){return this.opts.eager===!0}isReversed(){return this.opts.reversed===!0}completed(a){const n=this.findMask(String(a));if(this.opts.mask==null||n==null)return!1;const t=this.process(String(a),n).length;return typeof this.opts.mask=="string"?t>=this.opts.mask.length:t>=n.length}findMask(a){const n=this.opts.mask;if(n==null)return null;if(typeof n=="string")return n;if(typeof n=="function")return n(a);const t=this.process(a,n.slice(-1).pop()??"",!1);return n.find(r=>this.process(a,r,!1).length>=t.length)??""}escapeMask(a){const n=[],t=[];return a.split("").forEach((r,l)=>{r==="!"&&a[l-1]!=="!"?t.push(l-t.length):n.push(r)}),{mask:n.join(""),escaped:t}}process(a,n,t=!0){if(this.opts.number!=null)return ls(a,t,this.opts);if(n==null)return a;const r=`v=${a},mr=${n},m=${t?1:0}`;if(this.memo.has(r))return this.memo.get(r);const{mask:l,escaped:i}=this.escapeMask(n),c=[],s=this.opts.tokens!=null?this.opts.tokens:{},m=this.isReversed()?-1:1,p=this.isReversed()?"unshift":"push",d=this.isReversed()?0:l.length-1,f=this.isReversed()?()=>g>-1&&V>-1:()=>g<l.length&&V<a.length,u=w=>!this.isReversed()&&w<=d||this.isReversed()&&w>=d;let h,b=-1,g=this.isReversed()?l.length-1:0,V=this.isReversed()?a.length-1:0,k=!1;for(;f();){const w=l.charAt(g),B=s[w],L=(B==null?void 0:B.transform)!=null?B.transform(a.charAt(V)):a.charAt(V);if(!i.includes(g)&&B!=null?(L.match(B.pattern)!=null?(c[p](L),B.repeated?(b===-1?b=g:g===d&&g!==b&&(g=b-m),d===b&&(g-=m)):B.multiple&&(k=!0,g-=m),g+=m):B.multiple?k&&(g+=m,V-=m,k=!1):L===h?h=void 0:B.optional&&(g+=m,V-=m),V+=m):(t&&!this.isEager()&&c[p](w),L===w&&!this.isEager()?V+=m:h=w,this.isEager()||(g+=m)),this.isEager())for(;u(g)&&(s[l.charAt(g)]==null||i.includes(g));){if(t){if(c[p](l.charAt(g)),a.charAt(V)===l.charAt(g)){g+=m,V+=m;continue}}else l.charAt(g)===a.charAt(V)&&(V+=m);g+=m}}return this.memo.set(r,c.join("")),this.memo.get(r)}}const Ea=o=>JSON.parse(o.replaceAll("'",'"')),is=(o,a={})=>{const n={...a};o.dataset.maska!=null&&o.dataset.maska!==""&&(n.mask=ss(o.dataset.maska)),o.dataset.maskaEager!=null&&(n.eager=Ke(o.dataset.maskaEager)),o.dataset.maskaReversed!=null&&(n.reversed=Ke(o.dataset.maskaReversed)),o.dataset.maskaTokensReplace!=null&&(n.tokensReplace=Ke(o.dataset.maskaTokensReplace)),o.dataset.maskaTokens!=null&&(n.tokens=cs(o.dataset.maskaTokens));const t={};return o.dataset.maskaNumberLocale!=null&&(t.locale=o.dataset.maskaNumberLocale),o.dataset.maskaNumberFraction!=null&&(t.fraction=parseInt(o.dataset.maskaNumberFraction)),o.dataset.maskaNumberUnsigned!=null&&(t.unsigned=Ke(o.dataset.maskaNumberUnsigned)),(o.dataset.maskaNumber!=null||Object.values(t).length>0)&&(n.number=t),n},Ke=o=>o!==""?!!JSON.parse(o):!0,ss=o=>o.startsWith("[")&&o.endsWith("]")?Ea(o):o,cs=o=>{if(o.startsWith("{")&&o.endsWith("}"))return Ea(o);const a={};return o.split("|").forEach(n=>{const t=n.split(":");a[t[0]]={pattern:new RegExp(t[1]),optional:t[2]==="optional",multiple:t[2]==="multiple",repeated:t[2]==="repeated"}}),a};class ds{constructor(a,n={}){Te(this,"items",new Map),Te(this,"eventAbortController"),Te(this,"onInput",t=>{if(t instanceof CustomEvent&&t.type==="input"&&!t.isTrusted&&!t.bubbles)return;const r=t.target,l=this.items.get(r),i="inputType"in t&&t.inputType.startsWith("delete"),c=l.isEager(),s=i&&c&&l.unmasked(r.value)===""?"":r.value;this.fixCursor(r,i,()=>this.setValue(r,s))}),this.options=n,this.eventAbortController=new AbortController,this.init(this.getInputs(a))}update(a={}){this.options={...a},this.init(Array.from(this.items.keys()))}updateValue(a){a.value!==""&&a.value!==this.processInput(a).masked&&this.setValue(a,a.value)}destroy(){this.eventAbortController.abort(),this.items.clear()}init(a){const n=this.getOptions(this.options);for(const t of a){if(!this.items.has(t)){const{signal:l}=this.eventAbortController;t.addEventListener("input",this.onInput,{capture:!0,signal:l})}const r=new rs(is(t,n));this.items.set(t,r),queueMicrotask(()=>this.updateValue(t)),t.selectionStart===null&&r.isEager()&&console.warn("Maska: input of `%s` type is not supported",t.type)}}getInputs(a){return typeof a=="string"?Array.from(document.querySelectorAll(a)):"length"in a?Array.from(a):[a]}getOptions(a){const{onMaska:n,preProcess:t,postProcess:r,...l}=a;return l}fixCursor(a,n,t){const r=a.selectionStart,l=a.value;if(t(),r===null||r===l.length&&!n)return;const i=a.value,c=l.slice(0,r),s=i.slice(0,r),m=this.processInput(a,c).unmasked,p=this.processInput(a,s).unmasked;let d=r;c!==s&&(d+=n?i.length-l.length:m.length-p.length),a.setSelectionRange(d,d)}setValue(a,n){const t=this.processInput(a,n);a.value=t.masked,this.options.onMaska!=null&&(Array.isArray(this.options.onMaska)?this.options.onMaska.forEach(r=>r(t)):this.options.onMaska(t)),a.dispatchEvent(new CustomEvent("maska",{detail:t})),a.dispatchEvent(new CustomEvent("input",{detail:t.masked}))}processInput(a,n){const t=this.items.get(a);let r=n??a.value;this.options.preProcess!=null&&(r=this.options.preProcess(r));let l=t.masked(r);return this.options.postProcess!=null&&(l=this.options.postProcess(l)),{masked:l,unmasked:t.unmasked(r),completed:t.completed(r)}}}const Mt=new WeakMap,ms=(o,a)=>{if(o.arg==null||o.instance==null)return;const n="setup"in o.instance.$.type;o.arg in o.instance?o.instance[o.arg]=a:n&&console.warn("Maska: please expose `%s` using defineExpose",o.arg)},Ae=(o,a)=>{var n;const t=o instanceof HTMLInputElement?o:o.querySelector("input");if(t==null||(t==null?void 0:t.type)==="file")return;let r={};if(a.value!=null&&(r=typeof a.value=="string"?{mask:a.value}:{...a.value}),a.arg!=null){const l=i=>{const c=a.modifiers.unmasked?i.unmasked:a.modifiers.completed?i.completed:i.masked;ms(a,c)};r.onMaska=r.onMaska==null?l:Array.isArray(r.onMaska)?[...r.onMaska,l]:[r.onMaska,l]}Mt.has(t)?(n=Mt.get(t))==null||n.update(r):Mt.set(t,new ds(t,r))},us=13,ps=2;function Ia(o){return o=o.replace(/\s+/g,"").toUpperCase(),new RegExp("^(?<sexe>[1-4]|7|8)(?<anneeNaissance>\\d{2})(?<moisNaissance>0[1-9]|1[0-2]|2[0-9]|3[0-9]|4[0-2])(?<departementNaissance>\\d{2}|2A|2B|96|97\\d|98\\d)(?<communeNaissance>\\d{3})(?<rangInscription>\\d{3})(?<cle>[0-9]{2})?$","i").test(o)}function _a(o){o=o.replace(/\s+/g,"").toUpperCase();let a=o.substring(0,13);return a=a.replace("2A","19").replace("2B","18"),(97n-BigInt(a)%97n).toString().padStart(2,"0")}function Ta(o){o=o.replace(/\s+/g,"").toUpperCase();const a=o.substring(13,15),n=_a(o);return a===n}const Aa={errorRequiredNumber:"Le numéro de sécurité sociale est requis.",errorLengthNumber:o=>`Le numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidFormat:"Le format du numéro de sécurité sociale est invalide.",errorRequiredKey:"La clé du numéro de sécurité sociale est requise.",errorLengthKey:o=>`La clé du numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidKey:"La clé du numéro de sécurité sociale est invalide.",numberLabel:"Numéro de sécurité sociale",numberHint:"13 caractères",keyLabel:"Clé",keyHint:"2 chiffres"},fs={class:"nir-field"},hs={class:"number-field-container"},gs={key:0,class:"key-field-container"},ys=_(e.defineComponent({__name:"NirField",props:{vuetifyOptions:{},modelValue:{default:void 0},label:{default:void 0},numberLabel:{default:"Numéro de sécurité sociale"},keyLabel:{default:"Clé"},displayKey:{type:Boolean,default:!0},outlined:{type:Boolean,default:!0},nirTooltip:{default:void 0},keyTooltip:{default:void 0},nirTooltipPosition:{default:"append"},keyTooltipPosition:{default:"append"},required:{type:Boolean,default:!1},displayAsterisk:{type:Boolean,default:!1},customNumberRules:{default:()=>[]},customKeyRules:{default:()=>[]},customNumberWarningRules:{default:()=>[]},customKeyWarningRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},width:{default:"100%"},bgColor:{default:void 0},isDisabled:{type:Boolean,default:!1},density:{default:"default"},hideDetails:{type:[Boolean,String],default:!1},hideSpinButtons:{type:Boolean,default:!1},placeholder:{default:void 0},readonly:{type:Boolean,default:!1},variant:{default:"outlined"},clearable:{type:Boolean,default:!1},counter:{type:[Boolean,Number,String],default:!1},hint:{default:void 0},persistentHint:{type:Boolean,default:!1},persistentPlaceholder:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){e.useCssVars(S=>({"4d2dbdb6":t.width}));const t=o,r=n,l=e.toRef(t,"modelValue"),i=e.ref(""),c=e.ref(""),s=e.ref(null),m=e.ref(null),p=e.computed(()=>i.value.replace(/\s/g,"")),d=e.computed(()=>c.value.replace(/\s/g,"")),f={mask:"# ## ## #C ### ###",preProcess:S=>S.toUpperCase(),tokens:{"#":{pattern:/[0-9]/},C:{pattern:/[0-9AB]/,transform:S=>S.toUpperCase()}}},u={mask:"##",tokens:{"#":{pattern:/[0-9]/}}},h=S=>{e.nextTick(()=>{var y;const P=(y=S.value)==null?void 0:y.$el.querySelector("input");P&&(P.focus(),setTimeout(()=>{P.click()},50))})};e.watch(p,S=>{S.length===13&&t.displayKey&&h(s)}),e.watch(d,S=>{S.length===0&&h(m)}),e.watch(c,(S,P)=>{P.trim()&&!S.trim()&&h(m)});const b=Pe({showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.numberLabel}),g=Pe({showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.keyLabel}),V=e.computed(()=>{const S=[];return t.required&&S.push({type:"required",options:{message:`Le champ ${t.numberLabel} est requis.`,fieldIdentifier:t.numberLabel}}),S.push({type:"custom",options:{validate:P=>P?P.length<13?"Le numéro de sécurité sociale est invalide.":Ia(P)===!0?!0:"Le numéro de sécurité sociale est invalide.":!0,message:"Le numéro de sécurité sociale est invalide.",successMessage:"Le numéro de sécurité sociale est valide.",fieldIdentifier:t.numberLabel}}),t.customNumberRules&&S.push(...t.customNumberRules.map(P=>({...P,options:P.options||{}}))),S}),k=e.computed(()=>{var y;const S=[];t.required&&S.push({type:"required",options:{message:`Le champ ${t.keyLabel} est requis.`,fieldIdentifier:t.keyLabel}});const P=N=>{if(!N||!p.value)return!0;const x=p.value+N;return Ta(x)};return t.customKeyRules&&S.push(...t.customKeyRules),(y=t.customKeyRules)!=null&&y.some(N=>N.options.validate)||S.push({type:"custom",options:{validate:P,message:"La clé du numéro de sécurité sociale est invalide.",successMessage:`Le champ ${t.keyLabel} est valide.`,fieldIdentifier:t.keyLabel}}),S});e.watch(l,S=>{if(S===void 0){i.value="",c.value="";return}if(S.length===15){const P=S.slice(0,-2),y=S.slice(-2);i.value=P,c.value=y}if(S.length===14){const P=S.slice(0,-1),y=S.slice(-1);i.value=P,c.value=y}if(S.length===13){const P=S;i.value=P,c.value=""}},{immediate:!0});const w=()=>{const S=p.value,P=d.value;if(!S&&!P){r("update:modelValue",void 0);return}r("update:modelValue",`${S}${P}`)},B=async(S=!1)=>{var N,x,E,R,F,z;const P=b.validateField(p.value,V.value,((N=p.value)==null?void 0:N.length)===13?t.customNumberWarningRules:[]);let y={hasError:!1};return t.displayKey&&(y=g.validateField(c.value,k.value,((x=c.value)==null?void 0:x.length)===2?t.customKeyWarningRules:[])),S&&(await e.nextTick(),P.hasError?(R=(E=m.value)==null?void 0:E.$el.querySelector("input"))==null||R.focus():y.hasError&&((z=(F=s.value)==null?void 0:F.$el.querySelector("input"))==null||z.focus())),!P.hasError&&!y.hasError},L=()=>B(!0),T=e.computed(()=>b.hasError.value),A=e.computed(()=>!T.value&&b.hasWarning.value),M=e.computed(()=>!T.value&&!A.value&&b.hasSuccess.value),I=e.computed(()=>g.hasError.value),v=e.computed(()=>!I.value&&g.hasWarning.value),D=e.computed(()=>!I.value&&!v.value&&g.hasSuccess.value),Z=e.computed(()=>t.required&&t.displayAsterisk?`${t.numberLabel} *`:t.numberLabel),Y=e.computed(()=>t.required&&t.displayAsterisk?`${t.keyLabel} *`:t.keyLabel),ne=()=>{w(),B()},fe=()=>{w(),B(),d.value.length===0&&e.nextTick(()=>{var S,P;(P=(S=m.value)==null?void 0:S.$el.querySelector("input"))==null||P.focus()})},he=()=>{B(!0)},H=()=>{B(!0)};return a({validateOnSubmit:L,numberMask:f,keyMask:u,numberValidation:b,keyValidation:g}),(S,P)=>(e.openBlock(),e.createElementBlock("div",fs,[e.createElementVNode("div",hs,[e.withDirectives(e.createVNode(ue,{ref_key:"numberField",ref:m,modelValue:i.value,"onUpdate:modelValue":P[0]||(P[0]=y=>i.value=y),label:Z.value,"variant-style":S.outlined?"outlined":"underlined","prepend-icon":S.nirTooltip&&S.nirTooltipPosition==="prepend"?"info":void 0,"append-icon":S.nirTooltip&&S.nirTooltipPosition==="append"?"info":void 0,"prepend-tooltip":S.nirTooltip&&S.nirTooltipPosition==="prepend"?S.nirTooltip:void 0,"append-tooltip":S.nirTooltip&&S.nirTooltipPosition==="append"?S.nirTooltip:void 0,"max-errors":2,"error-messages":[...e.unref(b).errors.value,...e.unref(g).errors.value],"warning-messages":e.unref(b).warnings.value,"success-messages":e.unref(b).successes.value,"show-success-messages":S.showSuccessMessages,"has-warning":A.value,"has-success":M.value,error:T.value,messages:T.value?e.unref(b).errors.value:A.value?e.unref(b).warnings.value:M.value?e.unref(b).successes.value:[],"has-error":T.value,required:S.required,"is-disabled":S.isDisabled,"bg-color":S.bgColor,density:t.density,"hide-details":t.hideDetails,"hide-spin-buttons":t.hideSpinButtons,placeholder:t.placeholder,readonly:t.readonly,variant:t.variant,clearable:t.clearable,counter:t.counter,"persistent-hint":t.persistentHint,"persistent-placeholder":t.persistentPlaceholder,hint:t.hint||e.unref(Aa).numberHint,class:"number-field","display-asterisk":!1,onInput:ne,onBlur:he},null,8,["modelValue","label","variant-style","prepend-icon","append-icon","prepend-tooltip","append-tooltip","error-messages","warning-messages","success-messages","show-success-messages","has-warning","has-success","error","messages","has-error","required","is-disabled","bg-color","density","hide-details","hide-spin-buttons","placeholder","readonly","variant","clearable","counter","persistent-hint","persistent-placeholder","hint"]),[[e.unref(Ae),f]])]),S.displayKey?(e.openBlock(),e.createElementBlock("div",gs,[e.withDirectives(e.createVNode(ue,{ref_key:"keyField",ref:s,modelValue:c.value,"onUpdate:modelValue":P[1]||(P[1]=y=>c.value=y),label:Y.value,"variant-style":S.outlined?"outlined":"underlined","prepend-icon":S.keyTooltip&&S.keyTooltipPosition==="prepend"?"info":void 0,"append-icon":S.keyTooltip&&S.keyTooltipPosition==="append"?"info":void 0,"prepend-tooltip":S.keyTooltip&&S.keyTooltipPosition==="prepend"?S.keyTooltip:void 0,"append-tooltip":S.keyTooltip&&S.keyTooltipPosition==="append"?S.keyTooltip:void 0,"error-messages":e.unref(g).errors.value.length>0?[""]:[],"warning-messages":e.unref(g).warnings.value,"success-messages":e.unref(g).successes.value,"show-success-messages":S.showSuccessMessages,"has-warning":v.value,"has-success":D.value,hint:t.hint||e.unref(Aa).keyHint,messages:I.value?e.unref(g).errors.value:v.value?e.unref(g).warnings.value:D.value?e.unref(g).successes.value:[],"has-error":I.value,"is-disabled":S.isDisabled,"bg-color":S.bgColor,density:t.density,"hide-details":t.hideDetails,"hide-spin-buttons":t.hideSpinButtons,placeholder:t.placeholder,readonly:t.readonly,variant:t.variant,clearable:t.clearable,counter:t.counter,"persistent-hint":t.persistentHint,"persistent-placeholder":t.persistentPlaceholder,class:"key-field","display-asterisk":!1,onInput:fe,onBlur:H},null,8,["modelValue","label","variant-style","prepend-icon","append-icon","prepend-tooltip","append-tooltip","error-messages","warning-messages","success-messages","show-success-messages","has-warning","has-success","hint","messages","has-error","is-disabled","bg-color","density","hide-details","hide-spin-buttons","placeholder","readonly","variant","clearable","counter","persistent-hint","persistent-placeholder"]),[[e.unref(Ae),u]])])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-0d511295"]]),bs="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",$e={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"},ks={class:"mt-4"},Vs=["alt"],ws="support_id",Bs=_(e.defineComponent({__name:"NotFoundPage",props:{btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){const a=e.ref();return e.onMounted(()=>{var r;let t=new URLSearchParams(document.location.search).get(ws);t&&(a.value=(r=t.trim().match(/.{1,4}/g))==null?void 0:r.join(" "))}),(n,t)=>(e.openBlock(),e.createBlock(yt,{code:e.unref($e).code,"page-title":e.unref($e).pageTitle,message:e.unref($e).message,"btn-text":n.btnText,"btn-href":n.btnHref,"btn-link":n.btnLink,"hide-btn":n.hideBtn},e.createSlots({illustration:e.withCtx(()=>[e.createElementVNode("img",{src:bs,alt:e.unref($e).pageTitle},null,8,Vs)]),_:2},[a.value?{name:"additional-content",fn:e.withCtx(()=>[e.createElementVNode("p",ks,[e.createTextVNode(e.toDisplayString(e.unref($e).supportIdMessage)+" ",1),e.createElementVNode("b",null,e.toDisplayString(a.value),1),t[0]||(t[0]=e.createTextVNode(" . "))])]),key:"0"}:void 0]),1032,["code","page-title","message","btn-text","btn-href","btn-link","hide-btn"]))}}),[["__scopeId","data-v-8e9d618a"]]),Cs={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},Ns={key:0},Ss={class:"d-flex align-center ga-2"},Ms=_(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=K(Cs,n),r=j.useDisplay(),{notificationQueue:l,removeNotification:i}=ct(),c=e.getCurrentInstance(),s=e.ref(),m=e.ref(!1),p=e.ref(!1),d=e.computed(()=>!!(c!=null&&c.slots.action)),f=e.computed(()=>r.name.value==="xs"),u=e.computed(()=>r.name.value==="sm"),h=e.computed(()=>{var I,v;return(((v=(I=s.value)==null?void 0:I.message)==null?void 0:v.length)??0)>50}),b={info:ze,success:zt,warning:mn,error:Zt},g=e.computed(()=>s.value?b[s.value.type]:null),V=e.computed(()=>s.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[s.value.type]||"info"),k=e.computed(()=>s.value?{contentColor:s.value.type==="success"||s.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),w=e.computed(()=>f.value&&!h.value&&!d.value),B=I=>{s.value={...I}},L=async()=>{for(p.value=!0;l.value.length>0;){const I=l.value[0];B(I),m.value=!0;let v=I.timeout??-1;v<=0?await new Promise(D=>{const Z=e.watch(m,Y=>{Y||(Z(),D())})}):await new Promise(D=>{const Z=setTimeout(()=>{T(),D()},v),Y=e.watch(m,ne=>{ne||(clearTimeout(Z),Y(),D())})}),i(I.id)}p.value=!1},T=()=>{m.value=!1,s.value&&(i(s.value.id),s.value=void 0)},A=I=>{B(I),m.value=!0},M=()=>{if(l.value.length>0){const I=l.value[0];B(I),m.value=!0}};return e.watch(()=>l.value.length,I=>{I>0&&!p.value&&L()}),a({openNotification:A,handleClearNotification:T,showNextNotification:M,processNotificationQueue:L,currentNotification:s,isNotificationVisible:m,hasActionSlot:d,isMobileVersion:f,hasLongContent:h,color:V,icon:g,contentStyle:k,smallCloseBtn:w,isVertical:e.computed(()=>h.value&&f.value)}),(I,v)=>{var D;return s.value?(e.openBlock(),e.createElementBlock("div",Ns,[e.createVNode(nn.VSnackbar,e.mergeProps(e.unref(t).snackbar,{modelValue:m.value,"onUpdate:modelValue":v[0]||(v[0]=Z=>m.value=Z),role:"status",color:V.value,location:n.bottom?"bottom":"top",vertical:h.value,"multi-line":h.value,timeout:((D=s.value)==null?void 0:D.timeout)??-1,width:f.value||u.value?"auto":"960px",rounded:n.rounded,class:[{"long-text":h.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",h.value?"action-section-long-text":"action-section-short-text"]),style:{width:"100%"}},[e.renderSlot(I.$slots,"action",{},void 0,!0),e.createVNode(q.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":w.value}],"aria-label":"Fermer la notification"},e.unref(t).btn,{onClick:T}),{default:e.withCtx(()=>[w.value?(e.openBlock(),e.createBlock($.VIcon,{key:1,icon:e.unref(be)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(I.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var Z;return[e.createElementVNode("div",Ss,[!f.value&&g.value?(e.openBlock(),e.createBlock($.VIcon,e.mergeProps({key:0},e.unref(t).icon,{icon:g.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+k.value.contentColor)},e.toDisplayString((Z=s.value)==null?void 0:Z.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-f2e50ac9"]]);function Ls(){try{const o="test";return localStorage.setItem(o,o),localStorage.removeItem(o),!0}catch{return!1}}class vs{constructor(a,n,t="vd-"){Me(this,"localStorageSupported");Me(this,"version");Me(this,"expiration");Me(this,"prefix");Me(this,"CONTROL_ITEM_KEY","vd-storage-control");this.localStorageSupported=Ls(),this.prefix=t,a&&Number.isInteger(a)?this.version=a:this.version=void 0,this.expiration=n;const r=this.checkIfOldVersion(),l=this.checkIfExpired();(r||l)&&(this.clear(),this.setControlItem())}get length(){return this.getAll().length}key(a){return this.getAllKeys()[a]}getItem(a){const n=this.getControlItem();return!this.localStorageSupported&&!n?null:this.checkIfExpired()?(this.clear(),null):(this.setControlItem(),this.get(this.prefix+a))}setItem(a,n){this.localStorageSupported&&(this.set(this.prefix+a,n),this.setControlItem())}removeItem(a){this.filterStorage(n=>{n===this.prefix+a&&delete localStorage[n]})}clear(){this.filterStorage(a=>{delete localStorage[a]})}getAll(){const a=[];return this.filterStorage(n=>{a.push(this.get(n))}),a}getAllKeys(){const a=[];return this.filterStorage(n=>{a.push(n)}),a}filterStorage(a){if(this.localStorageSupported)for(const n in localStorage)n.startsWith(this.prefix)&&n!==this.CONTROL_ITEM_KEY&&a(n)}get(a){return JSON.parse(localStorage.getItem(a)||JSON.stringify(null))}set(a,n){localStorage.setItem(a,JSON.stringify(n))}checkIfExpired(){const a=this.getControlItem();if(!a)return!0;let n=!1,t=!1;return a.expiresAt&&(n=a.expiresAt<new Date().getTime()),a.version&&this.version&&(t=a.version<this.version),n||t}getControlItem(){return this.localStorageSupported?this.get(this.CONTROL_ITEM_KEY):null}setControlItem(){const a=this.expiration?new Date().getTime()+this.expiration/1:void 0,n={version:this.version,expiresAt:a};this.localStorageSupported&&this.set(this.CONTROL_ITEM_KEY,n)}checkIfOldVersion(){return this.getControlItem()===null}}const xs={id:"paginated-table"},Es=e.defineComponent({__name:"PaginatedTable",props:e.mergeModels({serverItemsLength:{type:Number,default:void 0},suffix:{type:String,default:void 0},itemsPerPage:{type:Number,default:void 0},caption:{type:String,default:"caption"}},{options:{required:!1,default:()=>({})},optionsModifiers:{}}),emits:["update:options"],setup(o){const a=o,n=e.useModel(o,"options"),t=new vs,r=e.ref({}),l=e.computed(()=>{const d="pagination";return a.suffix?`${d}-${a.suffix}`:d}),i=e.useAttrs(),c=e.computed(()=>{if(Array.isArray(i.headers))return i.headers.map(d=>({...d,title:d.title??d.text}))}),s=e.computed(()=>({page:n.value.page||i.page,itemsPerPage:n.value.itemsPerPage||a.itemsPerPage,sortBy:n.value.sortBy,groupBy:n.value.groupBy,multiSort:n.value.multiSort,mustSort:n.value.mustSort})),m=e.computed(()=>{const{"onUpdate:options":d,...f}=i;return{...f,itemsLength:a.serverItemsLength??0,headers:c.value,...r.value}});function p(d){n.value={...n.value,...d}}return e.watch(()=>n.value,()=>{a.serverItemsLength!==0&&(t.setItem(l.value,{...s.value,itemsLength:a.serverItemsLength??0}),r.value=s.value)},{deep:!0}),r.value=t.getItem(l.value)??s.value,e.onMounted(()=>{const d=document.querySelector("#paginated-table table"),f=document.createElement("caption");f.innerHTML=a.caption,a.caption==="caption"?f.classList.add("d-sr-only"):f.classList.add("text-subtitle-1"),d==null||d.prepend(f),document.querySelectorAll("#paginated-table input").forEach(k=>{k.removeAttribute("aria-describedby")}),document.querySelectorAll("#paginated-table .v-field").forEach(k=>{k.setAttribute("tabindex","0")}),document.querySelectorAll("#paginated-table .v-field").forEach(k=>{k.setAttribute("aria-label","items per page")}),document.querySelectorAll("#paginated-table .v-field").forEach(k=>{k.setAttribute("title","items per page")});const V=document.querySelectorAll("#paginated-table th");for(let k=0;k<V.length;k++)V[k].setAttribute("scope","col")}),(d,f)=>(e.openBlock(),e.createElementBlock("div",xs,[o.serverItemsLength?(e.openBlock(),e.createBlock($t.VDataTableServer,e.mergeProps({key:1},m.value,{color:"primary","onUpdate:options":p}),e.createSlots({_:2},[e.renderList(Object.keys(d.$slots),u=>({name:u,fn:e.withCtx(h=>[e.renderSlot(d.$slots,u,e.normalizeProps(e.guardReactiveProps(h??{})))])}))]),1040)):(e.openBlock(),e.createBlock($t.VDataTable,e.mergeProps({key:0,color:"primary"},m.value,{"onUpdate:options":p}),e.createSlots({_:2},[e.renderList(Object.keys(d.$slots),u=>({name:u,fn:e.withCtx(h=>[e.renderSlot(d.$slots,u,e.normalizeProps(e.guardReactiveProps(h??{})))])}))]),1040))]))}}),Is={btn:{variant:"text",icon:!0},icon:{color:se.grey.lighten20}},$a={hidePassword:"Masquer le mot de passe",showPassword:"Afficher le mot de passe"},_s=_(e.defineComponent({__name:"PasswordField",props:{modelValue:{default:null},variantStyle:{default:"outlined"},color:{default:"primary"},label:{default:void 0},required:{type:Boolean,default:!1},errorMessages:{default:null},warningMessages:{default:null},successMessages:{default:null},isReadOnly:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},placeholder:{default:void 0},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},customSuccessRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},displayAsterisk:{type:Boolean,default:!1},isValidateOnBlur:{type:Boolean,default:!0},vuetifyOptions:{}},emits:["update:modelValue","submit"],setup(o,{expose:a,emit:n}){const t=o,r=K(Is,t),l=n,i=Cn,c=Nn,s=e.ref(!1),m=e.computed(()=>s.value?$a.hidePassword:$a.showPassword),p=e.ref(t.modelValue);e.watch(()=>t.modelValue,A=>{p.value=A});const d=e.computed(()=>{const A=[];return t.required&&A.push({type:"required",options:{message:"Le mot de passe est requis",fieldIdentifier:t.label||"password"}}),A.push({type:"custom",options:{validate:M=>M?!0:"Ce champ est requis",successMessage:"Mot de passe fort",fieldIdentifier:t.label||"password"}}),A}),{errors:f,warnings:u,successes:h,validateField:b}=Pe({customRules:d.value,warningRules:t.customWarningRules||[],successRules:t.customSuccessRules||[],showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.label||"password"}),g=e.computed(()=>f.value.length>0),V=e.computed(()=>u.value.length>0),k=e.computed(()=>h.value.length>0&&t.showSuccessMessages),w=e.computed(()=>{if(g.value)return at;if(V.value)return dn;if(k.value)return ot}),B=e.computed(()=>g.value?"error":V.value?"warning":k.value?"success":"rgb(0 0 0 / 100%)");e.watch(()=>t.errorMessages,A=>{A&&(f.value=A)},{immediate:!0}),e.watch(()=>t.warningMessages,A=>{A&&(u.value=A)},{immediate:!0}),e.watch(()=>t.successMessages,A=>{A&&(h.value=A)},{immediate:!0}),e.watch(()=>p.value,()=>{b(p.value,[...d.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]),l("update:modelValue",p.value)});function L(A){A.key==="Enter"&&T()}const T=()=>{b(p.value,[...d.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]);const A=f.value.length===0;return A&&l("submit"),A};return a({showEyeIcon:s,errors:f,warnings:u,successes:h,hasError:g,hasWarning:V,hasSuccess:k,validateOnSubmit:T}),(A,M)=>(e.openBlock(),e.createBlock(ue,e.mergeProps({modelValue:p.value,"onUpdate:modelValue":M[1]||(M[1]=I=>p.value=I)},e.unref(r),{"variant-style":t.variantStyle,color:t.color,label:t.label,required:t.required,"error-messages":e.unref(f),"warning-messages":e.unref(u),"success-messages":e.unref(h),"is-read-only":t.isReadOnly,"is-disabled":t.isDisabled,placeholder:t.placeholder,type:s.value?"text":"password","display-asterisk":t.displayAsterisk,rules:[...d.value,...t.customRules],class:"vd-password","validate-on":t.isValidateOnBlur?"blur lazy":"lazy",onBlur:M[2]||(M[2]=I=>t.isValidateOnBlur?e.unref(b)(p.value,[...d.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]):()=>{}),onKeydown:L}),{"append-inner":e.withCtx(()=>[e.createElementVNode("div",e.mergeProps({class:"d-flex align-center"},e.unref(r).btn),[e.createVNode($.VIcon,{icon:w.value,color:B.value,class:"mr-2"},null,8,["icon","color"]),e.createVNode($.VIcon,{icon:s.value?e.unref(i):e.unref(c),color:"rgb(0 0 0 / 70%)","aria-label":m.value,role:"button",onClick:M[0]||(M[0]=I=>s.value=!s.value)},null,8,["icon","aria-label"])],16)]),_:1},16,["modelValue","variant-style","color","label","required","error-messages","warning-messages","success-messages","is-read-only","is-disabled","placeholder","type","display-asterisk","rules","validate-on"]))}}),[["__scopeId","data-v-e21f402a"]]),Ts={class:"period-field"},As={class:"period-field__col"},$s={class:"period-field__col"},Ds=_(e.defineComponent({__name:"PeriodField",props:{modelValue:{default:()=>({from:null,to:null})},placeholderFrom:{default:"Début"},placeholderTo:{default:"Fin"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:""},showWeekNumber:{type:Boolean,default:!1},required:{type:Boolean,default:!1},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},noCalendar:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},showSuccessMessages:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){var fe,he;const{parseDate:t}=ve(),r=o,l=n,i=e.ref(null),c=e.ref(null),s=[{type:"custom",options:{validate:H=>H===null||h.value===void 0||h.value===null?!0:H<=h.value,message:"La date de début ne peut pas être supérieure à la date de fin.",successMessage:"La date de début est valide.",fieldIdentifier:"fromDateRef"}},...r.required?[{type:"required",options:{validate:H=>!(!H&&!h.value||!H&&h.value),message:"La date de début est requise.",successMessage:"La date de début est renseignée.",fieldIdentifier:"fromDateRef"}}]:[],...r.customRules],m=[{type:"custom",options:{validate:H=>H===null||u.value===void 0||u.value===null?!0:H>=u.value,message:"La date de fin ne peut pas être inférieure à la date de début.",successMessage:"La date de fin est valide.",fieldIdentifier:"toDate"}},...r.required?[{type:"required",options:{validate:H=>!(!H&&!u.value||!H&&u.value),message:"La date de fin est requise.",successMessage:"La date de fin est renseignée.",fieldIdentifier:"toDate"}}]:[],...r.customRules];function p(H){if(!H)return null;if(typeof H=="string")return H;if(H.selectedDates){const S=new Date(H.selectedDates),P=S.getDate().toString().padStart(2,"0"),y=(S.getMonth()+1).toString().padStart(2,"0"),N=S.getFullYear();return`${P}/${y}/${N}`}return null}const d=e.computed(()=>p(i.value)),f=e.computed(()=>p(c.value)),u=e.computed(()=>d.value?t(d.value,r.format):void 0),h=e.computed(()=>f.value?t(f.value,r.format):void 0),b=e.computed(()=>new Set(A.value.filter(H=>H.includes("fromDate")))),g=e.computed(()=>new Set(A.value.filter(H=>H.includes("toDate")))),V=e.computed(()=>new Set(M.value.filter(H=>H.includes("fromDate")))),k=e.computed(()=>new Set(M.value.filter(H=>H.includes("toDate")))),w=e.computed(()=>b.value.size>0),B=e.computed(()=>g.value.size>0),L=e.computed(()=>V.value.size>0),T=e.computed(()=>k.value.size>0),A=e.ref([]),M=e.ref([]),I=e.computed(()=>{if(!r.required&&!d.value&&!f.value)return!0;if(r.required&&(!d.value||!f.value)||!r.required&&(d.value||f.value)&&(d.value&&!f.value||!d.value&&f.value))return!1;if(d.value&&f.value){const H=t(d.value,r.format),S=t(f.value,r.format);if(!H||!S||H>S)return!1}return A.value.length===0});e.watch(d,()=>{f.value&&D.value&&D.value.validateOnSubmit()}),e.watch(f,()=>{d.value&&v.value&&v.value.validateOnSubmit()}),e.watch([i,c],()=>{l("update:modelValue",{from:d.value,to:f.value})}),e.watch(()=>r.modelValue,H=>{if(!H)return;const S=p(H.from),P=p(H.to);i.value!==S&&(i.value=S),c.value!==P&&(c.value=P)},{deep:!0,immediate:!0}),i.value=p((fe=r.modelValue)==null?void 0:fe.from),c.value=p((he=r.modelValue)==null?void 0:he.to);const v=e.ref(),D=e.ref(),Z=()=>{v.value&&v.value.validateOnSubmit()},Y=()=>{D.value&&D.value.validateOnSubmit()};return a({validateOnSubmit:()=>{var y,N;const H=((y=v.value)==null?void 0:y.validateOnSubmit())??!0,S=((N=D.value)==null?void 0:N.validateOnSubmit())??!0;return H&&S&&I.value},errors:A,successes:M,isValid:I}),(H,S)=>(e.openBlock(),e.createElementBlock("div",Ts,[e.createElementVNode("div",As,[e.createVNode(st,{ref_key:"fromDateRef",ref:v,modelValue:i.value,"onUpdate:modelValue":S[0]||(S[0]=P=>i.value=P),"custom-rules":s,"custom-warning-rules":r.customWarningRules,"date-format-return":r.dateFormatReturn,"display-append-icon":r.displayAppendIcon,"display-icon":r.displayIcon,"error-message":w.value,format:r.format,"is-disabled":r.isDisabled,"is-outlined":r.isOutlined,"no-calendar":r.noCalendar,"no-icon":r.noIcon,placeholder:r.placeholderFrom,required:r.required,"show-week-number":r.showWeekNumber,"success-message":L.value,onClosed:Z},null,8,["modelValue","custom-warning-rules","date-format-return","display-append-icon","display-icon","error-message","format","is-disabled","is-outlined","no-calendar","no-icon","placeholder","required","show-week-number","success-message"])]),e.createElementVNode("div",$s,[e.createVNode(st,{ref_key:"toDateRef",ref:D,modelValue:c.value,"onUpdate:modelValue":S[1]||(S[1]=P=>c.value=P),"custom-rules":m,"custom-warning-rules":r.customWarningRules,"date-format-return":r.dateFormatReturn,"display-append-icon":r.displayAppendIcon,"display-icon":r.displayIcon,"error-message":B.value,format:r.format,"is-disabled":r.isDisabled,"is-outlined":r.isOutlined,"no-calendar":r.noCalendar,"no-icon":r.noIcon,placeholder:r.placeholderTo,required:r.required,"show-week-number":r.showWeekNumber,"success-message":T.value,onClosed:Y},null,8,["modelValue","custom-warning-rules","date-format-return","display-append-icon","display-icon","error-message","format","is-disabled","is-outlined","no-calendar","no-icon","placeholder","required","show-week-number","success-message"])])]))}}),[["__scopeId","data-v-c0fd674b"]]),Zs={default:o=>`La longueur du champ doit être de ${o} caractères.`};function Ps(o,a=!1,n=Zs){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length===o||qt(n,"default",[o])):!0}const Da=Ps,Rs=[{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:"### ####"}],Za={label:"Numéro de téléphone",indicatifLabel:"Indicatif"},zs={class:"phone-field-container"},Os=_(e.defineComponent({__name:"PhoneField",props:{modelValue:{type:String,default:""},dialCodeModel:{type:[String,Object],default:""},required:{type:Boolean,default:!1},outlined:{type:Boolean,default:!0},outlinedIndicatif:{type:Boolean,default:!0},withCountryCode:{type:Boolean,default:!1},countryCodeRequired:{type:Boolean,default:!1},displayFormat:{type:String,default:"code"},customIndicatifs:{type:Array,default:()=>[]},useCustomIndicatifsOnly:{type:Boolean,default:!1},isValidatedOnBlur:{type:Boolean,default:!0},displayAsterisk:{type:Boolean,default:!1}},emits:["update:modelValue","update:selectedDialCode","change"],setup(o,{expose:a,emit:n}){const t=o,r=n,l=e.ref(t.modelValue||""),i=e.ref(t.dialCodeModel||""),c=e.ref(10),s=e.ref("## ## ## ## ##"),m=e.ref(!1),p=e.ref(!1);function d(w){return w?w.replace(/\D/g,"").replace(/(.{2})/g,"$1 ").trim():""}const f=e.computed(()=>d(l.value));e.watch(()=>t.modelValue,w=>{l.value=(w||"").replace(/\s/g,"")},{immediate:!0}),e.watch(i,w=>{r("update:selectedDialCode",w),typeof w=="object"&&w!==null&&(c.value=w.phoneLength||10,s.value=w.mask||"#".repeat(w.phoneLength||10).replace(/(.{2})/g,"$1 ").trim())});function u(w){const L=w.target.value.replace(/\D/g,"");l.value=L,r("update:modelValue",L),r("change",L)}const h=e.computed(()=>t.useCustomIndicatifsOnly?t.customIndicatifs:[...Rs,...t.customIndicatifs]),b=e.computed(()=>h.value.map(w=>({...w,displayText:g(w)})));function g(w){return{code:w.code,"code-abbreviation":`${w.code} (${w.abbreviation})`,"code-country":`${w.code} ${w.country}`,country:w.country,abbreviation:w.abbreviation}[t.displayFormat]||w.code}const V=e.computed(()=>{const w=[Da(c.value,!0)];return t.required&&w.unshift(Oe),w});function k(){if(!t.isValidatedOnBlur)return;m.value=!1;const w=!t.required||Oe(l.value)===!0,B=Da(c.value,!0)(l.value)===!0;m.value=!(w&&B),p.value=!0}return a({computedValue:f,dialCode:i,phoneMask:s,counter:c,hasError:m,phoneNumber:l,mergedDialCodes:h}),(w,B)=>(e.openBlock(),e.createElementBlock("div",zs,[t.withCountryCode?(e.openBlock(),e.createBlock(ft,{key:0,modelValue:i.value,"onUpdate:modelValue":B[0]||(B[0]=L=>i.value=L),items:b.value,label:e.unref(Za).indicatifLabel,outlined:o.outlinedIndicatif,required:t.countryCodeRequired,"display-asterisk":t.displayAsterisk,class:"custom-select","text-key":"displayText","value-key":"code"},null,8,["modelValue","items","label","outlined","required","display-asterisk"])):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(ue,{modelValue:l.value,"onUpdate:modelValue":B[1]||(B[1]=L=>l.value=L),counter:c.value,"counter-value":L=>L.replace(/\s/g,"").length,label:e.unref(Za).label,required:t.required,rules:V.value,variant:o.outlined?"outlined":"underlined","display-asterisk":t.displayAsterisk,class:"phone-field",color:"primary",onBlur:k,onInput:u},{"append-inner":e.withCtx(()=>[e.createVNode($.VIcon,{class:"mr-2",color:"#222324"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Tn)),1)]),_:1}),m.value?(e.openBlock(),e.createBlock($.VIcon,{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Re)),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["modelValue","counter","counter-value","label","required","rules","variant","display-asterisk"])),[[e.unref(Ae),s.value]])]))}}),[["__scopeId","data-v-b448ef2a"]]),Fs={class:"tooltip-wrapper"},Ye=_(e.defineComponent({__name:"Tooltip",props:{nudgeLeft:{default:0},nudgeRight:{default:0}},setup(o,{expose:a}){const n=o,t=e.computed(()=>{const l=n.nudgeLeft?n.nudgeLeft:n.nudgeRight*-1;return{transform:`translateX(calc(-50% + ${Math.ceil(l)}px))`}}),r=e.ref(null);return a({element:r}),(l,i)=>(e.openBlock(),e.createElementBlock("div",Fs,[e.createElementVNode("div",{ref_key:"tooltip",ref:r,class:"tooltip",style:e.normalizeStyle(t.value)},[e.renderSlot(l.$slots,"default",{},void 0,!0)],4)]))}}),[["__scopeId","data-v-fdf9eaf9"]]);function Pa(o,a,n,t,r,l,i,c,s){const m=e.ref(!1);let p=0,d=null;e.onMounted(()=>{e.toValue(o).addEventListener("mousedown",f),e.toValue(o).addEventListener("touchstart",f)});function f(){m.value=!0,document.addEventListener("mousemove",h),document.addEventListener("mouseup",u),document.addEventListener("touchmove",h),document.addEventListener("touchend",u),document.addEventListener("touchcancel",u)}function u(){document.removeEventListener("mousemove",h),document.removeEventListener("mouseup",u),document.removeEventListener("touchmove",h),document.removeEventListener("touchend",u),document.removeEventListener("touchcancel",u),p=0,d=null,setTimeout(()=>{m.value=!1},100)}function h(b){b.stopPropagation();const g="touches"in b?b.touches[0].clientX:b.clientX;if(d===null){d=g;return}const V=e.toValue(l),k=Math.round(e.toValue(n)/V)*V,B=e.toValue(a).getBoundingClientRect().width,T=(g-d)*100/B,A=V*100/(e.toValue(r)-e.toValue(t)),v=Math.round(T/A)*V-p,D=k+v,Z=Hs(e.toValue(i),D,e.toValue(c)),Y=Z-k;Y!==0&&(p+=Y,s(Z))}return{inProgress:m}}function Hs(o,a,n){return Math.max(o,Math.min(a,n))}function Us(o,a,n,t){e.toValue(o)>e.toValue(a)&&([o,a]=[a,o]);const r={selectedMin:e.ref(Number(e.toValue(o))),selectedMax:e.ref(Number(e.toValue(a))),rangeMin:e.ref(Number(e.toValue(o))),rangeMax:e.ref(Number(e.toValue(a))),step:e.ref(Number(e.toValue(n)))};return e.watch(()=>e.toValue(o),l=>{l=Number(l),!(isNaN(l)||!isFinite(l))&&(l>r.rangeMax.value||(r.selectedMin.value<l&&(r.selectedMin.value=l),r.selectedMax.value<l&&(r.selectedMax.value=l),r.rangeMin.value=l))}),e.watch(()=>e.toValue(a),l=>{l=Number(l),!(isNaN(l)||!isFinite(l))&&(l<r.rangeMin.value||(r.selectedMin.value>l&&(r.selectedMin.value=l),r.selectedMax.value>l&&(r.selectedMax.value=l),r.rangeMax.value=l))}),e.watch(()=>e.toValue(n),l=>{l=Number(l),qs(l,r.rangeMin.value,r.rangeMax.value)&&(r.step.value=Math.abs(l))}),e.watch(()=>e.toValue(t),l=>{const i=l.map(Number);!Ra(i[0])||!Ra(i[1])||i[0]>i[1]||(i[0]<r.rangeMin.value?r.selectedMin.value=r.rangeMin.value:r.selectedMin.value=i[0],i[1]>r.rangeMax.value?r.selectedMax.value=r.rangeMax.value:r.selectedMax.value=i[1])},{immediate:!0}),r}function Ra(o){return!isNaN(o)&&isFinite(o)}function qs(o,a,n){return!isNaN(o)&&isFinite(o)&&o!=0&&o<=n-a}function za(o,a,n){return{thumbStyle:e.computed(()=>{const r=e.toValue(o),l=e.toValue(n)-e.toValue(a);return{left:`${l==0?100:(r-e.toValue(a))/l*100}%`}})}}function Oa(o,a,n,t,r,l){e.onMounted(()=>{e.toValue(o).addEventListener("keydown",i)});function i(c){if(c.key==="ArrowLeft"||c.key==="ArrowDown"){c.preventDefault();const s=e.toValue(r),p=Ge(e.toValue(a),s)-s;p>=e.toValue(n)&&l(p)}else if(c.key==="ArrowRight"||c.key==="ArrowUp"){c.preventDefault();const s=e.toValue(r),p=Ge(e.toValue(a),s)+s;p<=e.toValue(t)&&l(p)}else if(c.key==="Home")c.preventDefault(),l(e.toValue(n));else if(c.key==="End")c.preventDefault(),l(e.toValue(t));else if(c.key==="PageDown"){c.preventDefault();const s=e.toValue(r),p=Ge(e.toValue(a),s)-s*10;p>=e.toValue(n)?l(p):l(e.toValue(n))}else if(c.key==="PageUp"){c.preventDefault();const s=e.toValue(r),p=Ge(e.toValue(a),s)+s*10;p<=e.toValue(t)?l(p):l(e.toValue(t))}}}function Ge(o,a){return Math.round(o/a)*a}function Ws(o,a,n,t,r){const l=e.ref(0),i=e.ref(0);async function c(){await e.nextTick();const s=n.value.element.getBoundingClientRect(),m=t.value.element.getBoundingClientRect(),p=s.right-m.left;if(p>=0){const f=s.width/2-12,u=m.width/2-12,h=Math.abs(f-u);let b=0,g=0;if(f>u?b=Math.min(p,h):g=Math.min(p,h),p>h){const V=p-h,k=Math.ceil(V/2);b+=k,g+=k}l.value=b+1,i.value=g+1}else l.value=0,i.value=0}return e.onMounted(()=>{o.value.element.style.transition="transform 0.1s",a.value.element.style.transition="transform 0.1s",e.watch(()=>[e.toValue(r.selectedMin),e.toValue(r.selectedMax)],c,{immediate:!0}),window.addEventListener("resize",c)}),e.onUnmounted(()=>{window.removeEventListener("resize",c)}),{nudgeMinThumb:l,nudgeMaxThumb:i}}function Ks(o,a,n,t,r=!1){function l(i){if(e.toValue(r))return;const c=e.toValue(o).getBoundingClientRect(),s=e.toValue(a.rangeMin),m=e.toValue(a.rangeMax),d=(i.clientX-c.left)/c.width*100,f=Gs(d,s,m,e.toValue(a.selectedMin),e.toValue(a.selectedMax),n,t),u=Ys(d,s,m,e.toValue(a.step));f(u)}e.onMounted(()=>{e.toValue(o).addEventListener("click",l)})}function Ys(o,a,n,t){const r=n-a,l=t*100/r;return Math.round(o/l)*t+a}function Gs(o,a,n,t,r,l,i){const c=n-a,s=Math.abs((t-a)/c*100),m=Math.abs((r-a)/c*100),p=Math.abs(s-o),d=Math.abs(m-o);return p<d||p===d&&o<s?l:i}function Fa(o){o.currentTarget.classList.add("animate-click")}function je(o){o.currentTarget.classList.remove("animate-click")}const Ha={mounted:o=>{o.addEventListener("mousedown",Fa),o.addEventListener("mouseup",je),o.addEventListener("mouseleave",je),o.addEventListener("touchstart",Fa),o.addEventListener("touchend",je),o.addEventListener("touchcancel",je)}},js={class:"wrapper"},Js=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],Xs=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],Qs=e.defineComponent({__name:"RangeSlider",props:{"thumb-color":{default:se.blue.base},"track-color":{default:se.blue.lighten80},"track-fill-color":{default:se.blue.lighten40},modelValue:{default:()=>[]},min:{default:0},max:{default:100},step:{default:1},minLabel:{default:"Minimum"},maxLabel:{default:"Maximum"}},emits:["update:modelValue"],setup(o,{emit:a}){e.useCssVars(B=>({"3564209b":n.thumbColor,"3e537b74":n.trackColor,"71c52d03":n.trackFillColor}));const n=o,t=Us(e.toRef(n,"min"),e.toRef(n,"max"),e.toRef(n,"step"),e.toRef(n,"modelValue")),r=a,{thumbStyle:l}=za(t.selectedMin,t.rangeMin,t.rangeMax),{thumbStyle:i}=za(t.selectedMax,t.rangeMin,t.rangeMax),c=e.computed(()=>{const B=t.rangeMin.value,L=t.rangeMax.value,T=t.selectedMin.value,A=t.selectedMax.value,M=L-B,I=(T-B)*100/M,v=(A-B)*100/M-I;return{left:`${I}%`,width:`${v}%`}}),s=e.ref(null),m=e.ref(null),p=e.ref(null),{inProgress:d}=Pa(m,s,t.selectedMin,t.rangeMin,t.rangeMax,t.step,t.rangeMin,t.selectedMax,B=>t.selectedMin.value=B),{inProgress:f}=Pa(p,s,t.selectedMax,t.rangeMin,t.rangeMax,t.step,t.selectedMin,t.rangeMax,B=>t.selectedMax.value=B),u=e.computed(()=>d.value||f.value);Ks(s,t,B=>t.selectedMin.value=B,B=>t.selectedMax.value=B,u),Oa(m,t.selectedMin,t.rangeMin,t.selectedMax,t.step,B=>t.selectedMin.value=B),Oa(p,t.selectedMax,t.selectedMin,t.rangeMax,t.step,B=>t.selectedMax.value=B);const h=e.ref(null),b=e.ref(null),g=e.ref(null),V=e.ref(null),{nudgeMinThumb:k,nudgeMaxThumb:w}=Ws(g,V,h,b,t);return e.watch(()=>[t.selectedMin.value,t.selectedMax.value],B=>{(B[0]!==Number(n.modelValue[0])||B[1]!==Number(n.modelValue[1]))&&r("update:modelValue",B)}),(B,L)=>(e.openBlock(),e.createElementBlock("div",js,[e.createElementVNode("div",{ref_key:"track",ref:s,class:"track"},[e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMin",ref:m,class:"thumb-min",style:e.normalizeStyle(e.unref(l)),role:"slider","aria-valuenow":e.unref(t).selectedMin.value,tabindex:"0","aria-valuemin":e.unref(t).rangeMin.value,"aria-valuemax":e.unref(t).selectedMax.value,"aria-orientation":"horizontal","aria-label":B.minLabel,title:B.minLabel},[e.createVNode(Ye,{ref_key:"tooltipMin",ref:g,"nudge-right":e.unref(k)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},8,["nudge-right"]),L[0]||(L[0]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,Js)),[[e.unref(Ha)]]),e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMax",ref:p,role:"slider",class:"thumb-max",style:e.normalizeStyle(e.unref(i)),"aria-valuenow":e.unref(t).selectedMax.value,tabindex:"0","aria-valuemin":e.unref(t).selectedMin.value,"aria-valuemax":e.unref(t).rangeMax.value,"aria-orientation":"horizontal","aria-label":B.maxLabel,title:B.maxLabel},[e.createVNode(Ye,{ref_key:"tooltipMax",ref:V,"nudge-left":e.unref(w)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},8,["nudge-left"]),L[1]||(L[1]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,Xs)),[[e.unref(Ha)]]),e.createElementVNode("div",{class:"fake-thumb thumb-min","aria-hidden":"true",style:e.normalizeStyle(e.unref(l))},[e.createVNode(Ye,{ref_key:"hiddenTooltipMin",ref:h},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"fake-thumb thumb-max","aria-hidden":"true",style:e.normalizeStyle(e.unref(i))},[e.createVNode(Ye,{ref_key:"hiddenTooltipMax",ref:b},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"filled-track",style:e.normalizeStyle(c.value)},null,4)],512)]))}}),e1=_(Qs,[["__scopeId","data-v-efdf07f6"]]),t1={textField:{class:"ma-3",variant:"outlined"}},Se={minLabel:"Valeur min",maxLabel:"Valeur max"},a1={class:"vd-range-field"},n1={class:"mt-10 mb-2 mx-3"},o1=e.defineComponent({__name:"RangeField",props:e.mergeModels({vuetifyOptions:{},min:{default:0},max:{default:100},step:{default:1}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=o,n=K(t1,a),t=e.useModel(o,"modelValue"),r=e.computed(()=>t.value?t.value:[a.min,a.max]),l=e.ref(r.value[0]),i=e.ref(r.value[1]);e.watch(t,h=>{if(!Array.isArray(h))return;const b=m(h[0]),g=m(h[1]);l.value=b,i.value=g,(b!==h[0]||g!==h[1])&&(t.value=[b,g])},{immediate:!0,deep:!0});const c=j.useDisplay(),s={tokens:{N:{pattern:/-/,optional:!0},n:{pattern:/\d/,multiple:!0,optional:!0},".":{pattern:/\./,optional:!0},d:{pattern:/\d/,multiple:!0,optional:!0}},mask:"Nn.d"};function m(h){return h=Math.round(Number(h)),isNaN(h)?a.min:Math.min(Math.max(h,a.min),a.max)}function p(h){if(h==="")return;const b=Number(h);!isNaN(b)&&isFinite(b)&&b>=a.min&&b<=t.value[1]&&(t.value=[b,r.value[1]])}function d(h){if(h==="")return;const b=Number(h);!isNaN(b)&&isFinite(b)&&b<=a.max&&b>=r.value[0]&&(t.value=[r.value[0],b])}function f(h){h||(l.value=r.value[0])}function u(h){h||(i.value=r.value[1])}return(h,b)=>(e.openBlock(),e.createElementBlock("div",a1,[e.createElementVNode("div",n1,[e.createVNode(e1,e.mergeProps({"model-value":r.value},e.unref(n).rangeSlider,{max:h.max,min:h.min,step:h.step,class:"mt-8 mb-2","onUpdate:modelValue":b[0]||(b[0]=g=>t.value=g)}),null,16,["model-value","max","min","step"])]),e.createElementVNode("div",{class:e.normalizeClass([{"flex-column":e.unref(c).xs.value},"d-flex flex-wrap max-width-none"])},[e.withDirectives(e.createVNode(De.VTextField,e.mergeProps({modelValue:l.value,"onUpdate:modelValue":b[1]||(b[1]=g=>l.value=g)},e.unref(n).textField,{label:e.unref(Se).minLabel,"aria-label":e.unref(Se).minLabel,inputmode:"numeric",color:"primary",title:e.unref(Se).minLabel,"onUpdate:modelValue":p,"onUpdate:focused":f}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ae),s]]),e.withDirectives(e.createVNode(De.VTextField,e.mergeProps({modelValue:i.value,"onUpdate:modelValue":b[2]||(b[2]=g=>i.value=g)},e.unref(n).textField,{label:e.unref(Se).maxLabel,"aria-label":e.unref(Se).maxLabel,inputmode:"numeric",color:"primary",title:e.unref(Se).maxLabel,"onUpdate:modelValue":d,"onUpdate:focused":u}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ae),s]])],2)]))}});var te=(o=>(o.EMOTION="emotion",o.NUMBER="number",o.STARS="stars",o))(te||{});const l1=Object.values(te);var Lt=(o=>(o.INFO="info",o.SUCCESS="success",o.WARNING="warning",o.ERROR="error",o))(Lt||{});Object.values(Lt);function vt(o,a){const n=e.ref(o.modelValue),t=e.computed(()=>n.value!==-1);function r(l){o.readonly||(n.value=typeof l=="number"?l:parseInt(l,10),a("update:modelValue",n.value))}return{internalValue:n,hasAnswered:t,emitInputEvent:r}}const r1={defaultEmotionLabels:["Pas du tout","Moyen","Parfait !"]},i1={class:"vd-emotion-picker"},s1={class:"text-h6 mb-6"},c1=e.defineComponent({__name:"EmotionPicker",props:{label:{type:String,default:te.EMOTION},length:{type:Number,default:3,validator:o=>Vt("length",["2","3"],o.toString())},itemLabels:{type:Array,default:()=>r1.defaultEmotionLabels},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const{smAndDown:n}=j.useDisplay(),t=e.computed(()=>n.value),r=o,l=Bn,i=wn,c=Vn,s=e.computed(()=>t.value?"70px":"88px"),m=a,{hasAnswered:p,emitInputEvent:d}=vt(r,m),f=g=>g===r.modelValue-1,u=g=>g===0?l:g===1&&r.length===3?i:c,h=g=>{const V=["sad","neutral","happy"];return r.length===2?V.filter(w=>w!=="neutral")[g]:V[g]},b=g=>r.length===2?r.itemLabels.filter((k,w)=>w!==1)[g]:r.itemLabels[g];return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(V=>{V.setAttribute("aria-hidden","true")})}),(g,V)=>(e.openBlock(),e.createElementBlock("fieldset",i1,[e.createElementVNode("legend",s1,[e.renderSlot(g.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(r.label),1)],!0)]),e.createVNode(tt.VRating,{"model-value":r.modelValue,length:r.length,readonly:r.readonly,class:"max-width-none mx-n1 mx-sm-n2","onUpdate:modelValue":V[0]||(V[0]=k=>m("update:modelValue",k))},{item:e.withCtx(({index:k})=>[e.createVNode(q.VBtn,{disabled:r.readonly||e.unref(p),title:b(k),"aria-pressed":f(k).toString(),class:e.normalizeClass([[h(k),{"v-btn--active":f(k)}],"rounded-lg px-1 px-sm-4 mx-1 mx-sm-2"]),"min-height":s.value,"min-width":s.value,variant:"text",onClick:w=>e.unref(d)(k+1)},{default:e.withCtx(()=>[e.createVNode($.VIcon,{size:"40",color:"currentColor",class:"pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u(k)),1)]),_:2},1024),b(k)?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass([{"text-secondary":!f(k)},"text-subtitle-2 mt-1"])},e.toDisplayString(b(k)),3)):e.createCommentVNode("",!0)]),_:2},1032,["disabled","title","aria-pressed","class","min-height","min-width","onClick"])]),_:1},8,["model-value","length","readonly"])]))}}),d1=_(c1,[["__scopeId","data-v-d8875a0f"]]),Je={ariaLabel:(o,a)=>`Note de ${o} sur ${a}.`},m1={class:"vd-number-picker"},u1={class:"d-sr-only"},p1={class:"text-h6 mb-6"},f1={key:0,class:"d-inline-block"},h1={key:0,class:"d-flex justify-space-between mt-1"},g1=["aria-label","textContent"],y1=["aria-label","textContent"],b1=["aria-label"],k1=e.defineComponent({__name:"NumberPicker",props:{label:{type:String,default:te.NUMBER},length:{type:Number,default:10},itemLabels:{type:Array,default:()=>[]},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,{smAndDown:t}=j.useDisplay(),r=e.computed(()=>t.value),l=a,{hasAnswered:i,emitInputEvent:c}=vt(n,l),s=e.computed(()=>[...Array(n.length)].map((p,d)=>({text:`${d+1}`,value:d+1}))),m=e.computed(()=>n.itemLabels.length===2);return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(d=>{d.setAttribute("aria-hidden","true")})}),(p,d)=>(e.openBlock(),e.createElementBlock("fieldset",m1,[e.createElementVNode("legend",u1,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),r.value?(e.openBlock(),e.createBlock(ft,{key:0,"model-value":n.modelValue===-1?void 0:n.modelValue,label:n.label,disabled:n.readonly||e.unref(i),items:s.value,"onUpdate:modelValue":d[0]||(d[0]=f=>l("update:modelValue",f))},null,8,["model-value","label","disabled","items"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("legend",p1,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.unref(i)?(e.openBlock(),e.createElementBlock("p",{key:1,"aria-label":e.unref(Je).ariaLabel(n.modelValue,n.length),class:"mb-0 d-flex align-center"},[e.createVNode(q.VBtn,{"aria-hidden":"true",disabled:!0,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"vd-btn-answer text-body-2 mr-1 pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.modelValue),1)]),_:1}),e.createTextVNode(" / "+e.toDisplayString(n.length),1)],8,b1)):(e.openBlock(),e.createElementBlock("div",f1,[e.createVNode(tt.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(i),class:"d-flex flex-wrap max-width-none","onUpdate:modelValue":d[1]||(d[1]=f=>l("update:modelValue",f))},{item:e.withCtx(({index:f})=>[e.createVNode(q.VBtn,{"aria-label":e.unref(Je).ariaLabel(f+1,n.length),disabled:n.readonly,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"text-body-2 pa-0 mr-2",onClick:u=>e.unref(c)(f+1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f+1),1)]),_:2},1032,["aria-label","disabled","onClick"])]),_:1},8,["model-value","length","readonly"]),m.value?(e.openBlock(),e.createElementBlock("div",h1,[e.createElementVNode("span",{"aria-label":`${e.unref(Je).ariaLabel(1,n.length)} ${n.itemLabels[0]}.`,class:"text-caption",textContent:e.toDisplayString(n.itemLabels[0])},null,8,g1),e.createElementVNode("span",{"aria-label":`${e.unref(Je).ariaLabel(n.length,n.length)} ${n.itemLabels[1]}.`,class:"text-caption mr-2",textContent:e.toDisplayString(n.itemLabels[1])},null,8,y1)])):e.createCommentVNode("",!0)]))],64))]))}}),V1=_(k1,[["__scopeId","data-v-c3142f79"]]),w1={class:"vd-stars-picker"},B1={class:"text-h6 mb-6"},C1=["disabled","aria-pressed","aria-label","onMouseover","onFocus","onClick"],N1=e.defineComponent({__name:"StarsPicker",props:{label:{type:String,default:te.STARS},length:{type:Number,default:5},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{hasAnswered:r,emitInputEvent:l}=vt(n,t),i=$n,c=An,s=e.ref(-1);function m(d){return n.modelValue-1===d}function p(d){const f=s.value!==null&&s.value>=d,u=n.modelValue-1>=d;return f||u}return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(f=>{f.setAttribute("aria-hidden","true")})}),(d,f)=>(e.openBlock(),e.createElementBlock("fieldset",w1,[e.createElementVNode("legend",B1,[e.renderSlot(d.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.createVNode(tt.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(r),class:"d-flex flex-wrap max-width-none mx-n3","onUpdate:modelValue":f[2]||(f[2]=u=>t("update:modelValue",u))},{item:e.withCtx(({index:u})=>[e.createElementVNode("button",{disabled:n.readonly,"aria-pressed":m(u),"aria-label":`${u+1} star`,onMouseover:h=>s.value=u,onFocus:h=>s.value=u,onMouseleave:f[0]||(f[0]=h=>s.value=-1),onBlur:f[1]||(f[1]=h=>s.value=-1),onClick:h=>e.unref(l)(u+1)},[e.createVNode($.VIcon,{class:e.normalizeClass([p(u)?"text-primary":"text-blue-lighten","py-0 px-2"]),size:"36px"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(p(u)?e.unref(c):e.unref(i)),1)]),_:2},1032,["class"])],40,C1)]),_:1},8,["model-value","length","readonly"])]))}}),S1=_(N1,[["__scopeId","data-v-14e84c18"]]),M1={close:"Fermer"},Ua=_(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:e.mergeModels(["click:close"],["update:modelValue"]),setup(o,{expose:a,emit:n}){const t=e.useModel(o,"modelValue"),r=o,l=e.computed(()=>({info:ze,success:zt,warning:nt,error:Zt})[r.type]),i=n;function c(){i("click:close"),t.value=!1}return a({prependIcon:l,dismissAlert:c}),(s,m)=>(e.openBlock(),e.createBlock(on.VAlert,{modelValue:t.value,"onUpdate:modelValue":m[0]||(m[0]=p=>t.value=p),type:r.type,closable:r.closable,variant:r.variant,class:e.normalizeClass(`alert alert--${r.type}`),color:r.type,border:r.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode($.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(l.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:2},[r.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(q.VBtn,{color:r.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:c},{default:e.withCtx(()=>[e.createVNode($.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(be)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(M1).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),[["__scopeId","data-v-19edec6a"]]),L1={thanks:"Merci pour votre réponse"},v1={class:"vd-rating-picker"},x1=e.defineComponent({__name:"RatingPicker",props:{type:{type:String,required:!0,validator:o=>Vt("type",l1,o)},label:{type:String,default:null},readonly:{type:Boolean,default:!1},itemLabels:{type:Array,default:null},twoEmotions:{type:Boolean,default:!1},hideAlert:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,r=e.ref(Lt),l=e.ref(-1),i=e.ref(!1),c=e.computed(()=>n.type===te.EMOTION?d1:n.type===te.NUMBER?V1:S1),s=e.computed(()=>{if(n.type===te.EMOTION)return n.twoEmotions?2:3}),m=e.computed(()=>n.modelValue!==-1);function p(f){const u=n.type===te.STARS&&f<=3,h=n.type===te.NUMBER&&f<=7,b=n.type===te.EMOTION,g=n.twoEmotions?f<2:f<3;(u||h||b&&g)&&(i.value=!0)}function d(f){l.value=f,p(f),t("update:modelValue",f)}return(f,u)=>(e.openBlock(),e.createElementBlock("div",v1,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(c.value),{"model-value":l.value,label:n.label,length:s.value,readonly:n.readonly||m.value,"item-labels":n.itemLabels||void 0,"onUpdate:modelValue":d},{label:e.withCtx(()=>[e.renderSlot(f.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)])]),_:3},8,["model-value","label","length","readonly","item-labels"])),m.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[n.hideAlert?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ua,{key:0,class:e.normalizeClass([{"mb-4":i.value},"mt-4"]),outlined:"",type:r.value.SUCCESS},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(L1).thanks),1)]),_:1},8,["class","type"])),i.value?e.renderSlot(f.$slots,"default",{key:1}):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]))}}),E1={btn:{height:"auto",minHeight:"40px",activeClass:"text-white",class:"py-2 d-flex align-items-center"},icon:{class:"text-white flex-shrink-0 ml-1"}},I1={class:"text-body-1"},_1=_(e.defineComponent({__name:"SelectBtnField",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},label:{default:void 0},multiple:{type:Boolean,default:!1},inline:{type:Boolean,default:!1},hint:{default:void 0},error:{type:Boolean,default:!1},errorMessages:{default:void 0},readonly:{type:Boolean,default:!1}},emits:["update:modelValue","update:error","update:error-messages"],setup(o,{emit:a}){const n=o,t=K(E1,n),r=a,l=e.ref(Rt),i=e.ref(null),c=e.ref(j.useTheme().current.value.dark);e.watch(()=>n.modelValue,u=>{if(u===null&&n.multiple){i.value=[];return}i.value=u},{immediate:!0,deep:!0});const s=e.computed(()=>n.items.filter(u=>u.value!==null&&u.value!==void 0));function m(u){return n.multiple?Array.isArray(i.value)&&i.value.includes(u):i.value===u}function p(u){return{visibility:m(u.value)?"visible":"hidden"}}function d(u){if(n.multiple){const h=i.value,b=s.value.some(g=>g.unique&&h.includes(g.value));return u.unique||b?[u.value]:h.includes(u.value)?h.filter(g=>g!==u.value):[...h,u.value]}return i.value===u.value?null:u.value}function f(u){i.value=d(u),r("update:error",!1),r("update:error-messages",void 0),r("update:modelValue",i.value)}return(u,h)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([{"form-input":!u.inline},"select-btn-field"])},[e.createVNode(ln.VBtnToggle,e.mergeProps(e.unref(t).btnToggle,{tag:"ul","model-value":i.value,multiple:u.multiple,"aria-label":u.label,class:[{"d-flex flex-column":!u.inline},"select-btn-field-toggle d-flex flex-wrap text-primary"]}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,(b,g)=>(e.openBlock(),e.createElementBlock("li",{key:`${g} + ${b.value}`,class:"select-list-item"},[e.createVNode(q.VBtn,e.mergeProps({ref_for:!0},e.unref(t).btn,{"aria-expanded":!0,value:b.value,disabled:u.readonly,variant:m(b.value)?"flat":"outlined",elevation:0,color:u.error?"error":"primary",class:{"text-error":u.error&&!m(b.value),"justify-start":!m(b.value),"justify-space-between":m(b.value)},label:m(b.value)?"Sélectionné":"",onClick:V=>f(b)}),{default:e.withCtx(()=>[e.createElementVNode("span",I1,e.toDisplayString(b.text),1),e.createVNode($.VIcon,e.mergeProps({ref_for:!0},e.unref(t).icon,{style:p(b),role:"img","aria-hidden":!m(b.value),"aria-label":"Sélectionné"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.value),1)]),_:2},1040,["style","aria-hidden"])]),_:2},1040,["value","disabled","variant","color","class","label","onClick"])]))),128))]),_:1},16,["model-value","multiple","aria-label","class"]),u.errorMessages?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(u.errorMessages,(b,g)=>(e.openBlock(),e.createElementBlock("p",{key:g,class:e.normalizeClass([c.value?"theme--dark":"theme--light","v-messages text-error px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(b),3))),128)):u.hint?(e.openBlock(),e.createElementBlock("p",{key:1,class:e.normalizeClass([c.value?"theme--dark":"theme--light","v-messages px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(u.hint),3)):e.createCommentVNode("",!0)],2))}}),[["__scopeId","data-v-86fce8e6"]]),T1={label:"Aller au contenu principal"},A1={class:"vd-skip-link-container"},$1=["href"],D1=e.defineComponent({__name:"SkipLink",props:{label:{default:T1.label},target:{default:"#main"}},setup(o){const a=e.ref(null);return e.onMounted(()=>{var i,c;const n=e.getCurrentInstance();if(!n)return;const t=(i=n==null?void 0:n.appContext.app)==null?void 0:i.$nuxt;let r;t&&t.$router&&(r=t.$router);const l=(c=n.appContext.app.config.globalProperties)==null?void 0:c.$router;l&&(r=l),r&&r.afterEach&&r.afterEach((s,m,p)=>{p||s.path!==m.path&&e.nextTick(()=>{var d;(d=a.value)==null||d.focus()})})}),(n,t)=>(e.openBlock(),e.createElementBlock("div",A1,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:a,tabindex:"-1"},null,512),e.createElementVNode("a",{href:n.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(n.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)],8,$1)]))}}),Z1=_(D1,[["__scopeId","data-v-aa139979"]]),P1={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},R1={backBtnText:"Retour"},z1={class:"vd-sub-header-content d-flex justify-space-between"},O1={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},F1={key:1,class:"text-h5 font-weight-bold"},H1={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},U1=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:R1.backBtnText},titleText:{default:void 0},subTitleText:{default:void 0},dataListGroupItems:{default:void 0},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item","back"],setup(o,{emit:a}){const n=o,t=K(P1,n),{widthStyles:r}=Be(n),l=e.ref(xn),i=a;function c(s){i("click:list-item",s)}return(s,m)=>(e.openBlock(),e.createBlock(ye.VSheet,e.mergeProps(e.unref(t).sheet,{style:e.unref(r),class:"vd-sub-header white--text py-6 px-8"}),{default:e.withCtx(()=>[e.renderSlot(s.$slots,"back-btn",{},()=>[s.hideBackBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Le.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[s.loading?(e.openBlock(),e.createBlock(rn.VSkeletonLoader,{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(q.VBtn,e.mergeProps({key:1},e.unref(t).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:m[0]||(m[0]=p=>s.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(s.$slots,"back-btn-icon",{},()=>[e.createVNode($.VIcon,{class:"mr-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.value),1)]),_:1})],!0),e.createTextVNode(" "+e.toDisplayString(s.backBtnText),1)]),_:3},16))]),_:3}))],!0),e.createElementVNode("div",z1,[e.createElementVNode("div",O1,[e.renderSlot(s.$slots,"title",{},()=>[e.createVNode(Le.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[s.loading?(e.openBlock(),e.createBlock(we,{key:0,width:"300",height:"2rem",color:"secondary"})):s.titleText?(e.openBlock(),e.createElementBlock("h2",F1,e.toDisplayString(s.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(s.$slots,"sub-title",{},()=>[s.subTitleText?(e.openBlock(),e.createBlock(Le.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[s.loading?(e.openBlock(),e.createBlock(we,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",H1,e.toDisplayString(s.subTitleText),1))]),_:1})):e.createCommentVNode("",!0)],!0),e.renderSlot(s.$slots,"additional-informations",{},void 0,!0)]),e.renderSlot(s.$slots,"right-content",{},()=>[s.dataListGroupItems?(e.openBlock(),e.createBlock(Qt,{key:0,items:s.dataListGroupItems,loading:s.loading,"render-html-value":s.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"]))}}),q1=_(U1,[["__scopeId","data-v-69f0b82b"]]),W1={fileUpload:{class:"mt-6"},dialog:{persistent:!0,width:"550"},card:{class:"pa-4"},select:{variant:"outlined",validateOnBlur:!0,label:"Nature du fichier"},layout:{wrap:!0,class:"mt-2"},cancelBtn:{text:!0,class:"mr-4",color:"accent"},confirmBtn:{color:"accent"}},K1={title:o=>`Document${o?"s":""} à nous transmettre`,importTitle:"Importer des fichiers",modalTitle:"Fichier transmis",cancelBtn:"Retour",confirmBtn:"Confirmer"};function Y1(o){const a=e.computed(()=>o.value.map(t=>({value:t.id,text:t.title}))),n=e.ref();return{selectItems:a,selectedItem:n}}function G1(o,a){const n=e.ref([]);function t(p){const d=n.value.findIndex(f=>f===p);d!==-1&&n.value.splice(d,1)}function r(p){return o.value.find(d=>d.id===p)}function l(p){const d=o.value.findIndex(f=>f.id===p.id);o.value.splice(d,1)}function i(p,d,f="success"){d.file=p,d.fileName=p.name,d.state=f}function c(p,d,f="success"){const u=r(d);if(u)i(p,u,f);else{const h=a.value.findIndex(b=>b.id===d);o.value.push({id:a.value[h].id,title:a.value[h].title,state:f,optional:!!a.value[h].optional,showPreviewBtn:!!a.value[h].showPreviewBtn,fileName:p.name,file:p}),t(d)}}function s(p){const d=r(p);d&&l(d),n.value.push(p)}const m=e.computed(()=>a.value.map(p=>{const d=r(p.id),f=n.value.includes(p.id),u=p.state??(f?"error":"initial");return{...p,state:u,...d}}));return{addOrReplaceFile:c,replaceFile:i,resetFile:l,setItemOnError:s,filledUploadList:m}}const j1={class:"text-h6 mb-2"},J1=e.defineComponent({__name:"UploadWorkflow",props:e.mergeModels({maxWidth:{},minWidth:{},width:{},vuetifyOptions:{},uploadList:{},sectionTitle:{default:void 0},showFilePreview:{type:Boolean,default:!1},locales:{default:()=>K1}},{modelValue:{type:Array,default:e.reactive([])},modelModifiers:{}}),emits:e.mergeModels(["error","update:modelValue"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=a,r=e.useModel(o,"modelValue");e.watch(r,v=>{t("update:modelValue",v)},{deep:!0});const{widthStyles:l}=Be(n),i=K(W1,n),c=e.ref(),{selectItems:s,selectedItem:m}=Y1(e.toRef(n,"uploadList")),p=e.computed(()=>n.sectionTitle??n.locales.title(!!n.uploadList.length)),{addOrReplaceFile:d,resetFile:f,setItemOnError:u,filledUploadList:h}=G1(r,e.toRef(n,"uploadList"));let b;function g(v){b=v.id,c.value.fileInput.click()}function V(v){I.value=!0,M.value=v.file}const k=e.ref([]),w=e.computed(()=>r.value.length<n.uploadList.length||n.uploadList.find(v=>v.state==="error")!==void 0);function B(v){const D=b??(n.uploadList.length===1?n.uploadList[0].id:void 0);if(b=void 0,n.showFilePreview||D===void 0){T.value=!0,m.value=D;return}d(v[0],D)}function L(v){t("error",v),b&&(u(b),b=void 0)}const T=e.ref(!1);function A(){m.value&&(d(k.value[0],m.value),T.value=!1,m.value=void 0)}const M=e.ref(),I=e.ref(!1);return(v,D)=>(e.openBlock(),e.createElementBlock("div",{style:e.normalizeStyle(e.unref(l)),class:"sy-upload-workflow white"},[e.renderSlot(v.$slots,"title",{},()=>[e.createElementVNode("h4",j1,e.toDisplayString(p.value),1)],!0),e.createVNode(na,e.mergeProps(e.unref(i).fileList,{"upload-list":e.unref(h),onUpload:g,onRetry:g,onDelete:e.unref(f),onPreview:V}),null,16,["upload-list","onDelete"]),e.createVNode(e.Transition,null,{default:e.withCtx(()=>[w.value?(e.openBlock(),e.createBlock(la,e.mergeProps({key:0,ref_key:"fileUpload",ref:c},e.unref(i).fileUpload,{modelValue:k.value,"onUpdate:modelValue":[D[0]||(D[0]=Z=>k.value=Z),B],onError:L}),null,16,["modelValue"])):e.createCommentVNode("",!0)]),_:1}),e.createVNode(gt,e.mergeProps({modelValue:T.value,"onUpdate:modelValue":D[2]||(D[2]=Z=>T.value=Z)},e.unref(i).dialog,{onCancel:D[3]||(D[3]=Z=>T.value=!1),onConfirm:A}),{title:e.withCtx(()=>[e.renderSlot(v.$slots,"modal-title",{},()=>[e.createTextVNode(e.toDisplayString(v.locales.modalTitle),1)],!0)]),default:e.withCtx(()=>[e.renderSlot(v.$slots,"modal-description",{},void 0,!0),(e.openBlock(),e.createBlock(_t.VForm,e.mergeProps({key:0,ref:"form"},e.unref(i).form,{class:"mb-2"}),{default:e.withCtx(()=>[e.createVNode(sn.VSelect,e.mergeProps({modelValue:e.unref(m),"onUpdate:modelValue":D[1]||(D[1]=Z=>e.isRef(m)?m.value=Z:null)},e.unref(i).select,{items:e.unref(s),"item-title":"text","item-value":"value",rules:[e.unref(Oe)],color:"primary"}),null,16,["modelValue","items","rules"])]),_:1},16)),v.showFilePreview?(e.openBlock(),e.createBlock(kt,{key:1,options:e.unref(i).filePreview,file:k.value[0]},null,8,["options","file"])):e.createCommentVNode("",!0)]),_:3},16,["modelValue"]),e.createVNode(gt,e.mergeProps({modelValue:I.value,"onUpdate:modelValue":D[4]||(D[4]=Z=>I.value=Z)},e.unref(i).previewDialog,{"hide-actions":""}),{default:e.withCtx(()=>[e.renderSlot(v.$slots,"preview-description",{},void 0,!0),e.createVNode(kt,{options:e.unref(i).filePreview,file:M.value},null,8,["options","file"])]),_:3},16,["modelValue"])],4))}}),X1=_(J1,[["__scopeId","data-v-c4e15169"]]),Q1={menu:{offsetY:!0,zIndex:4,minWidth:"198px",maxWidth:"auto",nudgeRight:0},btn:{variant:"text",height:"auto"},icon:{color:"secondary"},logoutListItem:{class:"text-primary",minWidth:"198px"},logoutIcon:{color:"primary",class:"mr-4"}},ec={class:"d-flex"},tc=_(e.defineComponent({__name:"UserMenuBtn",props:e.mergeModels({vuetifyOptions:{},menuItems:{default:()=>[]},additionalInformation:{default:"Information supplémentaire"},fullName:{default:"Prénom Nom"},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},hideUserIcon:{type:Boolean,default:!1}},{modelValue:{default:null},modelModifiers:{}}),emits:e.mergeModels(["logout"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),{smAndDown:t}=j.useDisplay(),r=K(Q1,a),l=e.computed(()=>a.isMobileView||t.value);return(i,c)=>(e.openBlock(),e.createBlock(Gt,{modelValue:n.value,"onUpdate:modelValue":c[1]||(c[1]=s=>n.value=s),"hide-icon":i.hideUserIcon,"icon-only":l.value,"is-mobile-view":l.value,"menu-items":i.menuItems,options:e.unref(r),"primary-info":i.fullName,"secondary-info":i.additionalInformation,class:"user-menu-btn"},{"append-icon":e.withCtx(()=>[i.hideUserIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($.VIcon,e.mergeProps({key:0,size:l.value?"x-large":"default",class:"vd-user-icon mr-0 pa-2"},e.unref(r).icon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(cn)),1)]),_:1},16,["size"]))]),"footer-list-item":e.withCtx(()=>[i.hideLogoutBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(G.VListItem,e.mergeProps({key:0,class:"logout"},e.unref(r).logoutListItem,{onClick:c[0]||(c[0]=s=>i.$emit("logout"))}),{default:e.withCtx(()=>[e.createElementVNode("div",ec,[e.createVNode($.VIcon,e.mergeProps({icon:e.unref(In),class:"mr-4"},e.unref(r).logoutIcon),null,16,["icon"]),e.createVNode(G.VListItemTitle,null,{default:e.withCtx(()=>c[2]||(c[2]=[e.createTextVNode(" Logout ")])),_:1})])]),_:1},16))]),_:1},8,["modelValue","hide-icon","icon-only","is-mobile-view","menu-items","options","primary-info","secondary-info"]))}}),[["__scopeId","data-v-eae274b3"]]);C.BackBtn=Un,C.BackToTopBtn=so,C.ChipList=ut,C.CollapsibleList=wo,C.ContextualMenu=No,C.CookieBanner=Uo,C.CookiesInformation=Kt,C.CookiesSelection=Yt,C.CookiesTable=Wt,C.CopyBtn=Go,C.DataList=Xt,C.DataListGroup=Qt,C.DataListItem=Jt,C.DatePicker=st,C.DialogBox=gt,C.DownloadBtn=Vl,C.EMAIL_REGEXP=Dt,C.ErrorPage=yt,C.ExternalLinks=_l,C.FileList=na,C.FilePreview=kt,C.FileUpload=la,C.FilterInline=ur,C.FilterSideBar=yr,C.FooterBar=Dr,C.FranceConnectBtn=Fr,C.HeaderBar=ha,C.HeaderBurgerMenu=ka,C.HeaderLoading=we,C.HeaderLogo=fa,C.HeaderMenuBtn=Ct,C.HeaderMenuItem=Va,C.HeaderMenuSection=wa,C.HeaderNavigationBar=_i,C.HeaderSubMenu=Ni,C.HeaderToolbar=zi,C.KEY_LENGTH=ps,C.LangBtn=Ki,C.Logo=wt,C.LogoBrandSection=Qi,C.MaintenancePage=as,C.NUMBER_LENGTH=us,C.NirField=ys,C.NotFoundPage=Bs,C.NotificationBar=Ms,C.NotificationService=Fn,C.PageContainer=ea,C.PaginatedTable=Es,C.PasswordField=_s,C.PeriodField=Ds,C.PhoneField=Os,C.RangeField=o1,C.RatingPicker=x1,C.SelectBtnField=_1,C.SkipLink=Z1,C.SocialMediaLinks=da,C.SubHeader=q1,C.SyAlert=Ua,C.SyBtnSelect=Gt,C.SyInputSelect=jt,C.SySelect=ft,C.SyTextField=ue,C.UploadWorkflow=X1,C.UserMenuBtn=tc,C.checkNIR=Ia,C.computeNIRKey=_a,C.isNIRKeyValid=Ta,C.useFieldValidation=ve,C.useNotificationService=ct,C.useWidthable=Be,Object.defineProperty(C,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(B,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/lib/components/VTooltip/index.mjs"),require("vuetify/components"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify"),require("vuetify/directives"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VTable/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VRadio/index.mjs"),require("vuetify/lib/components/VRadioGroup/index.mjs"),require("vuetify/lib/components/VCard/index.mjs"),require("vuetify/lib/components/VForm/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VDialog/index.mjs"),require("vuetify/lib/components/VProgressLinear/index.mjs"),require("vuetify/lib/components/VBadge/index.mjs"),require("vuetify/lib/components/VNavigationDrawer/index.mjs"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs"),require("vuetify/lib/components/VDataTable/index.mjs"),require("vuetify/lib/components/VRating/index.mjs"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtnToggle/index.mjs"),require("vuetify/lib/components/VSkeletonLoader/index.mjs"),require("vuetify/lib/components/VToolbar/index.mjs"),require("vuetify/lib/components/VSelect/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/lib/components/VTooltip/index.mjs","vuetify/components","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify","vuetify/directives","vuetify/lib/components/transitions/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VTable/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VRadio/index.mjs","vuetify/lib/components/VRadioGroup/index.mjs","vuetify/lib/components/VCard/index.mjs","vuetify/lib/components/VForm/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VDialog/index.mjs","vuetify/lib/components/VProgressLinear/index.mjs","vuetify/lib/components/VBadge/index.mjs","vuetify/lib/components/VNavigationDrawer/index.mjs","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VSnackbar/index.mjs","vuetify/lib/components/VDataTable/index.mjs","vuetify/lib/components/VRating/index.mjs","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtnToggle/index.mjs","vuetify/lib/components/VSkeletonLoader/index.mjs","vuetify/lib/components/VToolbar/index.mjs","vuetify/lib/components/VSelect/index.mjs"],e):(B=typeof globalThis<"u"?globalThis:B||self,e(B.DesignSystemV3={},B.Vue,B.VDivider,B.VIcon,B.VTextField,B.VTooltip,B.components,B.VMenu,B.VBtn,B.Vuetify,B.vuetifyDirectives,B.transitions,B.VChip,B.VExpansionPanel,B.VTable,B.VGrid,B.VRadio,B.VRadioGroup,B.VCard,B.VForm,B.VSheet,B.VList,B.VInput,B.VSkeletonLoader,B.VDialog,B.VProgressLinear,B.VBadge,B.VNavigationDrawer,B.VFooter,B.VTabs,B.VSnackbar,B.VDataTable,B.VRating,B.VAlert,B.VBtnToggle,B.VSkeletonLoader,B.VToolbar,B.VSelect))})(this,function(B,e,de,O,Ze,qt,gn,Ce,U,ae,ut,Pe,mt,ue,yn,le,Yt,bn,je,Wt,Me,Q,kn,Vn,wn,Bn,Kt,Cn,Mn,Gt,Nn,jt,pt,Sn,Ln,vn,xn,En){"use strict";var p2=Object.defineProperty;var f2=(B,e,de)=>e in B?p2(B,e,{enumerable:!0,configurable:!0,writable:!0,value:de}):B[e]=de;var Ae=(B,e,de)=>f2(B,typeof e!="symbol"?e+"":e,de);const Jt=/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;function ft(){const o=(l,r)=>r?l.replace(/\s/g,"").length:l.length,a=(l,r="DD/MM/YYYY")=>{if(!l)return null;if(l instanceof Date)return l;const s=l.split(/[-/.]/),i=r.split(/[-/.]/);if(s.length!==i.length)return null;let c=1,d=0,p=1970;for(let f=0;f<i.length;f++){const m=parseInt(s[f],10);if(isNaN(m))return null;switch(i[f].toUpperCase()){case"DD":c=m;break;case"MM":d=m-1;break;case"YY":p=m+2e3;break;case"YYYY":p=m;break}}if(d<0||d>11||c<1||c>31||p<1900||p>2100)return null;const u=new Date(p,d,c);return u.getFullYear()!==p||u.getMonth()!==d||u.getDate()!==c?null:u},n=(l,r={})=>s=>{var p;if(l!=="required"&&typeof s=="string"&&s.trim()==="")return{};const i=r.fieldIdentifier?`${r.fieldIdentifier}`:r.fieldName||"ce champ",c={success:r.successMessage||"Le champ est valide.",error:r.message||`Validation pour ${i}.`,warning:r.warningMessage||`Attention : ${i} peut contenir une erreur.`},d=(u,f)=>u?{success:c.success}:r.isWarning?{warning:f||c.warning}:{error:f||c.error};switch(l){case"required":return d(typeof s=="string"&&s.trim()!==""||s instanceof Date||typeof s=="object"&&s!==null,r.message||r.warningMessage||`Vous devez renseigner ${i}.`);case"min":return d(typeof s=="number"&&s>=(r.value??0),r.message||r.warningMessage||`La valeur de ${i} doit être supérieure ou égale à ${r.value}.`);case"max":return d(typeof s=="number"&&s<=(r.value??1/0),r.message||r.warningMessage||`La valeur de ${i} doit être inférieure ou égale à ${r.value}.`);case"minLength":return d(typeof s=="string"&&o(s,r.ignoreSpace)>=(r.length??0),r.message||r.warningMessage||`${i} doit contenir au moins ${r.length} caractères.`);case"maxLength":return d(typeof s=="string"&&o(s,r.ignoreSpace)<=(r.length??1/0),r.message||r.warningMessage||`${i} ne doit pas dépasser ${r.length} caractères.`);case"exactLength":return d(typeof s=="string"&&o(s,r.ignoreSpace)===(r.length??0),r.message||r.warningMessage||`${i} doit contenir exactement ${r.length} caractères.`);case"email":return d(typeof s=="string"&&Jt.test(s),r.message||r.warningMessage||`${i} doit être un email valide.`);case"matchPattern":return d(typeof s=="string"&&!!r.pattern&&r.pattern.test(s),r.message||r.warningMessage||`Le format de ${i} est invalide.`);case"notWeekend":{const u=new Date(s);return d(!(u.getDay()===0||u.getDay()===6),r.message||r.warningMessage||`${i} ne peut pas être un jour de weekend.`)}case"notBeforeToday":{const u=new Date(s);return d(u>=new Date,r.message||r.warningMessage||`${i} ne peut pas être antérieur à aujourd'hui.`)}case"notAfterToday":{const u=new Date(s);return d(u<=new Date,r.message||r.warningMessage||`${i} ne peut pas être postérieur à aujourd'hui.`)}case"notBeforeDate":{if(!r.date)return{error:"Configuration de la règle invalide"};const u=a(s);if(!u)return{error:"Date invalide"};if(typeof r.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(r.date);return f?d(u>=f,r.message||r.warningMessage||`${i} ne peut pas être avant le ${r.date}.`):{error:"Date de référence invalide"}}case"notAfterDate":{if(!r.date)return{error:"Configuration de la règle invalide"};const u=a(s);if(!u)return{error:"Date invalide"};if(typeof r.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(r.date);return f?d(u<=f,r.message||r.warningMessage||`${i} ne peut pas être après le ${r.date}.`):{error:"Date de référence invalide"}}case"dateExact":{if(!r.date)return{error:"Configuration de la règle invalide"};const u=a(s);if(!u)return{error:"Date invalide"};if(typeof r.date!="string")throw new Error("Date reference must be a string in DD/MM/YYYY format");const f=a(r.date);return f?d(u.getTime()===f.getTime(),r.message||r.warningMessage||`${i} doit être exactement le ${r.date}.`):{error:"Date de référence invalide"}}case"custom":{const u=(p=r.validate)==null?void 0:p.call(r,s);return u===!0?{success:c.success}:r.isWarning?{warning:typeof u=="string"?u:c.warning}:{error:typeof u=="string"?u:c.error}}default:return{error:`La règle spécifiée pour ${i} n'existe pas.`}}};return{generateRules:l=>l.map(r=>n(r.type,r.options)),parseDate:a}}function ie(o={showSuccessMessages:!0}){const a=e.ref([]),n=e.ref([]),t=e.ref([]),{generateRules:l}=ft(),r=e.computed(()=>a.value.length>0),s=e.computed(()=>n.value.length>0),i=e.computed(()=>t.value.length>0&&!r.value&&!s.value),c=()=>{a.value=[],n.value=[],t.value=[]};return{errors:a,warnings:n,successes:t,hasError:r,hasWarning:s,hasSuccess:i,validateField:(u,f=[],m=[],g=[])=>{var b;if(c(),o.disableErrorHandling)return{hasError:!1,hasWarning:!1,hasSuccess:!1,state:{errors:[],warnings:[],successes:[]}};const y=f.map(M=>({type:M.type,options:{...M.options,fieldIdentifier:o.fieldIdentifier||M.options.fieldIdentifier}})),h=l(y);let k=!1;if(h.forEach(M=>{const N=M(u);N.error&&(a.value.push(N.error),k=!0)}),!k&&u&&o.showSuccessMessages!==!1){const M=(b=f.find(N=>N.options.successMessage))==null?void 0:b.options.successMessage;if(M)t.value.push(M);else{const N=o.fieldIdentifier?`Le champ ${o.fieldIdentifier} est valide.`:"Champ valide";t.value.push(N)}}return k||l(m.map(N=>({type:N.type,options:{...N.options,isWarning:!0,fieldIdentifier:o.fieldIdentifier||N.options.fieldIdentifier}}))).forEach(N=>{const L=N(u);L.warning&&n.value.push(L.warning)}),!k&&!s.value&&l(g.map(N=>({type:N.type,options:{...N.options,isSuccess:!0,fieldIdentifier:o.fieldIdentifier||N.options.fieldIdentifier}}))).forEach(N=>{const L=N(u);L.success&&o.showSuccessMessages!==!1&&t.value.push(L.success)}),{hasError:r.value,hasWarning:s.value,hasSuccess:i.value,state:{errors:a.value,warnings:n.value,successes:t.value}}},validateOnSubmit:async()=>!r.value,clearValidation:c}}var $n="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",In="M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z",ht="M13,13H11V7H13M13,17H11V15H13M12,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",_n="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",Xt="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",gt="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",Dn="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",Tn="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",Qt="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",An="M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",ea="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",yt="M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z",ta="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",bt="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",kt="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",Vt="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",Zn="M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",Ne="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",Pn="M11 20H6.5Q4.22 20 2.61 18.43 1 16.85 1 14.58 1 12.63 2.17 11.1 3.35 9.57 5.25 9.15 5.88 6.85 7.75 5.43 9.63 4 12 4 14.93 4 16.96 6.04 19 8.07 19 11 20.73 11.2 21.86 12.5 23 13.78 23 15.5 23 17.38 21.69 18.69 20.38 20 18.5 20H13V12.85L14.6 14.4L16 13L12 9L8 13L9.4 14.4L11 12.85Z",Rn="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",Hn="M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19M8,9H16V19H8V9M15.5,4L14.5,3H9.5L8.5,4H5V6H19V4H15.5Z",On="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",Fn="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8C16.3,8 17,8.7 17,9.5M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z",zn="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M8.5,11A1.5,1.5 0 0,1 7,9.5A1.5,1.5 0 0,1 8.5,8A1.5,1.5 0 0,1 10,9.5A1.5,1.5 0 0,1 8.5,11M17,9.5A1.5,1.5 0 0,1 15.5,11A1.5,1.5 0 0,1 14,9.5A1.5,1.5 0 0,1 15.5,8A1.5,1.5 0 0,1 17,9.5M16,14V16H8V14H16Z",Un="M20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M15.5,8C16.3,8 17,8.7 17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M12,14C13.75,14 15.29,14.72 16.19,15.81L14.77,17.23C14.32,16.5 13.25,16 12,16C10.75,16 9.68,16.5 9.23,17.23L7.81,15.81C8.71,14.72 10.25,14 12,14Z",qn="M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",Yn="M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",Wn="M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9M12,4.5C17,4.5 21.27,7.61 23,12C21.27,16.39 17,19.5 12,19.5C7,19.5 2.73,16.39 1,12C2.73,7.61 7,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C15.76,17.5 19.17,15.36 20.82,12C19.17,8.64 15.76,6.5 12,6.5C8.24,6.5 4.83,8.64 3.18,12Z",Kn="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",Gn="M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z",jn="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",wt="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",Je="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",Jn="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",Xn="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",Qn="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",aa="M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z",eo="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",na="M7,10L12,15L17,10H7Z",oa="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",to="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",ao="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z",no="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",oo="M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",lo="M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 2L6.46 7.46L7.88 8.88L11 5.75V15H13V5.75L16.13 8.88L17.55 7.45L12 2Z",ro="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",so="M13.46,12L19,17.54V19H17.54L12,13.46L6.46,19H5V17.54L10.54,12L5,6.46V5H6.46L12,10.54L17.54,5H19V6.46L13.46,12Z";const io=e.defineComponent({__name:"SyTextField",props:{modelValue:{default:void 0},prependIcon:{default:void 0},appendIcon:{default:void 0},prependInnerIcon:{default:void 0},appendInnerIcon:{default:void 0},prependTooltip:{default:void 0},appendTooltip:{default:void 0},tooltipLocation:{default:"top"},variantStyle:{default:"outlined"},color:{default:"primary"},isClearable:{type:Boolean,default:!1},showDivider:{type:Boolean},label:{default:"custom label"},required:{type:Boolean},errorMessages:{default:null},warningMessages:{default:null},successMessages:{default:null},isReadOnly:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},baseColor:{default:void 0},bgColor:{default:void 0},centerAffix:{type:Boolean,default:void 0},counter:{type:[String,Number,Boolean],default:!1},counterValue:{type:[Number,Function],default:void 0},density:{default:"default"},direction:{default:"horizontal"},isDirty:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},isOnError:{type:Boolean,default:!1},isFlat:{type:Boolean,default:!1},isFocused:{type:Boolean,default:!1},areDetailsHidden:{type:[Boolean,String],default:!1},areSpinButtonsHidden:{type:Boolean,default:!1},hint:{default:void 0},id:{default:void 0},loading:{type:[String,Boolean],default:!1},maxErrors:{default:void 0},maxWidth:{default:void 0},messages:{default:void 0},minWidth:{default:void 0},name:{default:void 0},displayPersistentClear:{type:Boolean,default:!1},displayPersistentCounter:{type:Boolean,default:!1},displayPersistentHint:{type:Boolean,default:!1},displayPersistentPlaceholder:{type:Boolean,default:!1},placeholder:{default:void 0},prefix:{default:void 0},isReversed:{type:Boolean,default:!1},role:{default:void 0},rounded:{type:[String,Number,Boolean],default:void 0},isOnSingleLine:{type:Boolean,default:!1},suffix:{default:void 0},theme:{default:void 0},isTiled:{type:Boolean,default:!1},type:{default:"text"},width:{default:void 0},displayAsterisk:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},customSuccessRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},isValidateOnBlur:{type:Boolean,default:!0},disableErrorHandling:{type:Boolean,default:!1}},emits:["update:modelValue","clear","prepend-icon-click","append-icon-click"],setup(o,{expose:a,emit:n}){const t=o,l={info:Je,success:ea,warning:gt,error:wt,close:Ne,calendar:An},r=n,s=e.computed({get(){return t.modelValue},set(C){r("update:modelValue",C)}}),i=e.ref(!1),c=ie({customRules:t.customRules,warningRules:t.customWarningRules,successRules:t.customSuccessRules,showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.label,disableErrorHandling:t.disableErrorHandling});e.watch(()=>t.errorMessages,C=>{c.errors.value=C||[]},{immediate:!0}),e.watch(()=>t.warningMessages,C=>{c.warnings.value=C||[]},{immediate:!0}),e.watch(()=>t.successMessages,C=>{c.successes.value=C||[]},{immediate:!0});const d=e.computed(()=>t.required?[{type:"required",options:{message:`Le champ ${t.label||"ce champ"} est requis.`,fieldIdentifier:t.label}}]:[]),p=C=>!C&&!t.required?(c.clearValidation(),!0):!c.validateField(C,[...d.value,...t.customRules],t.customWarningRules).hasError,u=()=>(i.value=!0,p(s.value??null)),f=()=>{i.value=!0,p(s.value??null),r("update:modelValue",s.value)};e.watch(s,C=>{t.isValidateOnBlur||p(C??null),t.isClearable&&C===""&&r("clear")});const m=e.computed(()=>c.hasError.value),g=e.computed(()=>c.hasWarning.value),y=e.computed(()=>c.hasSuccess.value),h=e.computed(()=>c.errors.value),k=e.computed(()=>c.warnings.value),b=e.computed(()=>c.successes.value),M=e.computed(()=>t.appendInnerIcon==="error"?"error":t.appendInnerIcon==="success"?"success":"rgba(0, 0, 0, 1)"),N=()=>{r("prepend-icon-click")},L=()=>{r("append-icon-click")},S=e.computed(()=>m.value?l.error:g.value?l.warning:y.value?l.success:null),D=e.computed(()=>t.displayAsterisk&&t.required),$=e.computed(()=>D.value?`${t.label} *`:t.label),v={thickness:2,length:"25px",color:"primary",opacity:"1"};return a({validation:c,validateOnSubmit:u,checkErrorOnBlur:f}),(C,E)=>(e.openBlock(),e.createBlock(Ze.VTextField,{id:t.id,modelValue:s.value,"onUpdate:modelValue":E[0]||(E[0]=H=>s.value=H),active:t.isActive,title:t.label,"aria-label":t.label,"base-color":t.baseColor,"bg-color":t.bgColor,"center-affix":t.centerAffix,"clear-icon":l.close,clearable:t.isClearable,color:t.color,"counter-value":t.counterValue,density:t.density,direction:t.direction,dirty:t.isDirty,disabled:t.isDisabled,"display-asterisk":D.value,error:m.value,"error-messages":h.value,flat:t.isFlat,focused:t.isFocused,"hide-details":t.areDetailsHidden,"hide-spin-buttons":t.areSpinButtonsHidden,hint:t.hint,label:$.value,loading:t.loading,"max-errors":t.maxErrors,"max-width":t.maxWidth,messages:m.value?h.value:g.value?k.value:y.value&&t.showSuccessMessages?b.value:[],"min-width":t.minWidth,name:t.name,"no-icon":t.noIcon,"persistent-clear":t.displayPersistentClear,"persistent-counter":t.displayPersistentCounter,"persistent-hint":t.displayPersistentHint,"persistent-placeholder":C.displayPersistentPlaceholder,placeholder:t.placeholder,prefix:t.prefix,readonly:t.isReadOnly,reverse:t.isReversed,role:t.role,rounded:t.rounded,"single-line":t.isOnSingleLine,suffix:t.suffix,theme:t.theme,tile:t.isTiled,type:t.type,variant:t.variantStyle,width:t.width,class:e.normalizeClass({"error-field":m.value,"warning-field":g.value,"success-field":y.value,"basic-field":!m.value&&!g.value&&!y.value}),onBlur:f},e.createSlots({"prepend-inner":e.withCtx(()=>[e.renderSlot(C.$slots,"prepend-inner",{},()=>[t.prependInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock(O.VIcon,{key:0,"aria-label":t.label?`${t.label} - bouton ${t.prependInnerIcon}`:`Bouton ${t.prependInnerIcon}`,icon:l[t.prependInnerIcon]},null,8,["aria-label","icon"])):e.createCommentVNode("",!0)],!0),t.showDivider?(e.openBlock(),e.createBlock(de.VDivider,e.mergeProps({key:0,class:"mt-4 pa-1"},v,{vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(C.$slots,"append-inner",{},()=>[S.value&&!t.appendInnerIcon?(e.openBlock(),e.createBlock(O.VIcon,{key:0,icon:S.value},null,8,["icon"])):e.createCommentVNode("",!0),t.appendInnerIcon&&!t.noIcon?(e.openBlock(),e.createBlock(O.VIcon,{key:1,color:M.value},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l[t.appendInnerIcon]),1)]),_:1},8,["color"])):e.createCommentVNode("",!0)],!0)]),details:e.withCtx(()=>[e.renderSlot(C.$slots,"details",{},void 0,!0)]),_:2},[t.prependIcon||t.prependTooltip?{name:"prepend",fn:e.withCtx(()=>[e.renderSlot(C.$slots,"prepend",{},()=>[t.prependTooltip?(e.openBlock(),e.createBlock(qt.VTooltip,{key:0,text:t.prependTooltip,location:t.tooltipLocation},{activator:e.withCtx(({props:H})=>[e.createVNode(O.VIcon,e.mergeProps(H,{"aria-label":t.label?`${t.label} - info`:"Info",color:M.value,icon:l.info,role:"button"}),null,16,["aria-label","color","icon"])]),_:1},8,["text","location"])):t.prependIcon?(e.openBlock(),e.createBlock(O.VIcon,{key:1,"aria-label":t.label?`${t.label} - bouton ${t.prependIcon}`:`Bouton ${t.prependIcon}`,color:M.value,icon:l[t.prependIcon],role:"button",onClick:N},null,8,["aria-label","color","icon"])):e.createCommentVNode("",!0)],!0)]),key:"0"}:void 0,t.appendIcon||t.appendTooltip?{name:"append",fn:e.withCtx(()=>[e.renderSlot(C.$slots,"append",{},()=>[t.appendTooltip?(e.openBlock(),e.createBlock(qt.VTooltip,{key:0,text:t.appendTooltip,location:t.tooltipLocation},{activator:e.withCtx(({props:H})=>[e.createVNode(O.VIcon,e.mergeProps(H,{"aria-label":t.label?`${t.label} - info`:"Info",color:M.value,icon:l.info,role:"button"}),null,16,["aria-label","color","icon"])]),_:1},8,["text","location"])):t.appendIcon?(e.openBlock(),e.createBlock(O.VIcon,{key:1,"aria-label":t.label?`${t.label} - bouton ${t.appendIcon}`:`Bouton ${t.appendIcon}`,color:M.value,icon:l[t.appendIcon],role:"button",onClick:L},null,8,["aria-label","color","icon"])):e.createCommentVNode("",!0)],!0)]),key:"1"}:void 0]),1032,["id","modelValue","active","title","aria-label","base-color","bg-color","center-affix","clear-icon","clearable","color","counter-value","density","direction","dirty","disabled","display-asterisk","error","error-messages","flat","focused","hide-details","hide-spin-buttons","hint","label","loading","max-errors","max-width","messages","min-width","name","no-icon","persistent-clear","persistent-counter","persistent-hint","persistent-placeholder","placeholder","prefix","readonly","reverse","role","rounded","single-line","suffix","theme","tile","type","variant","width","class"]))}}),Z=(o,a)=>{const n=o.__vccOpts||o;for(const[t,l]of a)n[t]=l;return n},me=Z(io,[["__scopeId","data-v-80a89e82"]]),ce=(o,a)=>{if(!o)return null;const n=a.includes("/")?"/":a.includes("-")?"-":".",t=a.split(n),l=o.split(n);if(t.length!==l.length)return null;let r=0,s=0,i=0;if(t.forEach((d,p)=>{const u=parseInt(l[p],10);isNaN(u)||(d.includes("DD")||d.includes("D")?r=u:d.includes("MM")||d.includes("M")?s=u-1:d.includes("YYYY")?i=u:d.includes("YY")&&(i=u<50?2e3+u:1900+u))}),r<1||r>31||s<0||s>11||i<1e3||i>9999)return null;const c=new Date(i,s,r,12,0,0);return c.getFullYear()!==i||c.getMonth()!==s||c.getDate()!==r?null:c},co=(o,a)=>{if(!o)return"";const n=o.getDate().toString().padStart(2,"0"),t=(o.getMonth()+1).toString().padStart(2,"0"),l=o.getFullYear().toString(),r=l.slice(-2),s=o.getDate().toString(),i=(o.getMonth()+1).toString();return a.replace(/YYYY/g,l).replace(/YY/g,r).replace(/MM/g,t).replace(/M/g,i).replace(/DD/g,n).replace(/D/g,s)};function la(){return{parseDate:ce,formatDate:co}}const uo=Z(e.defineComponent({__name:"DateTextInput",props:{modelValue:{default:null},placeholder:{default:"Sélectionner une date"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:void 0},label:{default:void 0},required:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},isReadOnly:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},displayPrependIcon:{type:Boolean,default:!0},disableErrorHandling:{type:Boolean,default:!1},showSuccessMessages:{type:Boolean,default:!0}},emits:["update:model-value","focus","blur"],setup(o,{expose:a,emit:n}){const{parseDate:t}=la(),l=o,r=n,{errors:s,warnings:i,successes:c,hasError:d,clearValidation:p,validateField:u}=ie({showSuccessMessages:l.showSuccessMessages,fieldIdentifier:l.label||l.placeholder,disableErrorHandling:l.disableErrorHandling}),f=s,m=i,g=c,y=e.ref(""),h=e.ref(!1),k=e.ref(!1),b=(w,x)=>{const A=w.getDate().toString().padStart(2,"0"),F=(w.getMonth()+1).toString().padStart(2,"0"),q=w.getFullYear(),Y=(q%100).toString().padStart(2,"0"),G=x.includes("/")?"/":x.includes("-")?"-":".",_=[];return x.split(/[-/.]/).forEach(z=>{switch(z.toUpperCase()){case"DD":_.push(A);break;case"MM":_.push(F);break;case"YY":_.push(Y);break;case"YYYY":_.push(q.toString());break}}),_.join(G)},M=(w,x)=>{const A=l.format.includes("/")?"/":l.format.includes("-")?"-":".",F=l.format.split(/[/.-]/),q=F.findIndex(J=>J.toUpperCase().includes("D")),Y=F.findIndex(J=>J.toUpperCase().includes("M")),G=F.findIndex(J=>J.toUpperCase().includes("Y")),_=Array(3).fill("__");_[G]="____";const z=_.join(A);let W=z,X=x||0,j=w;if(w.includes(A)?j=w.split(A).map(ee=>ee.replace(/\D/g,"")).join(A):j=w.replace(/\D/g,""),j.includes(A)){const J=j.split(A),ee=Array(3).fill("__");ee[G]=(J[G]||"").padEnd(4,"_"),ee[Y]=(J[Y]||"").padEnd(2,"_"),ee[q]=(J[q]||"").padEnd(2,"_"),W=ee.join(A)}else{const J=[q,Y,G];let ee=0;for(let se=0;ee<Math.min(j.length,8);se++){const we=J[se%3],We=F[we].toUpperCase().includes("Y")?4:2,Ke=we*3;for(let Be=0;Be<We&&ee<j.length;Be++){const Ge=j[ee],Ut=Ke+Be;W=W.substring(0,Ut)+Ge+W.substring(Ut+1),ee++}}}return x!==void 0&&(X=x,z[X]===A&&X++),{formatted:W,cursorPos:X}},N=w=>w.replace(/[^\d/.-]/g,""),L=w=>{if(!w)return{isValid:!l.required||!k.value||l.disableErrorHandling,message:l.required&&k.value&&!l.disableErrorHandling?"La date est requise":""};if(!/^[\d/.-]*$/.test(w))return{isValid:l.disableErrorHandling,message:l.disableErrorHandling?"":"Format de date invalide"};let x=t(w,l.format);return!x&&l.dateFormatReturn&&(x=t(w,l.dateFormatReturn)),x?{isValid:!0,message:""}:{isValid:l.disableErrorHandling,message:l.disableErrorHandling?"":"Format de date invalide"}},S=w=>{if(p(),!w&&l.required&&k.value)return l.disableErrorHandling||s.value.push("La date est requise"),!1;if(!w&&!l.required)return!0;const x=L(w);return x.isValid?(u(w,l.customRules,l.customWarningRules,[]),!d.value):(!l.disableErrorHandling&&x.message&&s.value.push(x.message),!1)},D=e.computed(()=>m.value.length===0&&g.value.length===0&&f.value.length>0),$=e.computed(()=>f.value.length===0&&g.value.length===0&&m.value.length>0),v=e.computed(()=>f.value.length===0&&m.value.length===0&&g.value.length>0),C=e.computed(()=>{if(f.value.length>0)return"error";if(m.value.length>0)return"warning";if(g.value.length>0&&!m.value.length)return"success"}),E=w=>{w.ctrlKey||w.metaKey},H=w=>{var q;w.preventDefault();const x=(q=w.clipboardData)==null?void 0:q.getData("text");if(!x)return;const A=N(x),F=M(A).formatted;y.value=F},K=e.ref(null),P=e.ref(!1);e.watch(y,async(w,x)=>{var A;if(!(P.value||w===x))try{if(P.value=!0,!w){r("update:model-value",null),S("");return}const F=(A=K.value)==null?void 0:A.$el.querySelector("input"),q=(F==null?void 0:F.selectionStart)||0,{formatted:Y,cursorPos:G}=M(w,q);if(Y!==w&&(y.value=Y,await e.nextTick(),F==null||F.setSelectionRange(G,G)),!Y.includes("_")){if(L(Y).isValid){const W=t(Y,l.format);if(W){const X=l.dateFormatReturn?b(W,l.dateFormatReturn):Y;await e.nextTick(),r("update:model-value",X)}}S(Y)}else p()}finally{await e.nextTick(),P.value=!1}}),e.watch(()=>l.modelValue,w=>{if(P.value)return;if(!w){y.value="";return}const x=t(w,l.format);if(x){if(l.dateFormatReturn&&l.dateFormatReturn!==l.format){const A=b(x,l.dateFormatReturn);r("update:model-value",A)}y.value=b(x,l.format),S(y.value)}else y.value=w,S(w)});const T=()=>{h.value=!0,r("focus")},I=()=>{if(h.value=!1,k.value=!0,r("blur"),y.value)if(L(y.value).isValid){const x=t(y.value,l.format);if(x){const A=l.dateFormatReturn?b(x,l.dateFormatReturn):y.value;r("update:model-value",A)}}else r("update:model-value",l.modelValue);else l.required?r("update:model-value",l.modelValue):r("update:model-value",null);S(y.value||"")},R=e.ref(!1);return a({validateOnSubmit:async()=>{R.value=!0,k.value=!0;try{return S(y.value)?!d.value:!1}finally{R.value=!1}},focus:()=>{const w=document.querySelector("input");w&&w.focus()},blur:()=>{const w=document.querySelector("input");w&&w.blur()}}),e.onMounted(()=>{if(!l.modelValue)return;const w=t(l.modelValue,l.format);if(w){if(l.dateFormatReturn&&l.dateFormatReturn!==l.format){const x=b(w,l.dateFormatReturn);r("update:model-value",x)}y.value=b(w,l.format),S(y.value)}else y.value=l.modelValue,S(l.modelValue)}),(w,x)=>(e.openBlock(),e.createBlock(me,{ref_key:"inputRef",ref:K,modelValue:y.value,"onUpdate:modelValue":x[0]||(x[0]=A=>y.value=A),placeholder:w.placeholder,label:w.label,"error-messages":e.unref(f),"warning-messages":e.unref(m),"success-messages":w.showSuccessMessages?e.unref(g):[],"is-on-error":D.value,"is-disabled":w.isDisabled,"is-read-only":w.isReadOnly,"display-icon":w.displayIcon,"display-append-icon":w.displayAppendIcon,"no-icon":w.noIcon,"prepend-icon":l.displayPrependIcon&&!l.displayAppendIcon?"calendar":void 0,"append-icon":l.displayAppendIcon?"calendar":void 0,"append-inner-icon":C.value,"variant-style":w.isOutlined?"outlined":"filled",class:e.normalizeClass({"error-field":D.value,"warning-field":$.value,"success-field":v.value}),onKeydown:E,onFocus:T,onBlur:I,onPaste:H},null,8,["modelValue","placeholder","label","error-messages","warning-messages","success-messages","is-on-error","is-disabled","is-read-only","display-icon","display-append-icon","no-icon","prepend-icon","append-icon","append-inner-icon","variant-style","class"]))}}),[["__scopeId","data-v-d66a3dcb"]]),mo=(o,a,n="")=>{if(!o)return null;const t=n||a;if(Array.isArray(o)){if(o.length>=2){let r=[ce(o[0],t),ce(o[1],t)];return r.some(s=>s===null)&&n&&(r=[ce(o[0],a),ce(o[1],a)]),r.some(s=>s===null)?[]:r[0]&&r[1]&&r[0]>r[1]?[]:r.filter(s=>s!==null)}if(o.length===1){let r=ce(o[0],t);return r===null&&n&&(r=ce(o[0],a)),r===null?[]:[r]}return[]}if(typeof o=="object")return null;let l=ce(o,t);return l===null&&n&&(l=ce(o,a)),l===null?null:l};function po(){return{initializeSelectedDates:mo}}function fo(){return{updateAccessibility:async()=>{await e.nextTick();const a=document.querySelector(".v-date-picker");if(!a)return;a.setAttribute("role","application"),a.setAttribute("aria-label","Sélecteur de date"),a.querySelectorAll("button").forEach(l=>{const r=l.querySelector(".v-icon");if(!r)return;const s=r.textContent||"",i=r.className||"";i.includes("mdi-chevron-left")||s.includes("chevron-left")?l.setAttribute("aria-label","Mois précédent"):i.includes("mdi-chevron-right")||s.includes("chevron-right")?l.setAttribute("aria-label","Mois suivant"):(i.includes("mdi-chevron-down")||s.includes("chevron-down")||i.includes("mdi-menu-down")||s.includes("menu-down"))&&l.setAttribute("aria-label","Changer de vue")});let t=a.querySelector(".sr-only-instructions");if(!t){t=document.createElement("span"),t.className="sr-only-instructions",t.setAttribute("aria-live","polite");const l=t;l.style.position="absolute",l.style.width="1px",l.style.height="1px",l.style.padding="0",l.style.margin="-1px",l.style.overflow="hidden",l.style.clip="rect(0, 0, 0, 0)",l.style.whiteSpace="nowrap",l.style.border="0",t.textContent="Utilisez les flèches pour naviguer entre les dates et Entrée pour sélectionner une date",a.prepend(t)}}}}const ho={class:"mx-auto my-auto ml-5 mb-4"},Bt=Z(e.defineComponent({__name:"DatePicker",props:{modelValue:{default:void 0},placeholder:{default:"Sélectionner une date"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:""},isBirthDate:{type:Boolean,default:!1},showWeekNumber:{type:Boolean,default:!1},required:{type:Boolean,default:!1},displayRange:{type:Boolean,default:!1},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},displayPrependIcon:{type:Boolean,default:!0},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},isDisabled:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},noCalendar:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},isReadOnly:{type:Boolean,default:!1},width:{default:"100%"},disableErrorHandling:{type:Boolean,default:!1},showSuccessMessages:{type:Boolean,default:!0}},emits:["update:modelValue","closed","focus","blur"],setup(o,{expose:a,emit:n}){e.useCssVars(_=>({"4cf78114":i.width}));const{parseDate:t,formatDate:l}=la(),{initializeSelectedDates:r}=po(),{updateAccessibility:s}=fo(),i=o,c=n,d=e.ref(r(i.modelValue,i.format,i.dateFormatReturn)),p=e.ref(!1),u=ie({showSuccessMessages:i.showSuccessMessages,fieldIdentifier:"Date",customRules:i.customRules,warningRules:i.customWarningRules,disableErrorHandling:i.disableErrorHandling}),{errors:f,warnings:m,successes:g,validateField:y,clearValidation:h}=u,k=f,b=m,M=g,N=e.ref(""),L=e.ref(""),S=e.ref(!1),D=(_=!1)=>{if(i.noCalendar)return;h();const z=!i.disableErrorHandling;if((_||!S.value)&&i.required&&(!d.value||Array.isArray(d.value)&&d.value.length===0)){z&&f.value.push("La date est requise.");return}if(!d.value)return;const W=Array.isArray(d.value)?d.value:[d.value];z&&(W.forEach(X=>{y(X,i.customRules,i.customWarningRules)}),f.value=[...new Set(f.value)],m.value=[...new Set(m.value)],g.value=[...new Set(g.value)])},$=_=>{if(JSON.stringify(_)!==JSON.stringify(i.modelValue))try{S.value=!0,c("update:modelValue",_)}finally{setTimeout(()=>{S.value=!1},0)}};e.watch(d,_=>{if(D(),_!==null){$(E.value);try{S.value=!0,Array.isArray(_)?_.length>0&&(L.value=l(_[0],i.format)):L.value=l(_,i.format)}finally{setTimeout(()=>{S.value=!1},0)}}else $(null),L.value=""});const v=()=>({"dp-width":!0,"v-messages__message--success":M.value.length>0,"v-messages__message--error":k.value.length>0,"v-messages__message--warning":b.value.length>0&&k.value.length<1}),C=e.computed(()=>({"min-width":"100%"})),E=e.computed(()=>{if(!d.value)return"";const _=i.dateFormatReturn||i.format;return Array.isArray(d.value)?d.value.length>=2?[l(d.value[0],_),l(d.value[1],_)]:"":l(d.value,_)});e.watch(E,_=>{if(!_||_==="")L.value="";else if(typeof _=="string")if(i.dateFormatReturn){const z=t(_,i.dateFormatReturn);z&&(L.value=l(z,i.format))}else L.value=_},{immediate:!0}),e.watch(L,_=>{if(S.value)return;const z=t(_,i.format);if(z){const W=i.dateFormatReturn?l(z,i.dateFormatReturn):l(z,i.format);$(W);try{S.value=!0,d.value=z,N.value=l(z,i.format)}finally{setTimeout(()=>{S.value=!1},0)}}else if(_){$(_);try{S.value=!0,N.value=_}finally{setTimeout(()=>{S.value=!1},0)}}else{$(null);try{S.value=!0,N.value="",d.value=null}finally{setTimeout(()=>{S.value=!1},0)}}});const H=e.computed(()=>d.value?Array.isArray(d.value)?d.value.length>=2?`${l(d.value[0],i.format)} - ${l(d.value[d.value.length-1],i.format)}`:l(d.value[0],i.format):l(d.value,i.format):null);e.watch(H,_=>{!i.noCalendar&&_&&(N.value=_)});const K=_=>{if(Array.isArray(_)){const W=_.map(X=>X?t(X,i.format):null).filter(X=>X!==null);if(W.length===0){d.value=null;return}d.value=W;return}const z=_?t(_,i.format):null;d.value=z===null?null:z},P=_=>{!p.value||_.target.closest(".date-picker-container")||(c("closed"),D())},T=e.computed(()=>new Date().toLocaleDateString("fr-FR",{weekday:"long",month:"long",day:"numeric"}).replace(/\b\w/g,_=>_.toUpperCase()));e.onMounted(()=>{document.addEventListener("click",P),H.value&&(N.value=H.value),D()}),e.onBeforeUnmount(()=>{document.removeEventListener("click",P)});const I=e.ref(),R=()=>{var _;return i.noCalendar?(_=I.value)==null?void 0:_.validateOnSubmit():(D(!0),f.value.length===0)},V=()=>{i.isDisabled||i.isReadOnly||(p.value=!0,e.nextTick(()=>{s()}))},w=()=>{V()},x=e.ref(i.isBirthDate?"year":"month"),A=_=>{x.value=_},F=()=>{i.isBirthDate&&(x.value="months")},q=()=>{i.isBirthDate&&(x.value=void 0)};e.watch(p,_=>{!_&&i.isBirthDate&&(x.value="year")});const Y=()=>{if(!(i.noCalendar||i.disableErrorHandling))switch(!0){case k.value.length>0:return"error";case b.value.length>0:return"warning";case M.value.length>0:return"success";default:return}},G=_=>{if(!_||_===""){d.value=null,L.value="",N.value="",D();return}if(d.value=r(_,i.format,i.dateFormatReturn),d.value){const z=Array.isArray(d.value)?d.value[0]:d.value;L.value=l(z,i.format),N.value=H.value||""}D()};return e.watch(()=>i.modelValue,_=>{if(S.value){i.displayRange?Array.isArray(_)&&_.length>=2&&(p.value=!1,c("closed")):(p.value=!1,c("closed"));return}try{S.value=!0,G(_)}finally{setTimeout(()=>{S.value=!1},0)}},{immediate:!0}),a({validateOnSubmit:R,isDatePickerVisible:p,selectedDates:d,errorMessages:k,handleClickOutside:P,initializeSelectedDates:r,updateAccessibility:s,openDatePicker:w}),(_,z)=>(e.openBlock(),e.createElementBlock("div",{class:"date-picker-container",style:e.normalizeStyle(C.value)},[i.noCalendar?(e.openBlock(),e.createBlock(uo,{key:0,ref_key:"dateTextInputRef",ref:I,modelValue:L.value,"onUpdate:modelValue":z[0]||(z[0]=W=>L.value=W),class:e.normalizeClass([v(),"label-hidden-on-focus"]),"date-format-return":i.dateFormatReturn,format:i.format,label:i.placeholder,placeholder:i.placeholder,required:i.required,"custom-rules":i.customRules,"custom-warning-rules":i.customWarningRules,"is-disabled":i.isDisabled,"is-read-only":i.isReadOnly,"is-outlined":i.isOutlined,"display-icon":i.displayIcon,"display-append-icon":i.displayAppendIcon,"display-prepend-icon":i.displayPrependIcon,"no-icon":i.noIcon,"disable-error-handling":i.disableErrorHandling,"show-success-messages":i.showSuccessMessages,title:"Date text input",onFocus:z[1]||(z[1]=W=>c("focus")),onBlur:z[2]||(z[2]=W=>c("blur"))},null,8,["modelValue","class","date-format-return","format","label","placeholder","required","custom-rules","custom-warning-rules","is-disabled","is-read-only","is-outlined","display-icon","display-append-icon","display-prepend-icon","no-icon","disable-error-handling","show-success-messages"])):(e.openBlock(),e.createBlock(me,{key:1,modelValue:N.value,"onUpdate:modelValue":[z[3]||(z[3]=W=>N.value=W),K],"append-icon":_.displayIcon&&_.displayAppendIcon?"calendar":void 0,"append-inner-icon":Y(),class:e.normalizeClass([v(),"label-hidden-on-focus"]),"error-messages":e.unref(k),"warning-messages":e.unref(b),"success-messages":i.showSuccessMessages?e.unref(M):[],"is-disabled":i.isDisabled,"is-read-only":!0,label:i.placeholder,"no-icon":i.noIcon,"prepend-icon":_.displayIcon&&!_.displayAppendIcon?"calendar":void 0,"variant-style":i.isOutlined?"outlined":"underlined",color:"primary","show-success-messages":i.showSuccessMessages,"is-clearable":"",title:"Date Picker",onFocus:w,onPrependIconClick:w,onAppendIconClick:w},null,8,["modelValue","append-icon","append-inner-icon","class","error-messages","warning-messages","success-messages","is-disabled","label","no-icon","prepend-icon","variant-style","show-success-messages"])),e.createElementVNode("div",null,[i.noCalendar?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ce.VMenu,{key:0,modelValue:p.value,"onUpdate:modelValue":z[5]||(z[5]=W=>p.value=W),activator:"parent","min-width":0,location:"bottom","close-on-content-click":!1,"open-on-click":!1,transition:"fade-transition",attach:"body",offset:[-20,5]},{default:e.withCtx(()=>[e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[p.value&&!i.noCalendar?(e.openBlock(),e.createBlock(e.unref(gn.VDatePicker),{key:0,modelValue:d.value,"onUpdate:modelValue":z[4]||(z[4]=W=>d.value=W),color:"primary","first-day-of-week":1,multiple:i.displayRange?"range":!1,"show-adjacent-months":!0,"show-week":i.showWeekNumber,"view-mode":x.value,"onUpdate:viewMode":A,"onUpdate:year":F,"onUpdate:month":q},{title:e.withCtx(()=>z[6]||(z[6]=[e.createTextVNode(" Sélectionnez une date ")])),header:e.withCtx(()=>[e.createElementVNode("h3",ho,e.toDisplayString(T.value),1)]),_:1},8,["modelValue","multiple","show-week","view-mode"])):e.createCommentVNode("",!0)]),_:1})]),_:1},8,["modelValue"]))])],4))}}),[["__scopeId","data-v-9da9f47b"]]),Se=e.ref([]);function Ct(){return{notificationQueue:Se,addNotification:t=>{Se.value.some(l=>l.id===t.id)||Se.value.push(t)},removeNotification:t=>{Se.value=Se.value.filter(l=>l.id!==t)},clearQueue:()=>{Se.value=[]}}}const go=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:Ct},Symbol.toStringTag,{value:"Module"})),yo={label:"Retour"},bo=Z(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(o){const a=o,n=e.ref(Dn),t=e.computed(()=>a.dark??!1),l=e.computed(()=>t.value?"white":"primary"),r=e.computed(()=>t.value?"outlined":"text"),s=e.computed(()=>t.value?"dark":"light"),i=e.computed(()=>t.value?"white":"primary"),c=e.computed(()=>({"px-0":!t.value,"pr-1":!t.value&&!a.hideBackIcon}));return(d,p)=>(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps(d.$attrs,{variant:r.value,theme:s.value,color:i.value,outlined:t.value,class:["vd-back-btn","text-none",c.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[a.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(O.VIcon,{key:0,color:l.value,class:e.normalizeClass([{"ml-n1":t.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(yo).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-86fe77d5"]]);var Xe=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Le(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var ko=function(a){return Vo(a)&&!wo(a)};function Vo(o){return!!o&&typeof o=="object"}function wo(o){var a=Object.prototype.toString.call(o);return a==="[object RegExp]"||a==="[object Date]"||Mo(o)}var Bo=typeof Symbol=="function"&&Symbol.for,Co=Bo?Symbol.for("react.element"):60103;function Mo(o){return o.$$typeof===Co}function No(o){return Array.isArray(o)?[]:{}}function Re(o,a){return a.clone!==!1&&a.isMergeableObject(o)?ve(No(o),o,a):o}function So(o,a,n){return o.concat(a).map(function(t){return Re(t,n)})}function Lo(o,a){if(!a.customMerge)return ve;var n=a.customMerge(o);return typeof n=="function"?n:ve}function vo(o){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(o).filter(function(a){return Object.propertyIsEnumerable.call(o,a)}):[]}function ra(o){return Object.keys(o).concat(vo(o))}function sa(o,a){try{return a in o}catch{return!1}}function xo(o,a){return sa(o,a)&&!(Object.hasOwnProperty.call(o,a)&&Object.propertyIsEnumerable.call(o,a))}function Eo(o,a,n){var t={};return n.isMergeableObject(o)&&ra(o).forEach(function(l){t[l]=Re(o[l],n)}),ra(a).forEach(function(l){xo(o,l)||(sa(o,l)&&n.isMergeableObject(a[l])?t[l]=Lo(l,n)(o[l],a[l],n):t[l]=Re(a[l],n))}),t}function ve(o,a,n){n=n||{},n.arrayMerge=n.arrayMerge||So,n.isMergeableObject=n.isMergeableObject||ko,n.cloneUnlessOtherwiseSpecified=Re;var t=Array.isArray(a),l=Array.isArray(o),r=t===l;return r?t?n.arrayMerge(o,a,n):Eo(o,a,n):Re(a,n)}ve.all=function(a,n){if(!Array.isArray(a))throw new Error("first argument should be an array");return a.reduce(function(t,l){return ve(t,l,n)},{})};var $o=ve,Io=$o;const Mt=Le(Io);function te(o,a){return e.computed(()=>Mt(o,e.toRaw(a.vuetifyOptions)??{}))}function be(o,a="px"){if(!(o==null||o===""))return isNaN(+o)?String(o):`${Number(o)}${a}`}const _o={label:"Retour en haut"},Do={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},To=Z(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(o){const a=o,n=te(Do,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>a.target?`#${a.target}`:null),s=e.computed(()=>{const m=be(a.nudgeRight)||"0";return{bottom:be(a.nudgeBottom)||"0",marginRight:m}}),i=e.computed(()=>l.value?"36px":void 0),c=e.computed(()=>({"d-sr-only":l.value})),d=ae.useDisplay();e.watch(()=>d.smAndDown.value,m=>{l.value=m},{immediate:!0});const p=m=>{const g=m.currentTarget;g instanceof Window?t.value=window.scrollY>a.threshold:t.value=g.scrollTop>a.threshold},u=()=>{a.target?(document.getElementById(a.target)||window).scrollTo(0,0):window.scrollTo(0,0)},f=e.computed(()=>a.target?document.getElementById(a.target):window);return e.onMounted(()=>{var m;(m=f.value)==null||m.addEventListener("scroll",p)}),e.onUnmounted(()=>{var m;(m=f.value)==null||m.removeEventListener("scroll",p)}),(m,g)=>(e.openBlock(),e.createBlock(Pe.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({...e.unref(n).btn,...m.$attrs},{style:s.value,"min-width":i.value,class:"vd-back-to-top-btn",onClick:u}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(c.value)},[e.renderSlot(m.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(_o).label),1)],!0)],2),e.renderSlot(m.$slots,"icon",{},()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Qt)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,t.value],[ut.Scroll,p,r.value]])]),_:3}))}}),[["__scopeId","data-v-316d8462"]]),Ao={chip:{color:"primary",size:"small",variant:"flat",class:"ma-1"},btn:{size:"small",density:"compact",variant:"text",rounded:"pill"},icon:{size:"medium"}},Zo={closeBtnLabel:"Supprimer le filtre pour cette valeur",reset:"Réinitialiser le filtre",chipGroupLabel:"Liste des filtres sélectionnés",overflowLabel:"Filtres supplémentaires"},Po=["aria-label"],Ro={class:"d-flex align-center justify-center ga-sm-1"},Ho={key:0,class:"d-flex align-center"},Nt=Z(e.defineComponent({__name:"ChipList",props:{items:{default:()=>[]},overflowLimit:{default:4},readonly:{type:Boolean,default:!1},resetText:{default:void 0},displayPrependStateIcon:{type:Boolean,default:!1},displayAppendStateIcon:{type:Boolean,default:!1},customIcon:{default:void 0},vuetifyOptions:{default:()=>({})}},emits:["remove","reset"],setup(o,{emit:a}){const n={success:"backgroundSuccessSubdued",warning:"backgroundWarningSubdued",error:"backgroundErrorSubdued",info:"backgroundInfoSubdued"},t=o,l=te(Ao,t),r=a,s=e.ref(Zo),i=e.ref(so),c=e.computed(()=>t.items.slice(0,t.overflowLimit-1)),d=e.computed(()=>t.items.length>=t.overflowLimit),p=e.computed(()=>`+${t.items.length-t.overflowLimit+1}`),u=e.computed(()=>t.resetText??s.value.reset);function f(h){var b,M;const k=(M=(b=t.vuetifyOptions)==null?void 0:b.chip)==null?void 0:M.color;return typeof k=="string"&&k?k:h?n[h]:"primary"}function m(h){switch(h){case"success":return yt;case"warning":return gt;case"error":return ht;case"info":return Je;default:return""}}function g(h){t.readonly||r("remove",h)}function y(){t.readonly||r("reset")}return(h,k)=>h.items.length?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass([{"flex-column":d.value},"chip-list d-flex flex-wrap max-width-none mx-n1 mt-n1"]),role:"list"},[e.createElementVNode("div",{class:"d-flex flex-wrap align-center",role:"group","aria-label":s.value.chipGroupLabel},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,b=>(e.openBlock(),e.createBlock(mt.VChip,e.mergeProps({ref_for:!0},e.unref(l).chip,{key:b.text,color:f(b.state),class:{"sy-chip-success":b.state==="success","sy-chip-info":b.state==="info","sy-chip-warning":b.state==="warning","sy-chip-error":b.state==="error"},role:"listitem"}),{default:e.withCtx(()=>[e.createElementVNode("div",Ro,[h.displayPrependStateIcon?(e.openBlock(),e.createBlock(O.VIcon,e.mergeProps({key:0,ref_for:!0},e.unref(l).icon,{icon:h.customIcon||m(b.state),color:b.state}),null,16,["icon","color"])):e.createCommentVNode("",!0),e.createElementVNode("span",null,e.toDisplayString(b.text),1),h.displayAppendStateIcon?(e.openBlock(),e.createBlock(O.VIcon,e.mergeProps({key:1,ref_for:!0},e.unref(l).icon,{icon:h.customIcon||m(b.state)}),null,16,["icon"])):e.createCommentVNode("",!0),h.readonly?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:2,ref_for:!0},e.unref(l).btn,{"aria-label":s.value.closeBtnLabel,icon:"",class:"remove-chip",onClick:M=>g(b)}),{default:e.withCtx(()=>[e.createVNode(O.VIcon,e.mergeProps({ref_for:!0},e.unref(l).icon,{icon:i.value}),null,16,["icon"])]),_:2},1040,["aria-label","onClick"]))])]),_:2},1040,["color","class"]))),128))],8,Po),d.value||!h.readonly?(e.openBlock(),e.createElementBlock("div",Ho,[d.value?(e.openBlock(),e.createBlock(mt.VChip,e.mergeProps({key:0},e.unref(l).chip,{class:"overflow-chip text-cyan-darken-40 ma-1",role:"status","aria-label":s.value.overflowLabel}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(p.value),1)]),_:1},16,["aria-label"])):e.createCommentVNode("",!0),h.readonly?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(U.VBtn,{key:1,variant:"text",color:"primary",size:"small","data-test-id":"reset-btn",class:"overflow-btn px-1 ml-1 my-1",onClick:y},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u.value),1)]),_:1}))])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-418b1c7a"]]),Oo={class:"pl-0"},Fo=["href","aria-label"],zo={key:1,class:"vd-collapse-list"},Uo={class:"text-subtitle-1 font-weight-bold mb-3"},qo={class:"pl-0"},Yo=["href","aria-label"],Wo=Z(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(o){const a=o,{smAndDown:n}=ae.useDisplay(),t=e.computed(()=>n.value);return(l,r)=>t.value?(e.openBlock(),e.createBlock(ue.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(ue.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(ue.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.listTitle),1)]),_:1}),e.createVNode(ue.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",Oo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(s,i)=>(e.openBlock(),e.createElementBlock("li",{key:i,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,Fo)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",zo,[e.createElementVNode("h4",Uo,e.toDisplayString(l.listTitle),1),e.createElementVNode("ul",qo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(s,i)=>(e.openBlock(),e.createElementBlock("li",{key:i,class:e.normalizeClass({"mb-2":i<l.items.length-1})},[e.createElementVNode("a",{href:s.href,"aria-label":s.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(s.text),9,Yo)],2))),128))])]))}}),[["__scopeId","data-v-a4e2c3b6"]]),Ko={key:0,class:"vd-contextual-menu"},Go=["href","onClick","textContent"],jo=Z(e.defineComponent({__name:"ContextualMenu",props:e.mergeModels({items:{}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue");e.onMounted(()=>{!a.value&&window.location.hash&&(a.value=window.location.hash),addEventListener("hashchange",()=>{a.value=window.location.hash})}),e.watch(a,(t,l)=>{t&&t!==l&&n(t)},{immediate:!0});function n(t){window.location.hash!==t&&(window.location.hash=t,a.value=t)}return(t,l)=>t.items.length?(e.openBlock(),e.createElementBlock("ul",Ko,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,({text:r,hash:s,level:i})=>(e.openBlock(),e.createElementBlock("li",{key:s},[e.createElementVNode("a",{href:s,class:e.normalizeClass([{"text-primary active":a.value===s,"text-medium-emphasis":a.value!==s,"ps-4":i===2,"ps-6":i===3,"ps-9":i===4,"ps-12":i===5,"ps-14":i===6},"d-flex align-center text-decoration-none text-body-1 px-4 py-2"]),onClick:e.withModifiers(c=>n(s),["prevent","stop"]),textContent:e.toDisplayString(r)},null,10,Go)]))),128))])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-4af557c1"]]),St={color:"primary",height:"auto",minHeight:"44px",class:"text-wrap"},Jo={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:{...St,variant:"outlined"},rejectBtn:{...St},acceptBtn:{...St}},pe={label:"Gestion des cookies",title:"À propos des cookies",closeBtn:"Continuer sans accepter",backBtn:"Précédent",description:"Ce site utilise des cookies qui nous permettent de vous proposer une expérience en ligne optimale en enregistrant certaines informations lors de votre navigation.",moreInformationLabel:"En savoir plus",customizeBtnText:"Personnaliser mes choix",rejectBtnText:"Continuer sans accepter",acceptBtnText:"Tout accepter"};function ne(o,a,n=[]){return typeof o[a]=="function"?o[a](...n):o[a]}const Xo={default:"Le champ est requis."};function ia(o=Xo){return a=>{let n;return Array.isArray(a)?n=a.length!==0:n=!!(typeof a=="string"?a.trim():a),n||ne(o,"default")}}const Lt=ia(),Qo=[{label:"Dénomination du cookie",width:"180px"},{label:"Finalité",width:"328px"},{label:"Durée de conservation",width:"180px"}],ca=Z(e.defineComponent({__name:"CookiesTable",props:{items:{}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(yn.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(Qo),(t,l)=>(e.openBlock(),e.createElementBlock("th",{key:l,style:e.normalizeStyle({width:t.width}),class:"text-left",scope:"col"},e.toDisplayString(t.label),5))),128))])]),e.createElementVNode("tbody",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,t=>(e.openBlock(),e.createElementBlock("tr",{key:t.name},[e.createElementVNode("td",null,e.toDisplayString(t.name),1),e.createElementVNode("td",null,[e.renderSlot(a.$slots,"cookie-description-"+t.name,{cookie:t},()=>[e.createTextVNode(e.toDisplayString(t.description),1)],!0)]),e.createElementVNode("td",null,e.toDisplayString(t.conservation),1)]))),128))])]),_:3}))}}),[["__scopeId","data-v-395de867"]]),fe={essentials:{title:"Cookies requis",description:"Ces cookies sont indispensables au fonctionnement du site et ne peuvent être désactivés."},functional:{title:"Cookies fonctionnels",description:"Ces cookies sont utilisés pour capturer vos préférences sur notre site. Ils permettent de vous assurer un confort dans votre navigation."},analytics:{title:"Cookies d’analyse",description:"Ces cookies sont dédiés à l’amélioration de notre site en analysant votre expérience d’utilisation. Ils nous sont très utiles pour vous proposer un site de bonne qualité."},showInformation:"Afficher les cookies",hideInformation:"Masquer les cookies",reject:"Refuser",accept:"Accepter",fieldLabel:o=>`Accepter les cookies de type ${o}, ce champ est requis.`},el={class:"vd-cookies-information"},tl={class:"text-subtitle-1 font-weight-bold mb-2"},al={class:"mb-4"},nl={class:"mb-1"},da=Z(e.defineComponent({__name:"CookiesInformation",props:e.mergeModels({type:{},tableItems:{}},{modelValue:{type:Boolean},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=e.useModel(o,"modelValue"),n=e.computed(()=>{if(a.value===!0)return"accept";if(a.value===!1)return"reject"}),t=e.ref(!1);function l(r){t.value=r.newState==="open"}return(r,s)=>(e.openBlock(),e.createElementBlock("div",el,[e.createElementVNode("h2",tl,e.toDisplayString(e.unref(fe)[r.type].title),1),e.createElementVNode("p",al,e.toDisplayString(e.unref(fe)[r.type].description),1),e.createElementVNode("details",{onToggle:l},[e.createElementVNode("summary",nl,[e.createTextVNode(e.toDisplayString(t.value?e.unref(fe).hideInformation:e.unref(fe).showInformation)+" ",1),e.createVNode(O.VIcon,{class:"mr-2","data-test":"chevron"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(Zn):e.unref(bt)),1)]),_:1})]),e.createVNode(ca,{items:r.tableItems,class:"mb-2"},e.createSlots({_:2},[e.renderList(r.$slots,(i,c)=>({name:c,fn:e.withCtx(d=>[e.renderSlot(r.$slots,c,e.normalizeProps(e.guardReactiveProps(d??{})),void 0,!0)])}))]),1032,["items"])],32),r.type!=="essentials"?(e.openBlock(),e.createBlock(bn.VRadioGroup,{key:0,"model-value":n.value,rules:[e.unref(Lt)],"data-test-id":"radio-group",inline:"",label:e.unref(fe).fieldLabel(e.unref(fe)[r.type].title),"hide-details":"auto",class:"vd-cookies-information__radio-group","onUpdate:modelValue":s[0]||(s[0]=i=>a.value=i==="accept")},{default:e.withCtx(()=>[e.createVNode(le.VSpacer),e.createVNode(Yt.VRadio,{label:e.unref(fe).reject,value:"reject",color:"primary"},null,8,["label"]),e.createVNode(Yt.VRadio,{label:e.unref(fe).accept,value:"accept",class:"mr-0",color:"primary"},null,8,["label"])]),_:1},8,["model-value","rules","label"])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-24b0f609"]]),He={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"},ol={class:"mb-4"},ll={class:"mb-4"},rl={class:"d-flex flex-wrap justify-end mx-n2 mt-n2 mb-6"},sl={class:"d-flex mt-16"},ua=e.defineComponent({__name:"CookiesSelection",props:{items:{}},emits:["submit"],setup(o,{emit:a}){const n=o,t=a,l=e.ref(null),r=e.ref({essentials:void 0,functional:void 0,analytics:void 0}),s=e.computed(()=>{const d={};return Object.entries(r.value).forEach(([p,u])=>{p!="essentials"&&n.items[p]&&(d[p]=u)}),d});function i(d){r.value.functional=d,r.value.analytics=d}async function c(){const{valid:d}=await l.value.validate();d&&t("submit",s.value)}return(d,p)=>d.items?(e.openBlock(),e.createBlock(je.VCard,{key:0,elevation:"0",color:"transparent",class:"vd-cookies-card"},{default:e.withCtx(()=>[e.createVNode(Wt.VForm,{ref_key:"form",ref:l},{default:e.withCtx(()=>[e.createElementVNode("p",ol,e.toDisplayString(e.unref(He).description),1),e.createElementVNode("p",ll,e.toDisplayString(e.unref(He).cookieDefinition),1),e.createElementVNode("div",rl,[e.createVNode(U.VBtn,{"data-test-id":"reject-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[0]||(p[0]=u=>i(!1))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(He).rejectAll),1)]),_:1}),e.createVNode(U.VBtn,{"data-test-id":"accept-all",color:"primary",variant:"outlined",class:"ma-2",onClick:p[1]||(p[1]=u=>i(!0))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(He).acceptAll),1)]),_:1})]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.items,(u,f)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:f},[u?(e.openBlock(),e.createBlock(da,{key:0,modelValue:r.value[f],"onUpdate:modelValue":m=>r.value[f]=m,type:f,"table-items":u,class:"mb-6"},e.createSlots({_:2},[e.renderList(d.$slots,(m,g)=>({name:g,fn:e.withCtx(y=>[String(g).startsWith("cookie-description")?e.renderSlot(d.$slots,g,e.mergeProps({key:0,ref_for:!0},y??{})):e.createCommentVNode("",!0)])}))]),1032,["modelValue","onUpdate:modelValue","type","table-items"])):e.createCommentVNode("",!0)],64))),128)),e.createElementVNode("div",sl,[e.createVNode(le.VSpacer),e.createVNode(U.VBtn,{"data-test-id":"submit",color:"primary",onClick:c},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(He).saveBtn),1)]),_:1})])]),_:3},512)]),_:3})):e.createCommentVNode("",!0)}}),il={class:"vd-cookie-banner__inner"},cl={class:"d-flex align-start flex-nowrap pa-0 mb-6"},dl={class:"text-h5 font-weight-bold"},ul={class:"vd-cookie-banner-content"},ml={key:0},pl={key:1},fl={class:"vd-cookie-banner-action-ctn d-flex align-center flex-wrap max-width-none mt-6 ga-4"},hl=Z(e.defineComponent({__name:"CookieBanner",props:e.mergeModels({vuetifyOptions:{},items:{}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:e.mergeModels(["reject","accept","customize","submit"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=te(Jo,n),l=a,r=e.useModel(o,"modelValue"),s=e.ref(!1),i=ae.useDisplay(),c=e.computed(()=>i.smAndDown.value?"100%":"auto");function d(){r.value=!1,l("reject")}function p(){r.value=!1,l("accept")}function u(){n.items&&(s.value=!0),l("customize")}function f(m){l("submit",m),s.value=!1,r.value=!1}return(m,g)=>r.value?(e.openBlock(),e.createBlock(e.Teleport,{key:0,to:"body"},[e.createVNode(Me.VSheet,e.mergeProps(e.unref(t).banner,{"aria-label":e.unref(pe).label,class:"vd-cookie-banner"}),{default:e.withCtx(()=>[e.createElementVNode("div",il,[e.createElementVNode("div",cl,[e.createElementVNode("h2",dl,e.toDisplayString(e.unref(pe).title),1),e.createVNode(le.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).spacer)),null,16),s.value?(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:0},e.unref(t).backBtn,{"aria-label":e.unref(pe).backBtn,onClick:g[0]||(g[0]=y=>s.value=!1)}),{default:e.withCtx(()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Tn)),1)]),_:1},16)]),_:1},16,["aria-label"])):(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:1},e.unref(t).closeBtn,{"aria-label":e.unref(pe).closeBtn,onClick:d}),{default:e.withCtx(()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ne)),1)]),_:1},16)]),_:1},16,["aria-label"]))]),e.createElementVNode("div",ul,[e.createVNode(e.Transition,{name:"height"},{default:e.withCtx(()=>[s.value&&m.items?(e.openBlock(),e.createElementBlock("div",ml,[e.createVNode(ua,{items:m.items,onSubmit:f},e.createSlots({_:2},[e.renderList(m.$slots,(y,h)=>({name:h,fn:e.withCtx(k=>[e.renderSlot(m.$slots,h,e.normalizeProps(e.guardReactiveProps(k||{})),void 0,!0)])}))]),1032,["items"])])):(e.openBlock(),e.createElementBlock("div",pl,[e.renderSlot(m.$slots,"default",{},()=>[e.createElementVNode("p",null,e.toDisplayString(e.unref(pe).description),1)],!0),e.createElementVNode("div",fl,[e.createVNode(le.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(t).actionsSpacer)),null,16),e.createVNode(U.VBtn,e.mergeProps(e.unref(t).customizeBtn,{"data-test-id":"customize",width:c.value,onClick:u}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pe).customizeBtnText),1)]),_:1},16,["width"]),e.createVNode(U.VBtn,e.mergeProps(e.unref(t).rejectBtn,{"data-test-id":"reject",width:c.value,onClick:d}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pe).rejectBtnText),1)]),_:1},16,["width"]),e.createVNode(U.VBtn,e.mergeProps(e.unref(t).acceptBtn,{"data-test-id":"accept",width:c.value,onClick:p}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pe).acceptBtnText),1)]),_:1},16,["width"])])]))]),_:3})])])]),_:3},16,["aria-label"])])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-f308fef2"]]);function gl(o){const a=document.createElement("textarea");a.value=o,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a);const n=document.getSelection();let t=!1;n&&(t=n.rangeCount>0?n.getRangeAt(0):!1),a.select(),navigator.clipboard?navigator.clipboard.writeText(o):document.execCommand("copy"),document.body.removeChild(a),n&&t&&(n.removeAllRanges(),n.addRange(t))}const yl={tooltip:"Texte copié !"},bl={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"}},kl=["id"],Vl=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(o,{expose:a}){const n=o,t=te(bl,n),l=e.ref(!1),r=Rn;function s(){const i=typeof n.textToCopy=="function"?n.textToCopy():n.textToCopy;gl(i),!n.hideTooltip&&setTimeout(()=>{l.value=!1},n.tooltipDuration)}return a({copy:s,tooltip:l}),(i,c)=>(e.openBlock(),e.createElementBlock("div",{id:n.ariaOwns,class:"vd-copy-btn"},[e.createVNode(Ce.VMenu,e.mergeProps(e.unref(t).menu,{id:n.ariaOwns,modelValue:l.value,"onUpdate:modelValue":c[0]||(c[0]=d=>l.value=d),disabled:n.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(U.VBtn,e.mergeProps({...d,...e.unref(t).btn},{"aria-label":n.ariaLabel,"aria-owns":n.ariaOwns,"data-test-id":n.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"icon",{},()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)])]),_:2},1040,["aria-label","aria-owns","data-test-id"])]),default:e.withCtx(()=>[e.renderSlot(i.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(yl).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,kl))}}),wl={class:"d-sr-only"},Bl={key:0,class:"d-flex flex-column align-end py-1 mr-1"},ma=Z(e.defineComponent({__name:"SyBtnSelect",props:{modelValue:{type:[Object,String,null],default:null},menuItems:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},required:{type:Boolean,default:!1},menuId:{type:String,default:"custom-btn-select-menu"},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},primaryInfo:{type:String,default:"Information principale"},secondaryInfo:{type:String,default:void 0},hideIcon:{type:Boolean,default:!1},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},iconOnly:{type:Boolean,default:!1},options:{type:Object,default:()=>({menu:{},btn:{},list:{}})}},emits:["update:modelValue","logout"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useSlots(),{smAndDown:s}=ae.useDisplay(),i=e.ref(!1),c=e.ref(t.modelValue),d=()=>{i.value=!i.value},p=e.ref(null),u=e.ref("");e.onMounted(()=>{p.value&&!h.value&&(u.value=`${p.value.getBoundingClientRect().width}px`)});const f=b=>{c.value=b,l("update:modelValue",b),i.value=!1},m=e.computed(()=>t.menuItems.map(b=>typeof b=="string"?{[t.textKey]:b,[t.valueKey]:b}:b)),g=e.computed(()=>t.hideIcon?"pa-1 pa-sm-2":h.value?"pa-0":"pa-1 pa-sm-3"),y=e.computed(()=>!!(r.default||!t.hideLogoutBtn)),h=e.computed(()=>t.isMobileView||s.value||t.iconOnly);e.watch(()=>t.modelValue,b=>{c.value=b});const k=e.ref(`custom-btn-select-${Math.random().toString(36).substring(7)}`);return a({isOpen:i,formattedItems:m,selectedItem:c}),(b,M)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"buttonRef",ref:p,class:"vd-user-menu-btn-ctn d-inline-block"},[e.createVNode(Ce.VMenu,e.mergeProps({id:k.value,disabled:!y.value,location:"bottom end",transition:"fade-transition"},t.options.menu,{"z-index":"9999"}),{activator:e.withCtx(({props:N})=>[e.createVNode(U.VBtn,e.mergeProps({id:k.value,class:[g.value,"vd-user-menu-btn"],height:o.iconOnly?"auto":void 0,icon:o.iconOnly,size:o.iconOnly?"x-large":"default",width:o.iconOnly?"auto":void 0},{...N,...t.options.btn},{onClick:d}),{default:e.withCtx(()=>{var L,S,D,$;return[e.createElementVNode("div",{class:e.normalizeClass([["text-"+((L=t==null?void 0:t.options.btn)==null?void 0:L.color)],"d-flex align-center"])},[e.renderSlot(b.$slots,"prepend-icon",{},void 0,!0),e.createElementVNode("span",wl,e.toDisplayString(t.label),1),!h.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",Bl,[e.createElementVNode("span",{class:e.normalizeClass([`text-${(S=t==null?void 0:t.options.btn)==null?void 0:S.textColor}`,"font-weight-bold"])},e.toDisplayString(t.primaryInfo),3),e.createElementVNode("span",{class:e.normalizeClass([`text-${(D=t==null?void 0:t.options.btn)==null?void 0:D.textColor}`,"text-grey text-darken-2 font-weight-medium"])},e.toDisplayString(t.secondaryInfo),3)])):e.createCommentVNode("",!0),h.value&&!o.iconOnly?(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass([`text-${($=t==null?void 0:t.options.btn)==null?void 0:$.textColor}`,"font-weight-bold text-caption"])},e.toDisplayString(t.primaryInfo),3)):e.createCommentVNode("",!0),e.renderSlot(b.$slots,"append-icon",{},void 0,!0)],2)]}),_:2},1040,["id","class","height","icon","size","width"])]),default:e.withCtx(()=>[e.renderSlot(b.$slots,"content",{},()=>[y.value?(e.openBlock(),e.createBlock(Q.VList,e.normalizeProps(e.mergeProps({key:0},t.options.list)),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,(N,L)=>{var S;return e.openBlock(),e.createBlock(Q.VListItem,e.mergeProps({key:L,class:`text-${(S=t==null?void 0:t.options.list)==null?void 0:S.textColor}`,ref_for:!0},t.options.list,{href:N.link,onClick:D=>f(N)}),{default:e.withCtx(()=>[e.createVNode(Q.VListItemTitle,e.mergeProps({ref_for:!0},t.options.list),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(N[t.textKey]),1)]),_:2},1040)]),_:2},1040,["class","href","onClick"])}),128)),e.renderSlot(b.$slots,"default",{},void 0,!0),e.renderSlot(b.$slots,"footer-list-item",{},void 0,!0)]),_:3},16)):e.createCommentVNode("",!0)],!0)]),_:3},16,["id","disabled"])],512))}}),[["__scopeId","data-v-27dd5864"]]),Cl={menu:{color:"primary"},option:{color:"primary"}},Ml=["onKeydown"],pa=Z(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},displayAsterisk:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=te(Cl,t),r=n,s=e.ref(!1),i=e.ref(t.modelValue),c=e.ref(!1),d=()=>{s.value=!s.value},p=()=>{s.value=!1},u=e.computed(()=>(t.required||t.errorMessages.length>0)&&!i.value),f=e.ref(`sy-input-select-${Math.random().toString(36).substring(7)}`),m=$=>{i.value=$,r("update:modelValue",$),s.value=!1},g=$=>$[t.textKey],y=e.computed(()=>i.value&&typeof i.value=="object"?i.value[t.textKey]:k.value),h=e.computed(()=>t.displayAsterisk&&t.required),k=e.computed(()=>h.value?`${t.label} *`:t.label);e.watch(()=>t.modelValue,$=>{i.value=$}),e.watch([s,c],([$,v])=>{$?c.value=v:c.value=!i.value&&u.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,$=>{S.value=$,c.value=$.length>0});const b=e.ref(null),M=e.ref("");e.onMounted(()=>{e.watch([()=>s.value,()=>{var $;return($=b.value)==null?void 0:$.getBoundingClientRect().width}],([$,v])=>{if($&&v){const C=v+(t.isHeaderToolbar?32:0);M.value=`${C}`}})});const N=e.computed(()=>t.outlined&&c.value?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined error text-error":t.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),L=e.computed(()=>t.items.map($=>typeof $=="string"?{[t.textKey]:$,[t.valueKey]:$}:$)),S=e.ref(t.errorMessages),D=()=>t.required&&!i.value?(S.value=["Le champ est requis."],!1):t.errorMessages.length>0?(S.value=t.errorMessages,!1):(S.value=[],!0);return a({isOpen:s,closeList:p,selectItem:m,selectedItem:i,getItemText:g}),($,v)=>(e.openBlock(),e.createBlock(kn.VInput,{id:f.value,modelValue:i.value,"onUpdate:modelValue":v[1]||(v[1]=C=>i.value=C),"error-messages":S.value,label:k.value,title:k.value,role:"menu",onClick:D},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref_key:"menu",ref:b,class:e.normalizeClass(["sy-input-select",N.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(y.value),1),c.value?(e.openBlock(),e.createBlock(O.VIcon,{key:0,class:"ml-2",color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(wt)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(O.VIcon,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(bt)),1)]),_:1})],42,Ml)),[[ut.ClickOutside,p]]),s.value?(e.openBlock(),e.createBlock(Q.VList,e.mergeProps({key:0,"aria-label":t.label,"is-header-toolbar":t.isHeaderToolbar,style:`min-width:${M.value}px; ${t.outlined?"top: 36px;":"top: 30px;"}`,title:t.label,class:"v-list"},e.unref(l).list,{onKeydown:v[0]||(v[0]=e.withKeys(e.withModifiers(C=>s.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(L.value,(C,E)=>(e.openBlock(),e.createBlock(Q.VListItem,e.mergeProps({key:E,ref_for:!0,ref:"options-"+E,"aria-selected":i.value===C,"base-color":e.unref(l).option.color,tabindex:E+1,class:"v-list-item",role:"option"},e.unref(l).option,{onClick:H=>m(C)}),{default:e.withCtx(()=>[e.createVNode(Q.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g(C)),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-a5281111"]]),vt=Z(e.defineComponent({__name:"SySelect",props:{modelValue:{type:[Object,String,Number],default:null},items:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},errorMessages:{type:[String,Array],default:()=>[]},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},menuId:{type:String,default:"sy-select-menu"},outlined:{type:Boolean,default:!0},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"},displayAsterisk:{type:Boolean,default:!1},returnObject:{type:Boolean,default:!1},disableErrorHandling:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(!1),s=e.ref(t.modelValue),i=e.ref(!1),c=e.ref(0),d=e.ref(null),p=()=>{r.value=!r.value},u=()=>{r.value=!1},f=e.ref(`sy-select-${Math.random().toString(36).substring(7)}`),m=L=>{t.returnObject?(s.value=L,l("update:modelValue",L)):(s.value=L[t.valueKey],l("update:modelValue",L[t.valueKey])),r.value=!1},g=L=>L[t.textKey],y=e.computed(()=>{var L;return s.value?t.returnObject?s.value[t.textKey]:(L=t.items.find(S=>S[t.valueKey]===s.value))==null?void 0:L[t.textKey]:""}),h=e.computed(()=>t.displayAsterisk&&t.required),k=e.computed(()=>h.value?`${t.label} *`:t.label),b=e.computed(()=>t.items.map(L=>typeof L=="string"?{[t.textKey]:L,[t.valueKey]:L}:L)),M=e.computed(()=>t.disableErrorHandling?!1:(t.required||t.errorMessages.length>0)&&!s.value),N=e.ref(null);return e.watch(()=>t.modelValue,L=>{s.value=L}),e.watch([r,i],([L,S])=>{L?i.value=S:t.disableErrorHandling?i.value=!1:i.value=!s.value&&M.value||t.errorMessages.length>0}),e.watch(()=>t.errorMessages,L=>{t.disableErrorHandling||(i.value=L.length>0)}),e.onMounted(()=>{d.value&&(c.value=d.value.offsetWidth+64)}),a({isOpen:r,closeList:u}),(L,S)=>{var D;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(Ze.VTextField,{id:f.value,ref_key:"input",ref:N,modelValue:y.value,"onUpdate:modelValue":S[0]||(S[0]=$=>y.value=$),title:k.value,color:"primary",tabindex:"0",readonly:"",disabled:o.disabled,label:k.value,"aria-label":k.value,"error-messages":t.disableErrorHandling?[]:o.errorMessages,variant:o.outlined?"outlined":"underlined",rules:M.value&&!t.disableErrorHandling?["Le champ est requis."]:[],"display-asterisk":o.displayAsterisk,class:"sy-select",style:e.normalizeStyle(i.value?{minWidth:`${c.value+18}px`}:{minWidth:`${c.value}px`}),onClick:p,onKeydown:[e.withKeys(e.withModifiers(p,["prevent"]),["enter"]),e.withKeys(e.withModifiers(p,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[i.value?(e.openBlock(),e.createBlock(O.VIcon,{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(wt)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(O.VIcon,{class:"arrow"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(na)),1)]),_:1})]),_:1},8,["id","modelValue","title","disabled","label","aria-label","error-messages","variant","rules","display-asterisk","style","onKeydown"])),[[ut.ClickOutside,u]]),e.createElementVNode("span",{ref_key:"labelRef",ref:d,class:"hidden-label"},e.toDisplayString(o.label),513),r.value?(e.openBlock(),e.createBlock(Q.VList,{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(D=N.value)==null?void 0:D.$el.offsetWidth}px`),onKeydown:S[1]||(S[1]=e.withKeys(e.withModifiers($=>r.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,($,v)=>(e.openBlock(),e.createBlock(Q.VListItem,{key:v,ref_for:!0,ref:"options-"+v,role:"option",class:"v-list-item","aria-selected":s.value===$,tabindex:v+1,onClick:C=>m($)},{default:e.withCtx(()=>[e.createVNode(Q.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(g($)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-d00072a9"]]),Nl={loadingLabel:"Le contenu est en cours de chargement."},Sl={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"}},Ll={placeholder:"…"},vl={class:"vd-data-list-item d-flex flex-wrap"},xl={class:"vd-data-list-item-content"},El={class:"vd-data-list-item-value"},$l=["innerHTML"],Il=["textContent"],_l=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:Ll.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(o,{emit:a}){const n=o,t=a,l=te(Sl,n),r=ae.useTheme(),s=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),i=e.computed(()=>typeof n.value=="number"?isNaN(n.value)?n.placeholder:n.value.toString():n.value||n.placeholder);return(c,d)=>(e.openBlock(),e.createElementBlock("li",vl,[e.renderSlot(c.$slots,"icon",{},()=>[c.icon?(e.openBlock(),e.createBlock(O.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",xl,[e.createElementVNode("div",{class:e.normalizeClass({"vd-row":c.row})},[e.createElementVNode("div",{class:"vd-data-list-item-label text-caption",style:e.normalizeStyle({color:s.value})},e.toDisplayString(c.label),5),e.createElementVNode("div",El,[e.renderSlot(c.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:i.value})),()=>[c.chip?(e.openBlock(),e.createBlock(mt.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(l).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.value),1)]),_:1},16)):c.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:i.value},null,8,$l)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(i.value)},null,8,Il))],!0)])],2),e.renderSlot(c.$slots,"action",{},()=>[c.action?(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:0},e.unref(l).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=p=>t("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),fa=Z(_l,[["__scopeId","data-v-bca44d3d"]]),xe=Z(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createBlock(e.unref(Vn.VSkeletonLoader),e.mergeProps(n.$attrs,{width:a.width,height:a.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-abf44671"]]),Dl={"aria-hidden":"true",class:"vd-data-list-loading"},Tl=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(o){const a=o,n=e.computed(()=>a.row?"150px":"90px");return(t,l)=>(e.openBlock(),e.createElementBlock("div",Dl,[o.heading?(e.openBlock(),e.createBlock(xe,{key:0,width:"100px",height:"1.5rem",class:"mb-4"})):e.createCommentVNode("",!0),e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==o.itemsNumber},"vd-data-list-loading-item"])},[o.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(xe,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(xe,{width:n.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function Ee(o){return{widthStyles:e.computed(()=>({maxWidth:be(o.maxWidth),minWidth:be(o.minWidth),width:be(o.width??"100%")}))}}const Al=["aria-label"],Zl={key:1},Pl={key:0},ha=Z(e.defineComponent({__name:"DataList",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},listTitle:{type:String,default:void 0},titleClass:{type:String,default:"text-subtitle-1 font-weight-bold mb-3"},row:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},loading:{type:Boolean,default:!1},itemsNumberLoading:{type:Number,default:1},headingLoading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1},maxWidth:{type:String,default:void 0},minWidth:{type:String,default:void 0},width:{type:String,default:void 0}},emits:["click:item-action"],setup(o,{emit:a}){const n=o,{widthStyles:t}=Ee(n),l=a,r=e.computed(()=>n.loading?Nl.loadingLabel:void 0),s=c=>{var d;if(!(!c||!n.icons))return(d=n.icons)==null?void 0:d[c]},i=(c,d)=>[{"mb-2":c!==n.items.length-1},d];return(c,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(t)),class:"vd-data-list"},[e.createVNode(Pe.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[o.loading?(e.openBlock(),e.createBlock(Tl,{key:0,"items-number":o.itemsNumberLoading,heading:o.headingLoading,"title-class":o.titleClass,row:o.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",Zl,[e.renderSlot(c.$slots,"title",{},()=>[o.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(o.titleClass)},e.toDisplayString(o.listTitle),3)):e.createCommentVNode("",!0)],!0),o.items.length?(e.openBlock(),e.createElementBlock("ul",Pl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(p,u)=>(e.openBlock(),e.createBlock(fa,{key:u,label:p.key,value:p.value,action:p.action,chip:p.chip,row:o.row,"render-html-value":o.renderHtmlValue,icon:s(p.icon),placeholder:o.placeholder,"vuetify-options":p.options,class:e.normalizeClass([i(u,p.class),"vd-data-list-item text-body-1"]),"onClick:action":f=>l("click:item-action",u)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,Al))}}),[["__scopeId","data-v-674d3ac2"]]),Rl={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},ga=e.defineComponent({__name:"DataListGroup",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},itemWidth:{type:String,default:"200px"},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item"],setup(o,{emit:a}){const n=o,t=a,l=(r,s)=>{t("click:list-item",{dataListIndex:r,itemIndex:s})};return(r,s)=>(e.openBlock(),e.createElementBlock("div",Rl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(i,c)=>(e.openBlock(),e.createBlock(ha,{key:`vd-data-list-${c}`,loading:n.loading,"render-html-value":n.renderHtmlValue,"list-title":i.title,items:i.items,"items-number-loading":i.itemsNumberLoading,"heading-loading":i.headingLoading,width:n.itemWidth,icons:n.icons,class:"ma-4","onClick:itemAction":d=>l(c,d)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}}),Hl={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"}},xt={closeBtn:"Fermer la boîte de dialogue",cancelBtn:"Annuler",confirmBtn:"Valider"},Ol={key:0,class:"text-h6 font-weight-bold"},Fl=e.defineComponent({__name:"DialogBox",props:e.mergeModels({title:{default:void 0},width:{default:"800px"},cancelBtnText:{default:xt.cancelBtn},confirmBtnText:{default:xt.confirmBtn},hideActions:{type:Boolean,default:!1},persistent:{type:Boolean,default:!1},vuetifyOptions:{}},{modelValue:{type:Boolean,default:!1},modelModifiers:{}}),emits:e.mergeModels(["cancel","confirm","update:modelValue"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),t=e.ref(void 0),l=te(Hl,a),r=Ne;async function s(){var u;const c=(u=t==null?void 0:t.value)==null?void 0:u.$el;return c?Array.from(c.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')).filter(f=>!f.hasAttribute("disabled")&&!f.getAttribute("aria-hidden")):[]}async function i(c){const d=await s(),p=d.findIndex(m=>m===c.target),u=p===-1,f=d.length-1;!c.shiftKey&&(u||p===f)?(c.preventDefault(),d[0].focus()):c.shiftKey&&(u||p===0)&&(c.preventDefault(),d[f].focus())}return(c,d)=>(e.openBlock(),e.createBlock(wn.VDialog,e.mergeProps({modelValue:n.value,"onUpdate:modelValue":d[3]||(d[3]=p=>n.value=p)},c.$attrs,{width:a.width,persistent:a.persistent,"retain-focus":!1,"aria-modal":"true",class:"vd-dialog-box",onKeydown:e.withKeys(i,["tab"])}),{default:e.withCtx(()=>[e.createVNode(je.VCard,e.mergeProps(e.unref(l).card,{id:"dialogContent",ref_key:"dialogContent",ref:t,"aria-labelledby":a.title?a.title:"dialogContent"}),{default:e.withCtx(()=>[e.createVNode(je.VCardTitle,e.normalizeProps(e.guardReactiveProps(e.unref(l).cardTitle)),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"title",{},()=>[c.title?(e.openBlock(),e.createElementBlock("h2",Ol,e.toDisplayString(a.title),1)):e.createCommentVNode("",!0)],!0),e.createVNode(le.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).spacer)),null,16),a.persistent?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:0},e.unref(l).closeBtn,{"aria-label":e.unref(xt).closeBtn,onClick:d[0]||(d[0]=p=>n.value=!1)}),{default:e.withCtx(()=>[e.createVNode(O.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(c.$slots,"default",{},void 0,!0),a.hideActions?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0},e.unref(l).actionsCtn,{class:"vd-dialog-box-actions-ctn"}),[e.createVNode(le.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(l).actionsSpacer)),null,16),e.renderSlot(c.$slots,"actions",{},()=>[e.createVNode(U.VBtn,e.mergeProps(e.unref(l).cancelBtn,{onClick:d[1]||(d[1]=p=>c.$emit("cancel"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.cancelBtnText),1)]),_:1},16),e.createVNode(U.VBtn,e.mergeProps(e.unref(l).confirmBtn,{"data-test-id":"confirm-btn",onClick:d[2]||(d[2]=p=>c.$emit("confirm"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.confirmBtnText),1)]),_:1},16)],!0)],16))]),_:3},16,["aria-labelledby"])]),_:3},16,["modelValue","width","persistent"]))}}),Et=Z(Fl,[["__scopeId","data-v-72e0adc9"]]);function zl(o,a,n,t=!1){const l=t?["\uFEFF",o]:[o],r=window.navigator,s=new Blob(l,{type:n});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(s,a);else{const i=document.createElement("a");i.target="_blank",i.style.display="none",i.rel="noopener noreferrer",i.href=window.URL.createObjectURL(s),i.download=a,document.body.appendChild(i),i.click(),document.body.removeChild(i),window.URL.revokeObjectURL(i.href)}}const Ul={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},ql=Z(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.useAttrs(),s=e.ref("idle"),i=te(Ul,t),c=e.computed(()=>Mt(i.value.btn,r));function d(u){var y,h,k;const f=u["content-type"],m=u["content-disposition"];let g;return g=(k=(h=(y=m==null?void 0:m.split(";"))==null?void 0:y.find(b=>b.includes("filename=")))==null?void 0:h.split("="))==null?void 0:k[1],g||(g=t.fallbackFilename||"file"),{name:g,type:f}}async function p(){s.value="loading";try{const{data:u,headers:f}=await t.filePromise(),{name:m,type:g}=d(f);zl(u,m,g)}catch(u){s.value="error",l("error",u);return}s.value="success",l("success")}return a({getFileInfo:d,download:p,state:s}),(u,f)=>(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps(c.value,{loading:s.value==="loading",class:[c.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:p}),{default:e.withCtx(()=>[e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(i).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(On)),1)]),_:1},16)],!0),e.renderSlot(u.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-dab2a719"]]),Yl={errorCodeText:"Code d'erreur : "},ya=Z(e.defineComponent({__name:"PageContainer",props:{size:{default:void 0},spacing:{default:void 0},color:{default:"transparent"}},setup(o,{expose:a}){const n=o,t=ae.useDisplay(),l={xs:"px-4",sm:"px-4",md:"px-14",lg:"px-14",xl:"px-0"},r={xs:340,sm:540,md:800,lg:1280,xl:1712},s=e.computed(()=>n.spacing?`py-10 ${l[n.spacing]}`:`py-10 ${l[t.name.value]}`),i=e.computed(()=>n.size?r[n.size]:r[t.name.value]??r.xl);return a({spacingClass:s,containerSize:i}),(c,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(Me.VSheet,{width:i.value,color:c.color},{default:e.withCtx(()=>[e.renderSlot(c.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-cbb17930"]]),Wl={key:0,class:"vd-code text-primary mb-4"},Kl={class:"d-sr-only"},Gl={key:1,class:"mb-2 font-weight-bold text-h5 mb-4"},jl={key:2},Jl=e.defineComponent({__name:"ErrorPage",props:{pageTitle:{default:void 0},message:{default:void 0},code:{default:void 0},codeErrorText:{default:Yl.errorCodeText},btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){return(a,n)=>(e.openBlock(),e.createBlock(ya,{size:"md"},{default:e.withCtx(()=>[e.createVNode(je.VCard,{elevation:0,class:"pa-6 pa-sm-16"},{default:e.withCtx(()=>[e.createVNode(le.VRow,{class:"max-width-none"},{default:e.withCtx(()=>[e.createVNode(le.VCol,{sm:a.$slots.illustration?6:12,cols:"12",class:"order-last order-sm-first text-center text-sm-left d-flex flex-column justify-center align-sm-start"},{default:e.withCtx(()=>[a.code?(e.openBlock(),e.createElementBlock("div",Wl,[e.createElementVNode("span",Kl,e.toDisplayString(a.codeErrorText),1),e.createTextVNode(" "+e.toDisplayString(a.code),1)])):e.createCommentVNode("",!0),a.pageTitle?(e.openBlock(),e.createElementBlock("h2",Gl,e.toDisplayString(a.pageTitle),1)):e.createCommentVNode("",!0),a.message?(e.openBlock(),e.createElementBlock("p",jl,e.toDisplayString(a.message),1)):e.createCommentVNode("",!0),e.renderSlot(a.$slots,"additional-content",{},void 0,!0),e.renderSlot(a.$slots,"action",{},()=>[!a.hideBtn&&a.btnText&&(a.btnLink||a.btnHref)?(e.openBlock(),e.createBlock(U.VBtn,{key:0,to:a.btnLink,href:a.btnHref,color:"primary",exact:"",class:"mt-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.btnText),1)]),_:1},8,["to","href"])):e.createCommentVNode("",!0)],!0)]),_:3},8,["sm"]),a.$slots.illustration?(e.openBlock(),e.createBlock(le.VCol,{key:0,cols:"12",sm:"6",class:"d-flex align-center justify-center"},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"illustration",{},void 0,!0)]),_:3})):e.createCommentVNode("",!0)]),_:3})]),_:3})]),_:3}))}}),$t=Z(Jl,[["__scopeId","data-v-8a08901d"]]),ba={noData:"Pas de données.",btnText:"Consulter les données externes"},he={blue:{base:"#0c419a",lighten20:"#3d67ae",lighten40:"#6d8dc2",lighten80:"#ced9eb"},cyan:{darken40:"#006386"},brick:{base:"#cd545b"},grey:{lighten20:"#76797a"}},Xl={menu:{tile:!0,zIndex:4,offset:0},btn:{tile:!0,minHeight:"48px",minWidth:"328px",color:he.blue.lighten20,class:"d-flex px-3"},btnIcon:{color:"white"},linkIcon:{color:"rgba(0, 0, 0, .54)"},list:{border:!1,elevation:3,class:"py-0"},listItem:{target:"_blank",rel:"noopener noreferrer"},sheet:{class:"px-4 py-3"}},Ql=["id"],er={class:"d-flex flex-row justify-space-between"},tr={class:"mb-0"},ar=e.defineComponent({__name:"ExternalLinks",props:{vuetifyOptions:{},items:{},position:{default:"top left"},btnText:{default:ba.btnText},nudgeTop:{default:0},nudgeBottom:{default:0},fixed:{type:Boolean,default:!1},ariaLabel:{default:"external-link-btn"},ariaOwns:{default:"external-link-btn"}},setup(o){const a=o,n=te(Xl,a),t=e.ref(!1),l=e.ref(!1),r=e.computed(()=>t.value||l.value),s=e.computed(()=>a.position.includes("left")),i=e.computed(()=>a.position.includes("top")),c=e.computed(()=>{const p="48px",u=s.value?`translateX(calc(-100% + ${p}))`:`translateX(calc(100% - ${p}))`;return{transform:r.value?"translateX(0)":u,position:a.fixed?"fixed":"absolute",flexDirection:s.value?"row":"row-reverse",top:i.value?be(a.nudgeTop):"auto",bottom:i.value?"auto":be(a.nudgeBottom),left:s.value?0:"auto",right:s.value?"auto":0,zIndex:i.value?"4":"5"}}),d=e.computed(()=>r.value?s.value?kt:Vt:s.value?Vt:kt);return(p,u)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns},[e.createVNode(Ce.VMenu,e.mergeProps(e.unref(n).menu,{id:a.ariaOwns,modelValue:t.value,"onUpdate:modelValue":u[4]||(u[4]=f=>t.value=f),location:i.value?"bottom":"top",attach:"",transition:"fade-transition",class:["vd-external-links",{"vd-external-links--left":s.value,"vd-external-links--right":!s.value}]}),{activator:e.withCtx(({props:f})=>[e.createVNode(U.VBtn,e.mergeProps({...f,...e.unref(n).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,style:c.value,class:"vd-external-links-btn",onMouseenter:u[0]||(u[0]=m=>l.value=!0),onMouseleave:u[1]||(u[1]=m=>l.value=!1),onFocusin:u[2]||(u[2]=m=>l.value=!0),onFocusout:u[3]||(u[3]=m=>l.value=!1)}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass([{"ml-3":!s.value,"mr-3":s.value},"vd-external-links-btn-text white--text"])},e.toDisplayString(p.btnText),3),e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).btnIcon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(d.value),1)]),_:1},16)]),_:2},1040,["aria-label","aria-owns","style"])]),default:e.withCtx(()=>[p.items.length?(e.openBlock(),e.createBlock(Q.VList,e.mergeProps({key:0},e.unref(n).list,{class:"vd-external-links-list"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.items,(f,m)=>(e.openBlock(),e.createBlock(Q.VListItem,e.mergeProps({key:m,href:f.href,ref_for:!0},e.unref(n).listItem),{default:e.withCtx(()=>[e.createElementVNode("div",er,[e.createVNode(Q.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(n).listItemTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.text),1)]),_:2},1040),e.renderSlot(p.$slots,"link-icon",{},()=>[e.createVNode(O.VIcon,e.mergeProps({ref_for:!0},e.unref(n).linkIcon),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oa)),1)]),_:1},16)],!0)])]),_:2},1040,["href"]))),128))]),_:3},16)):(e.openBlock(),e.createBlock(Me.VSheet,e.normalizeProps(e.mergeProps({key:1},e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("p",tr,e.toDisplayString(e.unref(ba).noData),1)]),_:1},16))]),_:3},16,["id","modelValue","location","class"])],8,Ql))}}),nr=Z(ar,[["__scopeId","data-v-91ee355f"]]),It={colors:{background:"#ffffff",border:"#dddddd",text:"#333333",icon:"#666666",overlay:"rgba(0, 0, 0, 0.5)",interactive:"#007bff"},gap:{0:"0",1:"4px",2:"8px",3:"122px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",13:"52px",14:"56px",15:"60px",16:"64px"},iconSize:{xsmall:"8px",small:"16px",default:"24px",large:"32px"},radius:{rounded0:"0",rounded:"4px",roundedLg:"8px",roundedPill:"64px"},padding:{0:"0",2:"8px",3:"12px",4:"16px",6:"24px",8:"32px",10:"40px",14:"56px",16:"64px"},fontSize:{titres:"24px",titresAlternatifs:"20px",corpsDeTexte:"16px",liensEtLibelles:"14px"}},ka={optionalDocument:"Document facultatif",see:"Voir",delete:"Supprimer",uploading:"En cours",success:"Téléchargé",error:"Erreur",errorOccurred:"Une erreur est survenue pendant le téléchargement."},or={class:"file-item__description"},lr={class:"file-item__content"},rr={class:"file-item__icon"},sr={key:0,class:"d-sr-only"},ir={key:1,class:"d-sr-only"},cr={class:"file-item__title"},dr={class:"file-item__name text-base"},ur={key:0,class:"file-item__message text-base"},mr={key:1,class:"file-item__error-message text-error"},pr={class:"file-item__actions"},fr={key:0,class:"file-item__message-progress"},hr={class:"d-sr-only"},gr=Z(e.defineComponent({__name:"UploadItem",props:{itemId:{},title:{},fileName:{default:void 0},message:{default:void 0},optional:{type:Boolean,default:!1},state:{default:"initial"},progress:{default:void 0},showUploadBtn:{type:Boolean,default:!0},showDeleteBtn:{type:Boolean,default:!0},showPreviewBtn:{type:Boolean,default:!1},tag:{default:"div"},locales:{default:()=>ka}},emits:["upload","preview","delete"],setup(o){return(a,n)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(a.tag),{class:"file-item"},{default:e.withCtx(()=>[e.createElementVNode("div",or,[e.createElementVNode("div",lr,[e.createElementVNode("span",rr,[e.renderSlot(a.$slots,"file-icon",{state:a.state},()=>[a.state==="success"?(e.openBlock(),e.createElementBlock("span",sr,e.toDisplayString(a.locales.success),1)):a.state==="error"?(e.openBlock(),e.createElementBlock("span",ir,e.toDisplayString(a.locales.error),1)):e.createCommentVNode("",!0),a.state==="error"?(e.openBlock(),e.createBlock(O.VIcon,{key:2,size:e.unref(It).iconSize.default,"aria-label":a.locales.error,color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ht)),1)]),_:1},8,["size","aria-label"])):a.state==="success"?(e.openBlock(),e.createBlock(O.VIcon,{key:3,size:e.unref(It).iconSize.default,"aria-label":a.locales.success,color:"success"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(yt)),1)]),_:1},8,["size","aria-label"])):(e.openBlock(),e.createBlock(O.VIcon,{key:4,size:e.unref(It).iconSize.default,color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Gn)),1)]),_:1},8,["size"]))],!0)]),e.createElementVNode("div",null,[e.createElementVNode("div",cr,e.toDisplayString(a.title),1),e.createElementVNode("div",dr,e.toDisplayString(a.fileName),1),a.message||a.optional?(e.openBlock(),e.createElementBlock("div",ur,e.toDisplayString(a.message??a.locales.optionalDocument),1)):e.createCommentVNode("",!0),a.state==="error"?(e.openBlock(),e.createElementBlock("div",mr,e.toDisplayString(a.locales.error),1)):e.createCommentVNode("",!0)])]),e.createElementVNode("div",pr,[(a.state==="initial"||a.state=="error")&&a.showUploadBtn?(e.openBlock(),e.createBlock(U.VBtn,{key:0,class:"file-item__action file-item__action-upload text-primary",variant:"text",onClick:n[0]||(n[0]=t=>a.$emit("upload",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode(O.VIcon,{color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(lo)),1)]),_:1})]),default:e.withCtx(()=>[n[3]||(n[3]=e.createElementVNode("span",null,"Importer",-1))]),_:1})):e.createCommentVNode("",!0),a.state==="success"&&a.showPreviewBtn?(e.openBlock(),e.createBlock(U.VBtn,{key:1,class:"file-item__action file-item__action-preview text-primary",variant:"text",onClick:n[1]||(n[1]=t=>a.$emit("preview",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode(O.VIcon,{color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Wn)),1)]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(a.locales.see),1)]),_:1})):e.createCommentVNode("",!0),a.state==="success"&&a.showDeleteBtn?(e.openBlock(),e.createBlock(U.VBtn,{key:2,class:"file-item__action file-item__action-delete text-error",variant:"text",onClick:n[2]||(n[2]=t=>a.$emit("delete",a.itemId))},{prepend:e.withCtx(()=>[e.createVNode(O.VIcon,{color:"error"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Hn)),1)]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(a.locales.delete),1)]),_:1})):e.createCommentVNode("",!0)])]),a.state==="loading"?(e.openBlock(),e.createElementBlock("div",fr,[e.createElementVNode("p",hr,e.toDisplayString(a.locales.uploading),1),e.createVNode(Bn.VProgressLinear,{indeterminate:a.progress===void 0,"model-value":a.progress,progress:a.progress,height:"7",color:"primary",rounded:"true"},null,8,["indeterminate","model-value","progress"])])):e.createCommentVNode("",!0)]),_:3}))}}),[["__scopeId","data-v-9b386f7d"]]),Va=Z(e.defineComponent({__name:"FileList",props:{uploadList:{},locales:{default:()=>ka},maxWidth:{},minWidth:{},width:{}},emits:["upload","preview","delete"],setup(o){const a=o,{widthStyles:n}=Ee(a);return(t,l)=>(e.openBlock(),e.createElementBlock("ul",{class:"upload-list",style:e.normalizeStyle(e.unref(n))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.uploadList,r=>(e.openBlock(),e.createBlock(gr,{key:r.id,"item-id":r.id,title:r.title,"file-name":r.fileName,optional:r.optional,state:r.state,progress:r.progress,"show-upload-btn":r.showUploadBtn,"show-preview-btn":r.showPreviewBtn,"show-delete-btn":r.showDeleteBtn,tag:"li",locales:t.locales,onUpload:()=>t.$emit("upload",t.uploadList.find(s=>s.id===r.id)),onPreview:()=>t.$emit("preview",t.uploadList.find(s=>s.id===r.id)),onDelete:()=>t.$emit("delete",t.uploadList.find(s=>s.id===r.id))},{"file-icon":e.withCtx(s=>[e.renderSlot(t.$slots,`file-icon-${r.id}`,e.mergeProps({ref_for:!0},s),void 0,!0)]),_:2},1032,["item-id","title","file-name","optional","state","progress","show-upload-btn","show-preview-btn","show-delete-btn","locales","onUpload","onPreview","onDelete"]))),128))],4))}}),[["__scopeId","data-v-2fa21e0d"]]),yr={pdf:{height:"556px",width:"100%"},image:{style:"width: 100%;"}},br={previewNotAvailable:"Impossible de prévisualiser le fichier.",previewTypeNotAvailable:"Impossible de prévisualiser ce type de fichier."},kr={key:0,class:"sy-file-preview"},Vr=["data"],wr={class:"mb-0"},Br=["src","alt"],Cr={class:"mb-0"},_t=e.defineComponent({__name:"FilePreview",props:{file:{default:void 0},options:{default:void 0},locales:{default:()=>br}},setup(o){const a=o,n=e.ref(""),t=e.computed(()=>{var c;return((c=a.file)==null?void 0:c.type)==="application/pdf"}),l=e.computed(()=>a.file?/^image\//.test(a.file.type):!1),r=e.computed(()=>Mt(yr,a.options||{})),s=()=>{!a.file||!(t.value||l.value)||(n.value=URL.createObjectURL(a.file))},i=()=>{URL.revokeObjectURL(n.value)};return e.watch(()=>a.file,s,{immediate:!0}),e.onUnmounted(i),(c,d)=>c.file?(e.openBlock(),e.createElementBlock("div",kr,[t.value?(e.openBlock(),e.createElementBlock("object",e.mergeProps({key:0,data:n.value},r.value.pdf,{type:"application/pdf",onLoad:i}),[e.createElementVNode("p",wr,e.toDisplayString(c.locales.previewNotAvailable),1)],16,Vr)):l.value?(e.openBlock(),e.createElementBlock("img",e.mergeProps({key:1,src:n.value,alt:r.value.image.alt||""},r.value.image,{onLoad:i}),null,16,Br)):e.renderSlot(c.$slots,"default",{key:2},()=>[e.createElementVNode("p",Cr,e.toDisplayString(c.locales.previewTypeNotAvailable),1)])])):e.createCommentVNode("",!0)}});function wa(o,a,n=" "){const t=Math.floor(Math.log(o)/Math.log(1024));return Number((o/Math.pow(1024,t)).toFixed(2))*1+n+a[t]}const ge={or:"Ou",chooseFile:o=>o?"Choisir des fichiers":"Choisir un fichier",infoText:(o,a)=>`Taille max. : ${o}. ${a.length===1?"Format accepté":"Formats acceptés"} : ${a.join(", ")}`,fileSizeUnits:["o","Ko","Mo","Go","To"],dropFilesHere:o=>o?"Déposer vos fichiers ici":"Déposer votre fichier ici",errorSize:(o,a)=>`Le fichier ${o} est trop volumineux. Taille max. : ${a}`,errorExtension:(o,a)=>`Le fichier ${o} a une extension invalide. Extensions acceptées : ${a.join(", ")}`},Mr={class:"sy-file-upload-placeholder"},Nr={class:"mt-1 font-weight-medium text-black"},Sr={class:"mb-2 sy-file-upload-caption"},Lr={class:"sy-file-upload-btn bg-primary text-white elevation-2"},vr={class:"mt-4 sy-file-upload-caption"},xr=Z(e.defineComponent({__name:"FileUploadContent",props:{allowedExtensions:{},fileSizeUnits:{},fileSizeMax:{},multiple:{type:Boolean}},setup(o){const a=o,n=e.computed(()=>wa(a.fileSizeMax,a.fileSizeUnits));return(t,l)=>(e.openBlock(),e.createElementBlock("span",Mr,[e.renderSlot(t.$slots,"icon",{},()=>[e.createVNode(O.VIcon,{size:"40",color:"primary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Pn)),1)]),_:1})],!0),e.createElementVNode("span",Nr,[e.renderSlot(t.$slots,"action-text",{multiple:t.multiple},()=>[e.createElementVNode("span",null,e.toDisplayString(e.unref(ge).dropFilesHere(t.multiple)),1)],!0)]),e.createElementVNode("span",Sr,[e.renderSlot(t.$slots,"or",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ge).or),1)],!0)]),e.createElementVNode("span",Lr,[e.renderSlot(t.$slots,"button-text",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ge).chooseFile(t.multiple)),1)],!0)]),e.createElementVNode("span",vr,[e.renderSlot(t.$slots,"info-text",{maxSize:n.value,extensions:t.allowedExtensions},()=>[e.createTextVNode(e.toDisplayString(e.unref(ge).infoText(n.value,t.allowedExtensions)),1)],!0)])]))}}),[["__scopeId","data-v-03a3b5b3"]]);function Er(o,a){e.onMounted(()=>{const n=e.toValue(o);n&&n.addEventListener("drop",t=>{var r;t.preventDefault(),t.stopPropagation();const l=(r=t.dataTransfer)==null?void 0:r.files;l!=null&&l.length&&a(Array.from(l))})})}function $r(o,a,n,t){const l=[],r=[];for(const s of o){let i=!0;s.size>a&&(l.push(ge.errorSize(s.name,wa(a,t))),i=!1),!n.includes(s.name.split(".").pop()||"")&&n.length>0&&(l.push(ge.errorExtension(s.name,n)),i=!1),i&&r.push(s)}return{errors:l,validFiles:r}}const Ir=["disabled","multiple","accept"],Ba=Z(e.defineComponent({__name:"FileUpload",props:{modelValue:{},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},fileSizeMax:{default:10485760},fileSizeUnits:{default:()=>ge.fileSizeUnits},allowedExtensions:{default:()=>["pdf","jpg","jpeg","png"]},locales:{default:()=>ge},maxWidth:{},minWidth:{},width:{}},emits:["update:modelValue","error"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(!1),s="file-upload-"+e.useId(),i=e.ref(null),c=e.ref(null),d=e.ref([]),p=ae.useTheme().current.value.dark;a({fileInput:c}),e.watch(()=>t.modelValue,g=>{d.value=g},{immediate:!0}),e.watch(d,g=>{l("update:modelValue",g)});const{widthStyles:u}=Ee(t);function f(g){if(t.disabled)return;t.multiple||(g=g.slice(0,1));const{errors:y,validFiles:h}=$r(g,t.fileSizeMax,t.allowedExtensions,t.fileSizeUnits);if(y.length){l("error",y);return}t.multiple?d.value=[...d.value,...h]:d.value=h}Er(i,f);function m(g){const y=g.target.files;y&&(f(Array.from(y)),g.target.value="")}return(g,y)=>(e.openBlock(),e.createElementBlock("label",{ref_key:"dropZone",ref:i,for:s,class:e.normalizeClass([[{dragover:r.value,"sy-file-upload--disabled":g.disabled,"dark-mode":e.unref(p)}],"sy-file-upload d-block pa-4"]),style:e.normalizeStyle(e.unref(u)),onDragover:y[0]||(y[0]=e.withModifiers(h=>r.value=!0,["prevent"])),onDragleave:y[1]||(y[1]=h=>r.value=!1)},[e.createElementVNode("input",{id:s,ref_key:"fileInput",ref:c,type:"file",disabled:g.disabled,multiple:g.multiple,accept:g.allowedExtensions.map(h=>`.${h}`).join(", "),class:"sy-file-upload-input",onChange:m},null,40,Ir),e.renderSlot(g.$slots,"default",{},()=>[e.createVNode(xr,{"allowed-extensions":g.allowedExtensions,multiple:g.multiple,"file-size-max":g.fileSizeMax,"file-size-units":g.fileSizeUnits},e.createSlots({_:2},[e.renderList(g.$slots,(h,k)=>({name:k,fn:e.withCtx(b=>[e.renderSlot(g.$slots,k,e.normalizeProps(e.guardReactiveProps(b||{})),void 0,!0)])}))]),1032,["allowed-extensions","multiple","file-size-max","file-size-units"])],!0)],38))}}),[["__scopeId","data-v-ddb06402"]]);var Ca={exports:{}};(function(o,a){(function(n,t,l){o.exports=l(),o.exports.default=l()})("slugify",Xe,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),t=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function l(r,s){if(typeof r!="string")throw new Error("slugify: string argument expected");s=typeof s=="string"?{replacement:s}:s||{};var i=t[s.locale]||{},c=s.replacement===void 0?"-":s.replacement,d=s.trim===void 0?!0:s.trim,p=r.normalize().split("").reduce(function(u,f){var m=i[f];return m===void 0&&(m=n[f]),m===void 0&&(m=f),m===c&&(m=" "),u+m.replace(s.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return s.strict&&(p=p.replace(/[^A-Za-z0-9\s]/g,"")),d&&(p=p.trim()),p=p.replace(/\s+/g,c),s.lower&&(p=p.toLowerCase()),p}return l.extend=function(r){Object.assign(n,r)},l})})(Ca);var _r=Ca.exports;const Dr=Le(_r);function Ma(o){let a=o,n;if(o&&typeof o=="object"){a=Object.prototype.toString.call(o)==="[object Array]"?[]:{};for(n in o)o[n]!==void 0&&(a[n]=Ma(o[n]))}return a}function Na(o,a){const n=e.ref([]);e.watch(o,p=>{n.value=Ma(p)},{deep:!0,immediate:!0});function t(p){return r(p).length}function l(p){return Dr(p,{lower:!0})}function r(p){const{value:u,formatChip:f}=p;if(u!==void 0&&f)return f(u);const m=typeof u=="string",g=typeof u=="number",y=typeof u=="object"&&u!==null,h=Array.isArray(u);if(m||g)return u===""?[]:[{text:u.toString(),value:u}];if(h)return u.map(k=>typeof k!="object"?{text:k.toString(),value:k}:{text:k.title||k.text||k.value.toString(),value:k});if(y){const k=u;return k.from!==void 0&&k.to!==void 0?k.from===null||k.to===null?[]:[{text:`${k.from} – ${k.to}`,value:k}]:Object.keys(k).map(M=>{var L;return{text:k[M].title||k[M].text||((L=k[M].value)==null?void 0:L.toString())||k[M].toString(),value:k[M]}})}return[]}function s(p,u){const f=p.value,m=typeof f=="string",g=typeof f=="number",y=typeof f=="object"&&f!==null,h=Array.isArray(f);if((m||g)&&(p.value=void 0),h){const k=f,b=u.value,M=k.filter(L=>Array.isArray(b)?!b.includes(L):typeof L=="object"?L.value!==b.value:L!==b),N=M.length?M:void 0;p.value=N,d();return}if(y){const k=f,b=u.value;if(k.from!==void 0&&k.to!==void 0){p.value=void 0,d();return}delete k[b],p.value=k}d()}function i(p){p.value=void 0,d()}function c(){n.value.forEach(p=>{p.value=void 0}),d()}function d(){a("update:modelValue",n.value)}return{filters:n,updateValue:d,removeChip:s,resetFilter:i,resetAllFilters:c,getChips:r,getFilterCount:t,formatFilterName:l}}const Tr={badgeLabel:o=>`${o} filtre${o>1?"s":""}`},Ar={class:"sy-filters-inline d-flex flex-wrap max-width-none ma-n2"},Zr=Z(e.defineComponent({__name:"FilterInline",props:{modelValue:{default:()=>[]},locales:{default:()=>Tr}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{filters:l,updateValue:r,removeChip:s,resetFilter:i,getChips:c,getFilterCount:d,formatFilterName:p}=Na(e.toRef(n,"modelValue"),t);return(u,f)=>(e.openBlock(),e.createElementBlock("div",Ar,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(l),m=>(e.openBlock(),e.createBlock(Ce.VMenu,{key:m.name,"close-on-content-click":!1,"min-width":"300px",width:"400px",offset:"12","nudge-bottom":"10px"},{activator:e.withCtx(({props:g})=>[e.createVNode(U.VBtn,e.mergeProps({ref_for:!0},g,{class:[`sy-filter-${m.name}`,"ma-2"],variant:e.unref(d)(m)?void 0:"outlined",color:"secondary",rounded:""}),{default:e.withCtx(()=>[e.unref(d)(m)?(e.openBlock(),e.createBlock(Kt.VBadge,{key:0,content:e.unref(d)(m),label:u.locales.badgeLabel(e.unref(d)(m)),inline:"",class:"ml-n1 mr-1"},null,8,["content","label"])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(m.title)+" ",1),e.createVNode(O.VIcon,{size:"small",class:"ml-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(bt)),1)]),_:1})]),_:2},1040,["class","variant"])]),default:e.withCtx(()=>[e.createVNode(Me.VSheet,{color:"white",class:"pa-4"},{default:e.withCtx(()=>[e.createVNode(Nt,{items:e.unref(c)(m),"overflow-limit":m.chipOverflowLimit,class:"mb-5","vuetify-options":{chip:{color:"secondary"},icon:{color:"white"}},onRemove:g=>e.unref(s)(m,g),onReset:g=>e.unref(i)(m)},null,8,["items","overflow-limit","onRemove","onReset"]),e.renderSlot(u.$slots,`${e.unref(p)(m.name)}`,{props:{modelValue:m.value,"onUpdate:modelValue":g=>{g!==m.value&&(m.value=g,e.unref(r)())}}},void 0,!0)]),_:2},1024)]),_:2},1024))),128))]))}}),[["__scopeId","data-v-2da581a4"]]),Pr={filterBtnLabel:"Filtres",badgeLabel:o=>`${o} filtre${o>1?"s":""}`,reset:"Réinitialiser",close:"Fermer",apply:"Appliquer"},Rr={class:"sy-filters-side-bar"},Hr={key:0,class:"ml-1"},Or={class:"px-4 pb-4 pt-10"},Fr=Z(e.defineComponent({__name:"FilterSideBar",props:{modelValue:{default:()=>[]},locales:{default:()=>Pr}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{filters:l,updateValue:r,removeChip:s,resetFilter:i,getChips:c,getFilterCount:d,formatFilterName:p,resetAllFilters:u}=Na(e.toRef(n,"modelValue"),t),f=e.ref(!1),m=e.computed(()=>n.modelValue.reduce((h,k)=>h+d(k),0));function g(){f.value=!f.value}function y(){r(),f.value=!1}return(h,k)=>(e.openBlock(),e.createElementBlock("div",Rr,[e.createVNode(U.VBtn,{class:e.normalizeClass(["px-8 py-3",{"v-btn--active":f.value}]),color:"primary",variant:"text",size:"large",onClick:g},{default:e.withCtx(()=>[m.value?(e.openBlock(),e.createBlock(Kt.VBadge,{key:0,content:m.value,label:h.locales.badgeLabel(m.value),color:"secondary",inline:"",class:"ml-n1 mr-1"},null,8,["content","label"])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(h.locales.filterBtnLabel)+" ",1),e.createVNode(O.VIcon,{class:"ml-2",size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(jn)),1)]),_:1})]),_:1},8,["class"]),e.createVNode(Cn.VNavigationDrawer,{"model-value":f.value,sticky:"",temporary:"",location:"right",rounded:"0",scrim:!1,rail:"","rail-width":"395","disable-resize-watcher":"",class:"elevation-6"},{default:e.withCtx(()=>[e.createVNode(ue.VExpansionPanels,{variant:"accordion"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(l),b=>(e.openBlock(),e.createBlock(ue.VExpansionPanel,{key:b.name,class:e.normalizeClass(`vd-filter-${b.name}`),tile:"",elevation:"0"},{default:e.withCtx(()=>[e.createVNode(ue.VExpansionPanelTitle,{class:"text-subtitle-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.title)+" ",1),e.unref(d)(b)?(e.openBlock(),e.createElementBlock("span",Hr," ("+e.toDisplayString(e.unref(d)(b))+") ",1)):e.createCommentVNode("",!0)]),_:2},1024),e.createVNode(ue.VExpansionPanelText,null,{default:e.withCtx(()=>[e.createVNode(Nt,{items:e.unref(c)(b),"overflow-limit":b.chipOverflowLimit,class:"mb-5","vuetify-options":{chip:{color:"secondary"},icon:{color:"white"}},onRemove:M=>e.unref(s)(b,M),onReset:M=>e.unref(i)(b)},null,8,["items","overflow-limit","onRemove","onReset"]),e.renderSlot(h.$slots,`${e.unref(p)(b.name)}`,{props:{modelValue:b.value,"onUpdate:modelValue":M=>b.value=M}},void 0,!0)]),_:2},1024)]),_:2},1032,["class"]))),128))]),_:3}),e.createVNode(le.VSpacer),e.createElementVNode("div",Or,[e.createVNode(U.VBtn,{color:"primary",block:"",size:"large",variant:"outlined",class:"mb-4",onClick:k[0]||(k[0]=b=>f.value=!1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.locales.close),1)]),_:1}),e.createVNode(U.VBtn,{color:"primary",block:"",size:"large",variant:"outlined",class:"mb-4",onClick:e.withModifiers(e.unref(u),["stop"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.locales.reset),1)]),_:1},8,["onClick"]),e.createVNode(U.VBtn,{block:"",size:"large",color:"primary",onClick:e.withModifiers(y,["stop"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.locales.apply),1)]),_:1})])]),_:3},8,["model-value"])]))}}),[["__scopeId","data-v-093e7cc2"]]),Oe={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},oe={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},zr=Object.values(oe),Sa={colors:{background:{accentContrasted:"#07275c"},text:{subduedOnDark:"rgba(255, 255, 255, 0.7)"}}},Qe={primary:he.blue.base,secondary:he.cyan.darken40,risquePro:he.brick.base},$e=(o,a)=>({width:o,height:a}),Ur={[oe.X_SMALL]:$e("105","32"),[oe.SMALL]:$e("131","40"),[oe.NORMAL]:$e("211","64")},qr={[oe.X_SMALL]:$e("32","32"),[oe.SMALL]:$e("40","40"),[oe.NORMAL]:$e("64","64")};function Dt(o,a,n){const l=`(${a.join("|")})`,r=new RegExp(`^${l}$`);return n.match(r)!==null||console.error(`Invalid value for the \`${o}\` prop. Received: "${n}", expected one of: [${a.join(", ")}].`),!0}const Yr=["fill","aria-label","width","height","viewBox","aria-hidden"],Wr=["fill"],Kr={key:1,"aria-hidden":"true",role:"presentation"},Gr={key:2,role:"presentation","aria-hidden":"true"},jr={key:3},Tt=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:oe.NORMAL,validator:o=>Dt("size",zr,o)}},setup(o){const a=o,n=e.ref(Qe.risquePro),t=e.computed(()=>a.dark?"#fff":Qe.primary),l=e.computed(()=>a.avatar?qr[a.size]:Ur[a.size]),r=e.computed(()=>a.avatar?"0 0 64 64":a.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(a.ariaLabel)return a.ariaLabel;if(a.avatar)return"";const i=" : ",c=", ";let d=`${Oe.assuranceMaladie}`;return a.hideOrganism||(d=Oe.organism.concat(c,d)),a.hideSignature||(d=d.concat(i,Oe.signature)),a.risquePro&&(d=Oe.assuranceMaladie+": "+Oe.risquePro),d});return(i,c)=>(e.openBlock(),e.createElementBlock("svg",{fill:t.value,"aria-label":s.value,width:l.value.width,height:l.value.height,viewBox:r.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":o.avatar?"true":"false"},[o.risquePro&&!o.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:n.value,d:"M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"},null,8,Wr)):!o.hideSignature&&!o.avatar?(e.openBlock(),e.createElementBlock("g",Kr,c[0]||(c[0]=[e.createStaticVNode('<path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z"></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z"></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z"></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z"></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z"></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z"></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z"></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z"></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z"></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z"></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z"></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z"></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z"></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z"></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z"></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z"></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z"></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z"></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z"></path>',27)]))):e.createCommentVNode("",!0),!o.hideOrganism&&!o.avatar?(e.openBlock(),e.createElementBlock("g",Gr,c[1]||(c[1]=[e.createStaticVNode('<path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z"></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z"></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z"></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z"></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z"></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z"></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z"></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z"></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>',15)]))):e.createCommentVNode("",!0),o.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",jr,c[2]||(c[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)]))),c[3]||(c[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,Yr))}}),Jr={followUs:"Suivez-nous :"},Xr={class:"d-flex flex-column"},Qr={class:"vd-social-media-links-label text-subtitle-2 text--primary"},es={class:"vd-social-media-links-content d-flex max-width-none"},La=Z(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(o){const a=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",Xr,[e.createElementVNode("span",Qr,e.toDisplayString(e.unref(Jr).followUs),1),e.createElementVNode("ul",es,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.links,(l,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(U.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(O.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-9639b916"]]),At={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},ts=[{icon:Xn,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:Kn,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:ro,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],as={footer:{elevation:3,color:"backgroundSurface",height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:"backgroundSurface"},goTopBtnIcon:{color:"white"}},ye={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",[At["non-compliant"]]:"non conforme",[At["partially-compliant"]]:"partiellement conforme",[At["fully-compliant"]]:"totalement conforme",a11yLabel:o=>`Accessibilité : ${o}`},ns={class:"container"},os={key:0,class:"d-flex align-start align-sm-center mb-6"},ls={class:"d-flex flex-grow-1 flex-column flex-sm-row"},rs={key:0,class:"text-primary my-3 mx-4"},ss=Z(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:()=>ts},light:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=Qt,l=oe,r=e.useSlots(),s=ae.useDisplay(),i=te(as,n),c=g=>g.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const g=ye[n.a11yCompliance];return typeof g=="string"?ye.a11yLabel(g):""}),u=e.computed(()=>!!r.default),f=e.computed(()=>s.smAndDown.value?l.SMALL:l.NORMAL),m=e.computed(()=>n.linkItems?n.linkItems:[{text:ye.sitemapLabel,to:n.sitemapRoute,hidden:n.hideSitemapLink},{text:ye.cguLabel,to:n.cguRoute,hidden:n.hideCguLink},{text:ye.cookiesLabel,to:n.cookiesRoute,hidden:n.hideCookiesLink},{text:ye.legalNoticeLabel,to:n.legalNoticeRoute,hidden:n.hideLegalNoticeLink},{text:p.value,to:n.a11yStatementRoute,hidden:n.hideA11yLink}].filter(y=>!y.hidden));return a({logoSize:f}),(g,y)=>(e.openBlock(),e.createBlock(Mn.VFooter,e.mergeProps({...e.unref(i).footer,...g.$attrs},{color:n.light?"white":e.unref(i).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":u.value,"v-theme--light":n.light,"v-theme--dark":!n.light}],role:"contentinfo"}),{default:e.withCtx(()=>[e.createElementVNode("div",ns,[u.value?(e.openBlock(),e.createElementBlock("div",os,[e.createElementVNode("div",ls,[e.renderSlot(g.$slots,"logo",{},()=>[n.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Tt,{key:0,size:f.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!n.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(le.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(i).spacer)),null,16),n.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(La,{key:0,links:n.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(U.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(i).goTopBtn,{"aria-label":e.unref(ye).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(O.VIcon,e.mergeProps(e.unref(i).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),u.value?(e.openBlock(),e.createBlock(de.VDivider,e.mergeProps({key:1},e.unref(i).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"default",{},void 0,!0),u.value?(e.openBlock(),e.createBlock(de.VDivider,e.mergeProps({key:2},e.unref(i).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"py-2 py-sm-0":!u.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(m.value,(h,k)=>(e.openBlock(),e.createElementBlock("li",{key:k},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(c(h)),{href:h.href,to:h.to,"aria-label":h.ariaLabel,target:h.openInNewTab?"_blank":void 0,tabindex:k,rel:h.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),n.version?(e.openBlock(),e.createElementBlock("li",rs,e.toDisplayString(e.unref(ye).versionLabel)+" "+e.toDisplayString(n.version),1)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"append",{},void 0,!0)],2)])]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-a1074b6c"]]),va={btnLabel:o=>`S’identifier avec FranceConnect${o?"+":""}`,infoLinkLabel:o=>`Qu’est-ce que FranceConnect${o?"+":""} ?`},is=["href","aria-label"],cs=["viewBox","width"],ds=["fill"],us=["fill"],ms=["href"],ps=Z(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(o){const a=o,n=ae.useTheme(),t=e.computed(()=>n.current.value.dark||a.dark),l=a.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>a.isConnectPlus?"245px":"209px"),s=e.computed(()=>l);return(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":t.value}])},[e.createElementVNode("a",{href:i.href,"aria-label":e.unref(va).btnLabel(i.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${a.isConnectPlus?"245":"209"} 56`,width:r.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[c[0]||(c[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)),c[1]||(c[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)),c[2]||(c[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)),c[3]||(c[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:t.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,ds),i.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:t.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,us)):e.createCommentVNode("",!0)],8,cs))],8,is),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(va).infoLinkLabel(i.isConnectPlus))+" ",1),e.createVNode(O.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(oa)),1)]),_:1})],8,ms)],2))}}),[["__scopeId","data-v-5bd47a0e"]]);function xa(o,a){let n=null,t=0;return function(...l){n!==null&&window.clearTimeout(n),performance.now()-t>=a?(window.requestAnimationFrame(()=>o(...l)),t=performance.now()):n=window.setTimeout(()=>{o(...l),t=performance.now()},a)}}const fs=990,Ea=Symbol("registerHeaderMenu");function et(){const o=e.ref(!1);let a;function n(t){o.value=t.matches}return e.onMounted(()=>{a=window.matchMedia(`(min-width: ${fs}px)`),o.value=a.matches,a.addEventListener("change",n)}),e.onUnmounted(()=>{a.removeEventListener("change",n)}),{isDesktop:o}}const hs={ariaLabel:"Ouvrir le menu"},gs={},ys={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function bs(o,a){return e.openBlock(),e.createElementBlock("svg",ys,a[0]||(a[0]=[e.createStaticVNode('<g data-v-51224cf0><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-51224cf0></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-51224cf0></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-51224cf0></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-51224cf0></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-51224cf0></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-51224cf0></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-51224cf0></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-51224cf0></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-51224cf0></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-51224cf0></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-51224cf0></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-51224cf0></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-51224cf0></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-51224cf0></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-51224cf0></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-51224cf0></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-51224cf0></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-51224cf0></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-51224cf0></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-51224cf0></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-51224cf0></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-51224cf0></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-51224cf0></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-51224cf0></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-51224cf0></path>',8)]))}const ks=Z(gs,[["render",bs],["__scopeId","data-v-51224cf0"]]),Vs={},ws={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function Bs(o,a){return e.openBlock(),e.createElementBlock("svg",ws,a[0]||(a[0]=[e.createStaticVNode('<g data-v-e01c8927><path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" data-v-e01c8927></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-e01c8927></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" data-v-e01c8927></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" data-v-e01c8927></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" data-v-e01c8927></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" data-v-e01c8927></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" data-v-e01c8927></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" data-v-e01c8927></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" data-v-e01c8927></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" data-v-e01c8927></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" data-v-e01c8927></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" data-v-e01c8927></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" data-v-e01c8927></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" data-v-e01c8927></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-e01c8927></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-e01c8927></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-e01c8927></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" data-v-e01c8927></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" data-v-e01c8927></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" data-v-e01c8927></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" data-v-e01c8927></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" data-v-e01c8927></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" data-v-e01c8927></path></g><g data-v-e01c8927><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" data-v-e01c8927></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" data-v-e01c8927></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" data-v-e01c8927></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" data-v-e01c8927></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" data-v-e01c8927></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-e01c8927></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" data-v-e01c8927></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" data-v-e01c8927></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" data-v-e01c8927></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" data-v-e01c8927></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" data-v-e01c8927></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-e01c8927></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" data-v-e01c8927></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-e01c8927></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-e01c8927></path></g><g data-v-e01c8927><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-e01c8927></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-e01c8927></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-e01c8927></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-e01c8927></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-e01c8927></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-e01c8927></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-e01c8927></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-e01c8927></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-e01c8927></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-e01c8927></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-e01c8927></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-e01c8927></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-e01c8927></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-e01c8927></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-e01c8927></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-e01c8927></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-e01c8927></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-e01c8927></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-e01c8927></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-e01c8927></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-e01c8927></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-e01c8927></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-e01c8927></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-e01c8927></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-e01c8927></path>',10)]))}const Cs=Z(Vs,[["render",Bs],["__scopeId","data-v-e01c8927"]]),Ms=["fill"],Ns={key:1},Ss={class:"service-title"},Ls={key:0,class:"service-subtitle"},vs=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:hs.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,t=ae.useTheme().current.value.colors.primary,{isDesktop:l}=et(),r=e.computed(()=>{var s,i,c,d;if((s=a.homeLink)!=null&&s.to){const p=(c=(i=e.getCurrentInstance())==null?void 0:i.appContext)==null?void 0:c.components;return p&&"RouterLink"in p?"router-link":"div"}return(d=a.homeLink)!=null&&d.href?"a":"div"});return(s,i)=>{var c,d,p;return e.openBlock(),e.createBlock(e.resolveDynamicComponent(r.value),e.mergeProps({to:"to"in s.homeLink?(c=s.homeLink)==null?void 0:c.to:void 0,href:"href"in s.homeLink?(d=s.homeLink)==null?void 0:d.href:void 0,"aria-label":"aria-label"in s.homeLink?(p=s.homeLink)==null?void 0:p["aria-label"]:void 0},{class:"logo"}),{default:e.withCtx(()=>[e.unref(l)?(e.openBlock(),e.createBlock(Cs,{key:0,"aria-label":a.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(ks,{key:1,"aria-label":a.ariaLabel},null,8,["aria-label"])),e.renderSlot(s.$slots,"brand-content",{},()=>[s.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(t),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},i[0]||(i[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,Ms)):e.createCommentVNode("",!0),s.serviceTitle?(e.openBlock(),e.createElementBlock("div",Ns,[e.createElementVNode("div",Ss,e.toDisplayString(s.serviceTitle),1),s.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",Ls,e.toDisplayString(s.serviceSubtitle),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],!0)]),_:3},16)}}}),$a=Z(vs,[["__scopeId","data-v-8295d36d"]]),xs={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function Es(){const o=e.ref(null),a=e.ref("");function n(){const t=document.documentElement.scrollTop;if(o.value===null)return o.value=t,"";a.value=t>=o.value?"bottom":"top",o.value=t}return e.onMounted(()=>{window.addEventListener("scroll",n)}),e.onUnmounted(()=>{window.removeEventListener("scroll",n)}),{scrollDirection:a}}const $s={key:0,class:"header-prepend"},Is={class:"inner-header"},_s={class:"header-logo pl-xl-0 pl-md-14 pl-4"},Ds={key:0,class:"header-side"},Ts={key:1,class:"header-append"},As=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeLink:{default:void 0},homeAriaLabel:{default:xs.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(o){const a=e.ref(),n=o;function t(b){e.watch(b,M=>{a.value=M})}e.provide(Ea,t);const l=e.ref(null),r=e.ref(null),s=e.ref("auto"),i=e.ref(0),c=e.ref("auto"),d=e.ref(!0),p=e.ref(!1),u=e.ref(!1);function f(){const b=l.value.getBoundingClientRect();i.value=b.top+window.scrollY,s.value=`${r.value.offsetHeight}px`,c.value=`${l.value.offsetWidth}px`,d.value=window.scrollY<=i.value,p.value=window.scrollY>i.value+b.height,u.value=window.scrollY>i.value+b.height*2}const m=xa(f,16);e.onMounted(()=>{f(),window.addEventListener("scroll",m),window.addEventListener("resize",m)}),e.onUnmounted(()=>{window.removeEventListener("scroll",m),window.removeEventListener("resize",m)});const g=e.computed(()=>({minHeight:s.value})),{scrollDirection:y}=Es(),{isDesktop:h}=et(),k=e.computed(()=>{if(n.hideWhenDown&&!h.value&&!a.value){const M=y.value===""&&d.value||y.value==="bottom"&&!p.value||y.value==="top"&&d.value,N=y.value==="bottom"&&p.value;return{position:M?"relative":"fixed",width:M?"100%":c.value,top:M?"auto":"0",transform:N?"translateY(-100%)":"none",transition:u.value?"transform 0.3s ease":"none"}}const b=!d.value&&n.sticky;return{position:b?"fixed":"relative",width:b?c.value:"100%",top:b?"0":"auto",transform:"none",transition:"none"}});return(b,M)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:l,class:"header",style:e.normalizeStyle(g.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:r,class:"sticky-header",style:e.normalizeStyle(k.value)},[b.$slots.prepend?(e.openBlock(),e.createElementBlock("div",$s,[e.renderSlot(b.$slots,"prepend",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Is,[e.renderSlot(b.$slots,"menu",{menuOpen:a.value},void 0,!0),e.createElementVNode("div",_s,[e.renderSlot(b.$slots,"logo",{menuOpen:a.value,homeAriaLabel:b.homeAriaLabel,serviceTitle:b.serviceTitle,serviceSubtitle:b.serviceSubtitle},()=>[e.createVNode($a,{"aria-label":b.homeAriaLabel,"service-title":b.serviceTitle,"service-subtitle":b.serviceSubtitle,"home-link":b.homeLink},{"brand-content":e.withCtx(()=>[e.renderSlot(b.$slots,"logo-brand-content",{menuOpen:a.value,homeAriaLabel:b.homeAriaLabel,serviceTitle:b.serviceTitle,serviceSubtitle:b.serviceSubtitle,homeLink:b.homeLink},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle","home-link"])],!0)]),b.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",Ds,[e.renderSlot(b.$slots,"header-side",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)]),b.$slots.append?(e.openBlock(),e.createElementBlock("div",Ts,[e.renderSlot(b.$slots,"append",{menuOpen:a.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Ia=Z(As,[["__scopeId","data-v-639c8426"]]),tt={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},Zs=["aria-label","title"],Zt=Z(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(o,{expose:a}){const n=e.ref(null),t=e.useModel(o,"modelValue");function l(){var r;(r=n.value)==null||r.focus()}return a({focus:l}),(r,s)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:n,class:e.normalizeClass(["header-menu-btn",{"header-menu-btn__open":t.value}]),type:"button","aria-label":t.value?e.unref(tt).closeMenu:e.unref(tt).openMenu,title:t.value?e.unref(tt).closeMenu:e.unref(tt).openMenu,onClick:s[0]||(s[0]=()=>{t.value=!t.value})},[e.createVNode(O.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value?e.unref(Ne):e.unref(eo)),1)]),_:1}),s[1]||(s[1]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],10,Zs))}}),[["__scopeId","data-v-82f2559e"]]),_a={mainMenu:"Menu principal",publicMenu:"Menu public"},Da=Symbol("registerSubMenu");function Ta(o){const a=e.ref([]);function n(r,s){const c={id:String(a.value.length),status:r,close:s};a.value.push(c),e.watch(r,d=>{d&&t(c)})}function t(r){a.value.forEach(s=>{s.id!==r.id&&s.status&&s.close()})}e.watch(o,r=>{r||a.value.forEach(s=>{s.status&&s.close()})});const l=e.computed(()=>a.value.some(r=>r.status));return e.provide(Da,n),{haveOpenSubMenu:l}}const Ps=["aria-label"],Rs={key:0,class:"overlay"},Hs=["aria-label"],Os={class:"header-menu"},Aa=Z(e.defineComponent({__name:"HeaderBurgerMenu",props:{modelValue:{type:Boolean,default:!1},modelModifiers:{}},emits:["update:modelValue"],setup(o){const a=e.ref(null),n=e.ref(null),t=e.ref(null),l=e.ref(null),r=e.ref(0),s=e.ref(0),i=e.ref("70vh");function c(){const b=n.value.getBoundingClientRect();r.value=b.left,s.value=b.top,i.value=`calc(100vh - ${b.top}px - 48px)`}const d=xa(c,16),p=()=>{u.value&&d()};e.onMounted(()=>{c(),y(),window.addEventListener("scroll",p),window.addEventListener("resize",p),window.addEventListener("click",g,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",p),window.removeEventListener("resize",p),window.removeEventListener("click",g,{capture:!0}),document.documentElement.style.overflow="auto",document.body.style.overflow="auto"});const u=e.useModel(o,"modelValue");e.watch(u,async b=>{var M,N;y(),b?(c(),await e.nextTick(),(M=l.value)==null||M.focus()):(N=t.value)==null||N.focus()},{immediate:!0});const{isDesktop:f}=et(),m=e.computed(()=>({left:`${r.value}px`,top:`${s.value}px`,height:f.value?i.value:void 0}));function g(b){if(!u.value)return;let M=b.target;for(;M&&M!==document.body;){if(M===a.value)return;M=M.parentElement}b.stopPropagation(),u.value=!1}function y(){typeof window<"u"&&(document.documentElement.style.overflow=u.value?"hidden":"auto",document.body.style.overflow=u.value?"hidden":"auto")}const{haveOpenSubMenu:h}=Ta(e.readonly(u)),k=e.inject(Ea);return k&&k(e.readonly(u)),(b,M)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(_a).mainMenu,class:"menu mr-4"},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:n},[e.createVNode(Zt,{ref_key:"outerBtn",ref:t,modelValue:u.value,"onUpdate:modelValue":M[0]||(M[0]=N=>u.value=N)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[u.value?(e.openBlock(),e.createElementBlock("div",Rs,[e.createElementVNode("div",{role:"menu",class:"menu-wrapper",style:e.normalizeStyle(m.value)},[e.createVNode(Zt,{ref_key:"innerBtn",ref:l,modelValue:u.value,"onUpdate:modelValue":M[1]||(M[1]=N=>u.value=N)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",ref_key:"headerMenuWrapper",ref:a,class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(h)}]),role:"navigation","aria-label":e.unref(_a).publicMenu},[e.createElementVNode("div",Os,[e.renderSlot(b.$slots,"default",{},void 0,!0)])],10,Hs)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,Ps))}}),[["__scopeId","data-v-8bfe741c"]]),Fs={},zs={class:"header-menu-item"};function Us(o,a){return e.openBlock(),e.createElementBlock("li",zs,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const Za=Z(Fs,[["render",Us],["__scopeId","data-v-eebfe4fb"]]),qs={class:"header-menu-section"},Pa=Z(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(o){const a=e.useId(),n=`${a}-group`,t=`${a}-group-title`;return(l,r)=>(e.openBlock(),e.createElementBlock("div",qs,[l.$slots.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:t,class:"header-menu-section-title"},[e.renderSlot(l.$slots,"title",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:n,role:"group",class:"header-menu-section-list"},[e.renderSlot(l.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-fe759639"]]),Ys=["aria-expanded","aria-controls","title"],Ws=["id"],Ks={class:"sub-menu-content"},Gs=Z(e.defineComponent({__name:"HeaderSubMenu",setup(o){const a=e.ref(!1),n=e.useId(),t=`${n}-btn`,l=e.inject(Da,void 0);if(!l)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");l(a,()=>{a.value=!1});const{haveOpenSubMenu:r}=Ta(e.readonly(a));return(s,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":a.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:t,class:"sub-menu-btn",type:"button","aria-expanded":a.value?"true":"false","aria-controls":e.unref(n),title:a.value?"Close submenu":"Open submenu",onClick:i[0]||(i[0]=c=>a.value=!a.value)},[e.renderSlot(s.$slots,"title",{},void 0,!0),e.createVNode(O.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value?e.unref(kt):e.unref(Vt)),1)]),_:1})],8,Ys),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(n),class:"sub-menu-content-wrapper","aria-labelledby":t},[e.createElementVNode("div",Ks,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],8,Ws),[[e.vShow,a.value]])]),_:3})],2))}}),[["__scopeId","data-v-fa108bc3"]]),js={sheet:{theme:"dark",dense:!0,color:Sa.colors.background.accentContrasted},tabs:{height:"53","show-arrows":!0},tab:{"base-color":Sa.colors.text.subduedOnDark,"slider-color":"#fff",ripple:!1}},Js={class:"horizontal-menu px-xl-0 px-14"},Xs={class:"horizontal-menu__item-link"},Qs=Z(e.defineComponent({__name:"HorizontalNavbar",props:{vuetifyOptions:{},items:{}},setup(o){const n=te(js,o);return(t,l)=>(e.openBlock(),e.createBlock(Me.VSheet,e.normalizeProps(e.guardReactiveProps(e.unref(n).sheet)),{default:e.withCtx(()=>[e.createElementVNode("div",Js,[e.renderSlot(t.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(t.$slots,"default",{},()=>[e.createVNode(Gt.VTabs,e.mergeProps({class:"horizontal-menu__tabs"},e.unref(n).tabs),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(r,s)=>(e.openBlock(),e.createBlock(Gt.VTab,e.mergeProps({key:s,href:r.href,to:r.to,ref_for:!0},e.unref(n).tab,{tabindex:"0",class:"horizontal-menu__item"}),{default:e.withCtx(()=>[e.createElementVNode("span",Xs,e.toDisplayString(r.label),1)]),_:2},1040,["href","to"]))),128))]),_:1},16)],!0),e.renderSlot(t.$slots,"navigation-bar-append",{},void 0,!0)])]),_:3},16))}}),[["__scopeId","data-v-a37442cd"]]),ei={class:"inner-vertical-menu"},ti={class:"inner-vertical-menu__main-content"},ai=["href"],ni=Z(e.defineComponent({__name:"HeaderNavigationBar",props:e.mergeModels({vuetifyOptions:{},homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},homeLink:{default:void 0},sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},{burgerMenu:{type:Boolean,default:!1},burgerMenuModifiers:{}}),emits:["update:burgerMenu"],setup(o){const a=o,n=e.useModel(o,"burgerMenu"),{isDesktop:t}=et(),l=e.computed(()=>!t.value||a.items!==void 0&&a.items.length>0&&a.items.length>a.maxHorizontalMenuItems);return(r,s)=>{const i=e.resolveComponent("RouterLink");return e.openBlock(),e.createBlock(Ia,{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(Aa,{key:0,modelValue:n.value,"onUpdate:modelValue":s[1]||(s[1]=c=>n.value=c)},{default:e.withCtx(()=>[e.createElementVNode("div",ei,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",ti,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:n.value},()=>[e.createVNode(Pa,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,c=>(e.openBlock(),e.createBlock(Za,{key:c.label},{default:e.withCtx(()=>["href"in c?(e.openBlock(),e.createElementBlock("a",{key:0,href:c.href},e.toDisplayString(c.label),9,ai)):c.to?(e.openBlock(),e.createBlock(i,{key:1,to:c.to,onClick:s[0]||(s[0]=d=>n.value=!1)},{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:n.value},void 0,!0)])]),_:3},8,["modelValue"])):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:n.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:n.value},void 0,!0)]),append:e.withCtx(()=>[a.items&&!l.value?(e.openBlock(),e.createBlock(Qs,{key:0,items:r.items,"vuetify-options":r.vuetifyOptions},{"navigation-bar-prepend":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-prepend",{},void 0,!0)]),"navigation-bar-append":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-append",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-content",{},void 0,!0)]),_:3},8,["items","vuetify-options"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"])}}}),[["__scopeId","data-v-1d872dbc"]]),oi={class:"toolbar"},li={class:"container"},ri=["aria-labelledby"],si={key:0},ii={key:1,class:"link"},ci=["aria-labelledby"],di={class:"right-menu-item"},ui=Z(e.defineComponent({__name:"HeaderToolbar",props:{leftMenu:{type:Array,default:()=>[{title:"Assuré",href:"https://www.ameli.fr/assure",openInNewTab:!0},{title:"Professionnel de santé"},{title:"Entreprise",href:"https://www.ameli.fr/entreprise",openInNewTab:!0}]},rightMenu:{type:Array,default:()=>[{title:"Qui sommes-nous ?",href:"https://www.assurance-maladie.ameli.fr/qui-sommes-nous",openInNewTab:!0},{title:"Carrières",href:"https://www.assurance-maladie.ameli.fr/carrieres",openInNewTab:!0},{title:"Études et données",href:"https://www.assurance-maladie.ameli.fr/etudes-et-donnees",openInNewTab:!0},{title:"Presse",href:"https://www.assurance-maladie.ameli.fr/presse",openInNewTab:!0}]},itemsSelectMenu:{type:Array,default:()=>[{text:"Chirurgien-dentiste",value:"Chirurgien-dentiste",href:"https://www.ameli.fr/chirurgien-dentiste",openInNewTab:!0},{text:"Établissement",value:"Établissement",href:"https://www.ameli.fr/etablissement",openInNewTab:!0},{text:"Exercice coordonné",value:"Exercice coordonné",href:"https://www.ameli.fr/exercice-coordonne",openInNewTab:!0},{text:"Infirmier",value:"Infirmier",href:"https://www.ameli.fr/infirmier",openInNewTab:!0},{text:"Laboratoire d'analyses médicales",value:"Laboratoire d'analyses médicales",href:"https://www.ameli.fr/laboratoire-danalyses-medicales",openInNewTab:!0},{text:"Masseur-kinésithérapeute",value:"Masseur-kinésithérapeute",href:"https://www.ameli.fr/masseur-kinesitherapeute",openInNewTab:!0},{text:"Médecin",value:"Médecin",href:"https://www.ameli.fr/medecin",openInNewTab:!0},{text:"Orthophoniste",value:"Orthophoniste",href:"https://www.ameli.fr/orthophoniste",openInNewTab:!0},{text:"Orthoptiste",value:"Orthoptiste",href:"https://www.ameli.fr/orthoptiste",openInNewTab:!0},{text:"Pédicure-podologue",value:"Pédicure-podologue",href:"https://www.ameli.fr/pedicure-podologue",openInNewTab:!0},{text:"Pharmacien",value:"Pharmacien",href:"https://www.ameli.fr/pharmacien",openInNewTab:!0},{text:"Professionnel de la LPP/LATM",value:"Professionnel de la LPP/LATM",href:"https://www.ameli.fr/professionnel-de-la-lpplatm",openInNewTab:!0},{text:"Psychologue",value:"Psychologue",href:"https://www.ameli.fr/psychologue",openInNewTab:!0},{text:"Sage-femme",value:"Sage-femme",href:"https://www.ameli.fr/sage-femme",openInNewTab:!0},{text:"Taxi conventionné",value:"Taxi conventionné",href:"https://www.ameli.fr/taxi-conventionne",openInNewTab:!0},{text:"Transporteur sanitaire",value:"Transporteur sanitaire",href:"https://www.ameli.fr/transporteur-sanitaire",openInNewTab:!0}]},ariaLeftMenu:{type:String,default:"left-menu"},ariaRightMenu:{type:String,default:"right-menu"}},setup(o,{expose:a}){const n=o,t=u=>u.href?"a":u.to?"RouterLink":"a",l=e.ref(!1),r=e.ref(!1),s=e.ref(null),i=()=>{var f;const u=(f=document.querySelector(".custom-select > span"))==null?void 0:f.textContent;u&&u==="Professionnel de santé"&&(r.value=!1),l.value=!1},c=u=>{u===1&&(l.value=!l.value)},d=u=>{s.value=u,u!==1&&(r.value=!1)},p=()=>{s.value=null};return a({hideOverlay:i,handleLink:c,checkActiveLink:d,deleteActiveLink:p,activeIndex:s,highlightMenu:r,showOverlay:l,getLinkComponent:t}),(u,f)=>(e.openBlock(),e.createElementBlock("div",oi,[e.createElementVNode("div",li,[e.renderSlot(u.$slots,"left-menu",{},()=>[l.value?(e.openBlock(),e.createElementBlock("button",{key:0,"aria-label":"Close overlay",class:"overlay",onClick:i,onKeydown:[e.withKeys(i,["enter"]),e.withKeys(i,["esc"])]},null,32)):e.createCommentVNode("",!0),e.createElementVNode("nav",{id:"left-menu","aria-labelledby":n.ariaLeftMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.leftMenu,(m,g)=>(e.openBlock(),e.createElementBlock("li",{key:g,class:e.normalizeClass({active:s.value===g,highlight:r.value})},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(m)),{"aria-label":m.title,href:m.href,rel:m.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:m.openInNewTab?"_blank":void 0,title:m.title,to:m.to,onClick:y=>d(g),onFocus:y=>g===1&&l.value?r.value=!0:null,onMouseover:y=>g===1&&l.value?r.value=!0:null},{default:e.withCtx(()=>[o.itemsSelectMenu&&g===1?(e.openBlock(),e.createElementBlock("span",si,[e.createVNode(pa,{items:o.itemsSelectMenu,label:m.title,outlined:!1,"is-header-toolbar":"",onClick:y=>c(g)},null,8,["items","label","onClick"])])):(e.openBlock(),e.createElementBlock("span",ii,e.toDisplayString(m.title),1))]),_:2},1064,["aria-label","href","rel","target","title","to","onClick","onFocus","onMouseover"]))],2))),128))])],8,ri)],!0),e.renderSlot(u.$slots,"right-menu",{},()=>[e.createElementVNode("nav",{id:"right-menu","aria-labelledby":n.ariaRightMenu,role:"navigation"},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.rightMenu,(m,g)=>(e.openBlock(),e.createElementBlock("li",{key:g},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t(m)),{"aria-label":m.title,href:m.href,rel:m.openInNewTab?"noopener noreferrer":void 0,tabindex:0,target:m.openInNewTab?"_blank":void 0,title:m.title,to:m.to,onClick:f[0]||(f[0]=y=>p())},{default:e.withCtx(()=>[e.createElementVNode("span",di,e.toDisplayString(m.title),1)]),_:2},1032,["aria-label","href","rel","target","title","to"]))]))),128))])],8,ci)],!0)])]))}}),[["__scopeId","data-v-e2d11fb5"]]),mi={label:"Choix de la langue. Actuellement"};var pi={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 Fe=pi,Ra={},at={},Ha=[],Oa=[],Fa=[];for(const o in Fe){const{name:a,nativeName:n}=Fe[o];Ra[o]=at[a.toLowerCase()]=at[n.toLowerCase()]={code:o,name:a,nativeName:n},Ha.push(o),Oa.push(a),Fa.push(n)}var fi=class dt{static getLanguages(a=[]){return a.map(n=>dt.validate(n)?Object.assign({},Ra[n]):{code:n,name:"",nativeName:""})}static getName(a){return dt.validate(a)?Fe[a].name:""}static getAllNames(){return Oa.slice()}static getNativeName(a){return dt.validate(a)?Fe[a].nativeName:""}static getAllNativeNames(){return Fa.slice()}static getCode(a){return a=a.toLowerCase(),at.hasOwnProperty(a)?at[a].code:""}static getAllCodes(){return Ha.slice()}static validate(a){return Fe.hasOwnProperty(a)}};const nt=Le(fi),hi={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},gi=["id"],yi=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:mi.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(o,{expose:a,emit:n}){const t=o,l=te(hi,t),r=n,s=e.ref(!1),i=e.ref(t.modelValue);e.watch(()=>t.modelValue,m=>{i.value=m});function c(m){i.value=m,r("update:modelValue",m),r("change",m),s.value=!1}const d=e.computed(()=>s.value),p=e.computed(()=>"lang-menu-id"),u=e.computed(()=>{const m={};let g;return t.availableLanguages==="*"?g=nt.getAllCodes():g=t.availableLanguages,g.forEach(y=>{m[y]={code:y,name:nt.getName(y)||y,nativeName:nt.getNativeName(y)||nt.getName(y)||y}}),m}),f=e.computed(()=>{const m=u.value[i.value];return{name:(m==null?void 0:m.nativeName)||i.value,label:`${t.ariaLabel} ${(m==null?void 0:m.nativeName)||i.value}`}});return a({currentLangData:f,updateLang:c,selectedLanguage:i}),(m,g)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(Ce.VMenu,e.mergeProps(e.unref(l).menu,{id:d.value?"lang-menu":p.value,modelValue:s.value,"onUpdate:modelValue":g[0]||(g[0]=y=>s.value=y),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:y})=>[e.createVNode(U.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${t.ariaLabel} ${f.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":d.value},{...e.unref(l).btn,...y},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.value.name)+" ",1),m.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(O.VIcon,e.mergeProps({key:0},e.unref(l).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(na)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(Q.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(u.value,(y,h,k)=>(e.openBlock(),e.createBlock(Q.VListItem,e.mergeProps({ref_for:!0},e.unref(l).listTile,{key:h,role:"menuitem",tabindex:k+1,"aria-label":`${t.ariaLabel} ${y.nativeName}`,"aria-labelledby":`${p.value} ${y.nativeName}`,onClick:b=>c(h)}),{default:e.withCtx(()=>[e.createVNode(Q.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(l).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,gi))}}),bi=Z(yi,[["__scopeId","data-v-06ec7485"]]),Pt={xSmall:{width:"11",height:"32"},small:{width:"14",height:"40"},normal:{width:"22",height:"64"}},Ie={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"}},za={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:Ie.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:Ie.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:Ie.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:Ie.logoCompteAmeli}},ki=["height"],Vi=["width","height","fill"],wi=["src","alt"],Bi={key:2,class:"vd-title-container d-flex justify-center flex-column text-primary"},Ci={key:1,class:"vd-title text-caption"},Mi=Z(e.defineComponent({__name:"LogoBrandSection",props:{theme:{default:"default"},serviceTitle:{default:void 0},serviceSubTitle:{default:void 0},mobileVersion:{type:Boolean,default:!1},reduceLogo:{type:Boolean,default:!1},homeLink:{default:()=>({href:"/"})}},setup(o){const a=o,n=e.useSlots(),t=e.computed(()=>{if(a.theme==="compte-entreprise"){const{title:$,subTitle:v}=Ie.compteEntreprise;return{title:$,subTitle:v}}return{title:a.serviceTitle||"",subTitle:a.serviceSubTitle||""}}),l=e.computed(()=>a.mobileVersion&&u.value),r=e.computed(()=>l.value?"32px":a.mobileVersion?"40px":"64px"),s=e.computed(()=>!a.reduceLogo&&a.theme==="risque-pro"),i=e.computed(()=>a.theme==="compte-entreprise"),c=e.computed(()=>a.theme==="compte-ameli"&&a.mobileVersion),d=e.computed(()=>a.reduceLogo||i.value||c.value),p=e.computed(()=>a.theme in za?za[a.theme]:null),u=e.computed(()=>!!p.value),f=e.computed(()=>a.theme==="ameli-pro"||a.theme==="ameli"),m=e.computed(()=>{var $,v,C,E;if(($=a.homeLink)!=null&&$.to){const H=(C=(v=e.getCurrentInstance())==null?void 0:v.appContext)==null?void 0:C.components;return H&&"RouterLink"in H?"router-link":"div"}return(E=a.homeLink)!=null&&E.href?"a":"div"}),g=e.computed(()=>f.value?m.value:"div"),y=e.computed(()=>f.value&&p.value?`${Ie.homeLinkPrefix} ${p.value.alt}`:null),h=e.computed(()=>a.reduceLogo?u.value:!1),k=e.computed(()=>!!n["brand-content"]),b=e.computed(()=>!!(t.value.title||t.value.subTitle||k.value||u.value)),M=e.computed(()=>a.reduceLogo?!1:b.value),N=e.computed(()=>!!(t.value.title&&t.value.subTitle&&!a.mobileVersion)),L=e.computed(()=>{switch(a.theme){case"cnam":case"ameli-pro":return Qe.secondary;case"compte-entreprise":return"#cd545b";default:return Qe.primary}}),S=e.computed(()=>a.mobileVersion?u.value?Pt.xSmall:Pt.small:Pt.normal),D=e.computed(()=>a.mobileVersion?u.value?oe.X_SMALL:oe.SMALL:oe.NORMAL);return($,v)=>{var C,E;return e.openBlock(),e.createElementBlock("div",{height:r.value,class:"vd-logo-brand-section d-flex"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(m.value),{to:m.value==="router-link"?(C=$.homeLink)==null?void 0:C.to:void 0,href:m.value==="a"?(E=$.homeLink)==null?void 0:E.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>{var H;return[e.createVNode(Tt,{"hide-signature":d.value,"hide-organism":c.value,"risque-pro":s.value,"aria-label":(H=$.homeLink)==null?void 0:H.ariaLabel,avatar:h.value,size:D.value,class:e.normalizeClass({"mr-2":h.value})},null,8,["hide-signature","hide-organism","risque-pro","aria-label","avatar","size","class"])]}),_:1},8,["to","href"])),e.renderSlot($.$slots,"default",{},()=>{var H,K;return[M.value?(e.openBlock(),e.createElementBlock("svg",{key:0,width:S.value.width,height:S.value.height,fill:L.value,role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},v[0]||(v[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,Vi)):e.createCommentVNode("",!0),p.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(g.value),{key:1,"aria-label":y.value,to:g.value==="router-link"?(H=$.homeLink)==null?void 0:H.to:void 0,href:g.value==="a"?(K=$.homeLink)==null?void 0:K.href:void 0,class:"vd-home-link"},{default:e.withCtx(()=>[e.createElementVNode("img",{src:p.value.src,alt:p.value.alt},null,8,wi)]),_:1},8,["aria-label","to","href"])):b.value?(e.openBlock(),e.createElementBlock("div",Bi,[e.renderSlot($.$slots,"brand-content",{},()=>[t.value.title?(e.openBlock(),e.createElementBlock("h1",{key:0,class:e.normalizeClass([{"vd-compte-entreprise-title":i.value},"vd-title text-caption text-md-subtitle-1 font-weight-medium"])},[typeof t.value.title=="string"?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(t.value.title),1)],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(t.value.title.text)+" ",1),e.createElementVNode("span",null,e.toDisplayString(t.value.title.highlight),1)],64))],2)):e.createCommentVNode("",!0),N.value?(e.openBlock(),e.createElementBlock("h2",Ci,e.toDisplayString(t.value.subTitle),1)):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)]},!0)],8,ki)}}}),[["__scopeId","data-v-ca95c6a8"]]),Ni="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",Rt={pageTitle:"Maintenance en cours",message:"L’application n’est pas disponible pour le moment, veuillez nous excuser pour la gêne occasionnée."},Si=["alt"],Li=Z(e.defineComponent({__name:"MaintenancePage",setup(o){return(a,n)=>(e.openBlock(),e.createBlock($t,{"page-title":e.unref(Rt).pageTitle,message:e.unref(Rt).message,"no-btn":""},{illustration:e.withCtx(()=>[e.createElementVNode("img",{src:Ni,alt:e.unref(Rt).pageTitle},null,8,Si)]),_:1},8,["page-title","message"]))}}),[["__scopeId","data-v-aea9e609"]]);var vi=Object.defineProperty,xi=(o,a,n)=>a in o?vi(o,a,{enumerable:!0,configurable:!0,writable:!0,value:n}):o[a]=n,ze=(o,a,n)=>xi(o,typeof a!="symbol"?a+"":a,n);const Ua={"#":{pattern:/[0-9]/},"@":{pattern:/[a-zA-Z]/},"*":{pattern:/[a-zA-Z0-9]/}},qa=(o,a,n)=>o.replaceAll(a,"").replace(n,".").replace("..",".").replace(/[^.\d]/g,""),Ya=(o,a,n)=>{var t;return new Intl.NumberFormat(((t=n.number)==null?void 0:t.locale)??"en",{minimumFractionDigits:o,maximumFractionDigits:a,roundingMode:"trunc"})},Ei=(o,a=!0,n)=>{var t,l,r,s;const i=((t=n.number)==null?void 0:t.unsigned)!==!0&&o.startsWith("-")?"-":"",c=((l=n.number)==null?void 0:l.fraction)??0;let d=Ya(0,c,n);const p=d.formatToParts(1000.12),u=((r=p.find(h=>h.type==="group"))==null?void 0:r.value)??" ",f=((s=p.find(h=>h.type==="decimal"))==null?void 0:s.value)??".",m=qa(o,u,f);if(Number.isNaN(parseFloat(m)))return i;const g=m.split(".");if(g[1]!=null&&g[1].length>=1){const h=g[1].length<=c?g[1].length:c;d=Ya(h,c,n)}let y=d.format(parseFloat(m));return a?c>0&&m.endsWith(".")&&!m.slice(0,-1).includes(".")&&(y+=f):y=qa(y,u,f),i+y};class $i{constructor(a={}){ze(this,"opts",{}),ze(this,"memo",new Map);const n={...a};if(n.tokens!=null){n.tokens=n.tokensReplace?{...n.tokens}:{...Ua,...n.tokens};for(const t of Object.values(n.tokens))typeof t.pattern=="string"&&(t.pattern=new RegExp(t.pattern))}else n.tokens=Ua;Array.isArray(n.mask)&&(n.mask.length>1?n.mask=[...n.mask].sort((t,l)=>t.length-l.length):n.mask=n.mask[0]??""),n.mask===""&&(n.mask=null),this.opts=n}masked(a){return this.process(String(a),this.findMask(String(a)))}unmasked(a){return this.process(String(a),this.findMask(String(a)),!1)}isEager(){return this.opts.eager===!0}isReversed(){return this.opts.reversed===!0}completed(a){const n=this.findMask(String(a));if(this.opts.mask==null||n==null)return!1;const t=this.process(String(a),n).length;return typeof this.opts.mask=="string"?t>=this.opts.mask.length:t>=n.length}findMask(a){const n=this.opts.mask;if(n==null)return null;if(typeof n=="string")return n;if(typeof n=="function")return n(a);const t=this.process(a,n.slice(-1).pop()??"",!1);return n.find(l=>this.process(a,l,!1).length>=t.length)??""}escapeMask(a){const n=[],t=[];return a.split("").forEach((l,r)=>{l==="!"&&a[r-1]!=="!"?t.push(r-t.length):n.push(l)}),{mask:n.join(""),escaped:t}}process(a,n,t=!0){if(this.opts.number!=null)return Ei(a,t,this.opts);if(n==null)return a;const l=`v=${a},mr=${n},m=${t?1:0}`;if(this.memo.has(l))return this.memo.get(l);const{mask:r,escaped:s}=this.escapeMask(n),i=[],c=this.opts.tokens!=null?this.opts.tokens:{},d=this.isReversed()?-1:1,p=this.isReversed()?"unshift":"push",u=this.isReversed()?0:r.length-1,f=this.isReversed()?()=>h>-1&&k>-1:()=>h<r.length&&k<a.length,m=M=>!this.isReversed()&&M<=u||this.isReversed()&&M>=u;let g,y=-1,h=this.isReversed()?r.length-1:0,k=this.isReversed()?a.length-1:0,b=!1;for(;f();){const M=r.charAt(h),N=c[M],L=(N==null?void 0:N.transform)!=null?N.transform(a.charAt(k)):a.charAt(k);if(!s.includes(h)&&N!=null?(L.match(N.pattern)!=null?(i[p](L),N.repeated?(y===-1?y=h:h===u&&h!==y&&(h=y-d),u===y&&(h-=d)):N.multiple&&(b=!0,h-=d),h+=d):N.multiple?b&&(h+=d,k-=d,b=!1):L===g?g=void 0:N.optional&&(h+=d,k-=d),k+=d):(t&&!this.isEager()&&i[p](M),L===M&&!this.isEager()?k+=d:g=M,this.isEager()||(h+=d)),this.isEager())for(;m(h)&&(c[r.charAt(h)]==null||s.includes(h));){if(t){if(i[p](r.charAt(h)),a.charAt(k)===r.charAt(h)){h+=d,k+=d;continue}}else r.charAt(h)===a.charAt(k)&&(k+=d);h+=d}}return this.memo.set(l,i.join("")),this.memo.get(l)}}const Wa=o=>JSON.parse(o.replaceAll("'",'"')),Ii=(o,a={})=>{const n={...a};o.dataset.maska!=null&&o.dataset.maska!==""&&(n.mask=_i(o.dataset.maska)),o.dataset.maskaEager!=null&&(n.eager=ot(o.dataset.maskaEager)),o.dataset.maskaReversed!=null&&(n.reversed=ot(o.dataset.maskaReversed)),o.dataset.maskaTokensReplace!=null&&(n.tokensReplace=ot(o.dataset.maskaTokensReplace)),o.dataset.maskaTokens!=null&&(n.tokens=Di(o.dataset.maskaTokens));const t={};return o.dataset.maskaNumberLocale!=null&&(t.locale=o.dataset.maskaNumberLocale),o.dataset.maskaNumberFraction!=null&&(t.fraction=parseInt(o.dataset.maskaNumberFraction)),o.dataset.maskaNumberUnsigned!=null&&(t.unsigned=ot(o.dataset.maskaNumberUnsigned)),(o.dataset.maskaNumber!=null||Object.values(t).length>0)&&(n.number=t),n},ot=o=>o!==""?!!JSON.parse(o):!0,_i=o=>o.startsWith("[")&&o.endsWith("]")?Wa(o):o,Di=o=>{if(o.startsWith("{")&&o.endsWith("}"))return Wa(o);const a={};return o.split("|").forEach(n=>{const t=n.split(":");a[t[0]]={pattern:new RegExp(t[1]),optional:t[2]==="optional",multiple:t[2]==="multiple",repeated:t[2]==="repeated"}}),a};class Ti{constructor(a,n={}){ze(this,"items",new Map),ze(this,"eventAbortController"),ze(this,"onInput",t=>{if(t instanceof CustomEvent&&t.type==="input"&&!t.isTrusted&&!t.bubbles)return;const l=t.target,r=this.items.get(l);if(r===void 0)return;const s="inputType"in t&&t.inputType.startsWith("delete"),i=r.isEager(),c=s&&i&&r.unmasked(l.value)===""?"":l.value;this.fixCursor(l,s,()=>this.setValue(l,c))}),this.options=n,this.eventAbortController=new AbortController,this.init(this.getInputs(a))}update(a={}){this.options={...a},this.init(Array.from(this.items.keys()))}updateValue(a){var n;a.value!==""&&a.value!==((n=this.processInput(a))==null?void 0:n.masked)&&this.setValue(a,a.value)}destroy(){this.eventAbortController.abort(),this.items.clear()}init(a){const n=this.getOptions(this.options);for(const t of a){if(!this.items.has(t)){const{signal:r}=this.eventAbortController;t.addEventListener("input",this.onInput,{capture:!0,signal:r})}const l=new $i(Ii(t,n));this.items.set(t,l),queueMicrotask(()=>this.updateValue(t)),t.selectionStart===null&&l.isEager()&&console.warn("Maska: input of `%s` type is not supported",t.type)}}getInputs(a){return typeof a=="string"?Array.from(document.querySelectorAll(a)):"length"in a?Array.from(a):[a]}getOptions(a){const{onMaska:n,preProcess:t,postProcess:l,...r}=a;return r}fixCursor(a,n,t){var l,r;const s=a.selectionStart,i=a.value;if(t(),s===null||s===i.length&&!n)return;const c=a.value,d=i.slice(0,s),p=c.slice(0,s),u=(l=this.processInput(a,d))==null?void 0:l.unmasked,f=(r=this.processInput(a,p))==null?void 0:r.unmasked;if(u===void 0||f===void 0)return;let m=s;d!==p&&(m+=n?c.length-i.length:u.length-f.length),a.setSelectionRange(m,m)}setValue(a,n){const t=this.processInput(a,n);t!==void 0&&(a.value=t.masked,this.options.onMaska!=null&&(Array.isArray(this.options.onMaska)?this.options.onMaska.forEach(l=>l(t)):this.options.onMaska(t)),a.dispatchEvent(new CustomEvent("maska",{detail:t})),a.dispatchEvent(new CustomEvent("input",{detail:t.masked})))}processInput(a,n){const t=this.items.get(a);if(t===void 0)return;let l=n??a.value;this.options.preProcess!=null&&(l=this.options.preProcess(l));let r=t.masked(l);return this.options.postProcess!=null&&(r=this.options.postProcess(r)),{masked:r,unmasked:t.unmasked(l),completed:t.completed(l)}}}const Ht=new WeakMap,Ai=(o,a)=>{if(o.arg==null||o.instance==null)return;const n="setup"in o.instance.$.type;o.arg in o.instance?o.instance[o.arg]=a:n&&console.warn("Maska: please expose `%s` using defineExpose",o.arg)},Ue=(o,a)=>{var n;const t=o instanceof HTMLInputElement?o:o.querySelector("input");if(t==null||(t==null?void 0:t.type)==="file")return;let l={};if(a.value!=null&&(l=typeof a.value=="string"?{mask:a.value}:{...a.value}),a.arg!=null){const r=s=>{const i=a.modifiers.unmasked?s.unmasked:a.modifiers.completed?s.completed:s.masked;Ai(a,i)};l.onMaska=l.onMaska==null?r:Array.isArray(l.onMaska)?[...l.onMaska,r]:[l.onMaska,r]}Ht.has(t)?(n=Ht.get(t))==null||n.update(l):Ht.set(t,new Ti(t,l))},Zi=13,Pi=2;function Ka(o){return o=o.replace(/\s+/g,"").toUpperCase(),new RegExp("^(?<sexe>[1-4]|7|8)(?<anneeNaissance>\\d{2})(?<moisNaissance>0[1-9]|1[0-2]|2[0-9]|3[0-9]|4[0-2])(?<departementNaissance>\\d{2}|2A|2B|96|97\\d|98\\d)(?<communeNaissance>\\d{3})(?<rangInscription>\\d{3})(?<cle>[0-9]{2})?$","i").test(o)}function Ga(o){o=o.replace(/\s+/g,"").toUpperCase();let a=o.substring(0,13);return a=a.replace("2A","19").replace("2B","18"),(97n-BigInt(a)%97n).toString().padStart(2,"0")}function ja(o){o=o.replace(/\s+/g,"").toUpperCase();const a=o.substring(13,15),n=Ga(o);return a===n}const Ja={errorRequiredNumber:"Le numéro de sécurité sociale est requis.",errorLengthNumber:o=>`Le numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidFormat:"Le format du numéro de sécurité sociale est invalide.",errorRequiredKey:"La clé du numéro de sécurité sociale est requise.",errorLengthKey:o=>`La clé du numéro de sécurité sociale doit contenir ${o} caractères.`,errorInvalidKey:"La clé du numéro de sécurité sociale est invalide.",numberLabel:"Numéro de sécurité sociale",numberHint:"13 caractères",keyLabel:"Clé",keyHint:"2 chiffres"},Ri={class:"nir-field"},Hi={class:"number-field-container"},Oi={key:0,class:"key-field-container"},Fi=Z(e.defineComponent({__name:"NirField",props:{vuetifyOptions:{},modelValue:{default:void 0},label:{default:void 0},numberLabel:{default:"Numéro de sécurité sociale"},keyLabel:{default:"Clé"},displayKey:{type:Boolean,default:!0},outlined:{type:Boolean,default:!0},nirTooltip:{default:void 0},keyTooltip:{default:void 0},nirTooltipPosition:{default:"append"},keyTooltipPosition:{default:"append"},required:{type:Boolean,default:!1},displayAsterisk:{type:Boolean,default:!1},customNumberRules:{default:()=>[]},customKeyRules:{default:()=>[]},customNumberWarningRules:{default:()=>[]},customKeyWarningRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},width:{default:"100%"},bgColor:{default:void 0},isDisabled:{type:Boolean,default:!1},density:{default:"default"},hideDetails:{type:[Boolean,String],default:!1},hideSpinButtons:{type:Boolean,default:!1},placeholder:{default:void 0},readonly:{type:Boolean,default:!1},variant:{default:"outlined"},clearable:{type:Boolean,default:!1},counter:{type:[Boolean,Number,String],default:!1},hint:{default:void 0},persistentHint:{type:Boolean,default:!1},persistentPlaceholder:{type:Boolean,default:!1},disableErrorHandling:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){e.useCssVars(V=>({"6caa14e3":t.width}));const t=o,l=n,r=e.toRef(t,"modelValue"),s=e.ref(""),i=e.ref(""),c=e.ref(null),d=e.ref(null),p=e.computed(()=>s.value.replace(/\s/g,"")),u=e.computed(()=>i.value.replace(/\s/g,"")),f={mask:"# ## ## #C ### ###",preProcess:V=>V.toUpperCase(),tokens:{"#":{pattern:/[0-9]/},C:{pattern:/[0-9AB]/,transform:V=>V.toUpperCase()}}},m={mask:"##",tokens:{"#":{pattern:/[0-9]/}}},g=V=>{e.nextTick(()=>{var x;const w=(x=V.value)==null?void 0:x.$el.querySelector("input");w&&(w.focus(),setTimeout(()=>{w.click()},50))})};e.watch(p,V=>{V.length===13&&t.displayKey&&g(c)}),e.watch(u,V=>{V.length===0&&g(d)}),e.watch(i,(V,w)=>{w.trim()&&!V.trim()&&g(d)});const y=ie({showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.numberLabel,disableErrorHandling:t.disableErrorHandling}),h=ie({showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.keyLabel,disableErrorHandling:t.disableErrorHandling}),k=e.computed(()=>{const V=[];return t.required&&V.push({type:"required",options:{message:`Le champ ${t.numberLabel} est requis.`,fieldIdentifier:t.numberLabel}}),V.push({type:"custom",options:{validate:w=>w?w.length<13?"Le numéro de sécurité sociale est invalide.":Ka(w)===!0?!0:"Le numéro de sécurité sociale est invalide.":!0,message:"Le numéro de sécurité sociale est invalide.",successMessage:"Le numéro de sécurité sociale est valide.",fieldIdentifier:t.numberLabel}}),t.customNumberRules&&V.push(...t.customNumberRules.map(w=>({...w,options:w.options||{}}))),V}),b=e.computed(()=>{var x;const V=[];t.required&&V.push({type:"required",options:{message:`Le champ ${t.keyLabel} est requis.`,fieldIdentifier:t.keyLabel}});const w=A=>{if(!A||!p.value)return!0;const F=p.value+A;return ja(F)};return t.customKeyRules&&V.push(...t.customKeyRules),(x=t.customKeyRules)!=null&&x.some(A=>A.options.validate)||V.push({type:"custom",options:{validate:w,message:"La clé du numéro de sécurité sociale est invalide.",successMessage:`Le champ ${t.keyLabel} est valide.`,fieldIdentifier:t.keyLabel}}),V});e.watch(r,V=>{if(V===void 0){s.value="",i.value="";return}if(V.length===15){const w=V.slice(0,-2),x=V.slice(-2);s.value=w,i.value=x}if(V.length===14){const w=V.slice(0,-1),x=V.slice(-1);s.value=w,i.value=x}if(V.length===13){const w=V;s.value=w,i.value=""}},{immediate:!0});const M=()=>{const V=p.value,w=u.value;if(!V&&!w){l("update:modelValue",void 0);return}l("update:modelValue",`${V}${w}`)},N=async(V=!1)=>{var A,F,q,Y,G,_;const w=y.validateField(p.value,k.value,((A=p.value)==null?void 0:A.length)===13?t.customNumberWarningRules:[]);let x={hasError:!1};return t.displayKey&&(x=h.validateField(i.value,b.value,((F=i.value)==null?void 0:F.length)===2?t.customKeyWarningRules:[])),V&&(await e.nextTick(),w.hasError?(Y=(q=d.value)==null?void 0:q.$el.querySelector("input"))==null||Y.focus():x.hasError&&((_=(G=c.value)==null?void 0:G.$el.querySelector("input"))==null||_.focus())),!w.hasError&&!x.hasError},L=()=>N(!0),S=e.computed(()=>y.hasError.value),D=e.computed(()=>!S.value&&y.hasWarning.value),$=e.computed(()=>!S.value&&!D.value&&y.hasSuccess.value),v=e.computed(()=>h.hasError.value),C=e.computed(()=>!v.value&&h.hasWarning.value),E=e.computed(()=>!v.value&&!C.value&&h.hasSuccess.value),H=e.computed(()=>t.required&&t.displayAsterisk?`${t.numberLabel} *`:t.numberLabel),K=e.computed(()=>t.required&&t.displayAsterisk?`${t.keyLabel} *`:t.keyLabel),P=()=>{M(),N()},T=()=>{M(),N(),u.value.length===0&&e.nextTick(()=>{var V,w;(w=(V=d.value)==null?void 0:V.$el.querySelector("input"))==null||w.focus()})},I=()=>{N(!0)},R=()=>{N(!0)};return a({validateOnSubmit:L,numberMask:f,keyMask:m,numberValidation:y,keyValidation:h}),(V,w)=>(e.openBlock(),e.createElementBlock("div",Ri,[e.createElementVNode("div",Hi,[e.withDirectives(e.createVNode(me,{ref_key:"numberField",ref:d,modelValue:s.value,"onUpdate:modelValue":w[0]||(w[0]=x=>s.value=x),label:H.value,"variant-style":V.outlined?"outlined":"underlined","prepend-icon":V.nirTooltip&&V.nirTooltipPosition==="prepend"?"info":void 0,"append-icon":V.nirTooltip&&V.nirTooltipPosition==="append"?"info":void 0,"prepend-tooltip":V.nirTooltip&&V.nirTooltipPosition==="prepend"?V.nirTooltip:void 0,"append-tooltip":V.nirTooltip&&V.nirTooltipPosition==="append"?V.nirTooltip:void 0,"max-errors":2,"error-messages":[...e.unref(y).errors.value,...e.unref(h).errors.value],"warning-messages":e.unref(y).warnings.value,"success-messages":e.unref(y).successes.value,"show-success-messages":V.showSuccessMessages,"has-warning":D.value,"has-success":$.value,error:S.value,messages:S.value?e.unref(y).errors.value:D.value?e.unref(y).warnings.value:$.value&&t.showSuccessMessages?e.unref(y).successes.value:[],"has-error":S.value,required:V.required,"is-disabled":V.isDisabled,"bg-color":V.bgColor,density:t.density,"hide-details":t.hideDetails,"hide-spin-buttons":t.hideSpinButtons,placeholder:t.placeholder,readonly:t.readonly,variant:t.variant,clearable:t.clearable,counter:t.counter,"persistent-hint":t.persistentHint,"persistent-placeholder":t.persistentPlaceholder,hint:t.hint||e.unref(Ja).numberHint,class:"number-field","display-asterisk":!1,onInput:P,onBlur:I},null,8,["modelValue","label","variant-style","prepend-icon","append-icon","prepend-tooltip","append-tooltip","error-messages","warning-messages","success-messages","show-success-messages","has-warning","has-success","error","messages","has-error","required","is-disabled","bg-color","density","hide-details","hide-spin-buttons","placeholder","readonly","variant","clearable","counter","persistent-hint","persistent-placeholder","hint"]),[[e.unref(Ue),f]])]),V.displayKey?(e.openBlock(),e.createElementBlock("div",Oi,[e.withDirectives(e.createVNode(me,{ref_key:"keyField",ref:c,modelValue:i.value,"onUpdate:modelValue":w[1]||(w[1]=x=>i.value=x),label:K.value,"variant-style":V.outlined?"outlined":"underlined","prepend-icon":V.keyTooltip&&V.keyTooltipPosition==="prepend"?"info":void 0,"append-icon":V.keyTooltip&&V.keyTooltipPosition==="append"?"info":void 0,"prepend-tooltip":V.keyTooltip&&V.keyTooltipPosition==="prepend"?V.keyTooltip:void 0,"append-tooltip":V.keyTooltip&&V.keyTooltipPosition==="append"?V.keyTooltip:void 0,"error-messages":e.unref(h).errors.value.length>0?[""]:[],"warning-messages":e.unref(h).warnings.value,"success-messages":e.unref(h).successes.value,"show-success-messages":V.showSuccessMessages,"has-warning":C.value,"has-success":E.value,hint:t.hint||e.unref(Ja).keyHint,messages:v.value?e.unref(h).errors.value:C.value?e.unref(h).warnings.value:E.value&&t.showSuccessMessages?e.unref(h).successes.value:[],"has-error":v.value,"is-disabled":V.isDisabled,"bg-color":V.bgColor,density:t.density,"hide-details":t.hideDetails,"hide-spin-buttons":t.hideSpinButtons,placeholder:t.placeholder,readonly:t.readonly,variant:t.variant,clearable:t.clearable,counter:t.counter,"persistent-hint":t.persistentHint,"persistent-placeholder":t.persistentPlaceholder,class:"key-field","display-asterisk":!1,onInput:T,onBlur:R},null,8,["modelValue","label","variant-style","prepend-icon","append-icon","prepend-tooltip","append-tooltip","error-messages","warning-messages","success-messages","show-success-messages","has-warning","has-success","hint","messages","has-error","is-disabled","bg-color","density","hide-details","hide-spin-buttons","placeholder","readonly","variant","clearable","counter","persistent-hint","persistent-placeholder"]),[[e.unref(Ue),m]])])):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-eb7ca3e9"]]),zi="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",qe={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"},Ui={class:"mt-4"},qi=["alt"],Yi="support_id",Wi=Z(e.defineComponent({__name:"NotFoundPage",props:{btnText:{default:void 0},btnHref:{default:void 0},btnLink:{default:"/"},hideBtn:{type:Boolean,default:!1}},setup(o){const a=e.ref();return e.onMounted(()=>{var l;let t=new URLSearchParams(document.location.search).get(Yi);t&&(a.value=(l=t.trim().match(/.{1,4}/g))==null?void 0:l.join(" "))}),(n,t)=>(e.openBlock(),e.createBlock($t,{code:e.unref(qe).code,"page-title":e.unref(qe).pageTitle,message:e.unref(qe).message,"btn-text":n.btnText,"btn-href":n.btnHref,"btn-link":n.btnLink,"hide-btn":n.hideBtn},e.createSlots({illustration:e.withCtx(()=>[e.createElementVNode("img",{src:zi,alt:e.unref(qe).pageTitle},null,8,qi)]),_:2},[a.value?{name:"additional-content",fn:e.withCtx(()=>[e.createElementVNode("p",Ui,[e.createTextVNode(e.toDisplayString(e.unref(qe).supportIdMessage)+" ",1),e.createElementVNode("b",null,e.toDisplayString(a.value),1),t[0]||(t[0]=e.createTextVNode(" . "))])]),key:"0"}:void 0]),1032,["code","page-title","message","btn-text","btn-href","btn-link","hide-btn"]))}}),[["__scopeId","data-v-8e9d618a"]]),Ki={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},Gi={class:"d-flex align-center ga-2"},ji=Z(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(o,{expose:a}){const n=o,t=te(Ki,n),l=ae.useDisplay(),{notificationQueue:r,removeNotification:s}=Ct(),i=e.getCurrentInstance(),c=e.ref(),d=e.ref(!1),p=e.computed(()=>!!(i!=null&&i.slots.action)),u=e.computed(()=>l.name.value==="xs"),f=e.computed(()=>l.name.value==="sm"),m=e.computed(()=>{var S,D;return(((D=(S=c.value)==null?void 0:S.message)==null?void 0:D.length)??0)>50}),g={info:Je,success:ta,warning:_n,error:Xt},y=e.computed(()=>c.value?g[c.value.type]:null),h=e.computed(()=>c.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[c.value.type]||"info"),k=e.computed(()=>c.value?{contentColor:c.value.type==="success"||c.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),b=e.computed(()=>u.value&&!m.value&&!p.value);e.watch(()=>r.value.length,async S=>{S>0&&c.value===void 0&&N(r.value[0])},{immediate:!0});let M;function N(S){c.value=S,d.value=!0,(S.timeout||0)>0&&(M=setTimeout(()=>{d.value=!1},S.timeout))}e.watch(d,async S=>{S||(await new Promise(D=>setTimeout(D,100)),c.value&&s(c.value.id),c.value=void 0,r.value.length>0&&N(r.value[0]))});function L(){clearTimeout(M),d.value=!1}return a({openNotification:N,showNextNotification:L,currentNotification:c,isNotificationVisible:d,hasActionSlot:p,isMobileVersion:u,hasLongContent:m,color:h,icon:y,contentStyle:k,smallCloseBtn:b,isVertical:e.computed(()=>m.value&&u.value)}),(S,D)=>{var $;return e.openBlock(),e.createElementBlock("div",null,[e.createVNode(Nn.VSnackbar,e.mergeProps(e.unref(t).snackbar,{modelValue:d.value,"onUpdate:modelValue":D[1]||(D[1]=v=>d.value=v),role:"status",eager:!0,color:h.value,location:n.bottom?"bottom":"top",vertical:m.value,"multi-line":m.value,timeout:(($=c.value)==null?void 0:$.timeout)??-1,width:u.value||f.value?"auto":"960px",rounded:n.rounded,class:[{"long-text":m.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",m.value?"action-section-long-text":"action-section-short-text"]),style:{width:"100%"}},[e.renderSlot(S.$slots,"action",{},void 0,!0),e.createVNode(U.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":b.value}],"aria-label":"Fermer la notification"},e.unref(t).btn,{onClick:D[0]||(D[0]=v=>d.value=!1)}),{default:e.withCtx(()=>[b.value?(e.openBlock(),e.createBlock(O.VIcon,{key:1,icon:e.unref(Ne)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(S.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var v;return[e.createElementVNode("div",Gi,[!u.value&&y.value?(e.openBlock(),e.createBlock(O.VIcon,e.mergeProps({key:0},e.unref(t).icon,{icon:y.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass(["sy-notification-content","text-"+k.value.contentColor])},e.toDisplayString((v=c.value)==null?void 0:v.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])}}}),[["__scopeId","data-v-7cfd3927"]]);function Ji(){try{const o="test";return localStorage.setItem(o,o),localStorage.removeItem(o),!0}catch{return!1}}class Xi{constructor(a,n,t="vd-"){Ae(this,"localStorageSupported");Ae(this,"version");Ae(this,"expiration");Ae(this,"prefix");Ae(this,"CONTROL_ITEM_KEY","vd-storage-control");this.localStorageSupported=Ji(),this.prefix=t,a&&Number.isInteger(a)?this.version=a:this.version=void 0,this.expiration=n;const l=this.checkIfOldVersion(),r=this.checkIfExpired();(l||r)&&(this.clear(),this.setControlItem())}get length(){return this.getAll().length}key(a){return this.getAllKeys()[a]}getItem(a){const n=this.getControlItem();return!this.localStorageSupported&&!n?null:this.checkIfExpired()?(this.clear(),null):(this.setControlItem(),this.get(this.prefix+a))}setItem(a,n){this.localStorageSupported&&(this.set(this.prefix+a,n),this.setControlItem())}removeItem(a){this.filterStorage(n=>{n===this.prefix+a&&delete localStorage[n]})}clear(){this.filterStorage(a=>{delete localStorage[a]})}getAll(){const a=[];return this.filterStorage(n=>{a.push(this.get(n))}),a}getAllKeys(){const a=[];return this.filterStorage(n=>{a.push(n)}),a}filterStorage(a){if(this.localStorageSupported)for(const n in localStorage)n.startsWith(this.prefix)&&n!==this.CONTROL_ITEM_KEY&&a(n)}get(a){return JSON.parse(localStorage.getItem(a)||JSON.stringify(null))}set(a,n){localStorage.setItem(a,JSON.stringify(n))}checkIfExpired(){const a=this.getControlItem();if(!a)return!0;let n=!1,t=!1;return a.expiresAt&&(n=a.expiresAt<new Date().getTime()),a.version&&this.version&&(t=a.version<this.version),n||t}getControlItem(){return this.localStorageSupported?this.get(this.CONTROL_ITEM_KEY):null}setControlItem(){const a=this.expiration?new Date().getTime()+this.expiration/1:void 0,n={version:this.version,expiresAt:a};this.localStorageSupported&&this.set(this.CONTROL_ITEM_KEY,n)}checkIfOldVersion(){return this.getControlItem()===null}}const Qi={id:"paginated-table",class:"sy-paginated-table"},ec=Z(e.defineComponent({__name:"PaginatedTable",props:e.mergeModels({serverItemsLength:{type:Number,default:void 0},suffix:{type:String,default:void 0},itemsPerPage:{type:Number,default:void 0},caption:{type:String,default:"caption"}},{options:{required:!1,default:()=>({})},optionsModifiers:{}}),emits:["update:options"],setup(o){const a=o,n=e.useModel(o,"options"),t=new Xi,l=e.ref({}),r=e.computed(()=>{const u="pagination";return a.suffix?`${u}-${a.suffix}`:u}),s=e.useAttrs(),i=e.computed(()=>{if(Array.isArray(s.headers))return s.headers.map(u=>({...u,title:u.title??u.text}))}),c=e.computed(()=>({page:n.value.page||s.page,itemsPerPage:n.value.itemsPerPage||a.itemsPerPage,sortBy:n.value.sortBy,groupBy:n.value.groupBy,multiSort:n.value.multiSort,mustSort:n.value.mustSort})),d=e.computed(()=>{const{"onUpdate:options":u,...f}=s;return{...f,itemsLength:a.serverItemsLength??0,headers:i.value,...l.value}});function p(u){n.value={...n.value,...u}}return e.watch(()=>n.value,()=>{a.serverItemsLength!==0&&(t.setItem(r.value,{...c.value,itemsLength:a.serverItemsLength??0}),l.value=c.value)},{deep:!0}),l.value=t.getItem(r.value)??c.value,e.onMounted(()=>{const u=document.querySelector("#paginated-table table"),f=document.createElement("caption");f.innerHTML=a.caption,a.caption==="caption"?f.classList.add("d-sr-only"):f.classList.add("text-subtitle-1"),u==null||u.prepend(f),document.querySelectorAll("#paginated-table input").forEach(b=>{b.removeAttribute("aria-describedby")}),document.querySelectorAll("#paginated-table .v-field").forEach(b=>{b.setAttribute("tabindex","0")}),document.querySelectorAll("#paginated-table .v-field").forEach(b=>{b.setAttribute("aria-label","items per page")}),document.querySelectorAll("#paginated-table .v-field").forEach(b=>{b.setAttribute("title","items per page")});const k=document.querySelectorAll("#paginated-table th");for(let b=0;b<k.length;b++)k[b].setAttribute("scope","col")}),(u,f)=>(e.openBlock(),e.createElementBlock("div",Qi,[o.serverItemsLength?(e.openBlock(),e.createBlock(jt.VDataTableServer,e.mergeProps({key:1},d.value,{color:"primary","onUpdate:options":p}),e.createSlots({_:2},[e.renderList(Object.keys(u.$slots),m=>({name:m,fn:e.withCtx(g=>[e.renderSlot(u.$slots,m,e.normalizeProps(e.guardReactiveProps(g??{})),void 0,!0)])}))]),1040)):(e.openBlock(),e.createBlock(jt.VDataTable,e.mergeProps({key:0,color:"primary"},d.value,{"onUpdate:options":p}),e.createSlots({_:2},[e.renderList(Object.keys(u.$slots),m=>({name:m,fn:e.withCtx(g=>[e.renderSlot(u.$slots,m,e.normalizeProps(e.guardReactiveProps(g??{})),void 0,!0)])}))]),1040))]))}}),[["__scopeId","data-v-cb699c5f"]]),tc={btn:{variant:"text",icon:!0},icon:{color:he.grey.lighten20}},Xa={hidePassword:"Masquer le mot de passe",showPassword:"Afficher le mot de passe"},ac=Z(e.defineComponent({__name:"PasswordField",props:{modelValue:{default:null},variantStyle:{default:"outlined"},color:{default:"primary"},label:{default:void 0},required:{type:Boolean,default:!1},errorMessages:{default:null},warningMessages:{default:null},successMessages:{default:null},isReadOnly:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},placeholder:{default:void 0},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},customSuccessRules:{default:()=>[]},showSuccessMessages:{type:Boolean,default:!0},displayAsterisk:{type:Boolean,default:!1},isValidateOnBlur:{type:Boolean,default:!0},disableErrorHandling:{type:Boolean,default:!1},vuetifyOptions:{}},emits:["update:modelValue","submit"],setup(o,{expose:a,emit:n}){const t=o,l=te(tc,t),r=n,s=qn,i=Yn,c=e.ref(!1),d=e.computed(()=>c.value?Xa.hidePassword:Xa.showPassword),p=e.ref(t.modelValue);e.watch(()=>t.modelValue,D=>{p.value=D});const u=e.computed(()=>{const D=[];return t.required&&D.push({type:"required",options:{message:"Le mot de passe est requis",fieldIdentifier:t.label||"password"}}),D.push({type:"custom",options:{validate:$=>$?!0:"Ce champ est requis",successMessage:"Mot de passe fort",fieldIdentifier:t.label||"password"}}),D}),{errors:f,warnings:m,successes:g,validateField:y}=ie({customRules:u.value,warningRules:t.customWarningRules||[],successRules:t.customSuccessRules||[],showSuccessMessages:t.showSuccessMessages,fieldIdentifier:t.label||"password",disableErrorHandling:t.disableErrorHandling}),h=e.computed(()=>f.value.length>0),k=e.computed(()=>m.value.length>0),b=e.computed(()=>g.value.length>0&&t.showSuccessMessages),M=e.computed(()=>{if(h.value)return ht;if(k.value)return In;if(b.value)return yt}),N=e.computed(()=>h.value?"error":k.value?"warning":b.value?"success":"rgb(0 0 0 / 100%)");e.watch(()=>t.errorMessages,D=>{D&&(f.value=D)},{immediate:!0}),e.watch(()=>t.warningMessages,D=>{D&&(m.value=D)},{immediate:!0}),e.watch(()=>t.successMessages,D=>{D&&(g.value=D)},{immediate:!0}),e.watch(()=>p.value,()=>{y(p.value,[...u.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]),r("update:modelValue",p.value)});function L(D){D.key==="Enter"&&S()}const S=()=>{y(p.value,[...u.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]);const D=f.value.length===0;return D&&r("submit"),D};return a({showEyeIcon:c,errors:f,warnings:m,successes:g,hasError:h,hasWarning:k,hasSuccess:b,validateOnSubmit:S}),(D,$)=>(e.openBlock(),e.createBlock(me,e.mergeProps({modelValue:p.value,"onUpdate:modelValue":$[1]||($[1]=v=>p.value=v)},e.unref(l),{"variant-style":t.variantStyle,color:t.color,label:t.label,required:t.required,"error-messages":e.unref(f),"warning-messages":e.unref(m),"success-messages":e.unref(g),"is-read-only":t.isReadOnly,"is-disabled":t.isDisabled,placeholder:t.placeholder,type:c.value?"text":"password","display-asterisk":t.displayAsterisk,rules:[...u.value,...t.customRules],class:"vd-password","validate-on":t.isValidateOnBlur?"blur lazy":"lazy",onBlur:$[2]||($[2]=v=>t.isValidateOnBlur?e.unref(y)(p.value,[...u.value,...t.customRules||[]],t.customWarningRules||[],t.customSuccessRules||[]):()=>{}),onKeydown:L}),{"append-inner":e.withCtx(()=>[e.createElementVNode("div",e.mergeProps({class:"d-flex align-center"},e.unref(l).btn),[e.createVNode(O.VIcon,{icon:M.value,color:N.value,class:"mr-2"},null,8,["icon","color"]),e.createVNode(O.VIcon,{icon:c.value?e.unref(s):e.unref(i),color:"rgb(0 0 0 / 70%)","aria-label":d.value,role:"button",onClick:$[0]||($[0]=v=>c.value=!c.value)},null,8,["icon","aria-label"])],16)]),_:1},16,["modelValue","variant-style","color","label","required","error-messages","warning-messages","success-messages","is-read-only","is-disabled","placeholder","type","display-asterisk","rules","validate-on"]))}}),[["__scopeId","data-v-ba9883bf"]]),nc={class:"period-field"},oc={class:"period-field__col"},lc={class:"period-field__col"},rc=Z(e.defineComponent({__name:"PeriodField",props:{modelValue:{default:()=>({from:null,to:null})},placeholderFrom:{default:"Début"},placeholderTo:{default:"Fin"},format:{default:"DD/MM/YYYY"},dateFormatReturn:{default:""},showWeekNumber:{type:Boolean,default:!1},required:{type:Boolean,default:!1},displayIcon:{type:Boolean,default:!0},displayAppendIcon:{type:Boolean,default:!1},isDisabled:{type:Boolean,default:!1},noIcon:{type:Boolean,default:!1},noCalendar:{type:Boolean,default:!1},isOutlined:{type:Boolean,default:!0},showSuccessMessages:{type:Boolean,default:!0},customRules:{default:()=>[]},customWarningRules:{default:()=>[]},disableErrorHandling:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const{parseDate:t}=ft(),l=o,r=n,s=e.ref(),i=e.ref(),c=e.ref(null),d=e.ref(null),p=ie({showSuccessMessages:l.showSuccessMessages,fieldIdentifier:"fromDate",disableErrorHandling:l.disableErrorHandling}),u=ie({showSuccessMessages:l.showSuccessMessages,fieldIdentifier:"toDate",disableErrorHandling:l.disableErrorHandling});function f(C){if(!C)return null;if(typeof C=="string")return C;if(C.selectedDates){const E=new Date(C.selectedDates),H=E.getDate().toString().padStart(2,"0"),K=(E.getMonth()+1).toString().padStart(2,"0"),P=E.getFullYear();return`${H}/${K}/${P}`}return null}const m=e.computed(()=>f(c.value)),g=e.computed(()=>f(d.value)),y=e.computed(()=>m.value?t(m.value,l.format):null),h=e.computed(()=>g.value?t(g.value,l.format):null),k=e.computed(()=>l.disableErrorHandling?[]:[{type:"custom",options:{validate:C=>C===null||h.value===null?!0:C<=h.value,message:"La date de début ne peut pas être supérieure à la date de fin.",successMessage:"La date de début est valide.",fieldIdentifier:"fromDate"}},...l.required&&!l.disableErrorHandling?[{type:"required",options:{validate:C=>!(!C&&!h.value||!C&&h.value),message:"La date de début est requise.",successMessage:"La date de début est renseignée.",fieldIdentifier:"fromDate"}}]:[],...l.disableErrorHandling?[]:l.customRules]),b=e.computed(()=>l.disableErrorHandling?!1:l.showSuccessMessages),M=e.computed(()=>l.disableErrorHandling?[]:[{type:"custom",options:{validate:C=>C===null||y.value===null?!0:C>=y.value,message:"La date de fin ne peut pas être inférieure à la date de début.",successMessage:"La date de fin est valide.",fieldIdentifier:"toDate"}},...l.required?[{type:"required",options:{validate:C=>!(!C&&!y.value||!C&&y.value),message:"La date de fin est requise.",successMessage:"La date de fin est renseignée.",fieldIdentifier:"toDate"}}]:[],...l.customRules]),N=e.computed(()=>!l.required&&!m.value&&!g.value?!0:l.required&&(!m.value||!g.value)||!l.required&&(m.value||g.value)&&(m.value&&!g.value||!m.value&&g.value)||m.value&&g.value&&y.value&&h.value&&y.value>h.value?!1:!p.hasError.value&&!u.hasError.value);function L(){s.value&&s.value.validateOnSubmit(),i.value&&i.value.validateOnSubmit()}function S(){p.validateField(y.value,k.value,l.customWarningRules),u.validateField(h.value,M.value,l.customWarningRules)}function D(){L()}function $(){L()}e.watch(m,()=>{S(),g.value&&i.value&&i.value.validateOnSubmit()}),e.watch(g,()=>{S(),m.value&&s.value&&s.value.validateOnSubmit()}),e.watch([c,d],()=>{r("update:modelValue",{from:m.value,to:g.value})}),e.watch(()=>l.modelValue,C=>{if(!C)return;const E=f(C.from),H=f(C.to);c.value!==E&&(c.value=E),d.value!==H&&(d.value=H),S()},{deep:!0,immediate:!0});const v=()=>{var H,K;const C=((H=s.value)==null?void 0:H.validateOnSubmit())??!0,E=((K=i.value)==null?void 0:K.validateOnSubmit())??!0;return S(),C&&E&&N.value};return e.onMounted(()=>{var C,E;c.value=f((C=l.modelValue)==null?void 0:C.from),d.value=f((E=l.modelValue)==null?void 0:E.to),S()}),a({validateOnSubmit:v,errors:{fromDate:p.errors,toDate:u.errors},successes:{fromDate:p.successes,toDate:u.successes},warnings:{fromDate:p.warnings,toDate:u.warnings},isValid:N}),(C,E)=>(e.openBlock(),e.createElementBlock("div",nc,[e.createElementVNode("div",oc,[e.createVNode(Bt,{ref_key:"fromDateRef",ref:s,modelValue:c.value,"onUpdate:modelValue":E[0]||(E[0]=H=>c.value=H),"custom-rules":k.value,"custom-warning-rules":l.customWarningRules,"date-format-return":l.dateFormatReturn,"display-append-icon":l.displayAppendIcon,"display-icon":l.displayIcon,"error-message":e.unref(p).hasError,format:l.format,"is-disabled":l.isDisabled,"is-outlined":l.isOutlined,"no-calendar":l.noCalendar,"no-icon":l.noIcon,placeholder:l.placeholderFrom,required:l.disableErrorHandling?!1:l.required,"show-week-number":l.showWeekNumber,"show-success-messages":b.value,"success-message":e.unref(p).hasSuccess,onClosed:D},null,8,["modelValue","custom-rules","custom-warning-rules","date-format-return","display-append-icon","display-icon","error-message","format","is-disabled","is-outlined","no-calendar","no-icon","placeholder","required","show-week-number","show-success-messages","success-message"])]),e.createElementVNode("div",lc,[e.createVNode(Bt,{ref_key:"toDateRef",ref:i,modelValue:d.value,"onUpdate:modelValue":E[1]||(E[1]=H=>d.value=H),"custom-rules":M.value,"custom-warning-rules":l.customWarningRules,"date-format-return":l.dateFormatReturn,"display-append-icon":l.displayAppendIcon,"display-icon":l.displayIcon,"error-message":e.unref(u).hasError,format:l.format,"is-disabled":l.isDisabled,"is-outlined":l.isOutlined,"no-calendar":l.noCalendar,"no-icon":l.noIcon,placeholder:l.placeholderTo,required:l.disableErrorHandling?!1:l.required,"show-week-number":l.showWeekNumber,"show-success-messages":b.value,"success-message":e.unref(u).hasSuccess,onClosed:$},null,8,["modelValue","custom-rules","custom-warning-rules","date-format-return","display-append-icon","display-icon","error-message","format","is-disabled","is-outlined","no-calendar","no-icon","placeholder","required","show-week-number","show-success-messages","success-message"])])]))}}),[["__scopeId","data-v-2afb8758"]]),sc=[{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:"### ####"}],_e={label:"Numéro de téléphone",indicatifLabel:"Indicatif"},ic={class:"phone-field-container"},cc=Z(e.defineComponent({__name:"PhoneField",props:{modelValue:{type:String,default:""},dialCodeModel:{type:[String,Object],default:""},required:{type:Boolean,default:!1},outlined:{type:Boolean,default:!0},outlinedIndicatif:{type:Boolean,default:!0},withCountryCode:{type:Boolean,default:!1},countryCodeRequired:{type:Boolean,default:!1},displayFormat:{type:String,default:"code"},customIndicatifs:{type:Array,default:()=>[]},useCustomIndicatifsOnly:{type:Boolean,default:!1},isValidatedOnBlur:{type:Boolean,default:!0},displayAsterisk:{type:Boolean,default:!1},disableErrorHandling:{type:Boolean,default:!1}},emits:["update:modelValue","update:selectedDialCode","change"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(t.modelValue||""),s=e.ref(t.dialCodeModel||""),i=e.ref(10),c=e.ref("## ## ## ## ##"),d=e.ref(!1);function p(v){return v?v.replace(/\D/g,"").replace(/(.{2})/g,"$1 ").trim():""}const u=e.computed(()=>p(r.value));e.watch(()=>t.modelValue,v=>{r.value=(v||"").replace(/\s/g,"")},{immediate:!0}),e.watch(s,v=>{l("update:selectedDialCode",v),typeof v=="object"&&v!==null&&(i.value=v.phoneLength||10,c.value=v.mask||"#".repeat(v.phoneLength||10).replace(/(.{2})/g,"$1 ").trim())});function f(v){const E=v.target.value.replace(/\D/g,"");r.value=E,l("update:modelValue",E),l("change",E)}const m=e.computed(()=>t.useCustomIndicatifsOnly?t.customIndicatifs:[...sc,...t.customIndicatifs]),g=e.computed(()=>m.value.map(v=>({...v,displayText:y(v)})));function y(v){return{code:v.code,"code-abbreviation":`${v.code} (${v.abbreviation})`,"code-country":`${v.code} ${v.country}`,country:v.country,abbreviation:v.abbreviation}[t.displayFormat]||v.code}const h=e.computed(()=>{const v=[{type:"exactLength",options:{length:i.value,ignoreSpace:!0,message:`Le numéro de téléphone doit contenir ${i.value} chiffres.`,fieldIdentifier:_e.label}}];return t.required&&v.unshift({type:"required",options:{length:i.value,ignoreSpace:!0,message:`Le champ ${_e.label} est requis.`,fieldIdentifier:_e.label}}),v}),k=ie({customRules:h.value,showSuccessMessages:!0,fieldIdentifier:_e.label,disableErrorHandling:t.disableErrorHandling}),b=e.computed(()=>k.hasError.value),M=e.computed(()=>k.hasWarning.value),N=e.computed(()=>k.hasSuccess.value),L=e.computed(()=>k.errors.value),S=e.computed(()=>k.warnings.value),D=e.computed(()=>k.successes.value);function $(){if(!t.isValidatedOnBlur)return;d.value=!0;const v=r.value.replace(/\s/g,"");k.validateField(v,h.value)}return e.watch(r,v=>{if(!t.isValidatedOnBlur||d.value){const C=v.replace(/\s/g,"");k.validateField(C,h.value)}}),e.watch(h,()=>{if(d.value){const v=r.value.replace(/\s/g,"");k.validateField(v,h.value)}}),a({computedValue:u,dialCode:s,phoneMask:c,counter:i,hasError:b,phoneNumber:r,mergedDialCodes:m,validation:k}),(v,C)=>(e.openBlock(),e.createElementBlock("div",ic,[t.withCountryCode?(e.openBlock(),e.createBlock(vt,{key:0,modelValue:s.value,"onUpdate:modelValue":C[0]||(C[0]=E=>s.value=E),items:g.value,label:e.unref(_e).indicatifLabel,outlined:o.outlinedIndicatif,required:t.countryCodeRequired,"display-asterisk":t.displayAsterisk,"disable-error-handling":t.disableErrorHandling,"return-object":!0,class:"custom-select","text-key":"displayText","value-key":"code"},null,8,["modelValue","items","label","outlined","required","display-asterisk","disable-error-handling"])):e.createCommentVNode("",!0),e.withDirectives((e.openBlock(),e.createBlock(me,{modelValue:r.value,"onUpdate:modelValue":C[1]||(C[1]=E=>r.value=E),counter:i.value,"counter-value":E=>E.replace(/\s/g,"").length,label:e.unref(_e).label,required:t.required,error:b.value,"error-messages":L.value,"warning-messages":S.value,"success-messages":D.value,variant:o.outlined?"outlined":"underlined","display-asterisk":t.displayAsterisk,class:e.normalizeClass({"phone-field":!0,"error-field":b.value,"warning-field":M.value,"success-field":N.value}),color:"primary",onBlur:$,onInput:f},{"append-inner":e.withCtx(()=>[e.createVNode(O.VIcon,{class:"mr-2",color:"#222324"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(to)),1)]),_:1})]),_:1},8,["modelValue","counter","counter-value","label","required","error","error-messages","warning-messages","success-messages","variant","display-asterisk","class"])),[[e.unref(Ue),c.value]])]))}}),[["__scopeId","data-v-033e1204"]]),dc={class:"tooltip-wrapper"},lt=Z(e.defineComponent({__name:"Tooltip",props:{nudgeLeft:{default:0},nudgeRight:{default:0}},setup(o,{expose:a}){const n=o,t=e.computed(()=>{const r=n.nudgeLeft?n.nudgeLeft:n.nudgeRight*-1;return{transform:`translateX(calc(-50% + ${Math.ceil(r)}px))`}}),l=e.ref(null);return a({element:l}),(r,s)=>(e.openBlock(),e.createElementBlock("div",dc,[e.createElementVNode("div",{ref_key:"tooltip",ref:l,class:"tooltip",style:e.normalizeStyle(t.value)},[e.renderSlot(r.$slots,"default",{},void 0,!0)],4)]))}}),[["__scopeId","data-v-fdf9eaf9"]]);function Qa(o,a,n,t,l,r,s,i,c){const d=e.ref(!1);let p=0,u=null;e.onMounted(()=>{e.toValue(o).addEventListener("mousedown",f),e.toValue(o).addEventListener("touchstart",f)});function f(){d.value=!0,document.addEventListener("mousemove",g),document.addEventListener("mouseup",m),document.addEventListener("touchmove",g),document.addEventListener("touchend",m),document.addEventListener("touchcancel",m)}function m(){document.removeEventListener("mousemove",g),document.removeEventListener("mouseup",m),document.removeEventListener("touchmove",g),document.removeEventListener("touchend",m),document.removeEventListener("touchcancel",m),p=0,u=null,setTimeout(()=>{d.value=!1},100)}function g(y){y.stopPropagation();const h="touches"in y?y.touches[0].clientX:y.clientX;if(u===null){u=h;return}const k=e.toValue(r),b=Math.round(e.toValue(n)/k)*k,N=e.toValue(a).getBoundingClientRect().width,S=(h-u)*100/N,D=k*100/(e.toValue(l)-e.toValue(t)),C=Math.round(S/D)*k-p,E=b+C,H=uc(e.toValue(s),E,e.toValue(i)),K=H-b;K!==0&&(p+=K,c(H))}return{inProgress:d}}function uc(o,a,n){return Math.max(o,Math.min(a,n))}function mc(o,a,n,t){e.toValue(o)>e.toValue(a)&&([o,a]=[a,o]);const l={selectedMin:e.ref(Number(e.toValue(o))),selectedMax:e.ref(Number(e.toValue(a))),rangeMin:e.ref(Number(e.toValue(o))),rangeMax:e.ref(Number(e.toValue(a))),step:e.ref(Number(e.toValue(n)))};return e.watch(()=>e.toValue(o),r=>{r=Number(r),!(isNaN(r)||!isFinite(r))&&(r>l.rangeMax.value||(l.selectedMin.value<r&&(l.selectedMin.value=r),l.selectedMax.value<r&&(l.selectedMax.value=r),l.rangeMin.value=r))}),e.watch(()=>e.toValue(a),r=>{r=Number(r),!(isNaN(r)||!isFinite(r))&&(r<l.rangeMin.value||(l.selectedMin.value>r&&(l.selectedMin.value=r),l.selectedMax.value>r&&(l.selectedMax.value=r),l.rangeMax.value=r))}),e.watch(()=>e.toValue(n),r=>{r=Number(r),pc(r,l.rangeMin.value,l.rangeMax.value)&&(l.step.value=Math.abs(r))}),e.watch(()=>e.toValue(t),r=>{const s=r.map(Number);!en(s[0])||!en(s[1])||s[0]>s[1]||(s[0]<l.rangeMin.value?l.selectedMin.value=l.rangeMin.value:l.selectedMin.value=s[0],s[1]>l.rangeMax.value?l.selectedMax.value=l.rangeMax.value:l.selectedMax.value=s[1])},{immediate:!0}),l}function en(o){return!isNaN(o)&&isFinite(o)}function pc(o,a,n){return!isNaN(o)&&isFinite(o)&&o!=0&&o<=n-a}function tn(o,a,n){return{thumbStyle:e.computed(()=>{const l=e.toValue(o),r=e.toValue(n)-e.toValue(a);return{left:`${r==0?100:(l-e.toValue(a))/r*100}%`}})}}function an(o,a,n,t,l,r){e.onMounted(()=>{e.toValue(o).addEventListener("keydown",s)});function s(i){if(i.key==="ArrowLeft"||i.key==="ArrowDown"){i.preventDefault();const c=e.toValue(l),p=rt(e.toValue(a),c)-c;p>=e.toValue(n)&&r(p)}else if(i.key==="ArrowRight"||i.key==="ArrowUp"){i.preventDefault();const c=e.toValue(l),p=rt(e.toValue(a),c)+c;p<=e.toValue(t)&&r(p)}else if(i.key==="Home")i.preventDefault(),r(e.toValue(n));else if(i.key==="End")i.preventDefault(),r(e.toValue(t));else if(i.key==="PageDown"){i.preventDefault();const c=e.toValue(l),p=rt(e.toValue(a),c)-c*10;p>=e.toValue(n)?r(p):r(e.toValue(n))}else if(i.key==="PageUp"){i.preventDefault();const c=e.toValue(l),p=rt(e.toValue(a),c)+c*10;p<=e.toValue(t)?r(p):r(e.toValue(t))}}}function rt(o,a){return Math.round(o/a)*a}function fc(o,a,n,t,l){const r=e.ref(0),s=e.ref(0);async function i(){await e.nextTick();const c=n.value.element.getBoundingClientRect(),d=t.value.element.getBoundingClientRect(),p=c.right-d.left;if(p>=0){const f=c.width/2-12,m=d.width/2-12,g=Math.abs(f-m);let y=0,h=0;if(f>m?y=Math.min(p,g):h=Math.min(p,g),p>g){const k=p-g,b=Math.ceil(k/2);y+=b,h+=b}r.value=y+1,s.value=h+1}else r.value=0,s.value=0}return e.onMounted(()=>{o.value.element.style.transition="transform 0.1s",a.value.element.style.transition="transform 0.1s",e.watch(()=>[e.toValue(l.selectedMin),e.toValue(l.selectedMax)],i,{immediate:!0}),window.addEventListener("resize",i)}),e.onUnmounted(()=>{window.removeEventListener("resize",i)}),{nudgeMinThumb:r,nudgeMaxThumb:s}}function hc(o,a,n,t,l=!1){function r(s){if(e.toValue(l))return;const i=e.toValue(o).getBoundingClientRect(),c=e.toValue(a.rangeMin),d=e.toValue(a.rangeMax),u=(s.clientX-i.left)/i.width*100,f=yc(u,c,d,e.toValue(a.selectedMin),e.toValue(a.selectedMax),n,t),m=gc(u,c,d,e.toValue(a.step));f(m)}e.onMounted(()=>{e.toValue(o).addEventListener("click",r)})}function gc(o,a,n,t){const l=n-a,r=t*100/l;return Math.round(o/r)*t+a}function yc(o,a,n,t,l,r,s){const i=n-a,c=Math.abs((t-a)/i*100),d=Math.abs((l-a)/i*100),p=Math.abs(c-o),u=Math.abs(d-o);return p<u||p===u&&o<c?r:s}function nn(o){o.currentTarget.classList.add("animate-click")}function st(o){o.currentTarget.classList.remove("animate-click")}const on={mounted:o=>{o.addEventListener("mousedown",nn),o.addEventListener("mouseup",st),o.addEventListener("mouseleave",st),o.addEventListener("touchstart",nn),o.addEventListener("touchend",st),o.addEventListener("touchcancel",st)}},bc={class:"wrapper"},kc=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],Vc=["aria-valuenow","aria-valuemin","aria-valuemax","aria-label","title"],wc=e.defineComponent({__name:"RangeSlider",props:{"thumb-color":{default:he.blue.base},"track-color":{default:he.blue.lighten80},"track-fill-color":{default:he.blue.lighten40},modelValue:{default:()=>[]},min:{default:0},max:{default:100},step:{default:1},minLabel:{default:"Minimum"},maxLabel:{default:"Maximum"}},emits:["update:modelValue"],setup(o,{emit:a}){e.useCssVars(N=>({"3564209b":n.thumbColor,"3e537b74":n.trackColor,"71c52d03":n.trackFillColor}));const n=o,t=mc(e.toRef(n,"min"),e.toRef(n,"max"),e.toRef(n,"step"),e.toRef(n,"modelValue")),l=a,{thumbStyle:r}=tn(t.selectedMin,t.rangeMin,t.rangeMax),{thumbStyle:s}=tn(t.selectedMax,t.rangeMin,t.rangeMax),i=e.computed(()=>{const N=t.rangeMin.value,L=t.rangeMax.value,S=t.selectedMin.value,D=t.selectedMax.value,$=L-N,v=(S-N)*100/$,C=(D-N)*100/$-v;return{left:`${v}%`,width:`${C}%`}}),c=e.ref(null),d=e.ref(null),p=e.ref(null),{inProgress:u}=Qa(d,c,t.selectedMin,t.rangeMin,t.rangeMax,t.step,t.rangeMin,t.selectedMax,N=>t.selectedMin.value=N),{inProgress:f}=Qa(p,c,t.selectedMax,t.rangeMin,t.rangeMax,t.step,t.selectedMin,t.rangeMax,N=>t.selectedMax.value=N),m=e.computed(()=>u.value||f.value);hc(c,t,N=>t.selectedMin.value=N,N=>t.selectedMax.value=N,m),an(d,t.selectedMin,t.rangeMin,t.selectedMax,t.step,N=>t.selectedMin.value=N),an(p,t.selectedMax,t.selectedMin,t.rangeMax,t.step,N=>t.selectedMax.value=N);const g=e.ref(null),y=e.ref(null),h=e.ref(null),k=e.ref(null),{nudgeMinThumb:b,nudgeMaxThumb:M}=fc(h,k,g,y,t);return e.watch(()=>[t.selectedMin.value,t.selectedMax.value],N=>{(N[0]!==Number(n.modelValue[0])||N[1]!==Number(n.modelValue[1]))&&l("update:modelValue",N)}),(N,L)=>(e.openBlock(),e.createElementBlock("div",bc,[e.createElementVNode("div",{ref_key:"track",ref:c,class:"track"},[e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMin",ref:d,class:"thumb-min",style:e.normalizeStyle(e.unref(r)),role:"slider","aria-valuenow":e.unref(t).selectedMin.value,tabindex:"0","aria-valuemin":e.unref(t).rangeMin.value,"aria-valuemax":e.unref(t).selectedMax.value,"aria-orientation":"horizontal","aria-label":N.minLabel,title:N.minLabel},[e.createVNode(lt,{ref_key:"tooltipMin",ref:h,"nudge-right":e.unref(b)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},8,["nudge-right"]),L[0]||(L[0]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,kc)),[[e.unref(on)]]),e.withDirectives((e.openBlock(),e.createElementBlock("button",{ref_key:"thumbMax",ref:p,role:"slider",class:"thumb-max",style:e.normalizeStyle(e.unref(s)),"aria-valuenow":e.unref(t).selectedMax.value,tabindex:"0","aria-valuemin":e.unref(t).selectedMin.value,"aria-valuemax":e.unref(t).rangeMax.value,"aria-orientation":"horizontal","aria-label":N.maxLabel,title:N.maxLabel},[e.createVNode(lt,{ref_key:"tooltipMax",ref:k,"nudge-left":e.unref(M)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},8,["nudge-left"]),L[1]||(L[1]=e.createElementVNode("span",{class:"inner-thumb"},null,-1))],12,Vc)),[[e.unref(on)]]),e.createElementVNode("div",{class:"fake-thumb thumb-min","aria-hidden":"true",style:e.normalizeStyle(e.unref(r))},[e.createVNode(lt,{ref_key:"hiddenTooltipMin",ref:g},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMin.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"fake-thumb thumb-max","aria-hidden":"true",style:e.normalizeStyle(e.unref(s))},[e.createVNode(lt,{ref_key:"hiddenTooltipMax",ref:y},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(t).selectedMax.value),1)]),_:1},512)],4),e.createElementVNode("div",{class:"filled-track",style:e.normalizeStyle(i.value)},null,4)],512)]))}}),Bc=Z(wc,[["__scopeId","data-v-efdf07f6"]]),Cc={textField:{class:"ma-3",variant:"outlined"}},De={minLabel:"Valeur min",maxLabel:"Valeur max"},Mc={class:"vd-range-field"},Nc={class:"mt-10 mb-2 mx-3"},Sc=e.defineComponent({__name:"RangeField",props:e.mergeModels({vuetifyOptions:{},min:{default:0},max:{default:100},step:{default:1}},{modelValue:{},modelModifiers:{}}),emits:["update:modelValue"],setup(o){const a=o,n=te(Cc,a),t=e.useModel(o,"modelValue"),l=e.computed(()=>t.value?t.value:[a.min,a.max]),r=e.ref(l.value[0]),s=e.ref(l.value[1]);e.watch(t,g=>{if(!Array.isArray(g))return;const y=d(g[0]),h=d(g[1]);r.value=y,s.value=h,(y!==g[0]||h!==g[1])&&(t.value=[y,h])},{immediate:!0,deep:!0});const i=ae.useDisplay(),c={tokens:{N:{pattern:/-/,optional:!0},n:{pattern:/\d/,multiple:!0,optional:!0},".":{pattern:/\./,optional:!0},d:{pattern:/\d/,multiple:!0,optional:!0}},mask:"Nn.d"};function d(g){return g=Math.round(Number(g)),isNaN(g)?a.min:Math.min(Math.max(g,a.min),a.max)}function p(g){if(g==="")return;const y=Number(g);!isNaN(y)&&isFinite(y)&&y>=a.min&&y<=t.value[1]&&(t.value=[y,l.value[1]])}function u(g){if(g==="")return;const y=Number(g);!isNaN(y)&&isFinite(y)&&y<=a.max&&y>=l.value[0]&&(t.value=[l.value[0],y])}function f(g){g||(r.value=l.value[0])}function m(g){g||(s.value=l.value[1])}return(g,y)=>(e.openBlock(),e.createElementBlock("div",Mc,[e.createElementVNode("div",Nc,[e.createVNode(Bc,e.mergeProps({"model-value":l.value},e.unref(n).rangeSlider,{max:g.max,min:g.min,step:g.step,class:"mt-8 mb-2","onUpdate:modelValue":y[0]||(y[0]=h=>t.value=h)}),null,16,["model-value","max","min","step"])]),e.createElementVNode("div",{class:e.normalizeClass([{"flex-column":e.unref(i).xs.value},"d-flex flex-wrap max-width-none"])},[e.withDirectives(e.createVNode(Ze.VTextField,e.mergeProps({modelValue:r.value,"onUpdate:modelValue":y[1]||(y[1]=h=>r.value=h)},e.unref(n).textField,{label:e.unref(De).minLabel,"aria-label":e.unref(De).minLabel,inputmode:"numeric",color:"primary",title:e.unref(De).minLabel,"onUpdate:modelValue":p,"onUpdate:focused":f}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ue),c]]),e.withDirectives(e.createVNode(Ze.VTextField,e.mergeProps({modelValue:s.value,"onUpdate:modelValue":y[2]||(y[2]=h=>s.value=h)},e.unref(n).textField,{label:e.unref(De).maxLabel,"aria-label":e.unref(De).maxLabel,inputmode:"numeric",color:"primary",title:e.unref(De).maxLabel,"onUpdate:modelValue":u,"onUpdate:focused":m}),null,16,["modelValue","label","aria-label","title"]),[[e.unref(Ue),c]])],2)]))}});var re=(o=>(o.EMOTION="emotion",o.NUMBER="number",o.STARS="stars",o))(re||{});const Lc=Object.values(re);var Ot=(o=>(o.INFO="info",o.SUCCESS="success",o.WARNING="warning",o.ERROR="error",o))(Ot||{});Object.values(Ot);function Ft(o,a){const n=e.ref(o.modelValue),t=e.computed(()=>n.value!==-1);function l(r){o.readonly||(n.value=typeof r=="number"?r:parseInt(r,10),a("update:modelValue",n.value))}return{internalValue:n,hasAnswered:t,emitInputEvent:l}}const vc={defaultEmotionLabels:["Pas du tout","Moyen","Parfait !"]},xc={class:"vd-emotion-picker"},Ec={class:"text-h6 mb-6"},$c=e.defineComponent({__name:"EmotionPicker",props:{label:{type:String,default:re.EMOTION},length:{type:Number,default:3,validator:o=>Dt("length",["2","3"],o.toString())},itemLabels:{type:Array,default:()=>vc.defaultEmotionLabels},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const{smAndDown:n}=ae.useDisplay(),t=e.computed(()=>n.value),l=o,r=Un,s=zn,i=Fn,c=e.computed(()=>t.value?"70px":"88px"),d=a,{hasAnswered:p,emitInputEvent:u}=Ft(l,d),f=h=>h===l.modelValue-1,m=h=>h===0?r:h===1&&l.length===3?s:i,g=h=>{const k=["sad","neutral","happy"];return l.length===2?k.filter(M=>M!=="neutral")[h]:k[h]},y=h=>l.length===2?l.itemLabels.filter((b,M)=>M!==1)[h]:l.itemLabels[h];return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(k=>{k.setAttribute("aria-hidden","true")})}),(h,k)=>(e.openBlock(),e.createElementBlock("fieldset",xc,[e.createElementVNode("legend",Ec,[e.renderSlot(h.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(l.label),1)],!0)]),e.createVNode(pt.VRating,{"model-value":l.modelValue,length:l.length,readonly:l.readonly,class:"max-width-none mx-n1 mx-sm-n2","onUpdate:modelValue":k[0]||(k[0]=b=>d("update:modelValue",b))},{item:e.withCtx(({index:b})=>[e.createVNode(U.VBtn,{disabled:l.readonly||e.unref(p),title:y(b),"aria-pressed":f(b).toString(),class:e.normalizeClass([[g(b),{"v-btn--active":f(b)}],"rounded-lg px-1 px-sm-4 mx-1 mx-sm-2"]),"min-height":c.value,"min-width":c.value,variant:"text",onClick:M=>e.unref(u)(b+1)},{default:e.withCtx(()=>[e.createVNode(O.VIcon,{size:"40",color:"currentColor",class:"pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m(b)),1)]),_:2},1024),y(b)?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass([{"text-secondary":!f(b)},"text-subtitle-2 mt-1"])},e.toDisplayString(y(b)),3)):e.createCommentVNode("",!0)]),_:2},1032,["disabled","title","aria-pressed","class","min-height","min-width","onClick"])]),_:1},8,["model-value","length","readonly"])]))}}),Ic=Z($c,[["__scopeId","data-v-d8875a0f"]]),it={ariaLabel:(o,a)=>`Note de ${o} sur ${a}.`},_c={class:"vd-number-picker"},Dc={class:"d-sr-only"},Tc={class:"text-h6 mb-6"},Ac={key:0,class:"d-inline-block"},Zc={key:0,class:"d-flex justify-space-between mt-1"},Pc=["aria-label","textContent"],Rc=["aria-label","textContent"],Hc=["aria-label"],Oc=e.defineComponent({__name:"NumberPicker",props:{label:{type:String,default:re.NUMBER},length:{type:Number,default:10},itemLabels:{type:Array,default:()=>[]},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,{smAndDown:t}=ae.useDisplay(),l=e.computed(()=>t.value),r=a,{hasAnswered:s,emitInputEvent:i}=Ft(n,r),c=e.computed(()=>[...Array(n.length)].map((p,u)=>({text:`${u+1}`,value:u+1}))),d=e.computed(()=>n.itemLabels.length===2);return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(u=>{u.setAttribute("aria-hidden","true")})}),(p,u)=>(e.openBlock(),e.createElementBlock("fieldset",_c,[e.createElementVNode("legend",Dc,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),l.value?(e.openBlock(),e.createBlock(vt,{key:0,"model-value":n.modelValue===-1?void 0:n.modelValue,label:n.label,disabled:n.readonly||e.unref(s),items:c.value,"onUpdate:modelValue":u[0]||(u[0]=f=>r("update:modelValue",f))},null,8,["model-value","label","disabled","items"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("legend",Tc,[e.renderSlot(p.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.unref(s)?(e.openBlock(),e.createElementBlock("p",{key:1,"aria-label":e.unref(it).ariaLabel(n.modelValue,n.length),class:"mb-0 d-flex align-center"},[e.createVNode(U.VBtn,{"aria-hidden":"true",disabled:!0,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"vd-btn-answer text-body-2 mr-1 pa-0"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.modelValue),1)]),_:1}),e.createTextVNode(" / "+e.toDisplayString(n.length),1)],8,Hc)):(e.openBlock(),e.createElementBlock("div",Ac,[e.createVNode(pt.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(s),class:"d-flex flex-wrap max-width-none","onUpdate:modelValue":u[1]||(u[1]=f=>r("update:modelValue",f))},{item:e.withCtx(({index:f})=>[e.createVNode(U.VBtn,{"aria-label":e.unref(it).ariaLabel(f+1,n.length),disabled:n.readonly,size:"x-small",variant:"outlined",color:"primary",height:"36px",class:"text-body-2 pa-0 mr-2",onClick:m=>e.unref(i)(f+1)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f+1),1)]),_:2},1032,["aria-label","disabled","onClick"])]),_:1},8,["model-value","length","readonly"]),d.value?(e.openBlock(),e.createElementBlock("div",Zc,[e.createElementVNode("span",{"aria-label":`${e.unref(it).ariaLabel(1,n.length)} ${n.itemLabels[0]}.`,class:"text-caption",textContent:e.toDisplayString(n.itemLabels[0])},null,8,Pc),e.createElementVNode("span",{"aria-label":`${e.unref(it).ariaLabel(n.length,n.length)} ${n.itemLabels[1]}.`,class:"text-caption mr-2",textContent:e.toDisplayString(n.itemLabels[1])},null,8,Rc)])):e.createCommentVNode("",!0)]))],64))]))}}),Fc=Z(Oc,[["__scopeId","data-v-c3142f79"]]),zc={class:"vd-stars-picker"},Uc={class:"text-h6 mb-6"},qc=["disabled","aria-pressed","aria-label","onMouseover","onFocus","onClick"],Yc=e.defineComponent({__name:"StarsPicker",props:{label:{type:String,default:re.STARS},length:{type:Number,default:5},readonly:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,{hasAnswered:l,emitInputEvent:r}=Ft(n,t),s=oo,i=no,c=e.ref(-1);function d(u){return n.modelValue-1===u}function p(u){const f=c.value!==null&&c.value>=u,m=n.modelValue-1>=u;return f||m}return e.onMounted(()=>{document.querySelectorAll(".v-rating__hidden").forEach(f=>{f.setAttribute("aria-hidden","true")})}),(u,f)=>(e.openBlock(),e.createElementBlock("fieldset",zc,[e.createElementVNode("legend",Uc,[e.renderSlot(u.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)]),e.createVNode(pt.VRating,{"model-value":n.modelValue,length:n.length,readonly:n.readonly||e.unref(l),class:"d-flex flex-wrap max-width-none mx-n3","onUpdate:modelValue":f[2]||(f[2]=m=>t("update:modelValue",m))},{item:e.withCtx(({index:m})=>[e.createElementVNode("button",{disabled:n.readonly,"aria-pressed":d(m),"aria-label":`${m+1} star`,onMouseover:g=>c.value=m,onFocus:g=>c.value=m,onMouseleave:f[0]||(f[0]=g=>c.value=-1),onBlur:f[1]||(f[1]=g=>c.value=-1),onClick:g=>e.unref(r)(m+1)},[e.createVNode(O.VIcon,{class:e.normalizeClass([p(m)?"text-primary":"text-blue-lighten","py-0 px-2"]),size:"36px"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(p(m)?e.unref(i):e.unref(s)),1)]),_:2},1032,["class"])],40,qc)]),_:1},8,["model-value","length","readonly"])]))}}),Wc=Z(Yc,[["__scopeId","data-v-14e84c18"]]),Kc={close:"Fermer"},ln=Z(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:e.mergeModels(["click:close"],["update:modelValue"]),setup(o,{expose:a,emit:n}){const t=e.useModel(o,"modelValue"),l=o,r=e.computed(()=>({info:Je,success:ta,warning:gt,error:Xt})[l.type]),s=n;function i(){s("click:close"),t.value=!1}return a({prependIcon:r,dismissAlert:i}),(c,d)=>(e.openBlock(),e.createBlock(Sn.VAlert,{modelValue:t.value,"onUpdate:modelValue":d[0]||(d[0]=p=>t.value=p),type:l.type,closable:l.closable,variant:l.variant,class:e.normalizeClass(`alert alert--${l.type}`),color:l.type,border:l.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(O.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(r.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(c.$slots,"default",{},void 0,!0)]),_:2},[l.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(U.VBtn,{color:l.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:i},{default:e.withCtx(()=>[e.createVNode(O.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ne)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(Kc).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),[["__scopeId","data-v-19edec6a"]]),Gc={thanks:"Merci pour votre réponse"},jc={class:"vd-rating-picker"},Jc=e.defineComponent({__name:"RatingPicker",props:{type:{type:String,required:!0,validator:o=>Dt("type",Lc,o)},label:{type:String,default:null},readonly:{type:Boolean,default:!1},itemLabels:{type:Array,default:null},twoEmotions:{type:Boolean,default:!1},hideAlert:{type:Boolean,default:!1},modelValue:{type:Number,default:-1}},emits:["update:modelValue"],setup(o,{emit:a}){const n=o,t=a,l=e.ref(Ot),r=e.ref(-1),s=e.ref(!1),i=e.computed(()=>n.type===re.EMOTION?Ic:n.type===re.NUMBER?Fc:Wc),c=e.computed(()=>{if(n.type===re.EMOTION)return n.twoEmotions?2:3}),d=e.computed(()=>n.modelValue!==-1);function p(f){const m=n.type===re.STARS&&f<=3,g=n.type===re.NUMBER&&f<=7,y=n.type===re.EMOTION,h=n.twoEmotions?f<2:f<3;(m||g||y&&h)&&(s.value=!0)}function u(f){r.value=f,p(f),t("update:modelValue",f)}return(f,m)=>(e.openBlock(),e.createElementBlock("div",jc,[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.value),{"model-value":r.value,label:n.label,length:c.value,readonly:n.readonly||d.value,"item-labels":n.itemLabels||void 0,"onUpdate:modelValue":u},{label:e.withCtx(()=>[e.renderSlot(f.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)])]),_:3},8,["model-value","label","length","readonly","item-labels"])),d.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[n.hideAlert?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ln,{key:0,class:e.normalizeClass([{"mb-4":s.value},"mt-4"]),outlined:"",type:l.value.SUCCESS},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Gc).thanks),1)]),_:1},8,["class","type"])),s.value?e.renderSlot(f.$slots,"default",{key:1}):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)]))}}),ke={search:"Rechercher",searchListTitle:"Liste des éléments",checkboxLabel:"Sélectionner la valeur"},Xc={class:"vd-search-list"},Qc={id:"search-label",class:"d-sr-only"},e1={id:"search-description",class:"d-sr-only"},t1={id:"search-list-title",class:"d-sr-only"},a1=["id"],n1=["id","checked","aria-selected","aria-label","aria-labelledby","title"],o1=["for"],l1=Z(e.defineComponent({__name:"SearchListField",props:{modelValue:{type:Array,default:()=>[]},items:{type:Array,default:()=>[]},outlined:{type:Boolean,default:!0}},emits:["update:modelValue"],setup(o,{expose:a,emit:n}){const t=o,l=n,r=e.ref(null),s=e.ref(t.modelValue),i=aa;e.watch(()=>t.modelValue,p=>{s.value=p});const c=e.computed(()=>{if(r.value===null)return t.items;const p=r.value.toLowerCase();return t.items.filter(u=>u.label.toLowerCase().includes(p))}),d=p=>{l("update:modelValue",p)};return a({filteredItems:c,search:r,emitChangeEvent:d}),(p,u)=>(e.openBlock(),e.createElementBlock("div",Xc,[e.createVNode(e.unref(me),{modelValue:r.value,"onUpdate:modelValue":u[0]||(u[0]=f=>r.value=f),label:e.unref(ke).search,"aria-describedby":"search-description","aria-labelledby":"search-label","hide-details":"",color:"primary",variant:o.outlined?"outlined":"underlined",clearable:"",tabindex:"0"},{"prepend-inner":e.withCtx(()=>[e.createVNode(O.VIcon,{class:"mr-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)),1)]),_:1})]),_:1},8,["modelValue","label","variant"]),e.createElementVNode("label",Qc,e.toDisplayString(e.unref(ke).search),1),e.createElementVNode("span",e1,e.toDisplayString(e.unref(ke).search),1),e.createVNode(Q.VList,{id:"search-list",selected:s.value,"onUpdate:selected":[u[1]||(u[1]=f=>s.value=f),d],title:"search-list","select-strategy":"classic",class:"pb-0",role:"listbox","aria-labelledby":"search-list-title"},{default:e.withCtx(()=>[e.createElementVNode("h2",t1,e.toDisplayString(e.unref(ke).searchListTitle),1),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(f,m)=>(e.openBlock(),e.createBlock(Q.VListItem,{id:`search-list-item-${m}`,key:m,value:f.value,role:"option","aria-selected":s.value.includes(f.value),"aria-labelledby":`search-list-item-${m}`,tabindex:0,"active-class":"text-primary",class:"d-flex align-center justify-start mx-4"},{prepend:e.withCtx(({isActive:g})=>[e.createVNode(Q.VListItemAction,{start:""},{default:e.withCtx(()=>[e.createElementVNode("input",{id:`checkbox-${m}`,type:"checkbox",role:"option",checked:g,"aria-selected":g,"aria-label":`${e.unref(ke).checkboxLabel} ${f.label}`,"aria-labelledby":`checkbox-${m}`,title:`${e.unref(ke).checkboxLabel} ${f.label}`,class:"custom-checkbox ml-2"},null,8,n1),e.createElementVNode("label",{for:`checkbox-${m}`,class:"d-sr-only"},e.toDisplayString(e.unref(ke).checkboxLabel),9,o1)]),_:2},1024),e.createVNode(Q.VListItemTitle,null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.label),1)]),_:2},1024)]),default:e.withCtx(()=>[e.createElementVNode("span",{id:`search-list-item-label-${m}`,class:"d-sr-only"},e.toDisplayString(f.label),9,a1)]),_:2},1032,["id","value","aria-selected","aria-labelledby"]))),128))]),_:1},8,["selected"])]))}}),[["__scopeId","data-v-6d0140a9"]]),r1={btn:{height:"auto",minHeight:"40px",activeClass:"text-white",class:"py-2 d-flex align-items-center"},icon:{class:"text-white flex-shrink-0 ml-1"}},s1={class:"text-body-1"},i1=Z(e.defineComponent({__name:"SelectBtnField",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},label:{default:void 0},multiple:{type:Boolean,default:!1},inline:{type:Boolean,default:!1},hint:{default:void 0},error:{type:Boolean,default:!1},errorMessages:{default:void 0},readonly:{type:Boolean,default:!1}},emits:["update:modelValue","update:error","update:error-messages"],setup(o,{emit:a}){const n=o,t=te(r1,n),l=a,r=e.ref(ea),s=e.ref(null),i=e.ref(ae.useTheme().current.value.dark);e.watch(()=>n.modelValue,m=>{if(m===null&&n.multiple){s.value=[];return}s.value=m},{immediate:!0,deep:!0});const c=e.computed(()=>n.items.filter(m=>m.value!==null&&m.value!==void 0));function d(m){return n.multiple?Array.isArray(s.value)&&s.value.includes(m):s.value===m}function p(m){return{visibility:d(m.value)?"visible":"hidden"}}function u(m){if(n.multiple){const g=s.value,y=c.value.some(h=>h.unique&&g.includes(h.value));return m.unique||y?[m.value]:g.includes(m.value)?g.filter(h=>h!==m.value):[...g,m.value]}return s.value===m.value?null:m.value}function f(m){s.value=u(m),l("update:error",!1),l("update:error-messages",void 0),l("update:modelValue",s.value)}return(m,g)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([{"form-input":!m.inline},"select-btn-field"])},[e.createVNode(Ln.VBtnToggle,e.mergeProps(e.unref(t).btnToggle,{tag:"ul","model-value":s.value,multiple:m.multiple,"aria-label":m.label,class:[{"d-flex flex-column":!m.inline},"select-btn-field-toggle d-flex flex-wrap text-primary"]}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(y,h)=>(e.openBlock(),e.createElementBlock("li",{key:`${h} + ${y.value}`,class:"select-list-item"},[e.createVNode(U.VBtn,e.mergeProps({ref_for:!0},e.unref(t).btn,{"aria-expanded":!0,value:y.value,disabled:m.readonly,variant:d(y.value)?"flat":"outlined",elevation:0,color:m.error?"error":"primary",class:{"text-error":m.error&&!d(y.value),"justify-start":!d(y.value),"justify-space-between":d(y.value)},label:d(y.value)?"Sélectionné":"",onClick:k=>f(y)}),{default:e.withCtx(()=>[e.createElementVNode("span",s1,e.toDisplayString(y.text),1),e.createVNode(O.VIcon,e.mergeProps({ref_for:!0},e.unref(t).icon,{style:p(y),role:"img","aria-hidden":!d(y.value),"aria-label":"Sélectionné"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:2},1040,["style","aria-hidden"])]),_:2},1040,["value","disabled","variant","color","class","label","onClick"])]))),128))]),_:1},16,["model-value","multiple","aria-label","class"]),m.errorMessages?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(m.errorMessages,(y,h)=>(e.openBlock(),e.createElementBlock("p",{key:h,class:e.normalizeClass([i.value?"theme--dark":"theme--light","v-messages text-error px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(y),3))),128)):m.hint?(e.openBlock(),e.createElementBlock("p",{key:1,class:e.normalizeClass([i.value?"theme--dark":"theme--light","v-messages px-3 mt-2 mb-0 opacity-100"])},e.toDisplayString(m.hint),3)):e.createCommentVNode("",!0)],2))}}),[["__scopeId","data-v-86fce8e6"]]),c1={label:"Aller au contenu principal"},d1={class:"vd-skip-link-container"},u1=["href"],m1=e.defineComponent({__name:"SkipLink",props:{label:{default:c1.label},target:{default:"#main"}},setup(o){const a=e.ref(null);return e.onMounted(()=>{var s,i;const n=e.getCurrentInstance();if(!n)return;const t=(s=n==null?void 0:n.appContext.app)==null?void 0:s.$nuxt;let l;t&&t.$router&&(l=t.$router);const r=(i=n.appContext.app.config.globalProperties)==null?void 0:i.$router;r&&(l=r),l&&l.afterEach&&l.afterEach((c,d,p)=>{p||c.path!==d.path&&e.nextTick(()=>{var u;(u=a.value)==null||u.focus()})})}),(n,t)=>(e.openBlock(),e.createElementBlock("div",d1,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:a,tabindex:"-1"},null,512),e.createElementVNode("a",{href:n.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(n.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(n.label),1)],!0)],8,u1)]))}}),p1=Z(m1,[["__scopeId","data-v-aa139979"]]),f1={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},h1={backBtnText:"Retour"},g1={class:"vd-sub-header-content d-flex justify-space-between"},y1={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},b1={key:1,class:"text-h5 font-weight-bold"},k1={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},V1=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:h1.backBtnText},titleText:{default:void 0},subTitleText:{default:void 0},dataListGroupItems:{default:void 0},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item","back"],setup(o,{emit:a}){const n=o,t=te(f1,n),{widthStyles:l}=Ee(n),r=e.ref(Jn),s=a;function i(c){s("click:list-item",c)}return(c,d)=>(e.openBlock(),e.createBlock(Me.VSheet,e.mergeProps(e.unref(t).sheet,{style:e.unref(l),class:"vd-sub-header white--text py-6 px-8"}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"back-btn",{},()=>[c.hideBackBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Pe.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[c.loading?(e.openBlock(),e.createBlock(vn.VSkeletonLoader,{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:1},e.unref(t).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:d[0]||(d[0]=p=>c.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"back-btn-icon",{},()=>[e.createVNode(O.VIcon,{class:"mr-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:1})],!0),e.createTextVNode(" "+e.toDisplayString(c.backBtnText),1)]),_:3},16))]),_:3}))],!0),e.createElementVNode("div",g1,[e.createElementVNode("div",y1,[e.renderSlot(c.$slots,"title",{},()=>[e.createVNode(Pe.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[c.loading?(e.openBlock(),e.createBlock(xe,{key:0,width:"300",height:"2rem",color:"secondary"})):c.titleText?(e.openBlock(),e.createElementBlock("h2",b1,e.toDisplayString(c.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(c.$slots,"sub-title",{},()=>[c.subTitleText?(e.openBlock(),e.createBlock(Pe.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[c.loading?(e.openBlock(),e.createBlock(xe,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",k1,e.toDisplayString(c.subTitleText),1))]),_:1})):e.createCommentVNode("",!0)],!0),e.renderSlot(c.$slots,"additional-informations",{},void 0,!0)]),e.renderSlot(c.$slots,"right-content",{},()=>[c.dataListGroupItems?(e.openBlock(),e.createBlock(ga,{key:0,items:c.dataListGroupItems,loading:c.loading,"render-html-value":c.renderHtmlValue,"item-width":"auto",class:"flex-nowrap flex-shrink-0","onClick:listItem":i},null,8,["items","loading","render-html-value"])):e.createCommentVNode("",!0)],!0)])]),_:3},16,["style"]))}}),w1=Z(V1,[["__scopeId","data-v-69f0b82b"]]),B1={toolbar:{flat:!0,color:"#FFFFFF",height:"auto",minHeight:"56px"},addBtn:{variant:"outlined",color:"primary",class:"my-1 px-2 px-md-4",minWidth:"44px"},addIconLabel:{class:"mr-1"},textField:{variant:"underlined",clearable:!0,singleLine:!0,hideDetails:!0,density:"compact"}},zt={rowText:(o,a)=>`${o} ligne${a?"s":""}`,search:"Rechercher",addBtnLabel:"Ajouter"},C1={key:0,class:"mb-0 font-weight-bold mr-4 my-3","data-test-id":"nb-rows"},M1={class:"sy-table-toolbar__search"},N1=e.defineComponent({__name:"TableToolbar",props:{nbTotal:{},nbFiltered:{default:void 0},search:{default:void 0},searchLabel:{default:zt.search},showAddButton:{type:Boolean,default:!1},addButtonLabel:{default:zt.addBtnLabel},loading:{type:Boolean,default:!1},locales:{default:()=>zt},vuetifyOptions:{}},emits:["update:search","add"],setup(o){const a=o,n=te(B1,a),t=ae.useDisplay(),l=ae.useTheme(),r=e.computed(()=>({"sy-form-input--s":t.xs.value,"flex-grow-0":t.xs.value,"flex-grow-1":!t.xs.value,"mr-6":a.showAddButton,loading:a.loading})),s=e.computed(()=>{const i=a.nbFiltered?`${a.nbFiltered}/${a.nbTotal}`:String(a.nbTotal);return a.locales.rowText(i,a.nbTotal>1)});return(i,c)=>(e.openBlock(),e.createBlock(xn.VToolbar,e.mergeProps(e.unref(n).toolbar,{class:[{"v-theme-dark":e.unref(l).current.value.dark},"sy-table-toolbar px-4 py-2 d-flex flex-wrap align-center justify-space-between"]}),{default:e.withCtx(()=>[i.nbTotal>0?(e.openBlock(),e.createElementBlock("p",C1,e.toDisplayString(s.value),1)):e.createCommentVNode("",!0),e.createElementVNode("div",M1,[e.renderSlot(i.$slots,"search-left",{},void 0,!0),e.createVNode(Ze.VTextField,e.mergeProps(e.unref(n).textField,{color:"primary","model-value":i.search,class:["sy-form-input",r.value],disabled:i.loading,"append-inner-icon":e.unref(aa),label:i.searchLabel,"data-test-id":"search-input","onUpdate:modelValue":c[0]||(c[0]=d=>i.$emit("update:search",d))}),null,16,["model-value","class","disabled","append-inner-icon","label"]),i.showAddButton?(e.openBlock(),e.createBlock(U.VBtn,e.mergeProps({key:0},e.unref(n).addBtn,{disabled:i.loading,class:"ml-3 mb-0","data-test-id":"add-btn",onClick:c[1]||(c[1]=d=>i.$emit("add"))}),{default:e.withCtx(()=>[e.createVNode(O.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(n).addIcon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ao)),1)]),_:1},16),e.withDirectives(e.createElementVNode("span",e.normalizeProps(e.guardReactiveProps(e.unref(n).addIconLabel)),e.toDisplayString(i.addButtonLabel),17),[[e.vShow,!e.unref(t).xs.value]])]),_:1},16,["disabled"])):e.createCommentVNode("",!0),e.renderSlot(i.$slots,"search-right",{},void 0,!0)])]),_:3},16,["class"]))}}),S1=Z(N1,[["__scopeId","data-v-b32b3a56"]]),L1={fileUpload:{class:"mt-6"},dialog:{persistent:!0,width:"550"},card:{class:"pa-4"},select:{variant:"outlined",validateOnBlur:!0,label:"Nature du fichier"},layout:{wrap:!0,class:"mt-2"},cancelBtn:{text:!0,class:"mr-4",color:"accent"},confirmBtn:{color:"accent"}},v1={title:o=>`Document${o?"s":""} à nous transmettre`,importTitle:"Importer des fichiers",modalTitle:"Fichier transmis",cancelBtn:"Retour",confirmBtn:"Confirmer"};function x1(o){const a=e.computed(()=>o.value.map(t=>({value:t.id,text:t.title}))),n=e.ref();return{selectItems:a,selectedItem:n}}function E1(o,a){const n=e.ref([]);function t(p){const u=n.value.findIndex(f=>f===p);u!==-1&&n.value.splice(u,1)}function l(p){return o.value.find(u=>u.id===p)}function r(p){const u=o.value.findIndex(f=>f.id===p.id);o.value.splice(u,1)}function s(p,u,f="success"){u.file=p,u.fileName=p.name,u.state=f}function i(p,u,f="success"){const m=l(u);if(m)s(p,m,f);else{const g=a.value.findIndex(y=>y.id===u);o.value.push({id:a.value[g].id,title:a.value[g].title,state:f,optional:!!a.value[g].optional,showPreviewBtn:!!a.value[g].showPreviewBtn,fileName:p.name,file:p}),t(u)}}function c(p){const u=l(p);u&&r(u),n.value.push(p)}const d=e.computed(()=>a.value.map(p=>{const u=l(p.id),f=n.value.includes(p.id),m=p.state??(f?"error":"initial");return{...p,state:m,...u}}));return{addOrReplaceFile:i,replaceFile:s,resetFile:r,setItemOnError:c,filledUploadList:d}}const $1={class:"text-h6 mb-2"},I1=e.defineComponent({__name:"UploadWorkflow",props:e.mergeModels({maxWidth:{},minWidth:{},width:{},vuetifyOptions:{},uploadList:{},sectionTitle:{default:void 0},showFilePreview:{type:Boolean,default:!1},locales:{default:()=>v1}},{modelValue:{type:Array,default:e.reactive([])},modelModifiers:{}}),emits:e.mergeModels(["error","update:modelValue"],["update:modelValue"]),setup(o,{emit:a}){const n=o,t=a,l=e.useModel(o,"modelValue");e.watch(l,C=>{t("update:modelValue",C)},{deep:!0});const{widthStyles:r}=Ee(n),s=te(L1,n),i=e.ref(),{selectItems:c,selectedItem:d}=x1(e.toRef(n,"uploadList")),p=e.computed(()=>n.sectionTitle??n.locales.title(!!n.uploadList.length)),{addOrReplaceFile:u,resetFile:f,setItemOnError:m,filledUploadList:g}=E1(l,e.toRef(n,"uploadList"));let y;function h(C){y=C.id,i.value.fileInput.click()}function k(C){v.value=!0,$.value=C.file}const b=e.ref([]),M=e.computed(()=>l.value.length<n.uploadList.length||n.uploadList.find(C=>C.state==="error")!==void 0);function N(C){const E=y??(n.uploadList.length===1?n.uploadList[0].id:void 0);if(y=void 0,n.showFilePreview||E===void 0){S.value=!0,d.value=E;return}u(C[0],E)}function L(C){t("error",C),y&&(m(y),y=void 0)}const S=e.ref(!1);function D(){d.value&&(u(b.value[0],d.value),S.value=!1,d.value=void 0)}const $=e.ref(),v=e.ref(!1);return(C,E)=>(e.openBlock(),e.createElementBlock("div",{style:e.normalizeStyle(e.unref(r)),class:"sy-upload-workflow white"},[e.renderSlot(C.$slots,"title",{},()=>[e.createElementVNode("h4",$1,e.toDisplayString(p.value),1)],!0),e.createVNode(Va,e.mergeProps(e.unref(s).fileList,{"upload-list":e.unref(g),onUpload:h,onRetry:h,onDelete:e.unref(f),onPreview:k}),null,16,["upload-list","onDelete"]),e.createVNode(e.Transition,null,{default:e.withCtx(()=>[M.value?(e.openBlock(),e.createBlock(Ba,e.mergeProps({key:0,ref_key:"fileUpload",ref:i},e.unref(s).fileUpload,{modelValue:b.value,"onUpdate:modelValue":[E[0]||(E[0]=H=>b.value=H),N],onError:L}),null,16,["modelValue"])):e.createCommentVNode("",!0)]),_:1}),e.createVNode(Et,e.mergeProps({modelValue:S.value,"onUpdate:modelValue":E[2]||(E[2]=H=>S.value=H)},e.unref(s).dialog,{onCancel:E[3]||(E[3]=H=>S.value=!1),onConfirm:D}),{title:e.withCtx(()=>[e.renderSlot(C.$slots,"modal-title",{},()=>[e.createTextVNode(e.toDisplayString(C.locales.modalTitle),1)],!0)]),default:e.withCtx(()=>[e.renderSlot(C.$slots,"modal-description",{},void 0,!0),(e.openBlock(),e.createBlock(Wt.VForm,e.mergeProps({key:0,ref:"form"},e.unref(s).form,{class:"mb-2"}),{default:e.withCtx(()=>[e.createVNode(En.VSelect,e.mergeProps({modelValue:e.unref(d),"onUpdate:modelValue":E[1]||(E[1]=H=>e.isRef(d)?d.value=H:null)},e.unref(s).select,{items:e.unref(c),"item-title":"text","item-value":"value",rules:[e.unref(Lt)],color:"primary"}),null,16,["modelValue","items","rules"])]),_:1},16)),C.showFilePreview?(e.openBlock(),e.createBlock(_t,{key:1,options:e.unref(s).filePreview,file:b.value[0]},null,8,["options","file"])):e.createCommentVNode("",!0)]),_:3},16,["modelValue"]),e.createVNode(Et,e.mergeProps({modelValue:v.value,"onUpdate:modelValue":E[4]||(E[4]=H=>v.value=H)},e.unref(s).previewDialog,{"hide-actions":""}),{default:e.withCtx(()=>[e.renderSlot(C.$slots,"preview-description",{},void 0,!0),e.createVNode(_t,{options:e.unref(s).filePreview,file:$.value},null,8,["options","file"])]),_:3},16,["modelValue"])],4))}}),_1=Z(I1,[["__scopeId","data-v-d44b8549"]]),D1={menu:{offsetY:!0,zIndex:4,minWidth:"198px",maxWidth:"auto",nudgeRight:0},btn:{variant:"text",height:"auto"},icon:{color:"secondary"},logoutListItem:{class:"text-primary",minWidth:"198px"},logoutIcon:{color:"primary",class:"mr-4"}},T1={class:"d-flex"},A1=Z(e.defineComponent({__name:"UserMenuBtn",props:e.mergeModels({vuetifyOptions:{},menuItems:{default:()=>[]},additionalInformation:{default:"Information supplémentaire"},fullName:{default:"Prénom Nom"},hideLogoutBtn:{type:Boolean,default:!1},isMobileView:{type:Boolean,default:!1},hideUserIcon:{type:Boolean,default:!1}},{modelValue:{default:null},modelModifiers:{}}),emits:e.mergeModels(["logout"],["update:modelValue"]),setup(o){const a=o,n=e.useModel(o,"modelValue"),{smAndDown:t}=ae.useDisplay(),l=te(D1,a),r=e.computed(()=>a.isMobileView||t.value);return(s,i)=>(e.openBlock(),e.createBlock(ma,{modelValue:n.value,"onUpdate:modelValue":i[1]||(i[1]=c=>n.value=c),"hide-icon":s.hideUserIcon,"icon-only":r.value,"is-mobile-view":r.value,"menu-items":s.menuItems,options:e.unref(l),"primary-info":s.fullName,"secondary-info":s.additionalInformation,class:"user-menu-btn"},{"append-icon":e.withCtx(()=>[s.hideUserIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(O.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($n)),1)]),_:1},16,["size"]))]),"footer-list-item":e.withCtx(()=>[s.hideLogoutBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Q.VListItem,e.mergeProps({key:0,class:"logout"},e.unref(l).logoutListItem,{onClick:i[0]||(i[0]=c=>s.$emit("logout"))}),{default:e.withCtx(()=>[e.createElementVNode("div",T1,[e.createVNode(O.VIcon,e.mergeProps({icon:e.unref(Qn),class:"mr-4"},e.unref(l).logoutIcon),null,16,["icon"]),e.createVNode(Q.VListItemTitle,null,{default:e.withCtx(()=>i[2]||(i[2]=[e.createTextVNode(" Logout ")])),_:1})])]),_:1},16))]),_:1},8,["modelValue","hide-icon","icon-only","is-mobile-view","menu-items","options","primary-info","secondary-info"]))}}),[["__scopeId","data-v-eae274b3"]]),Z1={default:"Le format saisi ne correspond pas au format attendu."};function P1(o,a=Z1){return n=>{if(!n)return!0;const t=n.match(o);return t&&t.length>0||ne(a,"default")}}const R1={default:"La date saisie n’est pas valide.",wrongFormat:"Le format de la date n’est pas valide.",monthNotMatch:"Le jour saisi dépasse le nombre de jours dans le mois correspondant.",notALeapYear:"Le jour saisi est invalide car l’année correspondante n’est pas une année bissextile."};var rn={exports:{}};(function(o,a){(function(n,t){o.exports=t()})(Xe,function(){var n=1e3,t=6e4,l=36e5,r="millisecond",s="second",i="minute",c="hour",d="day",p="week",u="month",f="quarter",m="year",g="date",y="Invalid Date",h=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,k=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(P){var T=["th","st","nd","rd"],I=P%100;return"["+P+(T[(I-20)%10]||T[I]||T[0])+"]"}},M=function(P,T,I){var R=String(P);return!R||R.length>=T?P:""+Array(T+1-R.length).join(I)+P},N={s:M,z:function(P){var T=-P.utcOffset(),I=Math.abs(T),R=Math.floor(I/60),V=I%60;return(T<=0?"+":"-")+M(R,2,"0")+":"+M(V,2,"0")},m:function P(T,I){if(T.date()<I.date())return-P(I,T);var R=12*(I.year()-T.year())+(I.month()-T.month()),V=T.clone().add(R,u),w=I-V<0,x=T.clone().add(R+(w?-1:1),u);return+(-(R+(I-V)/(w?V-x:x-V))||0)},a:function(P){return P<0?Math.ceil(P)||0:Math.floor(P)},p:function(P){return{M:u,y:m,w:p,d,D:g,h:c,m:i,s,ms:r,Q:f}[P]||String(P||"").toLowerCase().replace(/s$/,"")},u:function(P){return P===void 0}},L="en",S={};S[L]=b;var D="$isDayjsObject",$=function(P){return P instanceof H||!(!P||!P[D])},v=function P(T,I,R){var V;if(!T)return L;if(typeof T=="string"){var w=T.toLowerCase();S[w]&&(V=w),I&&(S[w]=I,V=w);var x=T.split("-");if(!V&&x.length>1)return P(x[0])}else{var A=T.name;S[A]=T,V=A}return!R&&V&&(L=V),V||!R&&L},C=function(P,T){if($(P))return P.clone();var I=typeof T=="object"?T:{};return I.date=P,I.args=arguments,new H(I)},E=N;E.l=v,E.i=$,E.w=function(P,T){return C(P,{locale:T.$L,utc:T.$u,x:T.$x,$offset:T.$offset})};var H=function(){function P(I){this.$L=v(I.locale,null,!0),this.parse(I),this.$x=this.$x||I.x||{},this[D]=!0}var T=P.prototype;return T.parse=function(I){this.$d=function(R){var V=R.date,w=R.utc;if(V===null)return new Date(NaN);if(E.u(V))return new Date;if(V instanceof Date)return new Date(V);if(typeof V=="string"&&!/Z$/i.test(V)){var x=V.match(h);if(x){var A=x[2]-1||0,F=(x[7]||"0").substring(0,3);return w?new Date(Date.UTC(x[1],A,x[3]||1,x[4]||0,x[5]||0,x[6]||0,F)):new Date(x[1],A,x[3]||1,x[4]||0,x[5]||0,x[6]||0,F)}}return new Date(V)}(I),this.init()},T.init=function(){var I=this.$d;this.$y=I.getFullYear(),this.$M=I.getMonth(),this.$D=I.getDate(),this.$W=I.getDay(),this.$H=I.getHours(),this.$m=I.getMinutes(),this.$s=I.getSeconds(),this.$ms=I.getMilliseconds()},T.$utils=function(){return E},T.isValid=function(){return this.$d.toString()!==y},T.isSame=function(I,R){var V=C(I);return this.startOf(R)<=V&&V<=this.endOf(R)},T.isAfter=function(I,R){return C(I)<this.startOf(R)},T.isBefore=function(I,R){return this.endOf(R)<C(I)},T.$g=function(I,R,V){return E.u(I)?this[R]:this.set(V,I)},T.unix=function(){return Math.floor(this.valueOf()/1e3)},T.valueOf=function(){return this.$d.getTime()},T.startOf=function(I,R){var V=this,w=!!E.u(R)||R,x=E.p(I),A=function(X,j){var J=E.w(V.$u?Date.UTC(V.$y,j,X):new Date(V.$y,j,X),V);return w?J:J.endOf(d)},F=function(X,j){return E.w(V.toDate()[X].apply(V.toDate("s"),(w?[0,0,0,0]:[23,59,59,999]).slice(j)),V)},q=this.$W,Y=this.$M,G=this.$D,_="set"+(this.$u?"UTC":"");switch(x){case m:return w?A(1,0):A(31,11);case u:return w?A(1,Y):A(0,Y+1);case p:var z=this.$locale().weekStart||0,W=(q<z?q+7:q)-z;return A(w?G-W:G+(6-W),Y);case d:case g:return F(_+"Hours",0);case c:return F(_+"Minutes",1);case i:return F(_+"Seconds",2);case s:return F(_+"Milliseconds",3);default:return this.clone()}},T.endOf=function(I){return this.startOf(I,!1)},T.$set=function(I,R){var V,w=E.p(I),x="set"+(this.$u?"UTC":""),A=(V={},V[d]=x+"Date",V[g]=x+"Date",V[u]=x+"Month",V[m]=x+"FullYear",V[c]=x+"Hours",V[i]=x+"Minutes",V[s]=x+"Seconds",V[r]=x+"Milliseconds",V)[w],F=w===d?this.$D+(R-this.$W):R;if(w===u||w===m){var q=this.clone().set(g,1);q.$d[A](F),q.init(),this.$d=q.set(g,Math.min(this.$D,q.daysInMonth())).$d}else A&&this.$d[A](F);return this.init(),this},T.set=function(I,R){return this.clone().$set(I,R)},T.get=function(I){return this[E.p(I)]()},T.add=function(I,R){var V,w=this;I=Number(I);var x=E.p(R),A=function(Y){var G=C(w);return E.w(G.date(G.date()+Math.round(Y*I)),w)};if(x===u)return this.set(u,this.$M+I);if(x===m)return this.set(m,this.$y+I);if(x===d)return A(1);if(x===p)return A(7);var F=(V={},V[i]=t,V[c]=l,V[s]=n,V)[x]||1,q=this.$d.getTime()+I*F;return E.w(q,this)},T.subtract=function(I,R){return this.add(-1*I,R)},T.format=function(I){var R=this,V=this.$locale();if(!this.isValid())return V.invalidDate||y;var w=I||"YYYY-MM-DDTHH:mm:ssZ",x=E.z(this),A=this.$H,F=this.$m,q=this.$M,Y=V.weekdays,G=V.months,_=V.meridiem,z=function(j,J,ee,se){return j&&(j[J]||j(R,w))||ee[J].slice(0,se)},W=function(j){return E.s(A%12||12,j,"0")},X=_||function(j,J,ee){var se=j<12?"AM":"PM";return ee?se.toLowerCase():se};return w.replace(k,function(j,J){return J||function(ee){switch(ee){case"YY":return String(R.$y).slice(-2);case"YYYY":return E.s(R.$y,4,"0");case"M":return q+1;case"MM":return E.s(q+1,2,"0");case"MMM":return z(V.monthsShort,q,G,3);case"MMMM":return z(G,q);case"D":return R.$D;case"DD":return E.s(R.$D,2,"0");case"d":return String(R.$W);case"dd":return z(V.weekdaysMin,R.$W,Y,2);case"ddd":return z(V.weekdaysShort,R.$W,Y,3);case"dddd":return Y[R.$W];case"H":return String(A);case"HH":return E.s(A,2,"0");case"h":return W(1);case"hh":return W(2);case"a":return X(A,F,!0);case"A":return X(A,F,!1);case"m":return String(F);case"mm":return E.s(F,2,"0");case"s":return String(R.$s);case"ss":return E.s(R.$s,2,"0");case"SSS":return E.s(R.$ms,3,"0");case"Z":return x}return null}(j)||x.replace(":","")})},T.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},T.diff=function(I,R,V){var w,x=this,A=E.p(R),F=C(I),q=(F.utcOffset()-this.utcOffset())*t,Y=this-F,G=function(){return E.m(x,F)};switch(A){case m:w=G()/12;break;case u:w=G();break;case f:w=G()/3;break;case p:w=(Y-q)/6048e5;break;case d:w=(Y-q)/864e5;break;case c:w=Y/l;break;case i:w=Y/t;break;case s:w=Y/n;break;default:w=Y}return V?w:E.a(w)},T.daysInMonth=function(){return this.endOf(u).$D},T.$locale=function(){return S[this.$L]},T.locale=function(I,R){if(!I)return this.$L;var V=this.clone(),w=v(I,R,!0);return w&&(V.$L=w),V},T.clone=function(){return E.w(this.$d,this)},T.toDate=function(){return new Date(this.valueOf())},T.toJSON=function(){return this.isValid()?this.toISOString():null},T.toISOString=function(){return this.$d.toISOString()},T.toString=function(){return this.$d.toUTCString()},P}(),K=H.prototype;return C.prototype=K,[["$ms",r],["$s",s],["$m",i],["$H",c],["$W",d],["$M",u],["$y",m],["$D",g]].forEach(function(P){K[P[1]]=function(T){return this.$g(T,P[0],P[1])}}),C.extend=function(P,T){return P.$i||(P(T,H,C),P.$i=!0),C},C.locale=v,C.isDayjs=$,C.unix=function(P){return C(1e3*P)},C.en=S[L],C.Ls=S,C.p={},C})})(rn);var H1=rn.exports;const Te=Le(H1);var sn={exports:{}};(function(o,a){(function(n,t){o.exports=t()})(Xe,function(){var n={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},t=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,l=/\d/,r=/\d\d/,s=/\d\d?/,i=/\d*[^-_:/,()\s\d]+/,c={},d=function(h){return(h=+h)+(h>68?1900:2e3)},p=function(h){return function(k){this[h]=+k}},u=[/[+-]\d\d:?(\d\d)?|Z/,function(h){(this.zone||(this.zone={})).offset=function(k){if(!k||k==="Z")return 0;var b=k.match(/([+-]|\d\d)/g),M=60*b[1]+(+b[2]||0);return M===0?0:b[0]==="+"?-M:M}(h)}],f=function(h){var k=c[h];return k&&(k.indexOf?k:k.s.concat(k.f))},m=function(h,k){var b,M=c.meridiem;if(M){for(var N=1;N<=24;N+=1)if(h.indexOf(M(N,0,k))>-1){b=N>12;break}}else b=h===(k?"pm":"PM");return b},g={A:[i,function(h){this.afternoon=m(h,!1)}],a:[i,function(h){this.afternoon=m(h,!0)}],Q:[l,function(h){this.month=3*(h-1)+1}],S:[l,function(h){this.milliseconds=100*+h}],SS:[r,function(h){this.milliseconds=10*+h}],SSS:[/\d{3}/,function(h){this.milliseconds=+h}],s:[s,p("seconds")],ss:[s,p("seconds")],m:[s,p("minutes")],mm:[s,p("minutes")],H:[s,p("hours")],h:[s,p("hours")],HH:[s,p("hours")],hh:[s,p("hours")],D:[s,p("day")],DD:[r,p("day")],Do:[i,function(h){var k=c.ordinal,b=h.match(/\d+/);if(this.day=b[0],k)for(var M=1;M<=31;M+=1)k(M).replace(/\[|\]/g,"")===h&&(this.day=M)}],w:[s,p("week")],ww:[r,p("week")],M:[s,p("month")],MM:[r,p("month")],MMM:[i,function(h){var k=f("months"),b=(f("monthsShort")||k.map(function(M){return M.slice(0,3)})).indexOf(h)+1;if(b<1)throw new Error;this.month=b%12||b}],MMMM:[i,function(h){var k=f("months").indexOf(h)+1;if(k<1)throw new Error;this.month=k%12||k}],Y:[/[+-]?\d+/,p("year")],YY:[r,function(h){this.year=d(h)}],YYYY:[/\d{4}/,p("year")],Z:u,ZZ:u};function y(h){var k,b;k=h,b=c&&c.formats;for(var M=(h=k.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(C,E,H){var K=H&&H.toUpperCase();return E||b[H]||n[H]||b[K].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(P,T,I){return T||I.slice(1)})})).match(t),N=M.length,L=0;L<N;L+=1){var S=M[L],D=g[S],$=D&&D[0],v=D&&D[1];M[L]=v?{regex:$,parser:v}:S.replace(/^\[|\]$/g,"")}return function(C){for(var E={},H=0,K=0;H<N;H+=1){var P=M[H];if(typeof P=="string")K+=P.length;else{var T=P.regex,I=P.parser,R=C.slice(K),V=T.exec(R)[0];I.call(E,V),C=C.replace(V,"")}}return function(w){var x=w.afternoon;if(x!==void 0){var A=w.hours;x?A<12&&(w.hours+=12):A===12&&(w.hours=0),delete w.afternoon}}(E),E}}return function(h,k,b){b.p.customParseFormat=!0,h&&h.parseTwoDigitYear&&(d=h.parseTwoDigitYear);var M=k.prototype,N=M.parse;M.parse=function(L){var S=L.date,D=L.utc,$=L.args;this.$u=D;var v=$[1];if(typeof v=="string"){var C=$[2]===!0,E=$[3]===!0,H=C||E,K=$[2];E&&(K=$[2]),c=this.$locale(),!C&&K&&(c=b.Ls[K]),this.$d=function(R,V,w,x){try{if(["x","X"].indexOf(V)>-1)return new Date((V==="X"?1e3:1)*R);var A=y(V)(R),F=A.year,q=A.month,Y=A.day,G=A.hours,_=A.minutes,z=A.seconds,W=A.milliseconds,X=A.zone,j=A.week,J=new Date,ee=Y||(F||q?1:J.getDate()),se=F||J.getFullYear(),we=0;F&&!q||(we=q>0?q-1:J.getMonth());var Ye,We=G||0,Ke=_||0,Be=z||0,Ge=W||0;return X?new Date(Date.UTC(se,we,ee,We,Ke,Be,Ge+60*X.offset*1e3)):w?new Date(Date.UTC(se,we,ee,We,Ke,Be,Ge)):(Ye=new Date(se,we,ee,We,Ke,Be,Ge),j&&(Ye=x(Ye).week(j).toDate()),Ye)}catch{return new Date("")}}(S,v,D,b),this.init(),K&&K!==!0&&(this.$L=this.locale(K).$L),H&&S!=this.format(v)&&(this.$d=new Date("")),c={}}else if(v instanceof Array)for(var P=v.length,T=1;T<=P;T+=1){$[1]=v[T-1];var I=b.apply(this,$);if(I.isValid()){this.$d=I.$d,this.$L=I.$L,this.init();break}T===P&&(this.$d=new Date(""))}else N.call(this,L)}}})})(sn);var O1=sn.exports;const F1=Le(O1);Te.extend(F1);function Ve(o,a="DD/MM/YYYY"){const n=new Date().getTimezoneOffset();let t="00";n>0?t="14":t="04";const l=`${o} ${t}:00:00`,r=`${a} HH:mm:ss`;return Te(l,r,!0)}var cn={exports:{}};(function(o,a){(function(n,t){o.exports=t()})(Xe,function(){return function(n,t){t.prototype.isLeapYear=function(){return this.$y%4==0&&this.$y%100!=0||this.$y%400==0}}})})(cn);var z1=cn.exports;const U1=Le(z1);Te.extend(U1);const q1=/[- /.]/,Y1=/(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.]\d{4}/;function W1(o){if(!o.match(Y1))return"wrongFormat";const a=[31,28,31,30,31,30,31,31,30,31,30,31],n=o.split(q1),t=parseInt(n[0],10),l=parseInt(n[1],10);if(l!==2)return t>a[l-1]?"monthNotMatch":!0;{const s=Ve(o).isLeapYear();return s&&t>29?"monthNotMatch":!s&&t>=29?"notALeapYear":!0}}function dn(o=R1){return a=>{if(!a)return!0;const n=W1(a);return(typeof n=="string"?ne(o,n):!0)||ne(o,"default")}}const K1=dn(),G1={default:o=>`La longueur du champ doit être de ${o} caractères.`};function j1(o,a=!1,n=G1){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length===o||ne(n,"default",[o])):!0}const J1={default:o=>`La longueur maximale du champ doit être de ${o} caractères.`};function X1(o,a=!1,n=J1){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length<=o||ne(n,"default",[o])):!0}const Q1={default:o=>`La longueur minimale du champ doit être de ${o} caractères.`};function e2(o,a=!1,n=Q1){return t=>t?(a&&(t=t.replace(/\s/g,"")),t.length>=o||ne(n,"default",[o])):!0}function ct(o,a="DD/MM/YYYY"){return Te(o).format(a)}function un(o,a){const n=Ve(a),t=Ve(o);return n.isAfter(t)}const t2={default:o=>`La date doit être antérieure ou égale au ${o}.`};function a2(o,a=t2){return n=>{if(!n)return!0;const t=ct(Ve(o));return!un(o,n)||ne(a,"default",[t])}}const n2={default:o=>`La date doit être postérieure ou égale au ${o}.`};function mn(o,a){const n=Ve(a),t=Ve(o);return n.isBefore(t)}function o2(o,a=n2){return n=>{if(!n)return!0;const t=ct(Ve(o));return!mn(o,n)||ne(a,"default",[t])}}const l2={default:"La date doit être postérieure à aujourd’hui."};function pn(o=l2){return a=>a?!mn(ct(Te()),a)||ne(o,"default"):!0}const r2=pn(),s2={default:"La date doit être antérieure ou égale à aujourd’hui."};function fn(o=s2){return a=>a?!un(ct(Te()),a)||ne(o,"default"):!0}const i2=fn(),c2={default:"Le format de l’adresse email n’est pas valide."},d2=/^(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/;function u2(o){return!!d2.exec(o)}function hn(o=c2){return a=>a?u2(a)||ne(o,"default"):!0}const m2=hn();B.BackBtn=bo,B.BackToTopBtn=To,B.ChipList=Nt,B.CollapsibleList=Wo,B.ContextualMenu=jo,B.CookieBanner=hl,B.CookiesInformation=da,B.CookiesSelection=ua,B.CookiesTable=ca,B.CopyBtn=Vl,B.DataList=ha,B.DataListGroup=ga,B.DataListItem=fa,B.DatePicker=Bt,B.DialogBox=Et,B.DownloadBtn=ql,B.EMAIL_REGEXP=Jt,B.ErrorPage=$t,B.ExternalLinks=nr,B.FileList=Va,B.FilePreview=_t,B.FileUpload=Ba,B.FilterInline=Zr,B.FilterSideBar=Fr,B.FooterBar=ss,B.FranceConnectBtn=ps,B.HeaderBar=Ia,B.HeaderBurgerMenu=Aa,B.HeaderLoading=xe,B.HeaderLogo=$a,B.HeaderMenuBtn=Zt,B.HeaderMenuItem=Za,B.HeaderMenuSection=Pa,B.HeaderNavigationBar=ni,B.HeaderSubMenu=Gs,B.HeaderToolbar=ui,B.KEY_LENGTH=Pi,B.LangBtn=bi,B.Logo=Tt,B.LogoBrandSection=Mi,B.MaintenancePage=Li,B.NUMBER_LENGTH=Zi,B.NirField=Fi,B.NotFoundPage=Wi,B.NotificationBar=ji,B.NotificationService=go,B.PageContainer=ya,B.PaginatedTable=ec,B.PasswordField=ac,B.PeriodField=rc,B.PhoneField=cc,B.RangeField=Sc,B.RatingPicker=Jc,B.SearchListField=l1,B.SelectBtnField=i1,B.SkipLink=p1,B.SocialMediaLinks=La,B.SubHeader=w1,B.SyAlert=ln,B.SyBtnSelect=ma,B.SyInputSelect=pa,B.SySelect=vt,B.SyTextField=me,B.TableToolbar=S1,B.UploadWorkflow=_1,B.UserMenuBtn=A1,B.checkNIR=Ka,B.computeNIRKey=Ga,B.doMatchPatternFn=P1,B.isDateValid=K1,B.isDateValidFn=dn,B.isExactLengthFn=j1,B.isMaxLengthFn=X1,B.isMinLengthFn=e2,B.isNIRKeyValid=ja,B.isNotAfterDateFn=a2,B.isNotAfterToday=i2,B.isNotAfterTodayFn=fn,B.isNotBeforeDateFn=o2,B.isNotBeforeToday=r2,B.isNotBeforeTodayFn=pn,B.isRequired=Lt,B.isRequiredFn=ia,B.isValidEmail=m2,B.isValidEmailFn=hn,B.useFieldValidation=ft,B.useNotificationService=Ct,B.useWidthable=Ee,Object.defineProperty(B,Symbol.toStringTag,{value:"Module"})});
|