@cnamts/synapse 0.0.5-alpha → 0.0.7-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.
Files changed (229) hide show
  1. package/dist/design-system-v3.d.ts +487 -415
  2. package/dist/design-system-v3.js +2954 -2203
  3. package/dist/design-system-v3.umd.cjs +6 -6
  4. package/dist/style.css +1 -1
  5. package/package.json +17 -17
  6. package/src/assets/settings.scss +3 -0
  7. package/src/assets/tokens.scss +16 -16
  8. package/src/components/BackBtn/AccessibiliteItems.ts +0 -30
  9. package/src/components/BackBtn/BackBtn.mdx +1 -1
  10. package/src/components/BackBtn/BackBtn.stories.ts +12 -9
  11. package/src/components/BackBtn/BackBtn.vue +0 -1
  12. package/src/components/BackToTopBtn/AccessibiliteItems.ts +0 -30
  13. package/src/components/BackToTopBtn/BackToTopBtn.mdx +1 -1
  14. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +3 -3
  15. package/src/components/CollapsibleList/Accessibilite.stories.ts +4 -0
  16. package/src/components/CollapsibleList/AccessibiliteItems.ts +55 -62
  17. package/src/components/CollapsibleList/CollapsibleList.stories.ts +1 -1
  18. package/src/components/CookieBanner/Accessibilite.stories.ts +219 -0
  19. package/src/components/CookieBanner/AccessibiliteItems.ts +356 -0
  20. package/src/components/CookieBanner/CookieBanner.mdx +219 -0
  21. package/src/components/CookieBanner/CookieBanner.stories.ts +680 -0
  22. package/src/components/CookieBanner/CookieBanner.vue +225 -0
  23. package/src/components/CookieBanner/config.ts +38 -0
  24. package/src/components/CookieBanner/locales.ts +12 -0
  25. package/src/components/CookieBanner/tests/CookieBanner.spec.ts +129 -0
  26. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +197 -0
  27. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +123 -0
  28. package/src/components/CookiesSelection/CookiesInformation/locales.ts +21 -0
  29. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +121 -0
  30. package/src/components/CookiesSelection/CookiesSelection.vue +127 -0
  31. package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +47 -0
  32. package/src/components/CookiesSelection/CookiesTable/headers.ts +14 -0
  33. package/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.ts +30 -0
  34. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +3 -0
  35. package/src/components/CookiesSelection/locales.ts +10 -0
  36. package/src/components/CookiesSelection/tests/CookiesSelection.spec.ts +184 -0
  37. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +192 -0
  38. package/src/components/CookiesSelection/types.ts +15 -0
  39. package/src/components/CopyBtn/AccessibiliteItems.ts +0 -30
  40. package/src/components/CopyBtn/CopyBtn.mdx +1 -1
  41. package/src/components/CopyBtn/CopyBtn.stories.ts +9 -6
  42. package/src/components/CopyBtn/CopyBtn.vue +0 -1
  43. package/src/components/Customs/SyBtnSelect/Accessibilite.mdx +14 -0
  44. package/src/components/Customs/SyBtnSelect/Accessibilite.stories.ts +193 -0
  45. package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +139 -0
  46. package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +3 -2
  47. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +30 -14
  48. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +21 -13
  49. package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +4 -0
  50. package/src/components/Customs/SyInputSelect/Accessibilite.mdx +14 -0
  51. package/src/components/Customs/SyInputSelect/Accessibilite.stories.ts +166 -0
  52. package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +96 -0
  53. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +7 -3
  54. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +24 -65
  55. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +36 -4
  56. package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +4 -0
  57. package/src/components/Customs/SySelect/Accessibilite.mdx +14 -0
  58. package/src/components/Customs/SySelect/Accessibilite.stories.ts +217 -0
  59. package/src/components/Customs/SySelect/AccessibiliteItems.ts +173 -0
  60. package/src/components/Customs/SySelect/SySelect.mdx +4 -4
  61. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -60
  62. package/src/components/Customs/SySelect/SySelect.vue +35 -8
  63. package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +4 -0
  64. package/src/components/Customs/SyTextField/Accessibilite.mdx +14 -0
  65. package/src/components/Customs/SyTextField/Accessibilite.stories.ts +224 -0
  66. package/src/components/Customs/SyTextField/AccessibiliteItems.ts +198 -0
  67. package/src/components/Customs/SyTextField/SyTextField.mdx +1 -1
  68. package/src/components/Customs/SyTextField/SyTextField.stories.ts +118 -7
  69. package/src/components/Customs/SyTextField/SyTextField.vue +27 -7
  70. package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +4 -0
  71. package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +2 -1
  72. package/src/components/DataList/Accessibilite.mdx +14 -0
  73. package/src/components/DataList/Accessibilite.stories.ts +166 -0
  74. package/src/components/DataList/AccessibiliteItems.ts +47 -0
  75. package/src/components/DataList/DataList.mdx +1 -1
  76. package/src/components/DataList/DataList.stories.ts +10 -10
  77. package/src/components/DataList/constants/ExpertiseLevelEnum.ts +4 -0
  78. package/src/components/DataListGroup/Accessibilite.mdx +14 -0
  79. package/src/components/DataListGroup/Accessibilite.stories.ts +225 -0
  80. package/src/components/DataListGroup/AccessibiliteItems.ts +79 -0
  81. package/src/components/DataListGroup/DataListGroup.mdx +1 -1
  82. package/src/components/DataListGroup/DataListGroup.stories.ts +7 -7
  83. package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +4 -0
  84. package/src/components/DialogBox/Accessibilite.mdx +14 -0
  85. package/src/components/DialogBox/Accessibilite.stories.ts +189 -0
  86. package/src/components/DialogBox/AccessibiliteItems.ts +167 -0
  87. package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +4 -0
  88. package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -31
  89. package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
  90. package/src/components/DownloadBtn/DownloadBtn.stories.ts +25 -26
  91. package/src/components/ErrorPage/Accessibilite.mdx +14 -0
  92. package/src/components/ErrorPage/Accessibilite.stories.ts +189 -0
  93. package/src/components/ErrorPage/AccessibiliteItems.ts +205 -0
  94. package/src/components/ErrorPage/ErrorPage.vue +1 -1
  95. package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +4 -0
  96. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
  97. package/src/components/FooterBar/Accessibilite.mdx +14 -0
  98. package/src/components/FooterBar/Accessibilite.stories.ts +223 -0
  99. package/src/components/FooterBar/AccessibiliteItems.ts +257 -0
  100. package/src/components/FooterBar/FooterBar.mdx +2 -2
  101. package/src/components/FooterBar/FooterBar.stories.ts +14 -14
  102. package/src/components/FooterBar/FooterBar.vue +86 -75
  103. package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +4 -0
  104. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +22 -20
  105. package/src/components/FranceConnectBtn/AccessibiliteItems.ts +0 -30
  106. package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
  107. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +5 -4
  108. package/src/components/HeaderBar/Accessibilite.mdx +14 -0
  109. package/src/components/HeaderBar/Accessibilite.stories.ts +223 -0
  110. package/src/components/HeaderBar/AccessibiliteItems.ts +194 -0
  111. package/src/components/HeaderBar/HeaderBar.stories.ts +19 -12
  112. package/src/components/HeaderBar/HeaderBar.vue +9 -12
  113. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +14 -0
  114. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +223 -0
  115. package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +174 -0
  116. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.vue +1 -0
  117. package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +4 -0
  118. package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +4 -0
  119. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +1 -1
  120. package/src/components/HeaderLoading/Accessibilite.mdx +14 -0
  121. package/src/components/HeaderLoading/Accessibilite.stories.ts +167 -0
  122. package/src/components/HeaderLoading/AccessibiliteItems.ts +29 -0
  123. package/src/components/HeaderLoading/HeaderLoading.mdx +1 -1
  124. package/src/components/HeaderLoading/HeaderLoading.stories.ts +1 -1
  125. package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +4 -0
  126. package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +104 -32
  127. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +35 -33
  128. package/src/components/HeaderToolbar/Accessibilite.mdx +14 -0
  129. package/src/components/HeaderToolbar/Accessibilite.stories.ts +203 -0
  130. package/src/components/HeaderToolbar/AccessibiliteItems.ts +200 -0
  131. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  132. package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +2 -2
  133. package/src/components/HeaderToolbar/HeaderToolbar.vue +24 -1
  134. package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +4 -0
  135. package/src/components/LangBtn/Accessibilite.stories.ts +3 -1
  136. package/src/components/LangBtn/AccessibiliteItems.ts +0 -31
  137. package/src/components/LangBtn/LangBtn.mdx +1 -1
  138. package/src/components/LangBtn/LangBtn.stories.ts +4 -4
  139. package/src/components/LangBtn/LangBtn.vue +3 -2
  140. package/src/components/Logo/Accessibilite.mdx +14 -0
  141. package/src/components/Logo/Accessibilite.stories.ts +223 -0
  142. package/src/components/Logo/AccessibiliteItems.ts +155 -0
  143. package/src/components/Logo/Logo.mdx +1 -1
  144. package/src/components/Logo/Logo.stories.ts +8 -8
  145. package/src/components/Logo/constants/ExpertiseLevelEnum.ts +4 -0
  146. package/src/components/LogoBrandSection/Accessibilite.mdx +14 -0
  147. package/src/components/LogoBrandSection/Accessibilite.stories.ts +223 -0
  148. package/src/components/LogoBrandSection/AccessibiliteItems.ts +194 -0
  149. package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +4 -0
  150. package/src/components/MaintenancePage/Accessibilite.mdx +14 -0
  151. package/src/components/MaintenancePage/Accessibilite.stories.ts +189 -0
  152. package/src/components/MaintenancePage/AccessibiliteItems.ts +173 -0
  153. package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +4 -0
  154. package/src/components/NirField/Accessibilite.mdx +14 -0
  155. package/src/components/NirField/Accessibilite.stories.ts +214 -0
  156. package/src/components/NirField/AccessibiliteItems.ts +243 -0
  157. package/src/components/NirField/NirField.mdx +213 -0
  158. package/src/components/NirField/NirField.stories.ts +412 -0
  159. package/src/components/NirField/NirField.vue +453 -0
  160. package/src/components/NirField/config.ts +16 -0
  161. package/src/components/NirField/constants/ExpertiseLevelEnum.ts +4 -0
  162. package/src/components/NirField/locales.ts +12 -0
  163. package/src/components/NirField/nirValidation.ts +42 -0
  164. package/src/components/NirField/tests/NirField.spec.ts +120 -0
  165. package/src/components/NotFoundPage/Accessibilite.mdx +14 -0
  166. package/src/components/NotFoundPage/Accessibilite.stories.ts +190 -0
  167. package/src/components/NotFoundPage/AccessibiliteItems.ts +205 -0
  168. package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +4 -0
  169. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +4 -4
  170. package/src/components/NotificationBar/AccessibiliteItems.ts +0 -30
  171. package/src/components/NotificationBar/NotificationBar.mdx +1 -1
  172. package/src/components/PageContainer/PageContainer.mdx +1 -1
  173. package/src/components/PageContainer/PageContainer.stories.ts +9 -9
  174. package/src/components/PageContainer/PageContainer.vue +24 -18
  175. package/src/components/PageContainer/tests/PageContainer.spec.ts +2 -2
  176. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +2 -2
  177. package/src/components/PhoneField/Accessibilite.mdx +14 -0
  178. package/src/components/PhoneField/Accessibilite.stories.ts +216 -0
  179. package/src/components/PhoneField/AccessibiliteItems.ts +238 -0
  180. package/src/components/PhoneField/PhoneField.mdx +1 -1
  181. package/src/components/PhoneField/PhoneField.stories.ts +2 -2
  182. package/src/components/PhoneField/PhoneField.vue +0 -1
  183. package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +4 -0
  184. package/src/components/SkipLink/Accessibilite.stories.ts +1 -1
  185. package/src/components/SkipLink/SkipLink.stories.ts +2 -2
  186. package/src/components/SocialMediaLinks/Accessibilite.mdx +14 -0
  187. package/src/components/SocialMediaLinks/Accessibilite.stories.ts +170 -0
  188. package/src/components/SocialMediaLinks/AccessibiliteItems.ts +160 -0
  189. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +1 -1
  190. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +1 -1
  191. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +7 -1
  192. package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +4 -0
  193. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
  194. package/src/components/SubHeader/Accessibilite.mdx +14 -0
  195. package/src/components/SubHeader/Accessibilite.stories.ts +166 -0
  196. package/src/components/SubHeader/AccessibiliteItems.ts +146 -0
  197. package/src/components/SubHeader/SubHeader.mdx +1 -1
  198. package/src/components/SubHeader/SubHeader.stories.ts +17 -14
  199. package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +4 -0
  200. package/src/components/SyAlert/Accessibilite.mdx +14 -0
  201. package/src/components/{Alert → SyAlert}/Accessibilite.stories.ts +1 -1
  202. package/src/components/{Alert → SyAlert}/AccessibiliteItems.ts +2 -32
  203. package/src/components/{Alert/Alert.mdx → SyAlert/SyAlert.mdx} +9 -9
  204. package/src/components/{Alert/Alert.stories.ts → SyAlert/SyAlert.stories.ts} +22 -22
  205. package/src/components/{Alert/Alert.vue → SyAlert/SyAlert.vue} +7 -0
  206. package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +4 -0
  207. package/src/components/{Alert/tests/Alert.spec.ts → SyAlert/tests/SyAlert.spec.ts} +5 -5
  208. package/src/components/{Alert/tests/__snapshots__/Alert.spec.ts.snap → SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap} +2 -2
  209. package/src/components/UserMenuBtn/Accessibilite.mdx +14 -0
  210. package/src/components/UserMenuBtn/Accessibilite.stories.ts +189 -0
  211. package/src/components/UserMenuBtn/AccessibiliteItems.ts +155 -0
  212. package/src/components/UserMenuBtn/UserMenuBtn.mdx +17 -17
  213. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +121 -19
  214. package/src/components/UserMenuBtn/UserMenuBtn.vue +25 -29
  215. package/src/components/UserMenuBtn/config.ts +1 -1
  216. package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +4 -0
  217. package/src/components/index.ts +11 -4
  218. package/src/composables/rules/tests/useFieldValidation.spec.ts +60 -58
  219. package/src/composables/rules/useFieldValidation.ts +65 -28
  220. package/src/main.ts +1 -0
  221. package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +67 -79
  222. package/src/stories/GuideDuDev/components.stories.ts +5 -5
  223. package/src/stories/GuideDuDev/moduleDeNotification.mdx +1 -1
  224. package/src/stories/Guidelines/Vuetify/Vuetify.mdx +11 -0
  225. package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +138 -0
  226. package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +350 -0
  227. /package/src/components/{Alert → CookieBanner}/Accessibilite.mdx +0 -0
  228. /package/src/components/{Alert → CookieBanner}/constants/ExpertiseLevelEnum.ts +0 -0
  229. /package/src/components/{Alert → SyAlert}/locales.ts +0 -0
