@cnamts/synapse 0.0.5-alpha → 0.0.6-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (222) hide show
  1. package/dist/design-system-v3.d.ts +481 -411
  2. package/dist/design-system-v3.js +2950 -2202
  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 +8 -8
  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/CollapsibleList/Accessibilite.stories.ts +4 -0
  15. package/src/components/CollapsibleList/AccessibiliteItems.ts +55 -62
  16. package/src/components/CollapsibleList/CollapsibleList.stories.ts +1 -1
  17. package/src/components/CookieBanner/Accessibilite.stories.ts +219 -0
  18. package/src/components/CookieBanner/AccessibiliteItems.ts +356 -0
  19. package/src/components/CookieBanner/CookieBanner.mdx +219 -0
  20. package/src/components/CookieBanner/CookieBanner.stories.ts +678 -0
  21. package/src/components/CookieBanner/CookieBanner.vue +225 -0
  22. package/src/components/CookieBanner/config.ts +38 -0
  23. package/src/components/CookieBanner/locales.ts +12 -0
  24. package/src/components/CookieBanner/tests/CookieBanner.spec.ts +129 -0
  25. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +197 -0
  26. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +123 -0
  27. package/src/components/CookiesSelection/CookiesInformation/locales.ts +21 -0
  28. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +121 -0
  29. package/src/components/CookiesSelection/CookiesSelection.vue +127 -0
  30. package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +47 -0
  31. package/src/components/CookiesSelection/CookiesTable/headers.ts +14 -0
  32. package/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.ts +30 -0
  33. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +3 -0
  34. package/src/components/CookiesSelection/locales.ts +10 -0
  35. package/src/components/CookiesSelection/tests/CookiesSelection.spec.ts +184 -0
  36. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +192 -0
  37. package/src/components/CookiesSelection/types.ts +15 -0
  38. package/src/components/CopyBtn/AccessibiliteItems.ts +0 -30
  39. package/src/components/CopyBtn/CopyBtn.mdx +1 -1
  40. package/src/components/CopyBtn/CopyBtn.stories.ts +4 -4
  41. package/src/components/CopyBtn/CopyBtn.vue +0 -1
  42. package/src/components/Customs/SyBtnSelect/Accessibilite.mdx +14 -0
  43. package/src/components/Customs/SyBtnSelect/Accessibilite.stories.ts +193 -0
  44. package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +139 -0
  45. package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +3 -2
  46. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +63 -7
  47. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +21 -13
  48. package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +4 -0
  49. package/src/components/Customs/SyInputSelect/Accessibilite.mdx +14 -0
  50. package/src/components/Customs/SyInputSelect/Accessibilite.stories.ts +166 -0
  51. package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +96 -0
  52. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +3 -2
  53. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +5 -58
  54. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +36 -4
  55. package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +4 -0
  56. package/src/components/Customs/SySelect/Accessibilite.mdx +14 -0
  57. package/src/components/Customs/SySelect/Accessibilite.stories.ts +217 -0
  58. package/src/components/Customs/SySelect/AccessibiliteItems.ts +173 -0
  59. package/src/components/Customs/SySelect/SySelect.mdx +3 -2
  60. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -58
  61. package/src/components/Customs/SySelect/SySelect.vue +35 -8
  62. package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +4 -0
  63. package/src/components/Customs/SyTextField/Accessibilite.mdx +14 -0
  64. package/src/components/Customs/SyTextField/Accessibilite.stories.ts +224 -0
  65. package/src/components/Customs/SyTextField/AccessibiliteItems.ts +198 -0
  66. package/src/components/Customs/SyTextField/SyTextField.mdx +1 -1
  67. package/src/components/Customs/SyTextField/SyTextField.stories.ts +118 -7
  68. package/src/components/Customs/SyTextField/SyTextField.vue +27 -7
  69. package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +4 -0
  70. package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +2 -1
  71. package/src/components/DataList/Accessibilite.mdx +14 -0
  72. package/src/components/DataList/Accessibilite.stories.ts +166 -0
  73. package/src/components/DataList/AccessibiliteItems.ts +47 -0
  74. package/src/components/DataList/DataList.mdx +1 -1
  75. package/src/components/DataList/DataList.stories.ts +10 -10
  76. package/src/components/DataList/constants/ExpertiseLevelEnum.ts +4 -0
  77. package/src/components/DataListGroup/Accessibilite.mdx +14 -0
  78. package/src/components/DataListGroup/Accessibilite.stories.ts +225 -0
  79. package/src/components/DataListGroup/AccessibiliteItems.ts +79 -0
  80. package/src/components/DataListGroup/DataListGroup.mdx +1 -1
  81. package/src/components/DataListGroup/DataListGroup.stories.ts +7 -7
  82. package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +4 -0
  83. package/src/components/DialogBox/Accessibilite.mdx +14 -0
  84. package/src/components/DialogBox/Accessibilite.stories.ts +189 -0
  85. package/src/components/DialogBox/AccessibiliteItems.ts +167 -0
  86. package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +4 -0
  87. package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -31
  88. package/src/components/DownloadBtn/DownloadBtn.mdx +3 -3
  89. package/src/components/DownloadBtn/DownloadBtn.stories.ts +6 -6
  90. package/src/components/ErrorPage/Accessibilite.mdx +14 -0
  91. package/src/components/ErrorPage/Accessibilite.stories.ts +189 -0
  92. package/src/components/ErrorPage/AccessibiliteItems.ts +205 -0
  93. package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +4 -0
  94. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
  95. package/src/components/FooterBar/Accessibilite.mdx +14 -0
  96. package/src/components/FooterBar/Accessibilite.stories.ts +223 -0
  97. package/src/components/FooterBar/AccessibiliteItems.ts +257 -0
  98. package/src/components/FooterBar/FooterBar.mdx +2 -2
  99. package/src/components/FooterBar/FooterBar.stories.ts +14 -14
  100. package/src/components/FooterBar/FooterBar.vue +80 -73
  101. package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +4 -0
  102. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +22 -20
  103. package/src/components/FranceConnectBtn/AccessibiliteItems.ts +0 -30
  104. package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
  105. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +3 -3
  106. package/src/components/HeaderBar/Accessibilite.mdx +14 -0
  107. package/src/components/HeaderBar/Accessibilite.stories.ts +223 -0
  108. package/src/components/HeaderBar/AccessibiliteItems.ts +194 -0
  109. package/src/components/HeaderBar/HeaderBar.vue +1 -9
  110. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +14 -0
  111. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +223 -0
  112. package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +174 -0
  113. package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +4 -0
  114. package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +4 -0
  115. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +1 -1
  116. package/src/components/HeaderLoading/Accessibilite.mdx +14 -0
  117. package/src/components/HeaderLoading/Accessibilite.stories.ts +167 -0
  118. package/src/components/HeaderLoading/AccessibiliteItems.ts +29 -0
  119. package/src/components/HeaderLoading/HeaderLoading.mdx +1 -1
  120. package/src/components/HeaderLoading/HeaderLoading.stories.ts +1 -1
  121. package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +4 -0
  122. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +35 -33
  123. package/src/components/HeaderToolbar/Accessibilite.mdx +14 -0
  124. package/src/components/HeaderToolbar/Accessibilite.stories.ts +203 -0
  125. package/src/components/HeaderToolbar/AccessibiliteItems.ts +200 -0
  126. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  127. package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +2 -2
  128. package/src/components/HeaderToolbar/HeaderToolbar.vue +1 -0
  129. package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +4 -0
  130. package/src/components/LangBtn/Accessibilite.stories.ts +3 -1
  131. package/src/components/LangBtn/AccessibiliteItems.ts +0 -31
  132. package/src/components/LangBtn/LangBtn.mdx +1 -1
  133. package/src/components/LangBtn/LangBtn.stories.ts +4 -4
  134. package/src/components/LangBtn/LangBtn.vue +3 -2
  135. package/src/components/Logo/Accessibilite.mdx +14 -0
  136. package/src/components/Logo/Accessibilite.stories.ts +223 -0
  137. package/src/components/Logo/AccessibiliteItems.ts +155 -0
  138. package/src/components/Logo/Logo.mdx +1 -1
  139. package/src/components/Logo/Logo.stories.ts +8 -8
  140. package/src/components/Logo/constants/ExpertiseLevelEnum.ts +4 -0
  141. package/src/components/LogoBrandSection/Accessibilite.mdx +14 -0
  142. package/src/components/LogoBrandSection/Accessibilite.stories.ts +223 -0
  143. package/src/components/LogoBrandSection/AccessibiliteItems.ts +194 -0
  144. package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +4 -0
  145. package/src/components/MaintenancePage/Accessibilite.mdx +14 -0
  146. package/src/components/MaintenancePage/Accessibilite.stories.ts +189 -0
  147. package/src/components/MaintenancePage/AccessibiliteItems.ts +173 -0
  148. package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +4 -0
  149. package/src/components/NirField/Accessibilite.mdx +14 -0
  150. package/src/components/NirField/Accessibilite.stories.ts +214 -0
  151. package/src/components/NirField/AccessibiliteItems.ts +243 -0
  152. package/src/components/NirField/NirField.mdx +216 -0
  153. package/src/components/NirField/NirField.stories.ts +359 -0
  154. package/src/components/NirField/NirField.vue +450 -0
  155. package/src/components/NirField/config.ts +16 -0
  156. package/src/components/NirField/constants/ExpertiseLevelEnum.ts +4 -0
  157. package/src/components/NirField/locales.ts +12 -0
  158. package/src/components/NirField/nirValidation.ts +42 -0
  159. package/src/components/NirField/tests/NirField.spec.ts +119 -0
  160. package/src/components/NotFoundPage/Accessibilite.mdx +14 -0
  161. package/src/components/NotFoundPage/Accessibilite.stories.ts +190 -0
  162. package/src/components/NotFoundPage/AccessibiliteItems.ts +205 -0
  163. package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +4 -0
  164. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +4 -4
  165. package/src/components/NotificationBar/AccessibiliteItems.ts +0 -30
  166. package/src/components/NotificationBar/NotificationBar.mdx +1 -1
  167. package/src/components/PageContainer/PageContainer.mdx +1 -1
  168. package/src/components/PageContainer/PageContainer.stories.ts +4 -4
  169. package/src/components/PageContainer/PageContainer.vue +16 -15
  170. package/src/components/PageContainer/tests/PageContainer.spec.ts +1 -1
  171. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +2 -2
  172. package/src/components/PhoneField/Accessibilite.mdx +14 -0
  173. package/src/components/PhoneField/Accessibilite.stories.ts +216 -0
  174. package/src/components/PhoneField/AccessibiliteItems.ts +238 -0
  175. package/src/components/PhoneField/PhoneField.mdx +1 -1
  176. package/src/components/PhoneField/PhoneField.stories.ts +2 -2
  177. package/src/components/PhoneField/PhoneField.vue +0 -1
  178. package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +4 -0
  179. package/src/components/SkipLink/Accessibilite.stories.ts +1 -1
  180. package/src/components/SkipLink/SkipLink.stories.ts +2 -2
  181. package/src/components/SocialMediaLinks/Accessibilite.mdx +14 -0
  182. package/src/components/SocialMediaLinks/Accessibilite.stories.ts +170 -0
  183. package/src/components/SocialMediaLinks/AccessibiliteItems.ts +160 -0
  184. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +1 -1
  185. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +1 -1
  186. package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +4 -0
  187. package/src/components/SubHeader/Accessibilite.mdx +14 -0
  188. package/src/components/SubHeader/Accessibilite.stories.ts +166 -0
  189. package/src/components/SubHeader/AccessibiliteItems.ts +146 -0
  190. package/src/components/SubHeader/SubHeader.mdx +1 -1
  191. package/src/components/SubHeader/SubHeader.stories.ts +11 -11
  192. package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +4 -0
  193. package/src/components/SyAlert/Accessibilite.mdx +14 -0
  194. package/src/components/{Alert → SyAlert}/Accessibilite.stories.ts +1 -1
  195. package/src/components/{Alert → SyAlert}/AccessibiliteItems.ts +2 -32
  196. package/src/components/{Alert/Alert.mdx → SyAlert/SyAlert.mdx} +9 -9
  197. package/src/components/{Alert/Alert.stories.ts → SyAlert/SyAlert.stories.ts} +22 -22
  198. package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +4 -0
  199. package/src/components/{Alert/tests/Alert.spec.ts → SyAlert/tests/SyAlert.spec.ts} +5 -5
  200. package/src/components/{Alert/tests/__snapshots__/Alert.spec.ts.snap → SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap} +2 -2
  201. package/src/components/UserMenuBtn/Accessibilite.mdx +14 -0
  202. package/src/components/UserMenuBtn/Accessibilite.stories.ts +189 -0
  203. package/src/components/UserMenuBtn/AccessibiliteItems.ts +155 -0
  204. package/src/components/UserMenuBtn/UserMenuBtn.mdx +17 -17
  205. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +121 -19
  206. package/src/components/UserMenuBtn/UserMenuBtn.vue +25 -29
  207. package/src/components/UserMenuBtn/config.ts +1 -1
  208. package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +4 -0
  209. package/src/components/index.ts +10 -4
  210. package/src/composables/rules/tests/useFieldValidation.spec.ts +60 -58
  211. package/src/composables/rules/useFieldValidation.ts +65 -28
  212. package/src/main.ts +1 -0
  213. package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +67 -79
  214. package/src/stories/GuideDuDev/components.stories.ts +5 -5
  215. package/src/stories/GuideDuDev/moduleDeNotification.mdx +1 -1
  216. package/src/stories/Guidelines/Vuetify/Vuetify.mdx +11 -0
  217. package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +138 -0
  218. package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +350 -0
  219. /package/src/components/{Alert → CookieBanner}/Accessibilite.mdx +0 -0
  220. /package/src/components/{Alert → CookieBanner}/constants/ExpertiseLevelEnum.ts +0 -0
  221. /package/src/components/{Alert/Alert.vue → SyAlert/SyAlert.vue} +0 -0
  222. /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,191 @@ 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
