@cnamts/synapse 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/dist/{DateFilter-XURUmpMl.js → DateFilter-uN8OURoP.js} +1 -1
  2. package/dist/{NumberFilter-BZc0O8wV.js → NumberFilter-sm1dQNQi.js} +1 -1
  3. package/dist/{PeriodFilter-ZNdXcl3p.js → PeriodFilter-Cklsxnh9.js} +1 -1
  4. package/dist/{SelectFilter-DshYU5OK.js → SelectFilter-CWefj27Z.js} +1 -1
  5. package/dist/{TextFilter-D_c5dRPl.js → TextFilter-Ddyj885L.js} +1 -1
  6. package/dist/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.d.ts +160 -0
  7. package/dist/components/Customs/SyCheckBoxGroup/locales.d.ts +3 -0
  8. package/dist/components/Customs/SyCheckBoxGroup/types.d.ts +10 -0
  9. package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +1545 -2
  10. package/dist/components/Customs/SyRadioGroup/SyRadioGroup.d.ts +1495 -2
  11. package/dist/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.d.ts +60 -0
  12. package/dist/components/ErrorPage/ErrorPage.d.ts +1 -12
  13. package/dist/components/ErrorPage/locales.d.ts +18 -3
  14. package/dist/components/FileUpload/FileUpload.d.ts +2 -0
  15. package/dist/components/MaintenancePage/locales.d.ts +18 -2
  16. package/dist/components/NotFoundPage/locales.d.ts +20 -4
  17. package/dist/components/StatusPage/StatusPage.d.ts +39 -0
  18. package/dist/components/UploadWorkflow/UploadWorkflow.d.ts +13 -3
  19. package/dist/components/index.d.ts +3 -0
  20. package/dist/design-system-v3.js +126 -123
  21. package/dist/design-system-v3.umd.cjs +163 -163
  22. package/dist/{main-CuI6xaPq.js → main-CWniLr0s.js} +15191 -14668
  23. package/dist/style.css +1 -1
  24. package/dist/utils/theme/index.d.ts +6 -0
  25. package/package.json +7 -4
  26. package/src/components/ContextualMenu/ContextualMenu.stories.ts +0 -3
  27. package/src/components/ContextualMenu/accessibilite/Accessibility.mdx +67 -11
  28. package/src/components/CookieBanner/CookieBanner.stories.ts +11 -20
  29. package/src/components/CookieBanner/CookieBanner.vue +20 -5
  30. package/src/components/CookieBanner/accessibilite/Accessibility.mdx +67 -11
  31. package/src/components/CookieBanner/tests/CookieBanner.spec.ts +48 -4
  32. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.mdx +32 -0
  33. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.stories.ts +856 -0
  34. package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.vue +334 -0
  35. package/src/components/Customs/SyCheckBoxGroup/accessibilite/Accessibility.mdx +243 -0
  36. package/src/components/Customs/SyCheckBoxGroup/locales.ts +3 -0
  37. package/src/components/Customs/SyCheckBoxGroup/tests/SyCheckBoxGroup.a11y.spec.ts +30 -0
  38. package/src/components/Customs/SyCheckBoxGroup/tests/SyCheckBoxGroup.spec.ts +152 -0
  39. package/src/components/Customs/SyCheckBoxGroup/types.ts +10 -0
  40. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +16 -27
  41. package/src/components/Customs/SyCheckbox/accessibilite/Accessibility.mdx +1 -1
  42. package/src/components/Customs/SyForm/SyForm.a11y.spec.ts +1 -1
  43. package/src/components/Customs/SyRadioGroup/SyRadioGroup.vue +16 -43
  44. package/src/components/DatePicker/CalendarMode/DatePicker.vue +35 -11
  45. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +43 -2
  46. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +48 -21
  47. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +98 -0
  48. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.mdx +83 -0
  49. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.stories.ts +502 -0
  50. package/src/components/DeclarationAccessibilityPage/DeclarationAccessibilityPage.vue +428 -0
  51. package/src/components/DeclarationAccessibilityPage/accessibilite/Accessibility.mdx +75 -0
  52. package/src/components/DeclarationAccessibilityPage/tests/DeclarationAccessibilityPage.a11y.spec.ts +53 -0
  53. package/src/components/DeclarationAccessibilityPage/tests/DeclarationAccessibilityPage.spec.ts +59 -0
  54. package/src/components/DiacriticPicker/DiacriticPicker.vue +20 -1
  55. package/src/components/ErrorPage/ErrorPage.mdx +6 -16
  56. package/src/components/ErrorPage/ErrorPage.stories.ts +16 -87
  57. package/src/components/ErrorPage/ErrorPage.vue +38 -125
  58. package/src/components/ErrorPage/accessibilite/Accessibility.mdx +68 -6
  59. package/src/components/ErrorPage/assets/error-ap.svg +1774 -0
  60. package/src/components/ErrorPage/locales.ts +21 -3
  61. package/src/components/ErrorPage/tests/ErrorPage.a11y.spec.ts +5 -13
  62. package/src/components/ErrorPage/tests/ErrorPage.spec.ts +2 -41
  63. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +8 -266
  64. package/src/components/FileUpload/FileUpload.vue +5 -0
  65. package/src/components/FooterBar/FooterBar.stories.ts +18 -14
  66. package/src/components/FooterBar/defaultSocialMediaLinks.ts +6 -4
  67. package/src/components/MaintenancePage/MaintenancePage.mdx +1 -1
  68. package/src/components/MaintenancePage/MaintenancePage.vue +15 -7
  69. package/src/components/MaintenancePage/accessibilite/Accessibility.mdx +61 -6
  70. package/src/components/MaintenancePage/assets/maintenance-ap.svg +1718 -0
  71. package/src/components/MaintenancePage/locales.ts +24 -3
  72. package/src/components/MaintenancePage/tests/MaintenancePage.a11y.spec.ts +75 -3
  73. package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +42 -2
  74. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -2
  75. package/src/components/NotFoundPage/NotFoundPage.mdx +1 -1
  76. package/src/components/NotFoundPage/NotFoundPage.stories.ts +3 -3
  77. package/src/components/NotFoundPage/NotFoundPage.vue +16 -11
  78. package/src/components/NotFoundPage/accessibilite/Accessibility.mdx +78 -6
  79. package/src/components/NotFoundPage/assets/not-found-ap.svg +2061 -0
  80. package/src/components/NotFoundPage/locales.ts +24 -4
  81. package/src/components/NotFoundPage/tests/NotFoundPage.a11y.spec.ts +168 -4
  82. package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +100 -12
  83. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +2 -2
  84. package/src/components/NotificationBar/NotificationBar.mdx +2 -2
  85. package/src/components/NotificationBar/accessibilite/Accessibility.mdx +68 -8
  86. package/src/components/PageContainer/tests/PageContainer.a11y.spec.ts +14 -7
  87. package/src/components/PhoneField/PhoneField.stories.ts +46 -38
  88. package/src/components/SocialMediaLinks/DefaultSocialMediaLinks.ts +6 -4
  89. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +7 -5
  90. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +17 -13
  91. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +9 -1
  92. package/src/components/SocialMediaLinks/accessibilite/Accessibility.mdx +63 -11
  93. package/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.ts +5 -5
  94. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.a11y.spec.ts +59 -0
  95. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +9 -7
  96. package/src/components/StatusPage/StatusPage.mdx +22 -0
  97. package/src/components/StatusPage/StatusPage.stories.ts +193 -0
  98. package/src/components/StatusPage/StatusPage.vue +145 -0
  99. package/src/components/StatusPage/accessibilite/Accessibility.mdx +81 -0
  100. package/src/components/StatusPage/tests/StatusPage.a11y.spec.ts +29 -0
  101. package/src/components/StatusPage/tests/StatusPage.spec.ts +50 -0
  102. package/src/components/StatusPage/tests/__snapshots__/StatusPage.spec.ts.snap +270 -0
  103. package/src/components/TableToolbar/TableToolbar.stories.ts +6 -6
  104. package/src/components/TableToolbar/TableToolbar.vue +1 -1
  105. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +0 -5
  106. package/src/components/UploadWorkflow/UploadWorkflow.mdx +11 -1
  107. package/src/components/UploadWorkflow/UploadWorkflow.stories.ts +107 -3
  108. package/src/components/UploadWorkflow/UploadWorkflow.vue +35 -24
  109. package/src/components/UploadWorkflow/tests/UploadWorkflow.spec.ts +48 -0
  110. package/src/components/UploadWorkflow/tests/__snapshots__/UploadWorkflow.spec.ts.snap +9 -5
  111. package/src/components/UploadWorkflow/useFileList.ts +7 -0
  112. package/src/components/index.ts +3 -0
  113. package/src/composables/rules/tests/useFieldValidation.spec.ts +39 -3
  114. package/src/composables/rules/useFieldValidation.ts +24 -9
  115. package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +7 -0
  116. package/src/utils/theme/index.ts +19 -0
  117. package/src/utils/theme/tests/useThemeLocales.spec.ts +245 -0
  118. package/dist/components/MaintenancePage/index.d.ts +0 -2
  119. package/src/components/Customs/SyPagination/tests/SyPagination.a11y.spec.ts +0 -27
  120. package/src/components/Customs/SyTabs/tests/SyTabs.a11y.spec.ts +0 -51
  121. package/src/components/DataListItem/tests/DataListItem.a11y.spec.ts +0 -31
  122. package/src/components/DatePicker/CalendarMode/tests/DatePicker.a11y.spec.ts +0 -27
  123. package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.a11y.spec.ts +0 -26
  124. package/src/components/DatePicker/DateTextInput/tests/DateTextInput.a11y.spec.ts +0 -27
  125. package/src/components/DownloadBtn/tests/DownloadBtn.a11y.spec.ts +0 -26
  126. package/src/components/ExternalLinks/tests/ExternalLinks.a11y.spec.ts +0 -39
  127. package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.a11y.spec.ts +0 -45
  128. package/src/components/HeaderToolbar/tests/HeaderToolbar.a11y.spec.ts +0 -25
  129. package/src/components/LunarCalendar/tests/LunarCalendar.a11y.spec.ts +0 -31
  130. package/src/components/MaintenancePage/index.ts +0 -3
  131. package/src/components/PageContainer/Accessibilite/AccessibilityGuide.mdx +0 -0
  132. package/src/components/PaginatedTable/tests/PaginatedTable.a11y.spec.ts +0 -43
  133. package/src/components/PhoneField/tests/PhoneField.a11y.spec.ts +0 -34
  134. /package/src/components/NotFoundPage/assets/{not-found.svg → not-found-cnam.svg} +0 -0
  135. /package/src/components/PageContainer/{Accessibilite → accessibilite}/Accessibility.mdx +0 -0