@@ -1,3 +1,4 @@
1
+ import { AllLanguagesChar } from './types';
1
2
  import { AxiosResponse } from 'axios';
2
3
  import { ColorType } from './types';
3
4
  import { ComponentOptionsMixin } from 'vue';
@@ -14,6 +15,7 @@ import { IconType } from './types';
14
15
  import { LinkItem } from './types';
15
16
  import { ListItem } from './types';
16
17
  import { MenuItem } from './types';
18
+ import { ModelRef } from 'vue';
17
19
  import { PropType } from 'vue';
18
20
  import { PublicProps } from 'vue';
19
21
  import { Ref } from 'vue';
@@ -26,42 +28,83 @@ import { SocialMediaLink } from '../SocialMediaLinks/types';
26
28
  import { SocialMediaLink as SocialMediaLink_2 } from './types';
27
29
  import { VariantStyle } from './types';
28
30
 
29
- declare type __VLS_PublicProps = {
30
- modelValue?: boolean;
31
- } & typeof __VLS_typeProps;
32
-
33
- declare type __VLS_PublicProps_2 = {
34
- modelValue?: boolean;
35
- } & typeof __VLS_typeProps_2;
36
-
37
- declare type __VLS_PublicProps_3 = {
38
- modelValue?: boolean;
39
- };
40
-
41
- declare type __VLS_PublicProps_4 = {
42
- modelValue?: boolean;
43
- };
44
-
45
- declare type __VLS_PublicProps_5 = {
46
- 'burgerMenu'?: boolean;
47
- } & typeof __VLS_typeProps_3;
48
-
49
- declare let __VLS_typeProps: {
31
+ declare type __VLS_Props = {
50
32
  type?: 'success' | 'info' | 'warning' | 'error';
51
33
  closable?: boolean;
52
34
  variant?: 'tonal' | 'outlined';
53
35
  };
54
36
 
55
- declare let __VLS_typeProps_2: {
37
+ declare type __VLS_Props_10 = Props_2 & CustomizableOptions;
38
+
39
+ declare type __VLS_Props_11 = {
40
+ pageTitle?: string;
41
+ message?: string;
42
+ code?: string;
43
+ codeErrorText?: string;
44
+ btnText?: string;
45
+ btnHref?: string;
46
+ btnLink?: RouteRecordRaw | string;
47
+ hideBtn?: boolean;
48
+ };
49
+
50
+ declare type __VLS_Props_12 = CustomizableOptions & {
51
+ a11yCompliance?: string;
52
+ linkItems?: LinkItem[] | null;
53
+ items?: LinkItem[] | null;
54
+ sitemapRoute?: RouteLocationRaw;
55
+ cguRoute?: RouteLocationRaw;
56
+ cookiesRoute?: RouteLocationRaw;
57
+ legalNoticeRoute?: RouteLocationRaw;
58
+ a11yStatementRoute?: RouteLocationRaw;
59
+ hideSitemapLink?: boolean;
60
+ hideCguLink?: boolean;
61
+ hideCookiesLink?: boolean;
62
+ hideLegalNoticeLink?: boolean;
63
+ hideA11yLink?: boolean;
64
+ version?: string | undefined;
65
+ hideLogo?: boolean;
66
+ hideSocialMediaLinks?: boolean;
67
+ socialMediaLinks?: SocialMediaLink[];
68
+ light?: boolean;
69
+ };
70
+
71
+ declare type __VLS_Props_13 = {
72
+ href: string;
73
+ isConnectPlus?: boolean;
74
+ dark?: boolean;
75
+ };
76
+
77
+ declare type __VLS_Props_14 = {
78
+ /** Keep the header visible */
79
+ sticky?: boolean;
80
+ /**
81
+ * Show the header at sticky only when the user scroll up in mobile
82
+ * Need 'sticky' at true,
83
+ */
84
+ hideWhenDown?: boolean;
85
+ homeLink?: {
86
+ ariaLabel?: string;
87
+ to?: RouteLocationRaw;
88
+ href?: string;
89
+ };
90
+ } & LogoProps;
91
+
92
+ declare type __VLS_Props_15 = {
56
93
  title?: string;
57
- width?: string;
58
- cancelBtnText?: string;
59
- confirmBtnText?: string;
60
- hideActions?: boolean;
61
- persistent?: boolean;
62
- } & CustomizableOptions;
94
+ };
63
95
 
64
- declare let __VLS_typeProps_3: CustomizableOptions & {
96
+ declare type __VLS_Props_16 = {
97
+ ariaLabel?: string;
98
+ serviceTitle?: string;
99
+ serviceSubtitle?: string;
100
+ homeLink?: {
101
+ ariaLabel?: string;
102
+ to?: RouteLocationRaw;
103
+ href?: string;
104
+ };
105
+ };
106
+
107
+ declare type __VLS_Props_17 = CustomizableOptions & {
65
108
  homeAriaLabel?: string;
66
109
  serviceTitle?: string;
67
110
  serviceSubtitle?: string;
@@ -88,6 +131,192 @@ declare let __VLS_typeProps_3: CustomizableOptions & {
88
131
  items?: NavigationItem[];
89
132
  };
90
133
 
134
+ declare type __VLS_Props_18 = CustomizableOptions & {
135
+ modelValue?: string;
136
+ hideDownArrow?: boolean;
137
+ ariaLabel?: string;
138
+ ariaOwns?: string;
139
+ availableLanguages?: string[] | AllLanguagesChar;
140
+ };
141
+
142
+ declare type __VLS_Props_19 = {
143
+ theme?: Theme;
144
+ serviceTitle?: string;
145
+ serviceSubTitle?: string;
146
+ mobileVersion?: boolean;
147
+ reduceLogo?: boolean;
148
+ homeLink?: {
149
+ ariaLabel?: string;
150
+ to?: RouteLocationRaw;
151
+ href?: string;
152
+ };
153
+ };
154
+
155
+ declare type __VLS_Props_2 = {
156
+ hideBackIcon?: boolean;
157
+ dark?: boolean;
158
+ };
159
+
160
+ declare type __VLS_Props_20 = CustomizableOptions & {
161
+ modelValue?: string | undefined;
162
+ outlined?: boolean;
163
+ required?: boolean;
164
+ nirTooltip?: string;
165
+ keyTooltip?: string;
166
+ numberLabel?: string;
167
+ keyLabel?: string;
168
+ displayKey?: boolean;
169
+ showSuccessMessages?: boolean;
170
+ customNumberRules?: any;
171
+ customKeyRules?: any;
172
+ };
173
+
174
+ declare type __VLS_Props_21 = CustomizableOptions & {
175
+ closeBtnText?: string;
176
+ rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped';
177
+ bottom?: true | false;
178
+ };
179
+
180
+ declare type __VLS_Props_22 = {
181
+ size?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
182
+ spacing?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
183
+ color?: string;
184
+ };
185
+
186
+ declare type __VLS_Props_23 = {
187
+ label?: string;
188
+ target?: string;
189
+ };
190
+
191
+ declare type __VLS_Props_24 = CustomizableOptions & Widthable & {
192
+ hideBackBtn?: boolean;
193
+ backBtnText?: string;
194
+ titleText?: string;
195
+ subTitleText?: string;
196
+ dataListGroupItems?: DataListGroupItems_2 | undefined;
197
+ loading?: boolean;
198
+ renderHtmlValue?: boolean;
199
+ };
200
+
201
+ declare type __VLS_Props_25 = CustomizableOptions & {
202
+ menuItems?: MenuItem_2[];
203
+ additionalInformation?: string;
204
+ fullName?: string;
205
+ hideLogoutBtn?: boolean;
206
+ isMobileView?: boolean;
207
+ hideUserIcon?: boolean;
208
+ };
209
+
210
+ declare type __VLS_Props_26 = CustomizableOptions & {
211
+ items?: CookiesItems;
212
+ };
213
+
214
+ declare type __VLS_Props_27 = {
215
+ items: CookiesItems;
216
+ };
217
+
218
+ declare type __VLS_Props_28 = {
219
+ type: CookieTypes;
220
+ tableItems: Cookie[];
221
+ };
222
+
223
+ declare type __VLS_Props_29 = {
224
+ items: Cookie[];
225
+ };
226
+
227
+ declare type __VLS_Props_3 = Props & CustomizableOptions;
228
+
229
+ declare type __VLS_Props_4 = {
230
+ listTitle: string | null;
231
+ items: ListItem[];
232
+ };
233
+
234
+ declare type __VLS_Props_5 = CustomizableOptions & {
235
+ ariaLabel?: string;
236
+ ariaOwns?: string;
237
+ textToCopy: (() => string) | string;
238
+ hideTooltip?: boolean;
239
+ tooltipDuration?: number;
240
+ };
241
+
242
+ declare type __VLS_Props_6 = CustomizableOptions & {
243
+ modelValue?: Record<string, unknown> | string | null;
244
+ items?: Record<string, unknown>[] | string[];
245
+ textKey?: string;
246
+ valueKey?: string;
247
+ label?: string;
248
+ outlined?: boolean;
249
+ required?: boolean;
250
+ errorMessages?: string | string[];
251
+ isHeaderToolbar?: boolean;
252
+ };
253
+
254
+ declare type __VLS_Props_7 = {
255
+ prependIcon?: IconType;
256
+ appendIcon?: IconType;
257
+ prependInnerIcon?: IconType;
258
+ appendInnerIcon?: IconType;
259
+ variantStyle?: VariantStyle;
260
+ color?: ColorType;
261
+ isClearable?: boolean;
262
+ showDivider?: boolean;
263
+ label?: string;
264
+ required?: boolean;
265
+ errorMessages?: string[];
266
+ };
267
+
268
+ declare type __VLS_Props_8 = CustomizableOptions & {
269
+ label: string;
270
+ value?: string | number;
271
+ action?: string;
272
+ placeholder?: string;
273
+ chip?: boolean;
274
+ icon?: string;
275
+ row?: boolean;
276
+ renderHtmlValue?: boolean;
277
+ };
278
+
279
+ declare type __VLS_Props_9 = {
280
+ title?: string;
281
+ width?: string;
282
+ cancelBtnText?: string;
283
+ confirmBtnText?: string;
284
+ hideActions?: boolean;
285
+ persistent?: boolean;
286
+ } & CustomizableOptions;
287
+
288
+ declare type __VLS_PublicProps = {
289
+ modelValue?: boolean;
290
+ } & __VLS_Props;
291
+
292
+ declare type __VLS_PublicProps_2 = {
293
+ modelValue?: boolean;
294
+ } & __VLS_Props_9;
295
+
296
+ declare type __VLS_PublicProps_3 = {
297
+ modelValue?: boolean;
298
+ };
299
+
300
+ declare type __VLS_PublicProps_4 = {
301
+ modelValue?: boolean;
302
+ };
303
+
304
+ declare type __VLS_PublicProps_5 = {
305
+ 'burgerMenu'?: boolean;
306
+ } & __VLS_Props_17;
307
+
308
+ declare type __VLS_PublicProps_6 = {
309
+ modelValue?: MenuItem_2 | null;
310
+ } & __VLS_Props_25;
311
+
312
+ declare type __VLS_PublicProps_7 = {
313
+ modelValue?: typeof active['value'];
314
+ } & __VLS_Props_26;
315
+
316
+ declare type __VLS_PublicProps_8 = {
317
+ modelValue?: boolean | undefined;
318
+ } & __VLS_Props_28;
319
+
91
320
  declare type __VLS_WithTemplateSlots<T, S> = T & {
92
321
  new (): {
93
322
  $slots: S;
@@ -196,12 +425,42 @@ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
196
425
  };
197
426
  };
198
427
 
428
+ declare type __VLS_WithTemplateSlots_26<T, S> = T & {
429
+ new (): {
430
+ $slots: S;
431
+ };
432
+ };
433
+
434
+ declare type __VLS_WithTemplateSlots_27<T, S> = T & {
435
+ new (): {
436
+ $slots: S;
437
+ };
438
+ };
439
+
440
+ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
441
+ new (): {
442
+ $slots: S;
443
+ };
444
+ };
445
+
446
+ declare type __VLS_WithTemplateSlots_29<T, S> = T & {
447
+ new (): {
448
+ $slots: S;
449
+ };
450
+ };
451
+
199
452
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
200
453
  new (): {
201
454
  $slots: S;
202
455
  };
203
456
  };
204
457
 
458
+ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
459
+ new (): {
460
+ $slots: S;
461
+ };
462
+ };
463
+
205
464
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
206
465
  new (): {
207
466
  $slots: S;
@@ -238,34 +497,14 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
238
497
  };