+ customNumberRules?: any;
170
+ customKeyRules?: any;
171
+ };
172
+
173
+ declare type __VLS_Props_21 = CustomizableOptions & {
174
+ closeBtnText?: string;
175
+ rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped';
176
+ bottom?: true | false;
177
+ };
178
+
179
+ declare type __VLS_Props_22 = {
180
+ size?: 'xl' | 'l' | 'm' | 's';
181
+ spacing?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
182
+ color?: string;
183
+ };
184
+
185
+ declare type __VLS_Props_23 = {
186
+ label?: string;
187
+ target?: string;
188
+ };
189
+
190
+ declare type __VLS_Props_24 = CustomizableOptions & Widthable & {
191
+ hideBackBtn?: boolean;
192
+ backBtnText?: string;
193
+ titleText?: string;
194
+ subTitleText?: string;
195
+ dataListGroupItems?: DataListGroupItems_2 | undefined;
196
+ loading?: boolean;
197
+ renderHtmlValue?: boolean;
198
+ };
199
+
200
+ declare type __VLS_Props_25 = CustomizableOptions & {
201
+ menuItems?: MenuItem_2[];
202
+ additionalInformation?: string;
203
+ fullName?: string;
204
+ hideLogoutBtn?: boolean;
205
+ isMobileView?: boolean;
206
+ hideUserIcon?: boolean;
207
+ };
208
+
209
+ declare type __VLS_Props_26 = CustomizableOptions & {
210
+ items?: CookiesItems;
211
+ };
212
+
213
+ declare type __VLS_Props_27 = {
214
+ items: CookiesItems;
215
+ };
216
+
217
+ declare type __VLS_Props_28 = {
218
+ type: CookieTypes;
219
+ tableItems: Cookie[];
220
+ };
221
+
222
+ declare type __VLS_Props_29 = {
223
+ items: Cookie[];
224
+ };
225
+
226
+ declare type __VLS_Props_3 = Props & CustomizableOptions;
227
+
228
+ declare type __VLS_Props_4 = {
229
+ listTitle: string | null;
230
+ items: ListItem[];
231
+ };
232
+
233
+ declare type __VLS_Props_5 = CustomizableOptions & {
234
+ ariaLabel?: string;
235
+ ariaOwns?: string;
236
+ textToCopy: (() => string) | string;
237
+ hideTooltip?: boolean;
238
+ tooltipDuration?: number;
239
+ };
240
+
241
+ declare type __VLS_Props_6 = CustomizableOptions & {
242
+ modelValue?: Record<string, unknown> | string | null;
243
+ items?: Record<string, unknown>[] | string[];
244
+ textKey?: string;
245
+ valueKey?: string;
246
+ label?: string;
247
+ outlined?: boolean;
248
+ required?: boolean;
249
+ errorMessages?: string | string[];
250
+ isHeaderToolbar?: boolean;
251
+ };
252
+
253
+ declare type __VLS_Props_7 = {
254
+ prependIcon?: IconType;
255
+ appendIcon?: IconType;
256
+ prependInnerIcon?: IconType;
257
+ appendInnerIcon?: IconType;
258
+ variantStyle?: VariantStyle;
259
+ color?: ColorType;
260
+ isClearable?: boolean;
261
+ showDivider?: boolean;
262
+ label?: string;
263
+ required?: boolean;
264
+ errorMessages?: string[];
265
+ };
266
+
267
+ declare type __VLS_Props_8 = CustomizableOptions & {
268
+ label: string;
269
+ value?: string | number;
270
+ action?: string;
271
+ placeholder?: string;
272
+ chip?: boolean;
273
+ icon?: string;
274
+ row?: boolean;
275
+ renderHtmlValue?: boolean;
276
+ };
277
+
278
+ declare type __VLS_Props_9 = {
279
+ title?: string;
280
+ width?: string;
281
+ cancelBtnText?: string;
282
+ confirmBtnText?: string;
283
+ hideActions?: boolean;
284
+ persistent?: boolean;
285
+ } & CustomizableOptions;
286
+
287
+ declare type __VLS_PublicProps = {
288
+ modelValue?: boolean;
289
+ } & __VLS_Props;
290
+
291
+ declare type __VLS_PublicProps_2 = {
292
+ modelValue?: boolean;
293
+ } & __VLS_Props_9;
294
+
295
+ declare type __VLS_PublicProps_3 = {
296
+ modelValue?: boolean;
297
+ };
298
+
299
+ declare type __VLS_PublicProps_4 = {
300
+ modelValue?: boolean;
301
+ };
302
+
303
+ declare type __VLS_PublicProps_5 = {
304
+ 'burgerMenu'?: boolean;
305
+ } & __VLS_Props_17;
306
+
307
+ declare type __VLS_PublicProps_6 = {
308
+ modelValue?: MenuItem_2 | null;
309
+ } & __VLS_Props_25;
310
+
311
+ declare type __VLS_PublicProps_7 = {
312
+ modelValue?: typeof active['value'];
313
+ } & __VLS_Props_26;
314
+
315
+ declare type __VLS_PublicProps_8 = {
316
+ modelValue?: boolean | undefined;
317
+ } & __VLS_Props_28;
318
+
91
319
  declare type __VLS_WithTemplateSlots<T, S> = T & {
92
320
  new (): {
93
321
  $slots: S;
@@ -196,12 +424,42 @@ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
196
424
  };
197
425
  };
