@cnamts/synapse 0.0.12-alpha → 0.0.14-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/{src/components → components}/BackBtn/BackBtn.d.ts +4 -1
- package/dist/components/CookiesSelection/CookiesSelection.d.ts +611 -0
- package/dist/{src/components → components}/CopyBtn/config.d.ts +1 -0
- package/dist/{src/components → components}/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
- package/dist/components/Customs/SySelect/SySelect.d.ts +1534 -0
- package/dist/{src/components → components}/Customs/SyTextField/SyTextField.d.ts +6 -4
- package/dist/{src/components → components}/DatePicker/DatePicker.d.ts +60 -66
- package/dist/{src/components → components}/DatePicker/DateTextInput.d.ts +47 -50
- package/dist/components/DialogBox/DialogBox.d.ts +274 -0
- package/dist/{src/components → components}/DownloadBtn/DownloadBtn.d.ts +7 -0
- package/dist/components/DownloadBtn/locales.d.ts +3 -0
- package/dist/components/FilterInline/AccessibiliteItems.d.ts +30 -0
- package/dist/{src/components → components}/FilterInline/FilterInline.d.ts +2 -3
- package/dist/{src/components → components}/FilterSideBar/FilterSideBar.d.ts +1 -1
- package/dist/{src/components → components}/FranceConnectBtn/locales.d.ts +1 -0
- package/dist/{src/components → components}/HeaderToolbar/HeaderToolbar.d.ts +5 -1
- package/dist/{src/components → components}/NirField/NirField.d.ts +39 -28
- package/dist/{src/components → components}/NotificationBar/NotificationBar.d.ts +5 -5
- package/dist/{src/components → components}/PasswordField/PasswordField.d.ts +6 -4
- package/dist/{src/components → components}/PeriodField/PeriodField.d.ts +223 -211
- package/dist/{src/components → components}/PhoneField/PhoneField.d.ts +49 -1
- package/dist/components/SyAlert/AccessibiliteItems.d.ts +29 -0
- package/dist/components/TableToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/components/UploadWorkflow/AccessibiliteItems.d.ts +29 -0
- package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +783 -0
- package/dist/components/UploadWorkflow/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/components/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/{src/components → components}/index.d.ts +4 -0
- package/dist/composables/date/useDateFormat.d.ts +26 -0
- package/dist/composables/date/useDateInitialization.d.ts +18 -0
- package/dist/composables/date/useDatePickerAccessibility.d.ts +9 -0
- package/dist/{src/composables → composables}/useFilterable/useFilterable.d.ts +1 -1
- package/dist/{src/composables → composables}/validation/useValidation.d.ts +1 -0
- package/dist/design-system-v3.js +4959 -3902
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamColors.d.ts +5 -10
- package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamLightTheme.d.ts +0 -2
- package/dist/{src/designTokens → designTokens}/tokens/pa/paColors.d.ts +5 -10
- package/dist/{src/designTokens → designTokens}/tokens/pa/paLightTheme.d.ts +4 -5
- package/dist/{src/main.d.ts → main.d.ts} +1 -0
- package/dist/style.css +1 -1
- package/dist/utils/formatDate/index.d.ts +3 -0
- package/dist/utils/functions/validation/isDateAfter/index.d.ts +2 -0
- package/dist/utils/functions/validation/isDateBefore/index.d.ts +2 -0
- package/dist/utils/functions/validation/isDateInRange/index.d.ts +3 -0
- package/dist/utils/functions/validation/isDateValid/index.d.ts +9 -0
- package/dist/utils/functions/validation/isWeekend/index.d.ts +3 -0
- package/dist/utils/parseDate/index.d.ts +3 -0
- package/dist/utils/rules/doMatchPattern/index.d.ts +3 -0
- package/dist/utils/rules/index.d.ts +11 -0
- package/dist/utils/rules/isDateValid/index.d.ts +4 -0
- package/dist/utils/rules/isExactLength/index.d.ts +3 -0
- package/dist/utils/rules/isExactLength/locales.d.ts +2 -0
- package/dist/utils/rules/isMaxLength/index.d.ts +3 -0
- package/dist/utils/rules/isMaxLength/locales.d.ts +2 -0
- package/dist/utils/rules/isMinLength/index.d.ts +3 -0
- package/dist/utils/rules/isMinLength/locales.d.ts +2 -0
- package/dist/utils/rules/isNotAfterDate/index.d.ts +3 -0
- package/dist/utils/rules/isNotAfterToday/index.d.ts +4 -0
- package/dist/utils/rules/isNotAfterToday/locales.d.ts +2 -0
- package/dist/utils/rules/isNotBeforeDate/index.d.ts +3 -0
- package/dist/utils/rules/isNotBeforeDate/locales.d.ts +2 -0
- package/dist/utils/rules/isNotBeforeToday/index.d.ts +4 -0
- package/dist/utils/rules/isNotBeforeToday/locales.d.ts +2 -0
- package/dist/utils/rules/isRequired/index.d.ts +4 -0
- package/dist/utils/rules/isRequired/locales.d.ts +2 -0
- package/dist/utils/rules/isValidEmail/index.d.ts +4 -0
- package/dist/utils/rules/isValidEmail/locales.d.ts +2 -0
- package/dist/{src/vuetifyConfig.d.ts → vuetifyConfig.d.ts} +1 -0
- package/package.json +10 -7
- package/src/assets/_radius.scss +12 -6
- package/src/assets/settings.scss +8 -0
- package/src/components/BackBtn/BackBtn.stories.ts +34 -6
- package/src/components/BackBtn/BackBtn.vue +17 -8
- package/src/components/BackBtn/tests/BackBtn.spec.ts +2 -2
- package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +39 -3
- package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +98 -6
- package/src/components/ChipList/ChipList.stories.ts +26 -27
- package/src/components/ChipList/ChipList.vue +6 -1
- package/src/components/ChipList/config.ts +1 -0
- package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +31 -5
- package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +570 -101
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +2 -2
- package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +28 -2
- package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +13 -1
- package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +568 -99
- package/src/components/CopyBtn/CopyBtn.stories.ts +2 -2
- package/src/components/CopyBtn/CopyBtn.vue +28 -22
- package/src/components/CopyBtn/config.ts +2 -1
- package/src/components/CopyBtn/tests/__snapshots__/CopyBtn.spec.ts.snap +28 -3
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +1 -1
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +6 -5
- package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +2 -2
- package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +1 -1
- package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -0
- package/src/components/Customs/SySelect/SySelect.mdx +1 -1
- package/src/components/Customs/SySelect/SySelect.vue +31 -6
- package/src/components/Customs/SyTextField/SyTextField.mdx +2 -2
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +241 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +9 -6
- package/src/components/DataList/DataList.vue +2 -2
- package/src/components/DataList/DataListLoading/DataListLoading.vue +2 -2
- package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +1 -1
- package/src/components/DataList/tests/DataList.spec.ts +10 -10
- package/src/components/DataListGroup/tests/DataListGroup.spec.ts +1 -1
- package/src/components/DataListItem/DataListItem.vue +9 -9
- package/src/components/DataListItem/tests/DataListItem.spec.ts +5 -5
- package/src/components/DatePicker/DatePicker.mdx +1 -1
- package/src/components/DatePicker/DatePicker.stories.ts +187 -15
- package/src/components/DatePicker/DatePicker.vue +161 -355
- package/src/components/DatePicker/DateTextInput.vue +97 -257
- package/src/components/DatePicker/tests/DatePicker.spec.ts +118 -48
- package/src/components/DatePicker/tests/DateTextInput.spec.ts +206 -10
- package/src/components/DialogBox/DialogBox.vue +4 -4
- package/src/components/DialogBox/tests/DialogBox.spec.ts +1 -1
- package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +158 -19
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +18 -4
- package/src/components/DownloadBtn/DownloadBtn.vue +37 -3
- package/src/components/DownloadBtn/locales.ts +3 -0
- package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +77 -6
- package/src/components/ErrorPage/ErrorPage.vue +2 -2
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +212 -38
- package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +796 -86
- package/src/components/FileList/Accessibilite.stories.ts +1 -1
- package/src/components/FileList/AccessibiliteItems.ts +22 -0
- package/src/components/FilePreview/tests/FilePreview.spec.ts +1 -1
- package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +27 -5
- 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/FilterInline.stories.ts +308 -2
- package/src/components/FilterInline/FilterInline.vue +3 -3
- package/src/components/FilterInline/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +235 -21
- 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/FilterSideBar.vue +1 -1
- package/src/components/FilterSideBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilterSideBar/tests/__snapshots__/FilterSideBar.spec.ts.snap +144 -15
- package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +92 -18
- package/src/components/FranceConnectBtn/FranceConnectBtn.vue +18 -21
- package/src/components/FranceConnectBtn/locales.ts +2 -0
- package/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.ts +1 -1
- package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +235 -26
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +5 -1
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +20 -6
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +68 -37
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
- package/src/components/HeaderToolbar/HeaderToolbar.vue +346 -117
- package/src/components/HeaderToolbar/tests/{HeaderToolbar.spec.ts → HeaderToolBar.spec.ts} +2 -2
- package/src/components/LangBtn/LangBtn.vue +1 -0
- package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +41 -3
- package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +55 -8
- package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +10 -1
- package/src/components/NirField/NirField.stories.ts +172 -7
- package/src/components/NirField/NirField.vue +16 -14
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +229 -37
- 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 +30 -3
- package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +16 -3
- package/src/components/PaginatedTable/PaginatedTable.vue +6 -10
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +731 -94
- package/src/components/PasswordField/PasswordField.stories.ts +204 -17
- package/src/components/PasswordField/PasswordField.vue +9 -6
- package/src/components/PeriodField/PeriodField.stories.ts +227 -131
- package/src/components/PeriodField/PeriodField.vue +203 -152
- package/src/components/PeriodField/tests/PeriodField.spec.ts +146 -0
- package/src/components/PhoneField/PhoneField.stories.ts +174 -0
- package/src/components/PhoneField/PhoneField.vue +81 -17
- package/src/components/PhoneField/tests/PhoneField.spec.ts +40 -0
- package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +80 -17
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +981 -162
- package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +634 -25
- package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +477 -38
- package/src/components/RatingPicker/RatingPicker.stories.ts +7 -7
- package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +218 -10
- package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +476 -41
- package/src/components/SearchListField/SearchListField.stories.ts +2 -2
- package/src/components/SelectBtnField/SelectBtnField.stories.ts +1 -1
- package/src/components/SelectBtnField/SelectBtnField.vue +11 -15
- package/src/components/SelectBtnField/config.ts +1 -1
- package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +881 -65
- package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +15 -1
- package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +110 -16
- package/src/components/SubHeader/SubHeader.stories.ts +1 -1
- package/src/components/SubHeader/tests/SubHeader.spec.ts +1 -1
- package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +78 -6
- package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +1034 -124
- 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.stories.ts +11 -11
- package/src/components/UploadWorkflow/UploadWorkflow.vue +2 -2
- package/src/components/UploadWorkflow/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +328 -29
- package/src/components/Usages/tests/Usages.spec.ts +183 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +8 -8
- package/src/components/index.ts +4 -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 +180 -0
- package/src/composables/date/useDateFormat.ts +94 -0
- package/src/composables/date/useDateInitialization.ts +92 -0
- package/src/composables/date/useDatePickerAccessibility.ts +123 -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/designTokens/tokens/cnam/cnamColors.ts +5 -10
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +0 -2
- package/src/designTokens/tokens/cnam/cnamSemantic.ts +3 -3
- package/src/designTokens/tokens/pa/paColors.ts +5 -10
- package/src/designTokens/tokens/pa/paLightTheme.ts +4 -5
- package/src/designTokens/tokens/pa/paSemantic.ts +3 -3
- 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/ColorDisplay.vue +58 -0
- package/src/stories/DesignTokens/Colors.mdx +81 -212
- package/src/stories/DesignTokens/Conteneurs.stories.ts +3 -3
- package/src/stories/DesignTokens/colors.stories.ts +1078 -0
- package/src/stories/GuideDuDev/LesBreackingChanges.mdx +36 -0
- package/src/stories/GuideDuDev/UtiliserLesRules.mdx +32 -10
- 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/components/Amelipro/types/types.d.ts +0 -65
- package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +0 -1
- package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +0 -1
- package/dist/src/components/ChipList/tests/chipList.spec.d.ts +0 -1
- package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +0 -1
- package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +0 -1
- package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +0 -1
- package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +0 -1
- package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +0 -1
- package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +0 -1
- package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +0 -1
- package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +0 -1
- package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +0 -1
- package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +0 -1
- package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +0 -1
- package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +0 -1
- package/dist/src/components/DataList/tests/DataList.spec.d.ts +0 -1
- package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +0 -1
- package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +0 -1
- package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +0 -1
- package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +0 -1
- package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +0 -1
- package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +0 -1
- package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +0 -1
- package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +0 -1
- package/dist/src/components/FileList/tests/FileList.spec.d.ts +0 -1
- package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +0 -1
- package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +0 -1
- package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +0 -1
- package/dist/src/components/FilterSideBar/tests/FilterSideBar.spec.d.ts +0 -1
- package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +0 -1
- package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +0 -1
- package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +0 -1
- package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +0 -1
- package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +0 -1
- package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +0 -1
- package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +0 -1
- package/dist/src/components/LangBtn/tests/Config.spec.d.ts +0 -1
- package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +0 -1
- package/dist/src/components/Logo/tests/Logo.spec.d.ts +0 -1
- package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +0 -1
- package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +0 -1
- package/dist/src/components/NirField/config.d.ts +0 -15
- package/dist/src/components/NirField/tests/NirField.spec.d.ts +0 -1
- package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +0 -1
- package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +0 -1
- package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +0 -1
- package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +0 -1
- package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +0 -1
- package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +0 -1
- package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +0 -1
- package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +0 -1
- package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +0 -1
- package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +0 -1
- package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +0 -1
- package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +0 -1
- package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +0 -1
- package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +0 -1
- package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +0 -1
- package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +0 -1
- package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +0 -1
- package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +0 -1
- package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +0 -1
- package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +0 -1
- package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +0 -1
- package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +0 -1
- package/dist/src/components/UploadWorkflow/tests/UploadWorkflow.spec.d.ts +0 -1
- package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +0 -1
- package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +0 -1
- package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +0 -1
- package/dist/src/composables/validation/tests/useValidation.spec.d.ts +0 -1
- package/dist/src/composables/widthable/tests/widthable.spec.d.ts +0 -1
- package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +0 -1
- package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +0 -1
- package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +0 -1
- package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +0 -1
- package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +0 -1
- package/dist/src/utils/functions/isEmailValid/tests/isEmailValid.spec.d.ts +0 -1
- package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +0 -1
- package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +0 -1
- package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +0 -1
- package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +0 -1
- package/dist/src/utils/rules/email/index.d.ts +0 -4
- package/dist/src/utils/rules/email/tests/email.spec.d.ts +0 -1
- 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/dist/src/utils/rules/required/tests/index.spec.d.ts +0 -1
- package/dist/src/utils/rules/required/tests/rulesMessageHelper.spec.d.ts +0 -1
- 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/components/NirField/config.ts +0 -16
- 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/components → components}/BackBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/BackBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/BackBtn/locales.d.ts +0 -0
- /package/dist/{src/components → components}/BackToTopBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/BackToTopBtn/BackToTopBtn.d.ts +0 -0
- /package/dist/{src/components → components}/BackToTopBtn/config.d.ts +0 -0
- /package/dist/{src/components → components}/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/BackToTopBtn/locales.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/ChipList.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/config.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/locales.d.ts +0 -0
- /package/dist/{src/components → components}/ChipList/types.d.ts +0 -0
- /package/dist/{src/components → components}/CollapsibleList/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/CollapsibleList/CollapsibleList.d.ts +0 -0
- /package/dist/{src/components → components}/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/CollapsibleList/types.d.ts +0 -0
- /package/dist/{src/components → components}/ContextualMenu/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/ContextualMenu/ContextualMenu.d.ts +0 -0
- /package/dist/{src/components → components}/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/ContextualMenu/types.d.ts +0 -0
- /package/dist/{src/components → components}/CookieBanner/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/CookieBanner/CookieBanner.d.ts +0 -0
- /package/dist/{src/components → components}/CookieBanner/config.d.ts +0 -0
- /package/dist/{src/components → components}/CookieBanner/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/CookieBanner/locales.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/CookiesInformation/locales.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/CookiesTable/CookiesTable.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/CookiesTable/headers.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/locales.d.ts +0 -0
- /package/dist/{src/components → components}/CookiesSelection/types.d.ts +0 -0
- /package/dist/{src/components → components}/CopyBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/CopyBtn/CopyBtn.d.ts +0 -0
- /package/dist/{src/components → components}/CopyBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/CopyBtn/locales.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyBtnSelect/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyBtnSelect/SyBtnSelect.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyInputSelect/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyInputSelect/config.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SySelect/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyTextField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/Customs/SyTextField/types.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/DataList.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/DataListLoading/DataListLoading.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/locales.d.ts +0 -0
- /package/dist/{src/components → components}/DataList/types.d.ts +0 -0
- /package/dist/{src/components → components}/DataListGroup/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/DataListGroup/DataListGroup.d.ts +0 -0
- /package/dist/{src/components → components}/DataListGroup/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/DataListGroup/tests/data/dataListGroupItems.d.ts +0 -0
- /package/dist/{src/components → components}/DataListGroup/types.d.ts +0 -0
- /package/dist/{src/components → components}/DataListItem/DataListItem.d.ts +0 -0
- /package/dist/{src/components → components}/DataListItem/config.d.ts +0 -0
- /package/dist/{src/components → components}/DataListItem/locales.d.ts +0 -0
- /package/dist/{src/components → components}/DataListItem/types.d.ts +0 -0
- /package/dist/{src/components → components}/DatePicker/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/DatePicker/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/DialogBox/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/DialogBox/config.d.ts +0 -0
- /package/dist/{src/components → components}/DialogBox/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/DialogBox/locales.d.ts +0 -0
- /package/dist/{src/components → components}/DownloadBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/DownloadBtn/config.d.ts +0 -0
- /package/dist/{src/components → components}/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/DownloadBtn/tests/data/filePromise.d.ts +0 -0
- /package/dist/{src/components → components}/ErrorPage/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/ErrorPage/ErrorPage.d.ts +0 -0
- /package/dist/{src/components → components}/ErrorPage/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/ErrorPage/locales.d.ts +0 -0
- /package/dist/{src/components → components}/ExternalLinks/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/ExternalLinks/ExternalLinks.d.ts +0 -0
- /package/dist/{src/components → components}/ExternalLinks/config.d.ts +0 -0
- /package/dist/{src/components → components}/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/ExternalLinks/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FileList/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/FileList/FileList.d.ts +0 -0
- /package/dist/{src/components → components}/FileList/UploadItem/UploadItem.d.ts +0 -0
- /package/dist/{src/components → components}/FileList/UploadItem/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FileList/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FilePreview/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/FilePreview/FilePreview.d.ts +0 -0
- /package/dist/{src/components → components}/FilePreview/config.d.ts +0 -0
- /package/dist/{src/components → components}/FilePreview/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FilePreview/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/FileUpload.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/FileUploadContent.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/useFileDrop.d.ts +0 -0
- /package/dist/{src/components → components}/FileUpload/validateFiles.d.ts +0 -0
- /package/dist/{src/components/FooterBar → components/FilterInline}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FilterInline/locales.d.ts +0 -0
- /package/dist/{src/components/NotificationBar → components/FilterSideBar}/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/FranceConnectBtn → components/FilterSideBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FilterSideBar/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/A11yCompliance.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/FooterBar.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/config.d.ts +0 -0
- /package/dist/{src/components/HeaderBar/HeaderBurgerMenu → components/FooterBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/defaultSocialMediaLinks.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/locales.d.ts +0 -0
- /package/dist/{src/components → components}/FooterBar/types.d.ts +0 -0
- /package/dist/{src/components → components}/FranceConnectBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/FranceConnectBtn/FranceConnectBtn.d.ts +0 -0
- /package/dist/{src/components/HeaderBar → components/FranceConnectBtn}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBar.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +0 -0
- /package/dist/{src/components/HeaderLoading → components/HeaderBar/HeaderBurgerMenu}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/conts.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/locals.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderLogo/HeaderLogo.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderLogo/locales.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderLogo/logos/Logo.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/HeaderMenuBtn/locals.d.ts +0 -0
- /package/dist/{src/components/HeaderToolbar → components/HeaderBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/consts.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/locales.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/useHeaderResponsiveMode.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderBar/useScrollDirection.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderLoading/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderLoading/HeaderLoading.d.ts +0 -0
- /package/dist/{src/components/LangBtn → components/HeaderLoading}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderNavigationBar/HeaderNavigationBar.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderNavigationBar/HorizontalNavbar/config.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderNavigationBar/types.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderToolbar/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/Logo → components/HeaderToolbar}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/HeaderToolbar/types.d.ts +0 -0
- /package/dist/{src/components → components}/LangBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/LangBtn/LangBtn.d.ts +0 -0
- /package/dist/{src/components → components}/LangBtn/config.d.ts +0 -0
- /package/dist/{src/components/LogoBrandSection → components/LangBtn}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/LangBtn/locales.d.ts +0 -0
- /package/dist/{src/components → components}/LangBtn/types.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/Logo.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/LogoSize.d.ts +0 -0
- /package/dist/{src/components/MaintenancePage → components/Logo}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/locales.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/logoDimensionsMapping.d.ts +0 -0
- /package/dist/{src/components → components}/Logo/types.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/LogoBrandSection.d.ts +0 -0
- /package/dist/{src/components/NirField → components/LogoBrandSection}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/dividerDimensionsMapping.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/locales.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/secondaryLogoMapping.d.ts +0 -0
- /package/dist/{src/components → components}/LogoBrandSection/types.d.ts +0 -0
- /package/dist/{src/components → components}/MaintenancePage/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/MaintenancePage/MaintenancePage.d.ts +0 -0
- /package/dist/{src/components/NotFoundPage → components/MaintenancePage}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/MaintenancePage/index.d.ts +0 -0
- /package/dist/{src/components → components}/MaintenancePage/locales.d.ts +0 -0
- /package/dist/{src/components → components}/NirField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/NotificationBar → components/NirField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/NirField/locales.d.ts +0 -0
- /package/dist/{src/components → components}/NirField/nirValidation.d.ts +0 -0
- /package/dist/{src/components → components}/NotFoundPage/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/NotFoundPage/NotFoundPage.d.ts +0 -0
- /package/dist/{src/components/PageContainer → components/NotFoundPage}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/NotFoundPage/locales.d.ts +0 -0
- /package/dist/{src/components/PageContainer → components/NotificationBar}/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/PaginatedTable → components/NotificationBar}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/NotificationBar/options.d.ts +0 -0
- /package/dist/{src/components → components}/NotificationBar/types.d.ts +0 -0
- /package/dist/{src/components/SubHeader → components/PageContainer}/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/PageContainer/PageContainer.d.ts +0 -0
- /package/dist/{src/components/PasswordField → components/PageContainer}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PaginatedTable/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/PaginatedTable/PaginatedTable.d.ts +0 -0
- /package/dist/{src/components/PeriodField → components/PaginatedTable}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PaginatedTable/constants/StateEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PaginatedTable/types.d.ts +0 -0
- /package/dist/{src/components → components}/PasswordField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/PasswordField/config.d.ts +0 -0
- /package/dist/{src/components/PhoneField → components/PasswordField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PasswordField/locales.d.ts +0 -0
- /package/dist/{src/components → components}/PeriodField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/RangeField → components/PeriodField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PhoneField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components/RatingPicker → components/PhoneField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/PhoneField/indicatifs.d.ts +0 -0
- /package/dist/{src/components → components}/PhoneField/locales.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeField.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/RangeSlider.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/types.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useMouseSlide.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useRangeSlider.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useThumb.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useThumbKeyboard.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useTooltipsNudge.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/useTrack.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/RangeSlider/vAnimateClick.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/config.d.ts +0 -0
- /package/dist/{src/components/SearchListField → components/RangeField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/RangeField/locales.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/EmotionPicker/EmotionPicker.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/EmotionPicker/locales.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/NumberPicker/NumberPicker.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/NumberPicker/locales.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/Rating.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/RatingPicker.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/StarsPicker/StarsPicker.d.ts +0 -0
- /package/dist/{src/components/SelectBtnField → components/RatingPicker}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/RatingPicker/locales.d.ts +0 -0
- /package/dist/{src/components → components}/SearchListField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/SearchListField/SearchListField.d.ts +0 -0
- /package/dist/{src/components/SkipLink → components/SearchListField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SearchListField/locales.d.ts +0 -0
- /package/dist/{src/components → components}/SearchListField/types.d.ts +0 -0
- /package/dist/{src/components → components}/SelectBtnField/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/SelectBtnField/SelectBtnField.d.ts +0 -0
- /package/dist/{src/components → components}/SelectBtnField/config.d.ts +0 -0
- /package/dist/{src/components/SocialMediaLinks → components/SelectBtnField}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SelectBtnField/types.d.ts +0 -0
- /package/dist/{src/components → components}/SkipLink/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/SkipLink/SkipLink.d.ts +0 -0
- /package/dist/{src/components/SubHeader → components/SkipLink}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SkipLink/locales.d.ts +0 -0
- /package/dist/{src/components → components}/SocialMediaLinks/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +0 -0
- /package/dist/{src/components → components}/SocialMediaLinks/SocialMediaLinks.d.ts +0 -0
- /package/dist/{src/components/SyAlert → components/SocialMediaLinks}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SocialMediaLinks/locales.d.ts +0 -0
- /package/dist/{src/components → components}/SocialMediaLinks/types.d.ts +0 -0
- /package/dist/{src/components/SyAlert → components/SubHeader}/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/SubHeader/SubHeader.d.ts +0 -0
- /package/dist/{src/components → components}/SubHeader/config.d.ts +0 -0
- /package/dist/{src/components/TableToolbar → components/SubHeader}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SubHeader/locales.d.ts +0 -0
- /package/dist/{src/components → components}/SyAlert/SyAlert.d.ts +0 -0
- /package/dist/{src/components/UserMenuBtn → components/SyAlert}/constants/ExpertiseLevelEnum.d.ts +0 -0
- /package/dist/{src/components → components}/SyAlert/locales.d.ts +0 -0
- /package/dist/{src/components → components}/TableToolbar/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/TableToolbar/TableToolbar.d.ts +0 -0
- /package/dist/{src/components → components}/TableToolbar/config.d.ts +0 -0
- /package/dist/{src/components → components}/TableToolbar/locales.d.ts +0 -0
- /package/dist/{src/components → components}/UploadWorkflow/config.d.ts +0 -0
- /package/dist/{src/components → components}/UploadWorkflow/locales.d.ts +0 -0
- /package/dist/{src/components → components}/UploadWorkflow/types.d.ts +0 -0
- /package/dist/{src/components → components}/UploadWorkflow/useFileList.d.ts +0 -0
- /package/dist/{src/components → components}/UploadWorkflow/useFileUploadJourney.d.ts +0 -0
- /package/dist/{src/components → components}/UserMenuBtn/AccessibiliteItems.d.ts +0 -0
- /package/dist/{src/components → components}/UserMenuBtn/UserMenuBtn.d.ts +0 -0
- /package/dist/{src/components → components}/UserMenuBtn/config.d.ts +0 -0
- /package/dist/{src/composables → composables}/index.d.ts +0 -0
- /package/dist/{src/composables → composables}/rules/useFieldValidation.d.ts +0 -0
- /package/dist/{src/composables → composables}/useCustomizableOptions.d.ts +0 -0
- /package/dist/{src/composables → composables}/widthable/index.d.ts +0 -0
- /package/dist/{src/constants → constants}/icons.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/index.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamContextual.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamDarkTheme.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/cnam/cnamSemantic.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/pa/paContextual.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/pa/paDarkTheme.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/tokens/pa/paSemantic.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/utils/convertGaps.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/utils/convertSemanticsToken.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/utils/createFlattenTheme.d.ts +0 -0
- /package/dist/{src/designTokens → designTokens}/utils/index.d.ts +0 -0
- /package/dist/{src/directives → directives}/clickOutside.d.ts +0 -0
- /package/dist/{src/modules.d.ts → modules.d.ts} +0 -0
- /package/dist/{src/services → services}/NotificationService.d.ts +0 -0
- /package/dist/{src/services → services}/index.d.ts +0 -0
- /package/dist/{src/stories → stories}/Accessibilite/Vuetify/VuetifyItems.d.ts +0 -0
- /package/dist/{src/stories → stories}/EcoConception/ecoDesignItems.d.ts +0 -0
- /package/dist/{src/types → types}/vuetifyTypes.d.ts +0 -0
- /package/dist/{src/utils → utils}/calcHumanFileSize/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/convertToUnit/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/functions/copyToClipboard/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/functions/deepCopy/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/functions/downloadFile/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/functions/downloadFile/types.d.ts +0 -0
- /package/dist/{src/utils → utils}/functions/throttleDisplayFn/throttleDisplayFn.d.ts +0 -0
- /package/dist/{src/utils/functions → utils/functions/validation}/isEmailValid/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/localStorageUtility/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/propValidator/index.d.ts +0 -0
- /package/dist/{src/utils → utils}/ruleMessage/index.d.ts +0 -0
- /package/dist/{src/utils/rules/exactLength → utils/rules/doMatchPattern}/locales.d.ts +0 -0
- /package/dist/{src/utils/rules/email → utils/rules/isDateValid}/locales.d.ts +0 -0
- /package/dist/{src/utils/rules/required → utils/rules/isNotAfterDate}/locales.d.ts +0 -0
- /package/dist/{src/utils → utils}/rules/types.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,19 +1,68 @@
|
|
|
1
1
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
2
|
|
|
3
3
|
exports[`NotFoundPage > display the support ID if provided in the url 1`] = `
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
<div class="
|
|
5
|
+
d-flex
|
|
6
|
+
justify-center
|
|
7
|
+
px-14
|
|
8
|
+
py-10
|
|
9
|
+
vd-page-container
|
|
10
|
+
">
|
|
11
|
+
<div
|
|
12
|
+
class="
|
|
13
|
+
bg-transparent
|
|
14
|
+
v-sheet
|
|
15
|
+
v-theme--light
|
|
16
|
+
"
|
|
17
|
+
style="width: 800px;"
|
|
18
|
+
>
|
|
19
|
+
<div class="
|
|
20
|
+
elevation-0
|
|
21
|
+
pa-6
|
|
22
|
+
pa-sm-16
|
|
23
|
+
v-card
|
|
24
|
+
v-card--density-default
|
|
25
|
+
v-card--variant-elevated
|
|
26
|
+
v-theme--light
|
|
27
|
+
">
|
|
7
28
|
<!---->
|
|
8
29
|
<div class="v-card__loader">
|
|
9
|
-
<div
|
|
30
|
+
<div
|
|
31
|
+
aria-hidden="true"
|
|
32
|
+
aria-valuemax="100"
|
|
33
|
+
aria-valuemin="0"
|
|
34
|
+
class="
|
|
35
|
+
v-locale--is-ltr
|
|
36
|
+
v-progress-linear
|
|
37
|
+
v-theme--light
|
|
38
|
+
"
|
|
39
|
+
role="progressbar"
|
|
40
|
+
style="top: 0px; height: 0px; --v-progress-linear-height: 2px;"
|
|
41
|
+
>
|
|
10
42
|
<!---->
|
|
11
|
-
<div
|
|
12
|
-
|
|
13
|
-
|
|
43
|
+
<div
|
|
44
|
+
class="v-progress-linear__background"
|
|
45
|
+
style="opacity: NaN;"
|
|
46
|
+
></div>
|
|
47
|
+
<div
|
|
48
|
+
class="v-progress-linear__buffer"
|
|
49
|
+
style="opacity: NaN; width: 0%;"
|
|
50
|
+
></div>
|
|
51
|
+
<transition-stub
|
|
52
|
+
appear="false"
|
|
53
|
+
css="true"
|
|
54
|
+
name="fade-transition"
|
|
55
|
+
persisted="false"
|
|
56
|
+
>
|
|
14
57
|
<div class="v-progress-linear__indeterminate">
|
|
15
|
-
<div class="
|
|
16
|
-
|
|
58
|
+
<div class="
|
|
59
|
+
long
|
|
60
|
+
v-progress-linear__indeterminate
|
|
61
|
+
"></div>
|
|
62
|
+
<div class="
|
|
63
|
+
short
|
|
64
|
+
v-progress-linear__indeterminate
|
|
65
|
+
"></div>
|
|
17
66
|
</div>
|
|
18
67
|
</transition-stub>
|
|
19
68
|
<!---->
|
|
@@ -21,37 +70,136 @@ exports[`NotFoundPage > display the support ID if provided in the url 1`] = `
|
|
|
21
70
|
</div>
|
|
22
71
|
<!---->
|
|
23
72
|
<!---->
|
|
24
|
-
<div
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
73
|
+
<div class="
|
|
74
|
+
max-width-none
|
|
75
|
+
v-row
|
|
76
|
+
">
|
|
77
|
+
<div class="
|
|
78
|
+
align-sm-start
|
|
79
|
+
d-flex
|
|
80
|
+
flex-column
|
|
81
|
+
justify-center
|
|
82
|
+
order-last
|
|
83
|
+
order-sm-first
|
|
84
|
+
text-center
|
|
85
|
+
text-sm-left
|
|
86
|
+
v-col-12
|
|
87
|
+
v-col-sm-6
|
|
88
|
+
">
|
|
89
|
+
<div class="
|
|
90
|
+
mb-4
|
|
91
|
+
sy-code
|
|
92
|
+
text-primary
|
|
93
|
+
">
|
|
94
|
+
<span class="d-sr-only">
|
|
95
|
+
Code d'erreur :
|
|
96
|
+
</span>
|
|
97
|
+
404
|
|
98
|
+
</div>
|
|
99
|
+
<h2 class="
|
|
100
|
+
font-weight-bold
|
|
101
|
+
mb-2
|
|
102
|
+
mb-4
|
|
103
|
+
text-h5
|
|
104
|
+
">
|
|
105
|
+
Page non trouvée
|
|
106
|
+
</h2>
|
|
107
|
+
<p>
|
|
108
|
+
Cette page n’existe pas ou a été déplacée.
|
|
109
|
+
</p>
|
|
110
|
+
<p class="mt-4">
|
|
111
|
+
Votre identifiant de support est
|
|
112
|
+
<b>
|
|
113
|
+
1234 5678 9012 3456 789
|
|
114
|
+
</b>
|
|
115
|
+
.
|
|
116
|
+
</p>
|
|
117
|
+
<!-- v-if -->
|
|
118
|
+
</div>
|
|
119
|
+
<div class="
|
|
120
|
+
align-center
|
|
121
|
+
d-flex
|
|
122
|
+
justify-center
|
|
123
|
+
v-col-12
|
|
124
|
+
v-col-sm-6
|
|
125
|
+
">
|
|
126
|
+
<img
|
|
127
|
+
alt="Page non trouvée"
|
|
128
|
+
src="/src/components/NotFoundPage/assets/not-found.svg"
|
|
129
|
+
/>
|
|
31
130
|
</div>
|
|
32
|
-
<div data-v-8f2b5bad="" class="v-col-sm-6 v-col-12 d-flex align-center justify-center"><img data-v-c9c5b952="" src="/src/components/NotFoundPage/assets/not-found.svg" alt="Page non trouvée"></div>
|
|
33
131
|
</div>
|
|
34
132
|
<!---->
|
|
35
|
-
|
|
133
|
+
<!---->
|
|
134
|
+
<span class="v-card__underlay"></span>
|
|
36
135
|
</div>
|
|
37
136
|
</div>
|
|
38
|
-
</div>
|
|
137
|
+
</div>
|
|
39
138
|
`;
|
|
40
139
|
|
|
41
140
|
exports[`NotFoundPage > renders correctly 1`] = `
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
141
|
+
<div class="
|
|
142
|
+
d-flex
|
|
143
|
+
justify-center
|
|
144
|
+
px-14
|
|
145
|
+
py-10
|
|
146
|
+
vd-page-container
|
|
147
|
+
">
|
|
148
|
+
<div
|
|
149
|
+
class="
|
|
150
|
+
bg-transparent
|
|
151
|
+
v-sheet
|
|
152
|
+
v-theme--light
|
|
153
|
+
"
|
|
154
|
+
style="width: 800px;"
|
|
155
|
+
>
|
|
156
|
+
<div class="
|
|
157
|
+
elevation-0
|
|
158
|
+
pa-6
|
|
159
|
+
pa-sm-16
|
|
160
|
+
v-card
|
|
161
|
+
v-card--density-default
|
|
162
|
+
v-card--variant-elevated
|
|
163
|
+
v-theme--light
|
|
164
|
+
">
|
|
45
165
|
<!---->
|
|
46
166
|
<div class="v-card__loader">
|
|
47
|
-
<div
|
|
167
|
+
<div
|
|
168
|
+
aria-hidden="true"
|
|
169
|
+
aria-valuemax="100"
|
|
170
|
+
aria-valuemin="0"
|
|
171
|
+
class="
|
|
172
|
+
v-locale--is-ltr
|
|
173
|
+
v-progress-linear
|
|
174
|
+
v-theme--light
|
|
175
|
+
"
|
|
176
|
+
role="progressbar"
|
|
177
|
+
style="top: 0px; height: 0px; --v-progress-linear-height: 2px;"
|
|
178
|
+
>
|
|
48
179
|
<!---->
|
|
49
|
-
<div
|
|
50
|
-
|
|
51
|
-
|
|
180
|
+
<div
|
|
181
|
+
class="v-progress-linear__background"
|
|
182
|
+
style="opacity: NaN;"
|
|
183
|
+
></div>
|
|
184
|
+
<div
|
|
185
|
+
class="v-progress-linear__buffer"
|
|
186
|
+
style="opacity: NaN; width: 0%;"
|
|
187
|
+
></div>
|
|
188
|
+
<transition-stub
|
|
189
|
+
appear="false"
|
|
190
|
+
css="true"
|
|
191
|
+
name="fade-transition"
|
|
192
|
+
persisted="false"
|
|
193
|
+
>
|
|
52
194
|
<div class="v-progress-linear__indeterminate">
|
|
53
|
-
<div class="
|
|
54
|
-
|
|
195
|
+
<div class="
|
|
196
|
+
long
|
|
197
|
+
v-progress-linear__indeterminate
|
|
198
|
+
"></div>
|
|
199
|
+
<div class="
|
|
200
|
+
short
|
|
201
|
+
v-progress-linear__indeterminate
|
|
202
|
+
"></div>
|
|
55
203
|
</div>
|
|
56
204
|
</transition-stub>
|
|
57
205
|
<!---->
|
|
@@ -59,18 +207,62 @@ exports[`NotFoundPage > renders correctly 1`] = `
|
|
|
59
207
|
</div>
|
|
60
208
|
<!---->
|
|
61
209
|
<!---->
|
|
62
|
-
<div
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
210
|
+
<div class="
|
|
211
|
+
max-width-none
|
|
212
|
+
v-row
|
|
213
|
+
">
|
|
214
|
+
<div class="
|
|
215
|
+
align-sm-start
|
|
216
|
+
d-flex
|
|
217
|
+
flex-column
|
|
218
|
+
justify-center
|
|
219
|
+
order-last
|
|
220
|
+
order-sm-first
|
|
221
|
+
text-center
|
|
222
|
+
text-sm-left
|
|
223
|
+
v-col-12
|
|
224
|
+
v-col-sm-6
|
|
225
|
+
">
|
|
226
|
+
<div class="
|
|
227
|
+
mb-4
|
|
228
|
+
sy-code
|
|
229
|
+
text-primary
|
|
230
|
+
">
|
|
231
|
+
<span class="d-sr-only">
|
|
232
|
+
Code d'erreur :
|
|
233
|
+
</span>
|
|
234
|
+
404
|
|
235
|
+
</div>
|
|
236
|
+
<h2 class="
|
|
237
|
+
font-weight-bold
|
|
238
|
+
mb-2
|
|
239
|
+
mb-4
|
|
240
|
+
text-h5
|
|
241
|
+
">
|
|
242
|
+
Page non trouvée
|
|
243
|
+
</h2>
|
|
244
|
+
<p>
|
|
245
|
+
Cette page n’existe pas ou a été déplacée.
|
|
246
|
+
</p>
|
|
247
|
+
<!-- v-if -->
|
|
248
|
+
</div>
|
|
249
|
+
<div class="
|
|
250
|
+
align-center
|
|
251
|
+
d-flex
|
|
252
|
+
justify-center
|
|
253
|
+
v-col-12
|
|
254
|
+
v-col-sm-6
|
|
255
|
+
">
|
|
256
|
+
<img
|
|
257
|
+
alt="Page non trouvée"
|
|
258
|
+
src="/src/components/NotFoundPage/assets/not-found.svg"
|
|
259
|
+
/>
|
|
68
260
|
</div>
|
|
69
|
-
<div data-v-8f2b5bad="" class="v-col-sm-6 v-col-12 d-flex align-center justify-center"><img data-v-c9c5b952="" src="/src/components/NotFoundPage/assets/not-found.svg" alt="Page non trouvée"></div>
|
|
70
261
|
</div>
|
|
71
262
|
<!---->
|
|
72
|
-
|
|
263
|
+
<!---->
|
|
264
|
+
<span class="v-card__underlay"></span>
|
|
73
265
|
</div>
|
|
74
266
|
</div>
|
|
75
|
-
</div>
|
|
267
|
+
</div>
|
|
76
268
|
`;
|
|
@@ -31,8 +31,8 @@ import * as NotificationBarStories from './NotificationBar.stories';
|
|
|
31
31
|
<script setup lang="ts">
|
|
32
32
|
import { VBtn } from 'vuetify/components'
|
|
33
33
|
import { NotificationBar } from '@cnamts/synapse'
|
|
34
|
-
import { useNotificationService } from '@cnamts/synapse
|
|
35
|
-
import type { Notification } from '@cnamts/synapse
|
|
34
|
+
import { useNotificationService } from '@cnamts/synapse'
|
|
35
|
+
import type { Notification } from '@cnamts/synapse'
|
|
36
36
|
|
|
37
37
|
const { addNotification } = useNotificationService()
|
|
38
38
|
|
|
@@ -115,7 +115,6 @@ Default.args = {
|
|
|
115
115
|
closeBtnText: 'Fermer',
|
|
116
116
|
type: 'info',
|
|
117
117
|
bottom: false,
|
|
118
|
-
rounded: '4',
|
|
119
118
|
}
|
|
120
119
|
|
|
121
120
|
Default.parameters = {
|
|
@@ -173,7 +172,6 @@ Default.parameters = {
|
|
|
173
172
|
export const Success: Story = Default.bind({})
|
|
174
173
|
Success.args = {
|
|
175
174
|
...Default.args,
|
|
176
|
-
rounded: 'pill',
|
|
177
175
|
type: 'success',
|
|
178
176
|
}
|
|
179
177
|
Success.parameters = {
|
|
@@ -186,7 +184,6 @@ Success.parameters = {
|
|
|
186
184
|
v-model="showNotification"
|
|
187
185
|
:close-btn-text="closeBtnText"
|
|
188
186
|
:bottom="bottom"
|
|
189
|
-
:rounded="pill"
|
|
190
187
|
type="success"
|
|
191
188
|
>
|
|
192
189
|
<template #default>This is a success notification</template>
|
|
@@ -232,7 +229,6 @@ Success.parameters = {
|
|
|
232
229
|
export const Warning: Story = Default.bind({})
|
|
233
230
|
Warning.args = {
|
|
234
231
|
...Default.args,
|
|
235
|
-
rounded: 'pill',
|
|
236
232
|
type: 'warning',
|
|
237
233
|
}
|
|
238
234
|
Warning.parameters = {
|
|
@@ -245,7 +241,6 @@ Warning.parameters = {
|
|
|
245
241
|
v-model="showNotification"
|
|
246
242
|
:close-btn-text="closeBtnText"
|
|
247
243
|
:bottom="bottom"
|
|
248
|
-
:rounded="pill"
|
|
249
244
|
type="warning"
|
|
250
245
|
>
|
|
251
246
|
<template #default>This is a warning notification</template>
|
|
@@ -291,7 +286,6 @@ Warning.parameters = {
|
|
|
291
286
|
export const Error: Story = Default.bind({})
|
|
292
287
|
Error.args = {
|
|
293
288
|
...Default.args,
|
|
294
|
-
rounded: 'pill',
|
|
295
289
|
type: 'error',
|
|
296
290
|
}
|
|
297
291
|
Error.parameters = {
|
|
@@ -304,7 +298,6 @@ Error.parameters = {
|
|
|
304
298
|
v-model="showNotification"
|
|
305
299
|
:close-btn-text="closeBtnText"
|
|
306
300
|
:bottom="bottom"
|
|
307
|
-
:rounded="pill"
|
|
308
301
|
type="error"
|
|
309
302
|
>
|
|
310
303
|
<template #default>This is an error notification</template>
|
|
@@ -350,7 +343,6 @@ Error.parameters = {
|
|
|
350
343
|
export const Bottom: Story = Default.bind({})
|
|
351
344
|
Bottom.args = {
|
|
352
345
|
...Default.args,
|
|
353
|
-
rounded: 'pill',
|
|
354
346
|
bottom: true,
|
|
355
347
|
}
|
|
356
348
|
Bottom.parameters = {
|
|
@@ -363,7 +355,6 @@ Bottom.parameters = {
|
|
|
363
355
|
v-model="showNotification"
|
|
364
356
|
:close-btn-text="closeBtnText"
|
|
365
357
|
:bottom="true"
|
|
366
|
-
:rounded="pill"
|
|
367
358
|
:type="type"
|
|
368
359
|
>
|
|
369
360
|
<template #default>This is a bottom-positioned notification</template>
|
|
@@ -409,7 +400,6 @@ Bottom.parameters = {
|
|
|
409
400
|
export const CustomCloseBtnText: Story = Default.bind({})
|
|
410
401
|
CustomCloseBtnText.args = {
|
|
411
402
|
...Default.args,
|
|
412
|
-
rounded: 'pill',
|
|
413
403
|
closeBtnText: 'Masquer',
|
|
414
404
|
}
|
|
415
405
|
CustomCloseBtnText.parameters = {
|
|
@@ -448,7 +438,6 @@ CustomCloseBtnText.parameters = {
|
|
|
448
438
|
|
|
449
439
|
const { addNotification } = useNotificationService()
|
|
450
440
|
const showNotification = ref(false)
|
|
451
|
-
const rounded = 'pill'
|
|
452
441
|
|
|
453
442
|
const envoyerNotification = (message: string) => {
|
|
454
443
|
const notification = {
|
|
@@ -465,3 +454,62 @@ CustomCloseBtnText.parameters = {
|
|
|
465
454
|
},
|
|
466
455
|
],
|
|
467
456
|
}
|
|
457
|
+
|
|
458
|
+
export const Customization: Story = Default.bind({})
|
|
459
|
+
Customization.args = {
|
|
460
|
+
...Default.args,
|
|
461
|
+
rounded: 'pill',
|
|
462
|
+
type: 'success',
|
|
463
|
+
}
|
|
464
|
+
Customization.parameters = {
|
|
465
|
+
sourceCode: [
|
|
466
|
+
{
|
|
467
|
+
name: 'Template',
|
|
468
|
+
code: `
|
|
469
|
+
<div class="d-flex flex-wrap align-center justify-center">
|
|
470
|
+
<NotificationBar
|
|
471
|
+
v-model="showNotification"
|
|
472
|
+
:close-btn-text="closeBtnText"
|
|
473
|
+
:bottom="bottom"
|
|
474
|
+
:rounded="pill"
|
|
475
|
+
type="success"
|
|
476
|
+
>
|
|
477
|
+
<template #default>This is a success notification</template>
|
|
478
|
+
</NotificationBar>
|
|
479
|
+
<VBtn
|
|
480
|
+
color="success"
|
|
481
|
+
@click="envoyerNotification('This is a success notification')"
|
|
482
|
+
class="ma-6"
|
|
483
|
+
>
|
|
484
|
+
Afficher la notification
|
|
485
|
+
</VBtn>
|
|
486
|
+
</div>
|
|
487
|
+
`,
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
name: 'Script',
|
|
491
|
+
code: `
|
|
492
|
+
<script setup lang="ts">
|
|
493
|
+
import { VBtn } from 'vuetify/components'
|
|
494
|
+
import { NotificationBar } from '@cnamts/synapse'
|
|
495
|
+
import { ref } from 'vue'
|
|
496
|
+
import { useNotificationService } from '@cnamts/synpase'
|
|
497
|
+
|
|
498
|
+
const { addNotification } = useNotificationService()
|
|
499
|
+
const showNotification = ref(false)
|
|
500
|
+
|
|
501
|
+
const envoyerNotification = (message: string) => {
|
|
502
|
+
const notification = {
|
|
503
|
+
id: Date.now().toString(),
|
|
504
|
+
message,
|
|
505
|
+
type: 'success',
|
|
506
|
+
timeout: -1,
|
|
507
|
+
}
|
|
508
|
+
addNotification(notification)
|
|
509
|
+
showNotification.value = true
|
|
510
|
+
}
|
|
511
|
+
</script>
|
|
512
|
+
`,
|
|
513
|
+
},
|
|
514
|
+
],
|
|
515
|
+
}
|
|
@@ -28,8 +28,6 @@
|
|
|
28
28
|
const currentNotification = ref<Notification>()
|
|
29
29
|
const isNotificationVisible = ref(false)
|
|
30
30
|
|
|
31
|
-
const isProcessingNotifications = ref(false) // Nouvelle variable pour suivre le traitement
|
|
32
|
-
|
|
33
31
|
const hasActionSlot = computed(() => !!instance?.slots.action)
|
|
34
32
|
const isMobileVersion = computed(() => display.name.value === 'xs')
|
|
35
33
|
const isTabletVersion = computed(() => display.name.value === 'sm')
|
|
@@ -73,91 +71,47 @@
|
|
|
73
71
|
|
|
74
72
|
const smallCloseBtn = computed(() => isMobileVersion.value && !hasLongContent.value && !hasActionSlot.value)
|
|
75
73
|
|
|
76
|
-
|
|
77
|
-
currentNotification.value
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
isProcessingNotifications.value = true
|
|
74
|
+
watch(() => notificationQueue.value.length, async (queueLength) => {
|
|
75
|
+
if (queueLength > 0 && currentNotification.value === undefined) {
|
|
76
|
+
openNotification(notificationQueue.value[0])
|
|
77
|
+
}
|
|
78
|
+
}, { immediate: true })
|
|
82
79
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
80
|
+
let timeoutID: ReturnType<typeof setTimeout>
|
|
81
|
+
function openNotification(notification: Notification) {
|
|
82
|
+
currentNotification.value = notification
|
|
83
|
+
isNotificationVisible.value = true
|
|
87
84
|
|
|
88
|
-
|
|
85
|
+
if ((notification.timeout || 0) > 0) {
|
|
86
|
+
timeoutID = setTimeout(() => {
|
|
87
|
+
isNotificationVisible.value = false
|
|
88
|
+
}, notification.timeout)
|
|
89
|
+
}
|
|
90
|
+
}
|
|
89
91
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
resolve()
|
|
97
|
-
}
|
|
98
|
-
})
|
|
99
|
-
})
|
|
92
|
+
watch(isNotificationVisible, async (isVisible) => {
|
|
93
|
+
if (!isVisible) {
|
|
94
|
+
// wait for the snackbar close animation to finish
|
|
95
|
+
await new Promise(resolve => setTimeout(resolve, 100))
|
|
96
|
+
if (currentNotification.value) {
|
|
97
|
+
removeNotification(currentNotification.value.id)
|
|
100
98
|
}
|
|
101
|
-
|
|
102
|
-
// Attend la fin du délai du timeout avant de fermer la notification automatiquement
|
|
103
|
-
await new Promise<void>((resolve) => {
|
|
104
|
-
const timeoutId = setTimeout(() => {
|
|
105
|
-
handleClearNotification()
|
|
106
|
-
resolve()
|
|
107
|
-
}, timeout)
|
|
99
|
+
currentNotification.value = undefined
|
|
108
100
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
clearTimeout(timeoutId)
|
|
112
|
-
stopWatch()
|
|
113
|
-
resolve()
|
|
114
|
-
}
|
|
115
|
-
})
|
|
116
|
-
})
|
|
101
|
+
if (notificationQueue.value.length > 0) {
|
|
102
|
+
openNotification(notificationQueue.value[0])
|
|
117
103
|
}
|
|
118
|
-
|
|
119
|
-
// Retire la notification de la file
|
|
120
|
-
removeNotification(nextNotification.id)
|
|
121
104
|
}
|
|
105
|
+
})
|
|
122
106
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
const handleClearNotification = () => {
|
|
107
|
+
function showNextNotification() {
|
|
108
|
+
clearTimeout(timeoutID)
|
|
127
109
|
isNotificationVisible.value = false
|
|
128
|
-
if (currentNotification.value) {
|
|
129
|
-
removeNotification(currentNotification.value.id)
|
|
130
|
-
currentNotification.value = undefined
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
const openNotification = (notification: Notification) => {
|
|
135
|
-
setNotification(notification)
|
|
136
|
-
isNotificationVisible.value = true
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
const showNextNotification = () => {
|
|
140
|
-
if (notificationQueue.value.length > 0) {
|
|
141
|
-
const nextNotification = notificationQueue.value[0]
|
|
142
|
-
setNotification(nextNotification)
|
|
143
|
-
isNotificationVisible.value = true
|
|
144
|
-
}
|
|
145
110
|
}
|
|
146
111
|
|
|
147
|
-
watch(
|
|
148
|
-
() => notificationQueue.value.length,
|
|
149
|
-
(newLength) => {
|
|
150
|
-
if (newLength > 0 && !isProcessingNotifications.value) {
|
|
151
|
-
processNotificationQueue()
|
|
152
|
-
}
|
|
153
|
-
},
|
|
154
|
-
)
|
|
155
|
-
|
|
156
112
|
defineExpose({
|
|
157
113
|
openNotification,
|
|
158
|
-
handleClearNotification,
|
|
159
114
|
showNextNotification,
|
|
160
|
-
processNotificationQueue,
|
|
161
115
|
currentNotification,
|
|
162
116
|
isNotificationVisible,
|
|
163
117
|
hasActionSlot,
|
|
@@ -173,11 +127,12 @@
|
|
|
173
127
|
</script>
|
|
174
128
|
|
|
175
129
|
<template>
|
|
176
|
-
<div
|
|
130
|
+
<div>
|
|
177
131
|
<VSnackbar
|
|
178
132
|
v-bind="options.snackbar"
|
|
179
133
|
v-model="isNotificationVisible"
|
|
180
134
|
role="status"
|
|
135
|
+
:eager="true"
|
|
181
136
|
:color="color"
|
|
182
137
|
:location="props.bottom ? 'bottom' : 'top'"
|
|
183
138
|
:vertical="hasLongContent"
|
|
@@ -195,7 +150,10 @@
|
|
|
195
150
|
size="24"
|
|
196
151
|
aria-hidden="true"
|
|
197
152
|
/>
|
|
198
|
-
<p
|
|
153
|
+
<p
|
|
154
|
+
class="sy-notification-content"
|
|
155
|
+
:class="'text-' + contentStyle.contentColor"
|
|
156
|
+
>
|
|
199
157
|
{{ currentNotification?.message }}
|
|
200
158
|
</p>
|
|
201
159
|
</div>
|
|
@@ -212,7 +170,7 @@
|
|
|
212
170
|
:class="{ 'ma-0': smallCloseBtn }"
|
|
213
171
|
aria-label="Fermer la notification"
|
|
214
172
|
v-bind="options.btn"
|
|
215
|
-
@click="
|
|
173
|
+
@click="isNotificationVisible = false"
|
|
216
174
|
>
|
|
217
175
|
<template v-if="!smallCloseBtn">
|
|
218
176
|
{{ closeBtnText }}
|
|
@@ -230,18 +188,12 @@
|
|
|
230
188
|
<style lang="scss" scoped>
|
|
231
189
|
@use '@/assets/tokens';
|
|
232
190
|
|
|
233
|
-
.
|
|
234
|
-
|
|
235
|
-
align-items: center;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.vd-notification-bar :deep(.v-snack__wrapper) {
|
|
239
|
-
padding: 16px;
|
|
240
|
-
min-width: 0;
|
|
241
|
-
max-width: none;
|
|
191
|
+
:deep(.v-overlay__content) {
|
|
192
|
+
max-width: 100%;
|
|
242
193
|
}
|
|
243
194
|
|
|
244
195
|
:deep(.v-snackbar__content) {
|
|
196
|
+
width: 100%;
|
|
245
197
|
padding: tokens.$padding-4 !important;
|
|
246
198
|
}
|
|
247
199
|
|
|
@@ -249,35 +201,6 @@
|
|
|
249
201
|
margin-inline-end: 10px;
|
|
250
202
|
}
|
|
251
203
|
|
|
252
|
-
.vd-notification-bar.v-snackbar--vertical :deep() {
|
|
253
|
-
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
|
254
|
-
width: 100% !important;
|
|
255
|
-
align-self: auto;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.v-snack__wrapper {
|
|
259
|
-
align-items: stretch;
|
|
260
|
-
flex-direction: row;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.v-snack__action {
|
|
264
|
-
align-self: stretch;
|
|
265
|
-
align-items: stretch;
|
|
266
|
-
flex-direction: column;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.v-snackbar__content {
|
|
270
|
-
margin: 0;
|
|
271
|
-
width: 100%;
|
|
272
|
-
display: flex;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.vd-notification-content {
|
|
276
|
-
flex-direction: column;
|
|
277
|
-
display: flex;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
204
|
.long-text :deep(.v-snackbar__actions) {
|
|
282
205
|
width: 98% !important;
|
|
283
206
|
}
|
|
@@ -293,4 +216,9 @@
|
|
|
293
216
|
.action-section-short-text {
|
|
294
217
|
justify-content: end !important;
|
|
295
218
|
}
|
|
219
|
+
|
|
220
|
+
.sy-notification-content {
|
|
221
|
+
min-width: 0;
|
|
222
|
+
word-wrap: break-word;
|
|
223
|
+
}
|
|
296
224
|
</style>
|