239
498
  };
240
499
 
241
- export declare const Alert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
242
- prependIcon: ComputedRef<string>;
243
- dismissAlert: typeof dismissAlert;
244
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
245
- "update:modelValue": (modelValue: boolean) => any;
246
- }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
247
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
248
- }>, {
249
- type: "error" | "success" | "info" | "warning";
250
- closable: boolean;
251
- variant: "tonal" | "outlined";
252
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
253
- icon?(_: {}): any;
254
- default?(_: {}): any;
255
- }>;
500
+ declare const active: ModelRef<boolean, string, boolean, boolean>;
256
501
 
257
- export declare const BackBtn: __VLS_WithTemplateSlots_2<DefineComponent< {
258
- hideBackIcon?: boolean | undefined;
259
- dark?: boolean | undefined;
260
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
261
- hideBackIcon?: boolean | undefined;
262
- dark?: boolean | undefined;
263
- }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
502
+ export declare const BackBtn: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
264
503
  icon?(_: {}): any;
265
504
  default?(_: {}): any;
266
505
  }>;
267
506
 
268
- export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<Props & CustomizableOptions, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props & CustomizableOptions> & Readonly<{}>, {
507
+ export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
269
508
  target: string;
270
509
  threshold: number;
271
510
  nudgeRight: string | number;
@@ -275,40 +514,76 @@ nudgeBottom: string | number;
275
514
  icon?(_: {}): any;
276
515
  }>;