198
426
 
427
+ declare type __VLS_WithTemplateSlots_26<T, S> = T & {
428
+ new (): {
429
+ $slots: S;
430
+ };
431
+ };
432
+
433
+ declare type __VLS_WithTemplateSlots_27<T, S> = T & {
434
+ new (): {
435
+ $slots: S;
436
+ };
437
+ };
438
+
439
+ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
440
+ new (): {
441
+ $slots: S;
442
+ };
443
+ };
444
+
445
+ declare type __VLS_WithTemplateSlots_29<T, S> = T & {
446
+ new (): {
447
+ $slots: S;
448
+ };
449
+ };
450
+
199
451
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
200
452
  new (): {
201
453
  $slots: S;
202
454
  };
203
455
  };
204
456
 
457
+ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
458
+ new (): {
459
+ $slots: S;
460
+ };
461
+ };
462
+
205
463
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
206
464
  new (): {
207
465
  $slots: S;
@@ -238,34 +496,14 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
238
496
  };
239
497
  };
240
498
 
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
- }>;
499
+ declare const active: ModelRef<boolean, string, boolean, boolean>;
256
500
 
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>, {
501
+ 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
502
  icon?(_: {}): any;
265
503
  default?(_: {}): any;
266
504
  }>;
267
505
 
268
- export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<Props & CustomizableOptions, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props & CustomizableOptions> & Readonly<{}>, {
506
+ export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
269
507
  target: string;
270
508
  threshold: number;
271
509
  nudgeRight: string | number;
@@ -275,40 +513,76 @@ nudgeBottom: string | number;
275
513
  icon?(_: {}): any;
276
514
  }>;