@@ -0,0 +1,60 @@
1
+ interface VerifiedPage {
2
+ name: string;
3
+ url?: string;
4
+ }
5
+ type EvaluationMethod = 'auto-evaluation' | 'audit-interne' | 'audit-externe';
6
+ interface DeclarationAccessibilityPageProps {
7
+ entityName: string;
8
+ schemaUrl?: string;
9
+ schemaUrlLabel?: string;
10
+ actionsRealisedUrl?: string;
11
+ actionsRealisedUrlLabel?: string;
12
+ planActionsUrl?: string;
13
+ planActionsUrlLabel?: string;
14
+ siteName: string;
15
+ siteUrl: string;
16
+ rgaaVersion?: string;
17
+ auditEntity?: string;
18
+ auditDate?: string;
19
+ evaluationMethod?: EvaluationMethod;
20
+ overallComplianceRate?: number | null;
21
+ averageComplianceRate?: number | null;
22
+ auditGridUrl?: string;
23
+ contactEmail: string;
24
+ contactPhone?: string;
25
+ nonConformities?: string[];
26
+ exemptions?: string[];
27
+ nonObligatoryContents?: string[];
28
+ declarationDate?: string;
29
+ updateDate?: string;
30
+ technologies?: string[];
31
+ testEnvironments?: string[];
32
+ accessibilityTools?: string[];
33
+ verifiedPages?: VerifiedPage[];
34
+ }
35
+ declare const _default: import('vue').DefineComponent<DeclarationAccessibilityPageProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DeclarationAccessibilityPageProps> & Readonly<{}>, {
36
+ schemaUrl: string;
37
+ schemaUrlLabel: string;
38
+ actionsRealisedUrl: string;
39
+ actionsRealisedUrlLabel: string;
40
+ planActionsUrl: string;
41
+ planActionsUrlLabel: string;
42
+ rgaaVersion: string;
43
+ auditEntity: string;
44
+ auditDate: string;
45
+ evaluationMethod: EvaluationMethod;
46
+ overallComplianceRate: number | null;
47
+ averageComplianceRate: number | null;
48
+ auditGridUrl: string;
49
+ contactPhone: string;
50
+ nonConformities: string[];
51
+ exemptions: string[];
52
+ nonObligatoryContents: string[];
53
+ declarationDate: string;
54
+ updateDate: string;
55
+ technologies: string[];
56
+ testEnvironments: string[];
57
+ accessibilityTools: string[];
58
+ verifiedPages: VerifiedPage[];
59
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
60
+ export default _default;
@@ -12,24 +12,13 @@ type __VLS_Props = {
12
12
  declare function __VLS_template(): {
13
13
  attrs: Partial<{}>;
14
14
  slots: {
15
- 'additional-content'?(_: {}): any;
16
- action?(_: {}): any;
17
15
  illustration?(_: {}): any;
18
16
  };
19
17
  refs: {};
20
18
  rootEl: HTMLDivElement;
21
19
  };
22
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
- code: string;
25
- message: string;
26
- btnText: string;
27
- pageTitle: string;
28
- codeErrorText: string;
29
- btnHref: string;
30
- btnLink: RouteRecordRaw | string;
31
- hideBtn: boolean;
32
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
33
22
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
34
23
  export default _default;
35
24
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,5 +1,20 @@
1
1
  export declare const locales: {
2
- errorCodeText: string;
3
- supportIdMessage: string;
4
- btnText: string;
2
+ default: {
3
+ pageTitle: string;
4
+ message: string;
5
+ src: undefined;
6
+ code: string;
7
+ };
8
+ cnam: {
9
+ pageTitle: string;
10
+ message: string;
11
+ src: undefined;
12
+ code: string;
13
+ };
14
+ ap: {
15
+ pageTitle: string;
16
+ message: string;
17
+ src: string;
18
+ code: string;
19
+ };
5
20
  };
@@ -10,6 +10,7 @@ type __VLS_Props = {
10
10
  allowedExtensions?: Array<string>;
11
11
  locales?: typeof defaultLocales;
12
12
  } & Widthable;
13
+ declare function openFileDialog(): void;
13
14
  declare function __VLS_template(): {
14
15
  attrs: Partial<{}>;
15
16
  slots: Readonly<{
@@ -26,6 +27,7 @@ declare function __VLS_template(): {
26
27
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
27
28
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
28
29
  fileInput: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
30
+ openFileDialog: typeof openFileDialog;
29
31
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
30
32
  error: (value: string[]) => any;
31
33
  "update:modelValue": (value: File[]) => any;
@@ -1,4 +1,20 @@
1
1
  export declare const locales: {
2
- pageTitle: string;
3
- message: string;
2
+ default: {
3
+ pageTitle: string;
4
+ message: string;
5
+ src: string;
6
+ code: string;
7
+ };
8
+ cnam: {
9
+ pageTitle: string;
10
+ message: string;
11
+ src: string;
12
+ code: string;
13
+ };
14
+ ap: {
15
+ pageTitle: string;
16
+ message: string;
17
+ src: string;
18
+ code: string;
19
+ };
4
20
  };
@@ -1,6 +1,22 @@
1
+ export declare const SUPPORT_ID_PARAM_NAME = "support_id";
2
+ export declare const supportIdMessage = "Votre identifiant de support est";
1
3
  export declare const locales: {
2
- code: string;
3
- pageTitle: string;
4
- message: string;
5
- supportIdMessage: string;
4
+ default: {
5
+ code: string;
6
+ pageTitle: string;
7
+ message: string;
8
+ src: string;
9
+ };
10
+ cnam: {
11
+ code: string;
12
+ pageTitle: string;
13
+ message: string;
14
+ src: string;
15
+ };
16
+ ap: {
17
+ code: string;
18
+ pageTitle: string;
19
+ message: string;
20
+ src: string;
21
+ };
6
22
  };
@@ -0,0 +1,39 @@
1
+ import { RouteRecordRaw } from 'vue-router';
2
+ type __VLS_Props = {
3
+ pageTitle?: string;
4
+ message?: string;
5
+ code?: string;
6
+ codeErrorText?: string;
7
+ btnText?: string;
8
+ btnHref?: string;
9
+ btnLink?: RouteRecordRaw | string;
10
+ hideBtn?: boolean;
11
+ };
12
+ declare function __VLS_template(): {
13
+ attrs: Partial<{}>;
14
+ slots: {
15
+ 'additional-content'?(_: {}): any;
16
+ action?(_: {}): any;
17
+ illustration?(_: {}): any;
18
+ };
19
+ refs: {};
20
+ rootEl: HTMLDivElement;
21
+ };
22
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
24
+ code: string;
25
+ message: string;
26
+ btnText: string;
27
+ pageTitle: string;
28
+ codeErrorText: string;
29
+ btnHref: string;
30
+ btnLink: RouteRecordRaw | string;
31
+ hideBtn: boolean;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -1,11 +1,13 @@
1
1
  import { CustomizableOptions } from '../../composables/useCustomizableOptions';
2
2
  import { Widthable } from '../../composables/widthable';
3
3
  import { locales as defaultLocales } from './locales';
4
- import { SelectedFile, UploadItem } from './types';
4
+ import { FileItem, SelectedFile, UploadItem } from './types';
5
5
  type __VLS_Props = Widthable & CustomizableOptions & {
6
6
  uploadList: UploadItem[];
7
7
  sectionTitle?: string;
8
8
  showFilePreview?: boolean;
9
+ infoText?: string;
10
+ headingLevel?: number;
9
11
  locales?: typeof defaultLocales;
10
12
  };
11
13
  type __VLS_PublicProps = {
@@ -67,6 +69,7 @@ declare function __VLS_template(): {
67
69
  "onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
68
70
  }>, {
69
71
  fileInput: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
72
+ openFileDialog: () => void;
70
73
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
71
74
  error: (value: string[]) => any;
72
75
  "update:modelValue": (value: File[]) => any;
@@ -115,8 +118,9 @@ declare function __VLS_template(): {
115
118
  } & Widthable> & Readonly<{
116
119
  onError?: ((value: string[]) => any) | undefined;
117
120
  "onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
118
- }>, "fileInput" | ("disabled" | "locales" | "multiple" | "allowedExtensions" | "fileSizeUnits" | "fileSizeMax")> & import('vue').ShallowUnwrapRef<{
121
+ }>, "fileInput" | "openFileDialog" | ("disabled" | "locales" | "multiple" | "allowedExtensions" | "fileSizeUnits" | "fileSizeMax")> & import('vue').ShallowUnwrapRef<{
119
122
  fileInput: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
123
+ openFileDialog: () => void;
120
124
  }> & {} & import('vue').ComponentCustomProperties & {} & {
121
125
  $slots: Readonly<{
122
126
  default(): void;
@@ -730,13 +734,17 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
730
734
  } & {
731
735
  error: (value: string[]) => any;
732
736
  "update:modelValue": (value: SelectedFile[]) => any;
737
+ preview: (value: FileItem) => any;
733
738
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
734
739
  onError?: ((value: string[]) => any) | undefined;
735
740
  "onUpdate:modelValue"?: ((value: SelectedFile[]) => any) | undefined;
741
+ onPreview?: ((value: FileItem) => any) | undefined;
736
742
  }>, {
743
+ headingLevel: number;
737
744
  locales: typeof defaultLocales;
738
745
  sectionTitle: string;
739
746
  showFilePreview: boolean;
747
+ infoText: string;
740
748
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
741
749
  fileUpload: ({
742
750
  $: import('vue').ComponentInternalInstance;
@@ -785,6 +793,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
785
793
  "onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
786
794
  }>, {
787
795
  fileInput: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
796
+ openFileDialog: () => void;
788
797
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
789
798
  error: (value: string[]) => any;
790
799
  "update:modelValue": (value: File[]) => any;
@@ -833,8 +842,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
833
842
  } & Widthable> & Readonly<{
834
843
  onError?: ((value: string[]) => any) | undefined;
835
844
  "onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
836
- }>, "fileInput" | ("disabled" | "locales" | "multiple" | "allowedExtensions" | "fileSizeUnits" | "fileSizeMax")> & import('vue').ShallowUnwrapRef<{
845
+ }>, "fileInput" | "openFileDialog" | ("disabled" | "locales" | "multiple" | "allowedExtensions" | "fileSizeUnits" | "fileSizeMax")> & import('vue').ShallowUnwrapRef<{
837
846
  fileInput: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
847
+ openFileDialog: () => void;
838
848
  }> & {} & import('vue').ComponentCustomProperties & {} & {
839
849
  $slots: Readonly<{
840
850
  default(): void;
@@ -33,6 +33,7 @@ export { default as SyInputSelect } from './Customs/Selects/SyInputSelect/SyInpu
33
33
  export { default as SySelect } from './Customs/Selects/SySelect/SySelect';
34
34
  export { default as SyAutocomplete } from './Customs/Selects/SyAutocomplete/SyAutocomplete';
35
35
  export { default as SyCheckbox } from './Customs/SyCheckbox/SyCheckbox';
36
+ export { default as SyCheckBoxGroup } from './Customs/SyCheckBoxGroup/SyCheckBoxGroup';
36
37
  export { default as SyForm } from './Customs/SyForm/SyForm';
37
38
  export { default as SyRadioGroup } from './Customs/SyRadioGroup/SyRadioGroup';
38
39
  export { default as SyTextField } from './Customs/SyTextField/SyTextField';
@@ -79,6 +80,8 @@ export { default as SyAlert } from './SyAlert/SyAlert';
79
80
  export { default as ErrorPage } from './ErrorPage/ErrorPage';
80
81
  export { default as MaintenancePage } from './MaintenancePage/MaintenancePage';
81
82
  export { default as NotFoundPage } from './NotFoundPage/NotFoundPage';
83
+ export { default as StatusPage } from './StatusPage/StatusPage';
84
+ export { default as DeclarationAccessibilityPage } from './DeclarationAccessibilityPage/DeclarationAccessibilityPage';
82
85
  export { default as AmeliproAccordion } from './Amelipro/AmeliproAccordion/AmeliproAccordion';
83
86
  export { default as AmeliproAccordionFrieze } from './Amelipro/AmeliproAccordionFrieze/AmeliproAccordionFrieze';
84
87
  export { default as AmeliproAccordionGroup } from './Amelipro/AmeliproAccordionGroup/AmeliproAccordionGroup';
@@ -1,4 +1,4 @@
1
- import { A as i, b as o, c as r, d as l, e as t, f as n, g as p, h as b, i as d, j as m, k as A, l as c, m as u, n as F, o as S, p as g, q as y, r as B, s as T, t as C, v as L, w as D, x as M, y as P, z as k, B as N, C as f, E as h, F as H, G as R, H as I, I as x, J as E, K as V, L as v, M as G, N as U, O as w, Q as K, R as W, T as q, U as z, V as _, W as O, X, Y, Z as j, $ as J, a0 as Q, a1 as Z, a2 as $, a3 as aa, a4 as ea, a5 as sa, a6 as ia, a7 as oa, a8 as ra, a9 as la, aa as ta, ab as na, ac as pa, ad as ba, ae as da, af as ma, ag as Aa, ah as ca, ai as ua, aj as Fa, ak as Sa, al as ga, am as ya, an as Ba, ao as Ta, D as Ca, ap as La, aq as Da, ar as Ma, as as Pa, at as ka, au as Na, av as fa, aw as ha, ax as Ha, ay as Ra, az as Ia, aA as xa, aB as Ea, aC as Va, aD as va, aE as Ga, aF as Ua, aG as wa, aH as Ka, aI as Wa, aJ as qa, aK as za, aL as _a, aM as Oa, aN as Xa, aO as Ya, aP as ja, aQ as Ja, aR as Qa, aS as Za, aT as $a, aU as ae, aV as ee, aW as se, aX as ie, aY as oe, aZ as re, a_ as le, P as te, a$ as ne, b0 as pe, b1 as be, b2 as de, b3 as me, b4 as Ae, b5 as ce, b6 as ue, b7 as Fe, b8 as Se, b9 as ge, ba as ye, bb as Be, bc as Te, bd as Ce, be as Le, bf as De, bg as Me, bh as Pe, S as ke, bi as Ne, bj as fe, bk as he, bl as He, a as Re, bm as Ie, bn as xe, bo as Ee, bp as Ve, bq as ve, br as Ge, bs as Ue, bt as we, bu as Ke, bv as We, bw as qe, bx as ze, by as _e, bz as Oe, bA as Xe, bB as Ye, bC as je, bD as Je, bE as Qe, bF as Ze, bG as $e, bH as as, bI as es, bJ as ss, bK as is, bL as os, bM as rs, bN as ls, bO as ts, bP as ns, bQ as ps, bR as bs, bS as ds, bT as ms, bU as As, bV as cs, bW as us, bX as Fs, bY as Ss, bZ as gs, b_ as ys, b$ as Bs, c0 as Ts, c1 as Cs, c2 as Ls, u as Ds, c3 as Ms, c4 as Ps, c5 as ks, c6 as Ns, c7 as fs, c8 as hs, c9 as Hs } from "./main-CuI6xaPq.js";
1
+ import { A as i, b as o, c as r, d as l, e as t, f as n, g as p, h as b, i as d, j as c, k as m, l as A, m as u, n as F, o as S, p as g, q as y, r as B, s as T, t as C, v as L, w as D, x as P, y as M, z as k, B as N, C as f, E as h, F as H, G as R, H as I, I as x, J as E, K as V, L as v, M as G, N as U, O as w, Q as K, R as W, T as q, U as z, V as _, W as O, X, Y, Z as j, $ as J, a0 as Q, a1 as Z, a2 as $, a3 as aa, a4 as ea, a5 as sa, a6 as ia, a7 as oa, a8 as ra, a9 as la, aa as ta, ab as na, ac as pa, ad as ba, ae as da, af as ca, ag as ma, ah as Aa, ai as ua, aj as Fa, ak as Sa, al as ga, am as ya, an as Ba, ao as Ta, D as Ca, ap as La, aq as Da, ar as Pa, as as Ma, at as ka, au as Na, av as fa, aw as ha, ax as Ha, ay as Ra, az as Ia, aA as xa, aB as Ea, aC as Va, aD as va, aE as Ga, aF as Ua, aG as wa, aH as Ka, aI as Wa, aJ as qa, aK as za, aL as _a, aM as Oa, aN as Xa, aO as Ya, aP as ja, aQ as Ja, aR as Qa, aS as Za, aT as $a, aU as ae, aV as ee, aW as se, aX as ie, aY as oe, aZ as re, a_ as le, a$ as te, P as ne, b0 as pe, b1 as be, b2 as de, b3 as ce, b4 as me, b5 as Ae, b6 as ue, b7 as Fe, b8 as Se, b9 as ge, ba as ye, bb as Be, bc as Te, bd as Ce, be as Le, bf as De, bg as Pe, bh as Me, bi as ke, bj as Ne, bk as fe, S as he, bl as He, bm as Re, bn as Ie, bo as xe, a as Ee, bp as Ve, bq as ve, br as Ge, bs as Ue, bt as we, bu as Ke, bv as We, bw as qe, bx as ze, by as _e, bz as Oe, bA as Xe, bB as Ye, bC as je, bD as Je, bE as Qe, bF as Ze, bG as $e, bH as as, bI as es, bJ as ss, bK as is, bL as os, bM as rs, bN as ls, bO as ts, bP as ns, bQ as ps, bR as bs, bS as ds, bT as cs, bU as ms, bV as As, bW as us, bX as Fs, bY as Ss, bZ as gs, b_ as ys, b$ as Bs, c0 as Ts, c1 as Cs, c2 as Ls, c3 as Ds, c4 as Ps, c5 as Ms, u as ks, c6 as Ns, c7 as fs, c8 as hs, c9 as Hs, ca as Rs, cb as Is, cc as xs } from "./main-CWniLr0s.js";
2
2
  import "vue";
3
3
  export {
4
4
  i as Accordion,
@@ -10,9 +10,9 @@ export {
10
10
  p as AmeliproAccordionResultList,
11
11
  b as AmeliproAutoCompleteField,
12
12
  d as AmeliproBadge,
13
- m as AmeliproBreadcrumb,
14
- A as AmeliproBtn,
15
- c as AmeliproCallback,
13
+ c as AmeliproBreadcrumb,
14
+ m as AmeliproBtn,
15
+ A as AmeliproCallback,
16
16
  u as AmeliproCaptcha,
17
17
  F as AmeliproCard,
18
18
  S as AmeliproCarousel,
@@ -23,8 +23,8 @@ export {
23
23
  C as AmeliproContentLayout,
24
24
  L as AmeliproCopyBtn,
25
25
  D as AmeliproCustomSelector,
26
- M as AmeliproDentalChart,
27
- P as AmeliproDialog,
26
+ P as AmeliproDentalChart,
27
+ M as AmeliproDialog,
28
28
  k as AmeliproDisclosure,
29
29
  N as AmeliproErrorTemplate,
30
30
  f as AmeliproFilePreview,
@@ -64,9 +64,9 @@ export {
64
64
  pa as BackToTopBtn,
65
65
  ba as Captcha,
66
66
  da as ChipList,
67
- ma as CollapsibleList,
68
- Aa as ContextualMenu,
69
- ca as CookieBanner,
67
+ ca as CollapsibleList,
68
+ ma as ContextualMenu,
69
+ Aa as CookieBanner,
70
70
  ua as CookiesInformation,
71
71
  Fa as CookiesSelection,
72
72
  Sa as CookiesTable,
@@ -75,121 +75,124 @@ export {
75
75
  Ba as DataListGroup,
76
76
  Ta as DataListItem,
77
77
  Ca as DatePicker,
78
- La as DiacriticPicker,
79
- Da as DialogBox,
78
+ La as DeclarationAccessibilityPage,
79
+ Da as DiacriticPicker,
80
+ Pa as DialogBox,
80
81
  Ma as DownloadBtn,
81
- Pa as EMAIL_REGEXP,
82
- ka as ErrorPage,
83
- Na as ExternalLinks,
84
- fa as FileList,
85
- ha as FilePreview,
86
- Ha as FileUpload,
87
- Ra as FilterInline,
88
- Ia as FilterSideBar,
89
- xa as FooterBar,
90
- Ea as FranceConnectBtn,
91
- Va as HeaderBar,
92
- va as HeaderBurgerMenu,
93
- Ga as HeaderLoading,
94
- Ua as HeaderLogo,
95
- wa as HeaderMenuBtn,
96
- Ka as HeaderMenuItem,
97
- Wa as HeaderMenuSection,
98
- qa as HeaderNavigationBar,
99
- za as HeaderSubMenu,
100
- _a as HeaderToolbar,
101
- Oa as KEY_LENGTH,
102
- Xa as LangBtn,
103
- Ya as LocalStorageUtility,
104
- ja as Logo,
105
- Ja as LogoBrandSection,
106
- Qa as LunarCalendar,
107
- Za as MaintenancePage,
108
- $a as NUMBER_LENGTH,
109
- ae as NirField,
110
- ee as NotFoundPage,
111
- se as NotificationBar,
112
- ie as NotificationService,
113
- oe as PageContainer,
114
- re as PaginatedTable,
115
- le as PasswordField,
116
- te as PeriodField,
117
- ne as PhoneField,
118
- pe as RangeField,
119
- be as RatingPicker,
120
- de as SearchListField,
82
+ ka as EMAIL_REGEXP,
83
+ Na as ErrorPage,
84
+ fa as ExternalLinks,
85
+ ha as FileList,
86
+ Ha as FilePreview,
87
+ Ra as FileUpload,
88
+ Ia as FilterInline,
89
+ xa as FilterSideBar,
90
+ Ea as FooterBar,
91
+ Va as FranceConnectBtn,
92
+ va as HeaderBar,
93
+ Ga as HeaderBurgerMenu,
94
+ Ua as HeaderLoading,
95
+ wa as HeaderLogo,
96
+ Ka as HeaderMenuBtn,
97
+ Wa as HeaderMenuItem,
98
+ qa as HeaderMenuSection,
99
+ za as HeaderNavigationBar,
100
+ _a as HeaderSubMenu,
101
+ Oa as HeaderToolbar,
102
+ Xa as KEY_LENGTH,
103
+ Ya as LangBtn,
104
+ ja as LocalStorageUtility,
105
+ Ja as Logo,
106
+ Qa as LogoBrandSection,
107
+ Za as LunarCalendar,
108
+ $a as MaintenancePage,
109
+ ae as NUMBER_LENGTH,
110
+ ee as NirField,
111
+ se as NotFoundPage,
112
+ ie as NotificationBar,
113
+ oe as NotificationService,
114
+ re as PageContainer,
115
+ le as PaginatedTable,
116
+ te as PasswordField,
117
+ ne as PeriodField,
118
+ pe as PhoneField,
119
+ be as RangeField,
120
+ de as RatingPicker,
121
+ ce as SearchListField,
121
122
  me as SelectBtnField,
122
123
  Ae as ServiceMenu,
123
- ce as SkipLink,
124
- ue as SocialMediaLinks,
125
- Fe as StructureMenu,
126
- Se as SubHeader,
127
- ge as SyAlert,
128
- ye as SyAutocomplete,
129
- Be as SyBtnMenu,
130
- Te as SyCheckbox,
131
- Ce as SyForm,
132
- Le as SyIcon,
133
- De as SyInputSelect,
134
- Me as SyPagination,
135
- Pe as SyRadioGroup,
136
- ke as SySelect,
137
- Ne as SyServerTable,
138
- fe as SyTable,
139
- he as SyTabs,
140
- He as SyTextArea,
141
- Re as SyTextField,
142
- Ie as TableToolbar,
143
- xe as ToolbarContainer,
144
- Ee as UploadWorkflow,
145
- Ve as UserInformationSummary,
146
- ve as UserMenu,
147
- Ge as UserMenuBtn,
148
- Ue as calcHumanFileSize,
149
- we as checkNIR,
150
- Ke as computeNIRKey,
151
- We as convertToUnit,
152
- qe as copyToClipboard,
153
- ze as deepCopy,
154
- _e as doMatchPatternFn,
155
- Oe as downloadFile,
156
- Xe as formatDate,
157
- Ye as formatNir,
158
- je as indicatifs,
159
- Je as isDateAfter,
160
- Qe as isDateBefore,
161
- Ze as isDateInRange,
162
- $e as isDateValid,
163
- as as isDateValidFn,
164
- es as isDateValidUtil,
165
- ss as isEmailValid,
166
- is as isExactLengthFn,
167
- os as isHolidayDay,
168
- rs as isHolidayDayFn,
169
- ls as isMaxLengthFn,
170
- ts as isMinLengthFn,
171
- ns as isNIRKeyValid,
172
- ps as isNotAfterDateFn,
173
- bs as isNotAfterToday,
174
- ds as isNotAfterTodayFn,
175
- ms as isNotBeforeDateFn,
176
- As as isNotBeforeToday,
177
- cs as isNotBeforeTodayFn,
178
- us as isRequired,
179
- Fs as isRequiredFn,
180
- Ss as isValidEmail,
181
- gs as isValidEmailFn,
182
- ys as isWeekend,
183
- Bs as parseDate,
184
- Ts as propValidator,
185
- Cs as ruleMessage,
186
- Ls as throttleDisplayFn,
187
- Ds as useDateFormat,
188
- Ms as useFieldValidation,
189
- Ps as useNotificationService,
190
- ks as usePagination,
191
- Ns as useValidatable,
192
- fs as useValidation,
193
- hs as useWidthable,
194
- Hs as vRgaaSvgFix
124
+ ue as SkipLink,
125
+ Fe as SocialMediaLinks,
126
+ Se as StatusPage,
127
+ ge as StructureMenu,
128
+ ye as SubHeader,
129
+ Be as SyAlert,
130
+ Te as SyAutocomplete,
131
+ Ce as SyBtnMenu,
132
+ Le as SyCheckBoxGroup,
133
+ De as SyCheckbox,
134
+ Pe as SyForm,
135
+ Me as SyIcon,
136
+ ke as SyInputSelect,
137
+ Ne as SyPagination,
138
+ fe as SyRadioGroup,
139
+ he as SySelect,
140
+ He as SyServerTable,
141
+ Re as SyTable,
142
+ Ie as SyTabs,
143
+ xe as SyTextArea,
144
+ Ee as SyTextField,
145
+ Ve as TableToolbar,
146
+ ve as ToolbarContainer,
147
+ Ge as UploadWorkflow,
148
+ Ue as UserInformationSummary,
149
+ we as UserMenu,
150
+ Ke as UserMenuBtn,
151
+ We as calcHumanFileSize,
152
+ qe as checkNIR,
153
+ ze as computeNIRKey,
154
+ _e as convertToUnit,
155
+ Oe as copyToClipboard,
156
+ Xe as deepCopy,
157
+ Ye as doMatchPatternFn,
158
+ je as downloadFile,
159
+ Je as formatDate,
160
+ Qe as formatNir,
161
+ Ze as indicatifs,
162
+ $e as isDateAfter,
163
+ as as isDateBefore,
164
+ es as isDateInRange,
165
+ ss as isDateValid,
166
+ is as isDateValidFn,
167
+ os as isDateValidUtil,
168
+ rs as isEmailValid,
169
+ ls as isExactLengthFn,
170
+ ts as isHolidayDay,
171
+ ns as isHolidayDayFn,
172
+ ps as isMaxLengthFn,
173
+ bs as isMinLengthFn,
174
+ ds as isNIRKeyValid,
175
+ cs as isNotAfterDateFn,
176
+ ms as isNotAfterToday,
177
+ As as isNotAfterTodayFn,
178
+ us as isNotBeforeDateFn,
179
+ Fs as isNotBeforeToday,
180
+ Ss as isNotBeforeTodayFn,
181
+ gs as isRequired,
182
+ ys as isRequiredFn,
183
+ Bs as isValidEmail,
184
+ Ts as isValidEmailFn,
185
+ Cs as isWeekend,
186
+ Ls as parseDate,
187
+ Ds as propValidator,
188
+ Ps as ruleMessage,
189
+ Ms as throttleDisplayFn,
190
+ ks as useDateFormat,
191
+ Ns as useFieldValidation,
192
+ fs as useNotificationService,
193
+ hs as usePagination,
194
+ Hs as useValidatable,
195
+ Rs as useValidation,
196
+ Is as useWidthable,
197
+ xs as vRgaaSvgFix
195
198
  };