277
516
 
278
- export declare const CollapsibleList: DefineComponent< {
279
- listTitle: string | null;
280
- items: ListItem[];
281
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
282
- listTitle: string | null;
283
- items: ListItem[];
284
- }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
517
+ export declare function checkNIR(nir: string): boolean;
518
+
519
+ export declare const CollapsibleList: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
285
520
 
286
521
  declare type ComponentsProps = Record<string, PropsList>;
287
522
 
523
+ export declare function computeNIRKey(nir: string): string;
524
+
525
+ declare interface Cookie {
526
+ name: string;
527
+ description?: string;
528
+ conservation: string;
529
+ }
530
+
531
+ export declare const CookieBanner: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
532
+ submit: (...args: any[]) => void;
533
+ accept: (...args: any[]) => void;
534
+ reject: (...args: any[]) => void;
535
+ customize: (...args: any[]) => void;
536
+ "update:modelValue": (value: boolean) => void;
537
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
538
+ onSubmit?: ((...args: any[]) => any) | undefined;
539
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
540
+ onAccept?: ((...args: any[]) => any) | undefined;
541
+ onReject?: ((...args: any[]) => any) | undefined;
542
+ onCustomize?: ((...args: any[]) => any) | undefined;
543
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<NonNullable<string | number>, (_: {
544
+ cookie: Cookie;
545
+ }) => any>> & {
546
+ default?(_: {}): any;
547
+ }>;
548
+
549
+ export declare const CookiesInformation: __VLS_WithTemplateSlots_29<DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
550
+ "update:modelValue": (value: boolean | undefined) => any;
551
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
552
+ "onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
553
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Partial<Record<NonNullable<string | number>, (_: {
554
+ cookie: Cookie;
555
+ }) => any>>>;
556
+
557
+ declare type CookiesItems = {
558
+ [key in CookieTypes]?: Cookie[];
559
+ };
560
+
561
+ export declare const CookiesSelection: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
562
+ submit: (preferences: Partial<Preferences>) => any;
563
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
564
+ onSubmit?: ((preferences: Partial<Preferences>) => any) | undefined;
565
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<NonNullable<string | number>, (_: {
566
+ cookie: Cookie;
567
+ }) => any>>>;
568
+
569
+ export declare const CookiesTable: __VLS_WithTemplateSlots_30<DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<string, (_: {
570
+ cookie: Cookie;
571
+ }) => any>>>;
572
+
573
+ declare type CookieTypes = 'essentials' | 'functional' | 'analytics';
574
+
288
575
  declare function copy(): void;
289
576
 
290
- export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<CustomizableOptions & {
291
- ariaLabel?: string | undefined;
292
- ariaOwns?: string | undefined;
293
- textToCopy: string | (() => string);
294
- hideTooltip?: boolean | undefined;
295
- tooltipDuration?: number | undefined;
296
- }, {
577
+ export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Props_5, {
297
578
  copy: typeof copy;
298
579
  tooltip: Ref<boolean, boolean>;
299
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
300
- ariaLabel?: string | undefined;
301
- ariaOwns?: string | undefined;
302
- textToCopy: string | (() => string);
303
- hideTooltip?: boolean | undefined;
304
- tooltipDuration?: number | undefined;
305
- }> & Readonly<{}>, {
580
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
306
581
  ariaLabel: string;
307
582
  ariaOwns: string;
308
583
  textToCopy: string | (() => string);
309
584
  hideTooltip: boolean;
310
585
  tooltipDuration: number;
311
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
586
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
312
587
  icon?(_: {}): any;
313
588
  tooltip?(_: {}): any;
314
589
  }>;
@@ -440,7 +715,7 @@ icons: DataListIcons | undefined;
440
715
  titleClass: string;
441
716
  itemsNumberLoading: number;
442
717
  headingLoading: boolean;
443
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
718
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
444
719
  title?(_: {}): any;
445
720
  }>;
446
721
 
@@ -495,29 +770,11 @@ loading: boolean;
495
770
  renderHtmlValue: boolean;