277
515
 
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>;
516
+ export declare function checkNIR(nir: string): boolean;
517
+
518
+ export declare const CollapsibleList: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
285
519
 
286
520
  declare type ComponentsProps = Record<string, PropsList>;
287
521
 
522
+ export declare function computeNIRKey(nir: string): string;
523
+
524
+ declare interface Cookie {
525
+ name: string;
526
+ description?: string;
527
+ conservation: string;
528
+ }
529
+
530
+ export declare const CookieBanner: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
531
+ submit: (...args: any[]) => void;
532
+ accept: (...args: any[]) => void;
533
+ reject: (...args: any[]) => void;
534
+ customize: (...args: any[]) => void;
535
+ "update:modelValue": (value: boolean) => void;
536
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
537
+ onSubmit?: ((...args: any[]) => any) | undefined;
538
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
539
+ onAccept?: ((...args: any[]) => any) | undefined;
540
+ onReject?: ((...args: any[]) => any) | undefined;
541
+ onCustomize?: ((...args: any[]) => any) | undefined;
542
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<NonNullable<string | number>, (_: {
543
+ cookie: Cookie;
544
+ }) => any>> & {
545
+ default?(_: {}): any;
546
+ }>;
547
+
548
+ export declare const CookiesInformation: __VLS_WithTemplateSlots_29<DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
549
+ "update:modelValue": (value: boolean | undefined) => any;
550
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
551
+ "onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
552
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Partial<Record<NonNullable<string | number>, (_: {
553
+ cookie: Cookie;
554
+ }) => any>>>;
555
+
556
+ declare type CookiesItems = {
557
+ [key in CookieTypes]?: Cookie[];
558
+ };
559
+
560
+ export declare const CookiesSelection: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
561
+ submit: (preferences: Partial<Preferences>) => any;
562
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
563
+ onSubmit?: ((preferences: Partial<Preferences>) => any) | undefined;
564
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<NonNullable<string | number>, (_: {
565
+ cookie: Cookie;
566
+ }) => any>>>;
567
+
568
+ 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, (_: {
569
+ cookie: Cookie;
570
+ }) => any>>>;
571
+
572
+ declare type CookieTypes = 'essentials' | 'functional' | 'analytics';
573
+
288
574
  declare function copy(): void;
289
575
 
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
- }, {
576
+ export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Props_5, {
297
577
  copy: typeof copy;
298
578
  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<{}>, {
579
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
306
580
  ariaLabel: string;
307
581
  ariaOwns: string;
308
582
  textToCopy: string | (() => string);
309
583
  hideTooltip: boolean;
310
584
  tooltipDuration: number;
311
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
585
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
312
586
  icon?(_: {}): any;
313
587
  tooltip?(_: {}): any;
314
588
  }>;
@@ -440,7 +714,7 @@ icons: DataListIcons | undefined;
440
714
  titleClass: string;
441
715
  itemsNumberLoading: number;
442
716
  headingLoading: boolean;
443
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
717
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
444
718
  title?(_: {}): any;
445
719
  }>;
446
720
 
@@ -495,29 +769,11 @@ loading: boolean;
495
769
  renderHtmlValue: boolean;
496
770
  itemWidth: string;
497
771
  icons: DataListIcons_2 | undefined;
498
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
772
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
499
773
 
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, {
774
+ export declare const DataListItem: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
510
775
  "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<{
776
+ }, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
521
777
  "onClick:action"?: ((...args: any[]) => any) | undefined;
522
778
  }>, {
523
779
  icon: string;
@@ -528,7 +784,7 @@ action: string;
528
784
  chip: boolean;
529
785
  row: boolean;
530
786
  renderHtmlValue: boolean;
531
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
787
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>, {
532
788
  icon?(_: {}): any;
533
789
  value?(_: {
534
790
  itemValue: string;
@@ -567,14 +823,14 @@ declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'co
567
823
 
568
824
  declare function download(): Promise<void>;
569
825
 
570
- export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<Props_2 & CustomizableOptions, {
826
+ export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_Props_10, {
571
827
  getFileInfo: typeof getFileInfo;
572
828
  download: typeof download;
573
829
  state: Ref<State, State>;
574
830
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
575
831
  error: (...args: any[]) => void;
576
832
  success: (...args: any[]) => void;
577
- }, string, PublicProps, Readonly<Props_2 & CustomizableOptions> & Readonly<{
833
+ }, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
578
834
  onError?: ((...args: any[]) => any) | undefined;
579
835
  onSuccess?: ((...args: any[]) => any) | undefined;
580
836
  }>, {
@@ -584,25 +840,7 @@ fallbackFilename: string;
584
840
  default?(_: {}): any;
585
841
  }>;
586
842
 
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<{}>, {
843
+ export declare const ErrorPage: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
606
844
  code: string;
607
845
  message: string;
608
846
  pageTitle: string;
@@ -611,7 +849,7 @@ btnText: string;
611
849
  btnHref: string;
612
850
  btnLink: string | RouteRecordRaw;
613
851
  hideBtn: boolean;
614
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
852
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
615
853
  "additional-content"?(_: {}): any;
616
854
  action?(_: {}): any;
617
855
  illustration?(_: {}): any;
@@ -624,47 +862,9 @@ declare interface FileInfo {
624
862
 
625
863
  declare function focus_2(): void;
626
864
 
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
- }, {
865
+ export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Props_12, {
647
866
  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<{}>, {
867
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
668
868
  light: boolean;
669
869
  items: LinkItem[] | null;
670
870
  a11yCompliance: string;
@@ -690,51 +890,17 @@ socialMediaLinks: SocialMediaLink[];
690
890
  append?(_: {}): any;
691
891
  }>;
692
892
 
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<{}>, {
893
+ export declare const FranceConnectBtn: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
702
894
  dark: boolean;
703
895
  isConnectPlus: boolean;
704
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
896
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
705
897
 
706
898
  /**
707
899
  * Get filename and content type from headers
708
900
  */
709
901
  declare function getFileInfo(header: Record<string, string>): FileInfo;
710
902
 
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<{}>, {
903
+ export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
738
904
  sticky: boolean;
739
905
  serviceTitle: string;
740
906
  serviceSubtitle: string;
@@ -749,7 +915,7 @@ href?: string | undefined;
749
915
  };
750
916
  hideWhenDown: boolean;
751
917
  homeAriaLabel: string;
752
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
918
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>, Readonly<{
753
919
  prepend: (props: SlotProps) => unknown;
754
920
  append: (props: SlotProps) => unknown;
755
921
  menu: (props: SlotProps) => unknown;
@@ -766,10 +932,10 @@ homeAriaLabel: string;
766
932
  }>;
767
933
 
768
934
  export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
769
- "update:modelValue": (modelValue: boolean) => any;
935
+ "update:modelValue": (value: boolean) => any;
770
936
  }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
771
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
772
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
937
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
938
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
773
939
  default?(_: {}): any;
774
940
  }>;
775
941
 
@@ -796,25 +962,7 @@ height: string;
796
962
  width: string;
797
963
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
798
964
 
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<{}>, {
965
+ export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
818
966
  ariaLabel: string;
819
967
  serviceTitle: string;
820
968
  serviceSubtitle: string;
@@ -832,28 +980,24 @@ href?: string | undefined;
832
980
  export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_4, {
833
981
  focus: typeof focus_2;
834
982
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
835
- "update:modelValue": (modelValue: boolean) => any;
983
+ "update:modelValue": (value: boolean) => any;
836
984
  }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
837
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
838
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
985
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
986
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
839
987
 
840
- export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
988
+ export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
841
989
  default?(_: {}): any;
842
990
  }>;
843
991
 
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>, {
992
+ 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
993
  title?(_: {}): any;
850
994
  default?(_: {}): any;
851
995
  }>;
852
996
 
853
997
  export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
854
- "update:burgerMenu": (burgerMenu: boolean) => any;
998
+ "update:burgerMenu": (value: boolean) => any;
855
999
  }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
856
- "onUpdate:burgerMenu"?: ((burgerMenu: boolean) => any) | undefined;
1000
+ "onUpdate:burgerMenu"?: ((value: boolean) => any) | undefined;
857
1001
  }>, {
858
1002
  sticky: boolean;
859
1003
  items: NavigationItem[];
@@ -867,7 +1011,7 @@ href?: string | undefined;
867
1011
  hideWhenDown: boolean;
868
1012
  homeAriaLabel: string;
869
1013
  maxHorizontalMenuItems: number;
870
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
1014
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>, Readonly<{
871
1015
  logo: (props: SlotProps_2 & LogoProps_2) => unknown;
872
1016
  'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
873
1017
  'header-side': (props: SlotProps_2) => unknown;
@@ -889,7 +1033,7 @@ maxHorizontalMenuItems: number;
889
1033
  'navigation-menu-content': (props: SlotProps_2) => unknown;
890
1034
  }>;
891
1035
 
892
- export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1036
+ export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
893
1037
  title?(_: {}): any;
894
1038
  default?(_: {}): any;
895
1039
  }>;
@@ -985,7 +1129,7 @@ rightMenu: MenuItem[];
985
1129
  itemsSelectMenu: SelectItem[];
986
1130
  ariaLeftMenu: string;
987
1131
  ariaRightMenu: string;
988
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1132
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
989
1133
  "left-menu"?(_: {}): any;
990
1134
  "right-menu"?(_: {}): any;
991
1135
  }>;
@@ -998,13 +1142,13 @@ declare type Indicatif = {
998
1142
  phoneLength: number;
999
1143
  };
1000
1144
 
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
- }, {
1145
+ export declare function isNIRKeyValid(nir: string): boolean;
1146
+
1147
+ declare type Item = string | Record<string, unknown>;
1148
+
1149
+ export declare const KEY_LENGTH = 2;
1150
+
1151
+ export declare const LangBtn: DefineComponent<__VLS_Props_18, {
1008
1152
  currentLangData: ComputedRef< {
1009
1153
  name: string;
1010
1154
  label: string;
@@ -1014,13 +1158,7 @@ selectedLanguage: Ref<string, string>;
1014
1158
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1015
1159
  change: (...args: any[]) => void;
1016
1160
  "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<{
1161
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
1024
1162
  onChange?: ((...args: any[]) => any) | undefined;
1025
1163
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1026
1164
  }>, {
@@ -1029,7 +1167,7 @@ ariaLabel: string;
1029
1167
  ariaOwns: string;
1030
1168
  hideDownArrow: boolean;
1031
1169
  availableLanguages: string[] | "*";
1032
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1170
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1033
1171
 
1034
1172
  export declare const Logo: DefineComponent<ExtractPropTypes< {
1035
1173
  hideSignature: {
@@ -1099,31 +1237,9 @@ avatar: boolean;
1099
1237
  hideSignature: boolean;
1100
1238
  hideOrganism: boolean;
1101
1239
  risquePro: boolean;
1102
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1240
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
1103
1241
 
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<{}>, {
1242
+ export declare const LogoBrandSection: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
1127
1243
  theme: Theme;
1128
1244
  serviceTitle: string;
1129
1245
  homeLink: {
@@ -1134,7 +1250,7 @@ href?: string | undefined;
1134
1250
  serviceSubTitle: string;
1135
1251
  mobileVersion: boolean;
1136
1252
  reduceLogo: boolean;
1137
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
1253
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<{
1138
1254
  default(): unknown;
1139
1255
  'brand-content'(): unknown;
1140
1256
  }> & {
@@ -1159,7 +1275,13 @@ declare type LogoProps_2 = {
1159
1275
  serviceSubtitle?: string;
1160
1276
  };
1161
1277
 
1162
- export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1278
+ export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1279
+
1280
+ declare type MenuItem_2 = {
1281
+ text: string;
1282
+ value: string;
1283
+ link?: string;
1284
+ };
1163
1285
 
1164
1286
  declare interface NavigationItem {
1165
1287
  label: string;
@@ -1167,7 +1289,29 @@ declare interface NavigationItem {
1167
1289
  to?: RouteLocationRaw;
1168
1290
  }
1169
1291
 
1170
- export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1292
+ export declare const NirField: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_Props_20, {
1293
+ validateOnSubmit: typeof validateOnSubmit;
1294
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1295
+ "update:modelValue": (...args: any[]) => void;
1296
+ }, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
1297
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1298
+ }>, {
1299
+ outlined: boolean;
1300
+ modelValue: string;
1301
+ required: boolean;
1302
+ nirTooltip: string;
1303
+ keyTooltip: string;
1304
+ numberLabel: string;
1305
+ keyLabel: string;
1306
+ displayKey: boolean;
1307
+ customNumberRules: any;
1308
+ customKeyRules: any;
1309
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1310
+ nirTooltip?(_: {}): any;
1311
+ keyTooltip?(_: {}): any;
1312
+ }>;
1313
+
1314
+ export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1171
1315
 
1172
1316
  declare interface Notification_2 {
1173
1317
  id: string;
@@ -1178,11 +1322,7 @@ declare interface Notification_2 {
1178
1322
  }
1179
1323
  export { Notification_2 as Notification }
1180
1324
 
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
- }, {
1325
+ export declare const NotificationBar: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_21, {
1186
1326
  openNotification: (notification: Notification_2) => void;
1187
1327
  handleClearNotification: () => void;
1188
1328
  showNextNotification: () => void;
@@ -1199,11 +1339,7 @@ contentColor: string;
1199
1339
  }>;
1200
1340
  smallCloseBtn: ComputedRef<boolean>;
1201
1341
  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<{}>, {
1342
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
1207
1343
  rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped";
1208
1344
  bottom: boolean;
1209
1345
  closeBtnText: string;
@@ -1217,24 +1353,18 @@ export declare namespace NotificationService {
1217
1353
  }
1218
1354
  }
1219
1355
 
1356
+ export declare const NUMBER_LENGTH = 13;
1357
+
1220
1358
  export declare type NumberOrNumberString = string | number | undefined;
1221
1359
 
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
- }, {
1360
+ export declare const PageContainer: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_Props_22, {
1227
1361
  spacingClass: ComputedRef<string>;
1228
1362
  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<{}>, {
1363
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
1234
1364
  color: string;
1235
1365
  size: "s" | "xl" | "l" | "m";
1236
1366
  spacing: "xl" | "xs" | "sm" | "md" | "lg";
1237
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1367
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1238
1368
  default?(_: {}): any;
1239
1369
  }>;
1240
1370
 
@@ -1356,7 +1486,11 @@ displayFormat: DisplayFormat;
1356
1486
  customIndicatifs: Indicatif[];
1357
1487
  useCustomIndicatifsOnly: boolean;
1358
1488
  isValidatedOnBlur: boolean;
1359
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1489
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1490
+
1491
+ declare type Preferences = {
1492
+ [key in CookieTypes]: boolean | undefined;
1493
+ };
1360
1494
 
1361
1495
  declare interface Props {
1362
1496
  threshold?: number;
@@ -1375,22 +1509,19 @@ declare type PropsList = Record<string, unknown>;
1375
1509
  declare type RuleOptions = {
1376
1510
  fieldName?: string;
1377
1511
  message?: string;
1512
+ successMessage?: string;
1378
1513
  length?: number;
1379
1514
  value?: number;
1380
1515
  pattern?: RegExp;
1381
1516
  ignoreSpace?: boolean;
1517
+ fieldIdentifier?: string;
1518
+ validate?: (value: any) => boolean | string;
1382
1519
  };
1383
1520
 
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;
1521
+ export declare const SkipLink: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1392
1522
  target: string;
1393
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1523
+ label: string;
1524
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1394
1525
  default?(_: {}): any;
1395
1526
  }>;
1396
1527
 
@@ -1414,30 +1545,14 @@ default: null;
1414
1545
  };
1415
1546
  }>> & Readonly<{}>, {
1416
1547
  links: SocialMediaLink_2[];
1417
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1548
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1418
1549
 
1419
1550
  declare type State = 'idle' | 'loading' | 'success' | 'error';
1420
1551
 
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, {
1552
+ export declare const SubHeader: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1430
1553
  "click:list-item": (...args: any[]) => void;
1431
1554
  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<{
1555
+ }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1441
1556
  "onClick:list-item"?: ((...args: any[]) => any) | undefined;
1442
1557
  onBack?: ((...args: any[]) => any) | undefined;
1443
1558
  }>, {
@@ -1457,13 +1572,29 @@ dataListGroupItems: DataListGroupItems_2;
1457
1572
  "right-content"?(_: {}): any;
1458
1573
  }>;
1459
1574
 
1575
+ export declare const SyAlert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
1576
+ prependIcon: ComputedRef<string>;
1577
+ dismissAlert: typeof dismissAlert;
1578
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1579
+ "update:modelValue": (value: boolean) => any;
1580
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
1581
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1582
+ }>, {
1583
+ type: "error" | "success" | "info" | "warning";
1584
+ closable: boolean;
1585
+ variant: "tonal" | "outlined";
1586
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1587
+ icon?(_: {}): any;
1588
+ default?(_: {}): any;
1589
+ }>;
1590
+
1460
1591
  export declare const SyBtnSelect: __VLS_WithTemplateSlots_5<DefineComponent<ExtractPropTypes< {
1461
1592
  modelValue: {
1462
1593
  type: (ObjectConstructor | StringConstructor | null)[];
1463
1594
  default: null;
1464
1595
  };
1465
1596
  menuItems: {
1466
- type: ArrayConstructor;
1597
+ type: PropType<Item[]>;
1467
1598
  default: () => never[];
1468
1599
  };
1469
1600
  label: {
@@ -1520,7 +1651,7 @@ list: {};
1520
1651
  };
1521
1652
  }>, {
1522
1653
  isOpen: Ref<boolean, boolean>;
1523
- formattedItems: ComputedRef<unknown[]>;
1654
+ formattedItems: ComputedRef<Record<string, unknown>[]>;
1524
1655
  selectedItem: Ref<string | Record<string, unknown> | null, string | Record<string, unknown> | null>;
1525
1656
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1526
1657
  "update:modelValue": (...args: any[]) => void;
@@ -1531,7 +1662,7 @@ type: (ObjectConstructor | StringConstructor | null)[];
1531
1662
  default: null;
1532
1663
  };
1533
1664
  menuItems: {
1534
- type: ArrayConstructor;
1665
+ type: PropType<Item[]>;
1535
1666
  default: () => never[];
1536
1667
  };
1537
1668
  label: {
@@ -1594,7 +1725,7 @@ modelValue: string | Record<string, any> | null;
1594
1725
  label: string;
1595
1726
  options: Record<string, any>;
1596
1727
  required: boolean;
1597
- menuItems: unknown[];
1728
+ menuItems: Item[];
1598
1729
  menuId: string;
1599
1730
  textKey: string;
1600
1731
  valueKey: string;
@@ -1604,7 +1735,7 @@ hideIcon: boolean;
1604
1735
  hideLogoutBtn: boolean;
1605
1736
  isMobileView: boolean;
1606
1737
  iconOnly: boolean;
1607
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
1738
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1608
1739
  "prepend-icon"?(_: {}): any;
1609
1740
  "append-icon"?(_: {}): any;
1610
1741
  content?(_: {}): any;
@@ -1612,17 +1743,7 @@ iconOnly: boolean;
1612
1743
  "footer-list-item"?(_: {}): any;
1613
1744
  }>;
1614
1745
 
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
- }, {
1746
+ export declare const SyInputSelect: DefineComponent<__VLS_Props_6, {
1626
1747
  isOpen: Ref<boolean, boolean>;
1627
1748
  closeList: () => void;
1628
1749
  selectItem: (item: any) => void;
@@ -1630,17 +1751,7 @@ selectedItem: Ref<string | Record<string, unknown> | null, string | Record<strin
1630
1751
  getItemText: (item: unknown) => any;
1631
1752
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1632
1753
  "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<{
1754
+ }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
1644
1755
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1645
1756
  }>, {
1646
1757
  outlined: boolean;
@@ -1745,37 +1856,18 @@ menuId: string;
1745
1856
  textKey: string;
1746
1857
  valueKey: string;
1747
1858
  errorMessages: string | readonly string[];
1748
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1859
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1749
1860
 
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
- }, {
1861
+ export declare const SyTextField: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_Props_7, {
1761
1862
  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<{}>, {
1863
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
1773
1864
  variantStyle: VariantStyle;
1774
1865
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1775
1866
  prepend?(_: {}): any;
1776
1867
  append?(_: {}): any;
1777
1868
  "prepend-inner"?(_: {}): any;
1778
1869
  "append-inner"?(_: {}): any;
1870
+ details?(_: {}): any;
1779
1871
  }>;
1780
1872
 
1781
1873
  declare type Theme = 'ameli' | 'ameli-pro' | 'cnam' | 'compte-ameli' | 'compte-entreprise' | 'default' | 'risque-pro';
@@ -1808,49 +1900,20 @@ declare function useNotificationService(): {
1808
1900
  clearQueue: () => void;
1809
1901
  };
1810
1902
 
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;
1903
+ export declare const UserMenuBtn: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1825
1904
  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;
1905
+ "update:modelValue": (value: MenuItem_2 | null) => void;
1906
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1907
+ "onUpdate:modelValue"?: ((value: MenuItem_2 | null) => any) | undefined;
1840
1908
  onLogout?: ((...args: any[]) => any) | undefined;
1841
1909
  }>, {
1842
- modelValue: string | Record<string, any> | null | undefined;
1843
- menuItems: {
1844
- text: string;
1845
- value: string;
1846
- }[];
1910
+ menuItems: MenuItem_2[];
1847
1911
  hideLogoutBtn: boolean;
1848
1912
  isMobileView: boolean;
1849
1913
  additionalInformation: string;
1850
1914
  fullName: string;
1851
- logoutIcon: string;
1852
1915
  hideUserIcon: boolean;
1853
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1916
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1854
1917
 
1855
1918
  export declare function useWidthable(props: {
1856
1919
  maxWidth?: NumberOrNumberString;
@@ -1860,7 +1923,14 @@ export declare function useWidthable(props: {
1860
1923
  widthStyles: ComputedRef<Record<string, string | undefined>>;
1861
1924
  };
1862
1925
 
1863
- declare type ValidationRule = (value: any) => string | boolean;
1926
+ declare function validateOnSubmit(): boolean;
1927
+
1928
+ declare type ValidationResult = {
1929
+ success?: string;
1930
+ error?: string;
1931
+ };
1932
+
1933
+ declare type ValidationRule = (value: any) => ValidationResult;
1864
1934
 
1865
1935
  export declare interface Widthable {
1866
1936
  maxWidth?: NumberOrNumberString;