496
771
  itemWidth: string;
497
772
  icons: DataListIcons_2 | undefined;
498
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
773
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
499
774
 
500
- export declare const DataListItem: __VLS_WithTemplateSlots_8<DefineComponent<CustomizableOptions & {
501
- label: string;
502
- value?: string | number | undefined;
503
- action?: string | undefined;
504
- placeholder?: string | undefined;
505
- chip?: boolean | undefined;
506
- icon?: string | undefined;
507
- row?: boolean | undefined;
508
- renderHtmlValue?: boolean | undefined;
509
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
775
+ export declare const DataListItem: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
510
776
  "click:action": (...args: any[]) => void;
511
- }, string, PublicProps, Readonly<CustomizableOptions & {
512
- label: string;
513
- value?: string | number | undefined;
514
- action?: string | undefined;
515
- placeholder?: string | undefined;
516
- chip?: boolean | undefined;
517
- icon?: string | undefined;
518
- row?: boolean | undefined;
519
- renderHtmlValue?: boolean | undefined;
520
- }> & Readonly<{
777
+ }, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
521
778
  "onClick:action"?: ((...args: any[]) => any) | undefined;
522
779
  }>, {
523
780
  icon: string;
@@ -528,7 +785,7 @@ action: string;
528
785
  chip: boolean;
529
786
  row: boolean;
530
787
  renderHtmlValue: boolean;
531
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
788
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>, {
532
789
  icon?(_: {}): any;
533
790
  value?(_: {
534
791
  itemValue: string;
@@ -567,14 +824,14 @@ declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'co
567
824
 
568
825
  declare function download(): Promise<void>;
569
826
 
570
- export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<Props_2 & CustomizableOptions, {
827
+ export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_Props_10, {
571
828
  getFileInfo: typeof getFileInfo;
572
829
  download: typeof download;
573
830
  state: Ref<State, State>;
574
831
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
575
832
  error: (...args: any[]) => void;
576
833
  success: (...args: any[]) => void;
577
- }, string, PublicProps, Readonly<Props_2 & CustomizableOptions> & Readonly<{
834
+ }, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
578
835
  onError?: ((...args: any[]) => any) | undefined;
579
836
  onSuccess?: ((...args: any[]) => any) | undefined;
580
837
  }>, {
@@ -584,25 +841,7 @@ fallbackFilename: string;
584
841
  default?(_: {}): any;
585
842
  }>;
586
843
 
587
- export declare const ErrorPage: __VLS_WithTemplateSlots_11<DefineComponent< {
588
- pageTitle?: string | undefined;
589
- message?: string | undefined;
590
- code?: string | undefined;
591
- codeErrorText?: string | undefined;
592
- btnText?: string | undefined;
593
- btnHref?: string | undefined;
594
- btnLink?: string | RouteRecordRaw | undefined;
595
- hideBtn?: boolean | undefined;
596
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
597
- pageTitle?: string | undefined;
598
- message?: string | undefined;
599
- code?: string | undefined;
600
- codeErrorText?: string | undefined;
601
- btnText?: string | undefined;
602
- btnHref?: string | undefined;
603
- btnLink?: string | RouteRecordRaw | undefined;
604
- hideBtn?: boolean | undefined;
605
- }> & Readonly<{}>, {
844
+ export declare const ErrorPage: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
606
845
  code: string;
607
846
  message: string;
608
847
  pageTitle: string;
@@ -611,7 +850,7 @@ btnText: string;
611
850
  btnHref: string;
612
851
  btnLink: string | RouteRecordRaw;
613
852
  hideBtn: boolean;
614
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
853
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
615
854
  "additional-content"?(_: {}): any;
616
855
  action?(_: {}): any;
617
856
  illustration?(_: {}): any;
@@ -624,47 +863,9 @@ declare interface FileInfo {
624
863
 
625
864
  declare function focus_2(): void;
626
865
 
627
- export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<CustomizableOptions & {
628
- a11yCompliance?: string | undefined;
629
- linkItems?: LinkItem[] | null | undefined;
630
- items?: LinkItem[] | null | undefined;
631
- sitemapRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
632
- cguRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
633
- cookiesRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
634
- legalNoticeRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
635
- a11yStatementRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
636
- hideSitemapLink?: boolean | undefined;
637
- hideCguLink?: boolean | undefined;
638
- hideCookiesLink?: boolean | undefined;
639
- hideLegalNoticeLink?: boolean | undefined;
640
- hideA11yLink?: boolean | undefined;
641
- version?: string | undefined;
642
- hideLogo?: boolean | undefined;
643
- hideSocialMediaLinks?: boolean | undefined;
644
- socialMediaLinks?: SocialMediaLink[] | undefined;
645
- light?: boolean | undefined;
646
- }, {
866
+ export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Props_12, {
647
867
  logoSize: ComputedRef<"small" | "normal">;
648
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
649
- a11yCompliance?: string | undefined;
650
- linkItems?: LinkItem[] | null | undefined;
651
- items?: LinkItem[] | null | undefined;
652
- sitemapRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
653
- cguRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
654
- cookiesRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
655
- legalNoticeRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
656
- a11yStatementRoute?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
657
- hideSitemapLink?: boolean | undefined;
658
- hideCguLink?: boolean | undefined;
659
- hideCookiesLink?: boolean | undefined;
660
- hideLegalNoticeLink?: boolean | undefined;
661
- hideA11yLink?: boolean | undefined;
662
- version?: string | undefined;
663
- hideLogo?: boolean | undefined;
664
- hideSocialMediaLinks?: boolean | undefined;
665
- socialMediaLinks?: SocialMediaLink[] | undefined;
666
- light?: boolean | undefined;
667
- }> & Readonly<{}>, {
868
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
668
869
  light: boolean;
669
870
  items: LinkItem[] | null;
670
871
  a11yCompliance: string;
@@ -690,51 +891,17 @@ socialMediaLinks: SocialMediaLink[];
690
891
  append?(_: {}): any;
691
892
  }>;
692
893
 
693
- export declare const FranceConnectBtn: DefineComponent< {
694
- href: string;
695
- isConnectPlus?: boolean | undefined;
696
- dark?: boolean | undefined;
697
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
698
- href: string;
699
- isConnectPlus?: boolean | undefined;
700
- dark?: boolean | undefined;
701
- }> & Readonly<{}>, {
894
+ export declare const FranceConnectBtn: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
702
895
  dark: boolean;
703
896
  isConnectPlus: boolean;
704
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
897
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
705
898
 
706
899
  /**
707
900
  * Get filename and content type from headers
708
901
  */
709
902
  declare function getFileInfo(header: Record<string, string>): FileInfo;
710
903
 
711
- export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent< {
712
- /** Keep the header visible */
713
- sticky?: boolean | undefined;
714
- /**
715
- * Show the header at sticky only when the user scroll up in mobile
716
- * Need 'sticky' at true,
717
- */
718
- hideWhenDown?: boolean | undefined;
719
- homeLink?: {
720
- ariaLabel?: string | undefined;
721
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
722
- href?: string | undefined;
723
- } | undefined;
724
- } & LogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
725
- /** Keep the header visible */
726
- sticky?: boolean | undefined;
727
- /**
728
- * Show the header at sticky only when the user scroll up in mobile
729
- * Need 'sticky' at true,
730
- */
731
- hideWhenDown?: boolean | undefined;
732
- homeLink?: {
733
- ariaLabel?: string | undefined;
734
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
735
- href?: string | undefined;
736
- } | undefined;
737
- } & LogoProps> & Readonly<{}>, {
904
+ export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
738
905
  sticky: boolean;
739
906
  serviceTitle: string;
740
907
  serviceSubtitle: string;
@@ -749,7 +916,7 @@ href?: string | undefined;
749
916
  };
750
917
  hideWhenDown: boolean;
751
918
  homeAriaLabel: string;
752
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
919
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>, Readonly<{
753
920
  prepend: (props: SlotProps) => unknown;
754
921
  append: (props: SlotProps) => unknown;
755
922
  menu: (props: SlotProps) => unknown;
@@ -766,10 +933,10 @@ homeAriaLabel: string;
766
933
  }>;
767
934
 
768
935
  export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
769
- "update:modelValue": (modelValue: boolean) => any;
936
+ "update:modelValue": (value: boolean) => any;
770
937
  }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
771
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
772
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
938
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
939
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
773
940
  default?(_: {}): any;
774
941
  }>;
775
942
 
@@ -796,25 +963,7 @@ height: string;
796
963
  width: string;
797
964
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
798
965
 
799
- export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent< {
800
- ariaLabel?: string | undefined;
801
- serviceTitle?: string | undefined;
802
- serviceSubtitle?: string | undefined;
803
- homeLink?: {
804
- ariaLabel?: string | undefined;
805
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
806
- href?: string | undefined;
807
- } | undefined;
808
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
809
- ariaLabel?: string | undefined;
810
- serviceTitle?: string | undefined;
811
- serviceSubtitle?: string | undefined;
812
- homeLink?: {
813
- ariaLabel?: string | undefined;
814
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
815
- href?: string | undefined;
816
- } | undefined;
817
- }> & Readonly<{}>, {
966
+ export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
818
967
  ariaLabel: string;
819
968
  serviceTitle: string;
820
969
  serviceSubtitle: string;
@@ -832,28 +981,24 @@ href?: string | undefined;
832
981
  export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_4, {
833
982
  focus: typeof focus_2;
834
983
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
835
- "update:modelValue": (modelValue: boolean) => any;
984
+ "update:modelValue": (value: boolean) => any;
836
985
  }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
837
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
838
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
986
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
987
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
839
988
 
840
- export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
989
+ export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
841
990
  default?(_: {}): any;
842
991
  }>;
843
992
 
844
- export declare const HeaderMenuSection: __VLS_WithTemplateSlots_16<DefineComponent< {
845
- title?: string | undefined;
846
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
847
- title?: string | undefined;
848
- }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
993
+ export declare const HeaderMenuSection: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
849
994
  title?(_: {}): any;
850
995
  default?(_: {}): any;
851
996
  }>;
852
997
 
853
998
  export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
854
- "update:burgerMenu": (burgerMenu: boolean) => any;
999
+ "update:burgerMenu": (value: boolean) => any;
855
1000
  }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
856
- "onUpdate:burgerMenu"?: ((burgerMenu: boolean) => any) | undefined;
1001
+ "onUpdate:burgerMenu"?: ((value: boolean) => any) | undefined;
857
1002
  }>, {
858
1003
  sticky: boolean;
859
1004
  items: NavigationItem[];
@@ -867,7 +1012,7 @@ href?: string | undefined;
867
1012
  hideWhenDown: boolean;
868
1013
  homeAriaLabel: string;
869
1014
  maxHorizontalMenuItems: number;
870
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
1015
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>, Readonly<{
871
1016
  logo: (props: SlotProps_2 & LogoProps_2) => unknown;
872
1017
  'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
873
1018
  'header-side': (props: SlotProps_2) => unknown;
@@ -889,7 +1034,7 @@ maxHorizontalMenuItems: number;
889
1034
  'navigation-menu-content': (props: SlotProps_2) => unknown;
890
1035
  }>;
891
1036
 
892
- export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1037
+ export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
893
1038
  title?(_: {}): any;
894
1039
  default?(_: {}): any;
895
1040
  }>;
@@ -985,7 +1130,7 @@ rightMenu: MenuItem[];
985
1130
  itemsSelectMenu: SelectItem[];
986
1131
  ariaLeftMenu: string;
987
1132
  ariaRightMenu: string;
988
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1133
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
989
1134
  "left-menu"?(_: {}): any;
990
1135
  "right-menu"?(_: {}): any;
991
1136
  }>;
@@ -998,13 +1143,13 @@ declare type Indicatif = {
998
1143
  phoneLength: number;
999
1144
  };
1000
1145
 
1001
- export declare const LangBtn: DefineComponent<CustomizableOptions & {
1002
- modelValue?: string | undefined;
1003
- hideDownArrow?: boolean | undefined;
1004
- ariaLabel?: string | undefined;
1005
- ariaOwns?: string | undefined;
1006
- availableLanguages?: string[] | "*" | undefined;
1007
- }, {
1146
+ export declare function isNIRKeyValid(nir: string): boolean;
1147
+
1148
+ declare type Item = string | Record<string, unknown>;
1149
+
1150
+ export declare const KEY_LENGTH = 2;
1151
+
1152
+ export declare const LangBtn: DefineComponent<__VLS_Props_18, {
1008
1153
  currentLangData: ComputedRef< {
1009
1154
  name: string;
1010
1155
  label: string;
@@ -1014,13 +1159,7 @@ selectedLanguage: Ref<string, string>;
1014
1159
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1015
1160
  change: (...args: any[]) => void;
1016
1161
  "update:modelValue": (...args: any[]) => void;
1017
- }, string, PublicProps, Readonly<CustomizableOptions & {
1018
- modelValue?: string | undefined;
1019
- hideDownArrow?: boolean | undefined;
1020
- ariaLabel?: string | undefined;
1021
- ariaOwns?: string | undefined;
1022
- availableLanguages?: string[] | "*" | undefined;
1023
- }> & Readonly<{
1162
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
1024
1163
  onChange?: ((...args: any[]) => any) | undefined;
1025
1164
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1026
1165
  }>, {
@@ -1029,7 +1168,7 @@ ariaLabel: string;
1029
1168
  ariaOwns: string;
1030
1169
  hideDownArrow: boolean;
1031
1170
  availableLanguages: string[] | "*";
1032
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1171
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1033
1172
 
1034
1173
  export declare const Logo: DefineComponent<ExtractPropTypes< {
1035
1174
  hideSignature: {
@@ -1099,31 +1238,9 @@ avatar: boolean;
1099
1238
  hideSignature: boolean;
1100
1239
  hideOrganism: boolean;
1101
1240
  risquePro: boolean;
1102
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1241
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
1103
1242
 
1104
- export declare const LogoBrandSection: __VLS_WithTemplateSlots_21<DefineComponent< {
1105
- theme?: Theme | undefined;
1106
- serviceTitle?: string | undefined;
1107
- serviceSubTitle?: string | undefined;
1108
- mobileVersion?: boolean | undefined;
1109
- reduceLogo?: boolean | undefined;
1110
- homeLink?: {
1111
- ariaLabel?: string | undefined;
1112
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
1113
- href?: string | undefined;
1114
- } | undefined;
1115
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
1116
- theme?: Theme | undefined;
1117
- serviceTitle?: string | undefined;
1118
- serviceSubTitle?: string | undefined;
1119
- mobileVersion?: boolean | undefined;
1120
- reduceLogo?: boolean | undefined;
1121
- homeLink?: {
1122
- ariaLabel?: string | undefined;
1123
- to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
1124
- href?: string | undefined;
1125
- } | undefined;
1126
- }> & Readonly<{}>, {
1243
+ export declare const LogoBrandSection: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
1127
1244
  theme: Theme;
1128
1245
  serviceTitle: string;
1129
1246
  homeLink: {
@@ -1134,7 +1251,7 @@ href?: string | undefined;
1134
1251
  serviceSubTitle: string;
1135
1252
  mobileVersion: boolean;
1136
1253
  reduceLogo: boolean;
1137
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
1254
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<{
1138
1255
  default(): unknown;
1139
1256
  'brand-content'(): unknown;
1140
1257
  }> & {
@@ -1159,7 +1276,13 @@ declare type LogoProps_2 = {
1159
1276
  serviceSubtitle?: string;
1160
1277
  };
1161
1278
 
1162
- export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1279
+ export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1280
+
1281
+ declare type MenuItem_2 = {
1282
+ text: string;
1283
+ value: string;
1284
+ link?: string;
1285
+ };
1163
1286
 
1164
1287
  declare interface NavigationItem {
1165
1288
  label: string;
@@ -1167,7 +1290,30 @@ declare interface NavigationItem {
1167
1290
  to?: RouteLocationRaw;
1168
1291
  }
1169
1292
 
1170
- export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1293
+ export declare const NirField: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_Props_20, {
1294
+ validateOnSubmit: typeof validateOnSubmit;
1295
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1296
+ "update:modelValue": (...args: any[]) => void;
1297
+ }, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
1298
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1299
+ }>, {
1300
+ outlined: boolean;
1301
+ modelValue: string;
1302
+ required: boolean;
1303
+ nirTooltip: string;
1304
+ keyTooltip: string;
1305
+ numberLabel: string;
1306
+ keyLabel: string;
1307
+ displayKey: boolean;
1308
+ showSuccessMessages: boolean;
1309
+ customNumberRules: any;
1310
+ customKeyRules: any;
1311
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1312
+ nirTooltip?(_: {}): any;
1313
+ keyTooltip?(_: {}): any;
1314
+ }>;
1315
+
1316
+ export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1171
1317
 
1172
1318
  declare interface Notification_2 {
1173
1319
  id: string;
@@ -1178,11 +1324,7 @@ declare interface Notification_2 {
1178
1324
  }
1179
1325
  export { Notification_2 as Notification }
1180
1326
 
1181
- export declare const NotificationBar: __VLS_WithTemplateSlots_22<DefineComponent<CustomizableOptions & {
1182
- closeBtnText?: string | undefined;
1183
- rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
1184
- bottom?: boolean | undefined;
1185
- }, {
1327
+ export declare const NotificationBar: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_21, {
1186
1328
  openNotification: (notification: Notification_2) => void;
1187
1329
  handleClearNotification: () => void;
1188
1330
  showNextNotification: () => void;
@@ -1199,12 +1341,8 @@ contentColor: string;
1199
1341
  }>;
1200
1342
  smallCloseBtn: ComputedRef<boolean>;
1201
1343
  isVertical: ComputedRef<boolean>;
1202
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
1203
- closeBtnText?: string | undefined;
1204
- rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
1205
- bottom?: boolean | undefined;
1206
- }> & Readonly<{}>, {
1207
- rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped";
1344
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
1345
+ rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "lg" | "sm" | "xs" | "shaped";
1208
1346
  bottom: boolean;
1209
1347
  closeBtnText: string;
1210
1348
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
@@ -1217,24 +1355,18 @@ export declare namespace NotificationService {
1217
1355
  }
1218
1356
  }
1219
1357
 
1358
+ export declare const NUMBER_LENGTH = 13;
1359
+
1220
1360
  export declare type NumberOrNumberString = string | number | undefined;
1221
1361
 
1222
- export declare const PageContainer: __VLS_WithTemplateSlots_23<DefineComponent< {
1223
- size?: "s" | "xl" | "l" | "m" | undefined;
1224
- spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
1225
- color?: string | undefined;
1226
- }, {
1362
+ export declare const PageContainer: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_Props_22, {
1227
1363
  spacingClass: ComputedRef<string>;
1228
1364
  containerSize: ComputedRef<number>;
1229
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
1230
- size?: "s" | "xl" | "l" | "m" | undefined;
1231
- spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
1232
- color?: string | undefined;
1233
- }> & Readonly<{}>, {
1365
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
1234
1366
  color: string;
1235
- size: "s" | "xl" | "l" | "m";
1236
- spacing: "xl" | "xs" | "sm" | "md" | "lg";
1237
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1367
+ size: "xl" | "lg" | "md" | "sm" | "xs";
1368
+ spacing: "xl" | "lg" | "md" | "sm" | "xs";
1369
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1238
1370
  default?(_: {}): any;
1239
1371
  }>;
1240
1372
 
@@ -1356,7 +1488,11 @@ displayFormat: DisplayFormat;
1356
1488
  customIndicatifs: Indicatif[];
1357
1489
  useCustomIndicatifsOnly: boolean;
1358
1490
  isValidatedOnBlur: boolean;
1359
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1491
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1492
+
1493
+ declare type Preferences = {
1494
+ [key in CookieTypes]: boolean | undefined;
1495
+ };
1360
1496
 
1361
1497
  declare interface Props {
1362
1498
  threshold?: number;
@@ -1375,22 +1511,19 @@ declare type PropsList = Record<string, unknown>;
1375
1511
  declare type RuleOptions = {
1376
1512
  fieldName?: string;
1377
1513
  message?: string;
1514
+ successMessage?: string;
1378
1515
  length?: number;
1379
1516
  value?: number;
1380
1517
  pattern?: RegExp;
1381
1518
  ignoreSpace?: boolean;
1519
+ fieldIdentifier?: string;
1520
+ validate?: (value: any) => boolean | string;
1382
1521
  };
1383
1522
 
1384
- export declare const SkipLink: __VLS_WithTemplateSlots_24<DefineComponent< {
1385
- label?: string | undefined;
1386
- target?: string | undefined;
1387
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
1388
- label?: string | undefined;
1389
- target?: string | undefined;
1390
- }> & Readonly<{}>, {
1391
- label: string;
1523
+ export declare const SkipLink: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1392
1524
  target: string;
1393
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1525
+ label: string;
1526
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1394
1527
  default?(_: {}): any;
1395
1528
  }>;
1396
1529
 
@@ -1414,30 +1547,14 @@ default: null;
1414
1547
  };
1415
1548
  }>> & Readonly<{}>, {
1416
1549
  links: SocialMediaLink_2[];
1417
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1550
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1418
1551
 
1419
1552
  declare type State = 'idle' | 'loading' | 'success' | 'error';
1420
1553
 
1421
- export declare const SubHeader: __VLS_WithTemplateSlots_25<DefineComponent<CustomizableOptions & Widthable & {
1422
- hideBackBtn?: boolean | undefined;
1423
- backBtnText?: string | undefined;
1424
- titleText?: string | undefined;
1425
- subTitleText?: string | undefined;
1426
- dataListGroupItems?: DataListGroupItems_2 | undefined;
1427
- loading?: boolean | undefined;
1428
- renderHtmlValue?: boolean | undefined;
1429
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1554
+ export declare const SubHeader: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1430
1555
  "click:list-item": (...args: any[]) => void;
1431
1556
  back: (...args: any[]) => void;
1432
- }, string, PublicProps, Readonly<CustomizableOptions & Widthable & {
1433
- hideBackBtn?: boolean | undefined;
1434
- backBtnText?: string | undefined;
1435
- titleText?: string | undefined;
1436
- subTitleText?: string | undefined;
1437
- dataListGroupItems?: DataListGroupItems_2 | undefined;
1438
- loading?: boolean | undefined;
1439
- renderHtmlValue?: boolean | undefined;
1440
- }> & Readonly<{
1557
+ }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1441
1558
  "onClick:list-item"?: ((...args: any[]) => any) | undefined;
1442
1559
  onBack?: ((...args: any[]) => any) | undefined;
1443
1560
  }>, {
@@ -1457,13 +1574,29 @@ dataListGroupItems: DataListGroupItems_2;
1457
1574
  "right-content"?(_: {}): any;
1458
1575
  }>;
1459
1576
 
1577
+ export declare const SyAlert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
1578
+ prependIcon: ComputedRef<string>;
1579
+ dismissAlert: typeof dismissAlert;
1580
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1581
+ "update:modelValue": (value: boolean) => any;
1582
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
1583
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1584
+ }>, {
1585
+ type: "error" | "success" | "info" | "warning";
1586
+ closable: boolean;
1587
+ variant: "tonal" | "outlined";
1588
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1589
+ icon?(_: {}): any;
1590
+ default?(_: {}): any;
1591
+ }>;
1592
+
1460
1593
  export declare const SyBtnSelect: __VLS_WithTemplateSlots_5<DefineComponent<ExtractPropTypes< {
1461
1594
  modelValue: {
1462
1595
  type: (ObjectConstructor | StringConstructor | null)[];
1463
1596
  default: null;
1464
1597
  };
1465
1598
  menuItems: {
1466
- type: ArrayConstructor;
1599
+ type: PropType<Item[]>;
1467
1600
  default: () => never[];
1468
1601
  };
1469
1602
  label: {
@@ -1520,7 +1653,7 @@ list: {};
1520
1653
  };
1521
1654
  }>, {
1522
1655
  isOpen: Ref<boolean, boolean>;
1523
- formattedItems: ComputedRef<unknown[]>;
1656
+ formattedItems: ComputedRef<Record<string, unknown>[]>;
1524
1657
  selectedItem: Ref<string | Record<string, unknown> | null, string | Record<string, unknown> | null>;
1525
1658
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1526
1659
  "update:modelValue": (...args: any[]) => void;
@@ -1531,7 +1664,7 @@ type: (ObjectConstructor | StringConstructor | null)[];
1531
1664
  default: null;
1532
1665
  };
1533
1666
  menuItems: {
1534
- type: ArrayConstructor;
1667
+ type: PropType<Item[]>;
1535
1668
  default: () => never[];
1536
1669
  };
1537
1670
  label: {
@@ -1594,7 +1727,7 @@ modelValue: string | Record<string, any> | null;
1594
1727
  label: string;
1595
1728
  options: Record<string, any>;
1596
1729
  required: boolean;
1597
- menuItems: unknown[];
1730
+ menuItems: Item[];
1598
1731
  menuId: string;
1599
1732
  textKey: string;
1600
1733
  valueKey: string;
@@ -1604,7 +1737,7 @@ hideIcon: boolean;
1604
1737
  hideLogoutBtn: boolean;
1605
1738
  isMobileView: boolean;
1606
1739
  iconOnly: boolean;
1607
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1740
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1608
1741
  "prepend-icon"?(_: {}): any;
1609
1742
  "append-icon"?(_: {}): any;
1610
1743
  content?(_: {}): any;
@@ -1612,17 +1745,7 @@ iconOnly: boolean;
1612
1745
  "footer-list-item"?(_: {}): any;
1613
1746
  }>;
1614
1747
 
1615
- export declare const SyInputSelect: DefineComponent<CustomizableOptions & {
1616
- modelValue?: string | Record<string, unknown> | null | undefined;
1617
- items?: string[] | Record<string, unknown>[] | undefined;
1618
- textKey?: string | undefined;
1619
- valueKey?: string | undefined;
1620
- label?: string | undefined;
1621
- outlined?: boolean | undefined;
1622
- required?: boolean | undefined;
1623
- errorMessages?: string | string[] | undefined;
1624
- isHeaderToolbar?: boolean | undefined;
1625
- }, {
1748
+ export declare const SyInputSelect: DefineComponent<__VLS_Props_6, {
1626
1749
  isOpen: Ref<boolean, boolean>;
1627
1750
  closeList: () => void;
1628
1751
  selectItem: (item: any) => void;
@@ -1630,17 +1753,7 @@ selectedItem: Ref<string | Record<string, unknown> | null, string | Record<strin
1630
1753
  getItemText: (item: unknown) => any;
1631
1754
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1632
1755
  "update:modelValue": (...args: any[]) => void;
1633
- }, string, PublicProps, Readonly<CustomizableOptions & {
1634
- modelValue?: string | Record<string, unknown> | null | undefined;
1635
- items?: string[] | Record<string, unknown>[] | undefined;
1636
- textKey?: string | undefined;
1637
- valueKey?: string | undefined;
1638
- label?: string | undefined;
1639
- outlined?: boolean | undefined;
1640
- required?: boolean | undefined;
1641
- errorMessages?: string | string[] | undefined;
1642
- isHeaderToolbar?: boolean | undefined;
1643
- }> & Readonly<{
1756
+ }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
1644
1757
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1645
1758
  }>, {
1646
1759
  outlined: boolean;
@@ -1745,37 +1858,18 @@ menuId: string;
1745
1858
  textKey: string;
1746
1859
  valueKey: string;
1747
1860
  errorMessages: string | readonly string[];
1748
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1861
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1749
1862
 
1750
- export declare const SyTextField: __VLS_WithTemplateSlots_6<DefineComponent< {
1751
- prependIcon?: IconType | undefined;
1752
- appendIcon?: IconType | undefined;
1753
- prependInnerIcon?: IconType | undefined;
1754
- appendInnerIcon?: IconType | undefined;
1755
- variantStyle?: VariantStyle | undefined;
1756
- color?: ColorType | undefined;
1757
- isClearable?: boolean | undefined;
1758
- showDivider?: boolean | undefined;
1759
- label?: string | undefined;
1760
- }, {
1863
+ export declare const SyTextField: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_Props_7, {
1761
1864
  appendInnerIconColor: ComputedRef<"error" | "success" | "black">;
1762
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
1763
- prependIcon?: IconType | undefined;
1764
- appendIcon?: IconType | undefined;
1765
- prependInnerIcon?: IconType | undefined;
1766
- appendInnerIcon?: IconType | undefined;
1767
- variantStyle?: VariantStyle | undefined;
1768
- color?: ColorType | undefined;
1769
- isClearable?: boolean | undefined;
1770
- showDivider?: boolean | undefined;
1771
- label?: string | undefined;
1772
- }> & Readonly<{}>, {
1865
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
1773
1866
  variantStyle: VariantStyle;
1774
1867
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1775
1868
  prepend?(_: {}): any;
1776
1869
  append?(_: {}): any;
1777
1870
  "prepend-inner"?(_: {}): any;
1778
1871
  "append-inner"?(_: {}): any;
1872
+ details?(_: {}): any;
1779
1873
  }>;
1780
1874
 
1781
1875
  declare type Theme = 'ameli' | 'ameli-pro' | 'cnam' | 'compte-ameli' | 'compte-entreprise' | 'default' | 'risque-pro';
@@ -1789,7 +1883,7 @@ export declare function useFieldValidation(): {
1789
1883
  }>) => ValidationRule[];
1790
1884
  };
1791
1885
 
1792
- declare function useNotificationService(): {
1886
+ export declare function useNotificationService(): {
1793
1887
  notificationQueue: Ref< {
1794
1888
  id: string;
1795
1889
  message: string;
@@ -1808,49 +1902,20 @@ declare function useNotificationService(): {
1808
1902
  clearQueue: () => void;
1809
1903
  };
1810
1904
 
1811
- export declare const UserMenuBtn: DefineComponent<CustomizableOptions & {
1812
- modelValue: string | Record<string, any> | null | undefined;
1813
- menuItems?: {
1814
- text: string;
1815
- value: string;
1816
- }[] | undefined;
1817
- additionalInformation?: string | undefined;
1818
- fullName?: string | undefined;
1819
- hideLogoutBtn?: boolean | undefined;
1820
- logoutIcon?: string | undefined;
1821
- isMobileView?: boolean | undefined;
1822
- hideUserIcon?: boolean | undefined;
1823
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1824
- "update:modelValue": (...args: any[]) => void;
1905
+ export declare const UserMenuBtn: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1825
1906
  logout: (...args: any[]) => void;
1826
- }, string, PublicProps, Readonly<CustomizableOptions & {
1827
- modelValue: string | Record<string, any> | null | undefined;
1828
- menuItems?: {
1829
- text: string;
1830
- value: string;
1831
- }[] | undefined;
1832
- additionalInformation?: string | undefined;
1833
- fullName?: string | undefined;
1834
- hideLogoutBtn?: boolean | undefined;
1835
- logoutIcon?: string | undefined;
1836
- isMobileView?: boolean | undefined;
1837
- hideUserIcon?: boolean | undefined;
1838
- }> & Readonly<{
1839
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1907
+ "update:modelValue": (value: MenuItem_2 | null) => void;
1908
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1909
+ "onUpdate:modelValue"?: ((value: MenuItem_2 | null) => any) | undefined;
1840
1910
  onLogout?: ((...args: any[]) => any) | undefined;
1841
1911
  }>, {
1842
- modelValue: string | Record<string, any> | null | undefined;
1843
- menuItems: {
1844
- text: string;
1845
- value: string;
1846
- }[];
1912
+ menuItems: MenuItem_2[];
1847
1913
  hideLogoutBtn: boolean;
1848
1914
  isMobileView: boolean;
1849
1915
  additionalInformation: string;
1850
1916
  fullName: string;
1851
- logoutIcon: string;
1852
1917
  hideUserIcon: boolean;
1853
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1918
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1854
1919
 
1855
1920
  export declare function useWidthable(props: {
1856
1921
  maxWidth?: NumberOrNumberString;
@@ -1860,7 +1925,14 @@ export declare function useWidthable(props: {
1860
1925
  widthStyles: ComputedRef<Record<string, string | undefined>>;
1861
1926
  };
1862
1927
 
1863
- declare type ValidationRule = (value: any) => string | boolean;
1928
+ declare function validateOnSubmit(): boolean;
1929
+
1930
+ declare type ValidationResult = {
1931
+ success?: string;
1932
+ error?: string;
1933
+ };
1934
+
1935
+ declare type ValidationRule = (value: any) => ValidationResult;
1864
1936
 
1865
1937
  export declare interface Widthable {
1866
1938
  maxWidth?: NumberOrNumberString;