@cnamts/synapse 0.0.7-alpha → 0.0.8-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 (102) hide show
  1. package/dist/design-system-v3.d.ts +325 -368
  2. package/dist/design-system-v3.js +2791 -2637
  3. package/dist/design-system-v3.umd.cjs +1 -10
  4. package/dist/style.css +1 -1
  5. package/package.json +10 -2
  6. package/src/assets/settings.scss +2 -2
  7. package/src/assets/tokens.scss +107 -112
  8. package/src/components/BackBtn/BackBtn.vue +4 -4
  9. package/src/components/BackToTopBtn/BackToTopBtn.vue +1 -0
  10. package/src/components/CollapsibleList/CollapsibleList.mdx +1 -1
  11. package/src/components/CollapsibleList/CollapsibleList.vue +43 -44
  12. package/src/components/ContextualMenu/ContextualMenu.mdx +118 -0
  13. package/src/components/ContextualMenu/ContextualMenu.stories.ts +430 -0
  14. package/src/components/ContextualMenu/ContextualMenu.vue +101 -0
  15. package/src/components/ContextualMenu/tests/ContextualMenu.spec.ts +115 -0
  16. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +10 -0
  17. package/src/components/ContextualMenu/types.ts +5 -0
  18. package/src/components/CookieBanner/CookieBanner.stories.ts +1 -2
  19. package/src/components/CookieBanner/CookieBanner.vue +13 -10
  20. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +17 -15
  21. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +6 -1
  22. package/src/components/CookiesSelection/CookiesInformation/locales.ts +1 -0
  23. package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +1 -0
  24. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +17 -15
  25. package/src/components/CopyBtn/CopyBtn.vue +7 -7
  26. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +26 -26
  27. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +24 -24
  28. package/src/components/Customs/SySelect/SySelect.vue +27 -26
  29. package/src/components/DataList/DataList.stories.ts +3 -2
  30. package/src/components/DataList/DataList.vue +1 -1
  31. package/src/components/DataListGroup/DataListGroup.stories.ts +3 -2
  32. package/src/components/DataListItem/DataListItem.vue +12 -12
  33. package/src/components/DialogBox/DialogBox.mdx +28 -2
  34. package/src/components/DialogBox/DialogBox.stories.ts +1 -1
  35. package/src/components/DialogBox/DialogBox.vue +3 -2
  36. package/src/components/DownloadBtn/DownloadBtn.vue +2 -1
  37. package/src/components/ExternalLinks/ExternalLinks.mdx +86 -0
  38. package/src/components/ExternalLinks/ExternalLinks.stories.ts +553 -0
  39. package/src/components/ExternalLinks/ExternalLinks.vue +200 -0
  40. package/src/components/ExternalLinks/config.ts +34 -0
  41. package/src/components/ExternalLinks/locales.ts +4 -0
  42. package/src/components/ExternalLinks/tests/ExternalLinks.spec.ts +154 -0
  43. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +159 -0
  44. package/src/components/FooterBar/FooterBar.vue +105 -80
  45. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +14 -13
  46. package/src/components/HeaderBar/HeaderBar.vue +3 -3
  47. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.vue +11 -7
  48. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +5 -5
  49. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.vue +2 -2
  50. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +10 -8
  51. package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +2 -2
  52. package/src/components/HeaderBar/HeaderLogo/logos/Logo-mobile.vue +2 -1
  53. package/src/components/HeaderBar/HeaderLogo/logos/Logo.vue +2 -1
  54. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +10 -10
  55. package/src/components/HeaderBar/consts.scss +1 -1
  56. package/src/components/HeaderLoading/HeaderLoading.vue +12 -11
  57. package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +2 -1
  58. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +9 -9
  59. package/src/components/HeaderToolbar/HeaderToolbar.vue +215 -202
  60. package/src/components/LangBtn/LangBtn.vue +8 -6
  61. package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +2 -2
  62. package/src/components/NirField/NirField.stories.ts +7 -7
  63. package/src/components/NirField/NirField.vue +44 -47
  64. package/src/components/NotFoundPage/NotFoundPage.stories.ts +33 -2
  65. package/src/components/NotFoundPage/NotFoundPage.vue +17 -0
  66. package/src/components/NotificationBar/NotificationBar.mdx +5 -5
  67. package/src/components/NotificationBar/NotificationBar.stories.ts +410 -314
  68. package/src/components/NotificationBar/NotificationBar.vue +43 -41
  69. package/src/components/PageContainer/PageContainer.vue +4 -4
  70. package/src/components/PasswordField/PasswordField.mdx +70 -0
  71. package/src/components/PasswordField/PasswordField.stories.ts +213 -0
  72. package/src/components/PasswordField/PasswordField.vue +189 -0
  73. package/src/components/PasswordField/config.ts +11 -0
  74. package/src/components/PasswordField/locales.ts +4 -0
  75. package/src/components/PasswordField/tests/PasswordField.spec.ts +96 -0
  76. package/src/components/PhoneField/PhoneField.mdx +0 -2
  77. package/src/components/PhoneField/PhoneField.stories.ts +10 -50
  78. package/src/components/PhoneField/PhoneField.vue +34 -34
  79. package/src/components/SkipLink/SkipLink.vue +10 -10
  80. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +28 -26
  81. package/src/components/SubHeader/SubHeader.vue +32 -31
  82. package/src/components/SyAlert/SyAlert.vue +12 -12
  83. package/src/components/UserMenuBtn/UserMenuBtn.vue +1 -1
  84. package/src/components/UserMenuBtn/config.ts +1 -1
  85. package/src/components/index.ts +10 -7
  86. package/src/designTokens/index.ts +6 -4
  87. package/src/designTokens/{bootstrapColors.md → paColors.md} +1 -1
  88. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -0
  89. package/src/designTokens/tokens/pa/paColors.ts +171 -0
  90. package/src/designTokens/tokens/pa/paContextual.ts +58 -0
  91. package/src/designTokens/tokens/pa/paDarkTheme.ts +5 -0
  92. package/src/designTokens/tokens/pa/paLightTheme.ts +123 -0
  93. package/src/designTokens/tokens/pa/paSemantic.ts +87 -0
  94. package/src/stories/GuideDuDev/CreerUneIssue.mdx +64 -0
  95. package/src/stories/GuideDuDev/{CommentUtiliserLesRules.mdx → UtiliserLesRules.mdx} +2 -2
  96. package/src/stories/GuideDuDev/components.stories.ts +9 -7
  97. package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +163 -88
  98. package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +250 -23
  99. package/src/temp/TestDTComponent.vue +5 -6
  100. package/src/designTokens/tokens/bootstrap/bootstrapColors.ts +0 -158
  101. package/src/designTokens/tokens/bootstrap/bootstrapLightTheme.ts +0 -22
  102. package/src/stories/GuideDuDev/CommentContribuer.mdx +0 -22
@@ -4,18 +4,24 @@ import { ColorType } from './types';
4
4
  import { ComponentOptionsMixin } from 'vue';
5
5
  import { ComponentProvideOptions } from 'vue';
6
6
  import { ComputedRef } from 'vue';
7
+ import { default as CookiesSelection } from './CookiesSelection/CookiesSelection.vue';
8
+ import { CreateComponentPublicInstanceWithMixins } from 'vue';
7
9
  import { DataListGroupItems } from './types';
8
10
  import { DataListGroupItems as DataListGroupItems_2 } from '../DataListGroup/types';
9
11
  import { DataListIcons } from './types';
10
12
  import { DataListIcons as DataListIcons_2 } from '../DataList/types';
11
13
  import { DataListItem as DataListItem_2 } from './types';
12
14
  import { DefineComponent } from 'vue';
15
+ import { default as DialogBox } from './DialogBox/DialogBox.vue';
13
16
  import { ExtractPropTypes } from 'vue';
17
+ import { GlobalComponents } from 'vue';
18
+ import { GlobalDirectives } from 'vue';
14
19
  import { IconType } from './types';
15
20
  import { LinkItem } from './types';
16
21
  import { ListItem } from './types';
17
- import { MenuItem } from './types';
22
+ import { MenuItem as MenuItem_2 } from './types';
18
23
  import { ModelRef } from 'vue';
24
+ import { default as NirField } from './NirField/NirField.vue';
19
25
  import { PropType } from 'vue';
20
26
  import { PublicProps } from 'vue';
21
27
  import { Ref } from 'vue';
@@ -26,17 +32,42 @@ import { RouteRecordRaw } from 'vue-router';
26
32
  import { SelectItem } from './types';
27
33
  import { SocialMediaLink } from '../SocialMediaLinks/types';
28
34
  import { SocialMediaLink as SocialMediaLink_2 } from './types';
35
+ import { default as SySelect } from './Customs/SySelect/SySelect.vue';
29
36
  import { VariantStyle } from './types';
30
37
 
31
38
  declare type __VLS_Props = {
32
- type?: 'success' | 'info' | 'warning' | 'error';
33
- closable?: boolean;
34
- variant?: 'tonal' | 'outlined';
39
+ hideBackIcon?: boolean;
40
+ dark?: boolean;
41
+ };
42
+
43
+ declare type __VLS_Props_10 = {
44
+ prependIcon?: IconType;
45
+ appendIcon?: IconType;
46
+ prependInnerIcon?: IconType;
47
+ appendInnerIcon?: IconType;
48
+ variantStyle?: VariantStyle;
49
+ color?: ColorType;
50
+ isClearable?: boolean;
51
+ showDivider?: boolean;
52
+ label?: string;
53
+ required?: boolean;
54
+ errorMessages?: string[];
55
+ };
56
+
57
+ declare type __VLS_Props_11 = CustomizableOptions & {
58
+ label: string;
59
+ value?: string | number;
60
+ action?: string;
61
+ placeholder?: string;
62
+ chip?: boolean;
63
+ icon?: string;
64
+ row?: boolean;
65
+ renderHtmlValue?: boolean;
35
66
  };
36
67
 
37
- declare type __VLS_Props_10 = Props_2 & CustomizableOptions;
68
+ declare type __VLS_Props_12 = Props_2 & CustomizableOptions;
38
69
 
39
- declare type __VLS_Props_11 = {
70
+ declare type __VLS_Props_13 = {
40
71
  pageTitle?: string;
41
72
  message?: string;
42
73
  code?: string;
@@ -47,7 +78,21 @@ declare type __VLS_Props_11 = {
47
78
  hideBtn?: boolean;
48
79
  };
49
80
 
50
- declare type __VLS_Props_12 = CustomizableOptions & {
81
+ declare type __VLS_Props_14 = CustomizableOptions & {
82
+ items: Array<{
83
+ text: string;
84
+ href: string;
85
+ }>;
86
+ position?: 'top right' | 'top left' | 'bottom right' | 'bottom left';
87
+ btnText?: string;
88
+ nudgeTop?: number | string;
89
+ nudgeBottom?: number | string;
90
+ fixed?: boolean;
91
+ ariaLabel?: string;
92
+ ariaOwns?: string;
93
+ };
94
+
95
+ declare type __VLS_Props_15 = CustomizableOptions & {
51
96
  a11yCompliance?: string;
52
97
  linkItems?: LinkItem[] | null;
53
98
  items?: LinkItem[] | null;
@@ -68,13 +113,13 @@ declare type __VLS_Props_12 = CustomizableOptions & {
68
113
  light?: boolean;
69
114
  };
70
115
 
71
- declare type __VLS_Props_13 = {
116
+ declare type __VLS_Props_16 = {
72
117
  href: string;
73
118
  isConnectPlus?: boolean;
74
119
  dark?: boolean;
75
120
  };
76
121
 
77
- declare type __VLS_Props_14 = {
122
+ declare type __VLS_Props_17 = {
78
123
  /** Keep the header visible */
79
124
  sticky?: boolean;
80
125
  /**
@@ -89,11 +134,11 @@ declare type __VLS_Props_14 = {
89
134
  };
90
135
  } & LogoProps;
91
136
 
92
- declare type __VLS_Props_15 = {
137
+ declare type __VLS_Props_18 = {
93
138
  title?: string;
94
139
  };
95
140
 
96
- declare type __VLS_Props_16 = {
141
+ declare type __VLS_Props_19 = {
97
142
  ariaLabel?: string;
98
143
  serviceTitle?: string;
99
144
  serviceSubtitle?: string;
@@ -104,7 +149,9 @@ declare type __VLS_Props_16 = {
104
149
  };
105
150
  };
106
151
 
107
- declare type __VLS_Props_17 = CustomizableOptions & {
152
+ declare type __VLS_Props_2 = Props & CustomizableOptions;
153
+
154
+ declare type __VLS_Props_20 = CustomizableOptions & {
108
155
  homeAriaLabel?: string;
109
156
  serviceTitle?: string;
110
157
  serviceSubtitle?: string;
@@ -131,7 +178,7 @@ declare type __VLS_Props_17 = CustomizableOptions & {
131
178
  items?: NavigationItem[];
132
179
  };
133
180
 
134
- declare type __VLS_Props_18 = CustomizableOptions & {
181
+ declare type __VLS_Props_21 = CustomizableOptions & {
135
182
  modelValue?: string;
136
183
  hideDownArrow?: boolean;
137
184
  ariaLabel?: string;
@@ -139,7 +186,7 @@ declare type __VLS_Props_18 = CustomizableOptions & {
139
186
  availableLanguages?: string[] | AllLanguagesChar;
140
187
  };
141
188
 
142
- declare type __VLS_Props_19 = {
189
+ declare type __VLS_Props_22 = {
143
190
  theme?: Theme;
144
191
  serviceTitle?: string;
145
192
  serviceSubTitle?: string;
@@ -152,43 +199,31 @@ declare type __VLS_Props_19 = {
152
199
  };
153
200
  };
154
201
 
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;
202
+ declare type __VLS_Props_23 = {
203
+ btnText?: string;
204
+ btnHref?: string;
205
+ btnLink?: RouteRecordRaw | string;
206
+ hideBtn?: boolean;
172
207
  };
173
208
 
174
- declare type __VLS_Props_21 = CustomizableOptions & {
209
+ declare type __VLS_Props_24 = CustomizableOptions & {
175
210
  closeBtnText?: string;
176
211
  rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped';
177
212
  bottom?: true | false;
178
213
  };
179
214
 
180
- declare type __VLS_Props_22 = {
215
+ declare type __VLS_Props_25 = {
181
216
  size?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
182
217
  spacing?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
183
218
  color?: string;
184
219
  };
185
220
 
186
- declare type __VLS_Props_23 = {
221
+ declare type __VLS_Props_26 = {
187
222
  label?: string;
188
223
  target?: string;
189
224
  };
190
225
 
191
- declare type __VLS_Props_24 = CustomizableOptions & Widthable & {
226
+ declare type __VLS_Props_27 = CustomizableOptions & Widthable & {
192
227
  hideBackBtn?: boolean;
193
228
  backBtnText?: string;
194
229
  titleText?: string;
@@ -198,8 +233,14 @@ declare type __VLS_Props_24 = CustomizableOptions & Widthable & {
198
233
  renderHtmlValue?: boolean;
199
234
  };
200
235
 
201
- declare type __VLS_Props_25 = CustomizableOptions & {
202
- menuItems?: MenuItem_2[];
236
+ declare type __VLS_Props_28 = {
237
+ type?: 'success' | 'info' | 'warning' | 'error';
238
+ closable?: boolean;
239
+ variant?: 'tonal' | 'outlined';
240
+ };
241
+
242
+ declare type __VLS_Props_29 = CustomizableOptions & {
243
+ menuItems?: MenuItem_3[];
203
244
  additionalInformation?: string;
204
245
  fullName?: string;
205
246
  hideLogoutBtn?: boolean;
@@ -207,31 +248,37 @@ declare type __VLS_Props_25 = CustomizableOptions & {
207
248
  hideUserIcon?: boolean;
208
249
  };
209
250
 
210
- declare type __VLS_Props_26 = CustomizableOptions & {
211
- items?: CookiesItems;
251
+ declare type __VLS_Props_3 = {
252
+ listTitle: string | null;
253
+ items: ListItem[];
212
254
  };
213
255
 
214
- declare type __VLS_Props_27 = {
215
- items: CookiesItems;
256
+ declare type __VLS_Props_30 = {
257
+ modelValue?: string | null;
258
+ outlined?: boolean;
259
+ required?: boolean;
260
+ isValidateOnBlur?: boolean;
261
+ customRules?: any;
262
+ } & CustomizableOptions;
263
+
264
+ declare type __VLS_Props_4 = {
265
+ items: MenuItem[];
216
266
  };
217
267
 
218
- declare type __VLS_Props_28 = {
268
+ declare type __VLS_Props_5 = CustomizableOptions & {
269
+ items?: CookiesItems;
270
+ };
271
+
272
+ declare type __VLS_Props_6 = {
219
273
  type: CookieTypes;
220
274
  tableItems: Cookie[];
221
275
  };
222
276
 
223
- declare type __VLS_Props_29 = {
277
+ declare type __VLS_Props_7 = {
224
278
  items: Cookie[];
225
279
  };
226
280
 
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 & {
281
+ declare type __VLS_Props_8 = CustomizableOptions & {
235
282
  ariaLabel?: string;
236
283
  ariaOwns?: string;
237
284
  textToCopy: (() => string) | string;
@@ -239,7 +286,7 @@ declare type __VLS_Props_5 = CustomizableOptions & {
239
286
  tooltipDuration?: number;
240
287
  };
241
288
 
242
- declare type __VLS_Props_6 = CustomizableOptions & {
289
+ declare type __VLS_Props_9 = CustomizableOptions & {
243
290
  modelValue?: Record<string, unknown> | string | null;
244
291
  items?: Record<string, unknown>[] | string[];
245
292
  textKey?: string;
@@ -251,71 +298,37 @@ declare type __VLS_Props_6 = CustomizableOptions & {
251
298
  isHeaderToolbar?: boolean;
252
299
  };
253
300
 
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
301
  declare type __VLS_PublicProps = {
289
- modelValue?: boolean;
290
- } & __VLS_Props;
302
+ modelValue?: string | null;
303
+ } & __VLS_Props_4;
291
304
 
292
305
  declare type __VLS_PublicProps_2 = {
293
- modelValue?: boolean;
294
- } & __VLS_Props_9;
306
+ modelValue?: typeof active['value'];
307
+ } & __VLS_Props_5;
295
308
 
296
309
  declare type __VLS_PublicProps_3 = {
297
- modelValue?: boolean;
298
- };
310
+ modelValue?: boolean | undefined;
311
+ } & __VLS_Props_6;
299
312
 
300
313
  declare type __VLS_PublicProps_4 = {
301
314
  modelValue?: boolean;
302
315
  };
303
316
 
304
317
  declare type __VLS_PublicProps_5 = {
305
- 'burgerMenu'?: boolean;
306
- } & __VLS_Props_17;
318
+ modelValue?: boolean;
319
+ };
307
320
 
308
321
  declare type __VLS_PublicProps_6 = {
309
- modelValue?: MenuItem_2 | null;
310
- } & __VLS_Props_25;
322
+ 'burgerMenu'?: boolean;
323
+ } & __VLS_Props_20;
311
324
 
312
325
  declare type __VLS_PublicProps_7 = {
313
- modelValue?: typeof active['value'];
314
- } & __VLS_Props_26;
326
+ modelValue?: boolean;
327
+ } & __VLS_Props_28;
315
328
 
316
329
  declare type __VLS_PublicProps_8 = {
317
- modelValue?: boolean | undefined;
318
- } & __VLS_Props_28;
330
+ modelValue?: MenuItem_3 | null;
331
+ } & __VLS_Props_29;
319
332
 
320
333
  declare type __VLS_WithTemplateSlots<T, S> = T & {
321
334
  new (): {
@@ -443,24 +456,12 @@ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
443
456
  };
444
457
  };
445
458
 
446
- declare type __VLS_WithTemplateSlots_29<T, S> = T & {
447
- new (): {
448
- $slots: S;
449
- };
450
- };
451
-
452
459
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
453
460
  new (): {
454
461
  $slots: S;
455
462
  };
456
463
  };
457
464
 
458
- declare type __VLS_WithTemplateSlots_30<T, S> = T & {
459
- new (): {
460
- $slots: S;
461
- };
462
- };
463
-
464
465
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
465
466
  new (): {
466
467
  $slots: S;
@@ -499,12 +500,12 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
499
500
 
500
501
  declare const active: ModelRef<boolean, string, boolean, boolean>;
501
502
 
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>, {
503
+ export declare const BackBtn: __VLS_WithTemplateSlots<DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
503
504
  icon?(_: {}): any;
504
505
  default?(_: {}): any;
505
506
  }>;
506
507
 
507
- export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
508
+ export declare const BackToTopBtn: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
508
509
  target: string;
509
510
  threshold: number;
510
511
  nudgeRight: string | number;
@@ -516,57 +517,51 @@ nudgeBottom: string | number;
516
517
 
517
518
  export declare function checkNIR(nir: string): boolean;
518
519
 
519
- export declare const CollapsibleList: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
520
+ export declare const CollapsibleList: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
520
521
 
521
522
  declare type ComponentsProps = Record<string, PropsList>;
522
523
 
523
524
  export declare function computeNIRKey(nir: string): string;
524
525
 
526
+ export declare const ContextualMenu: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
527
+ "update:modelValue": (value: string | null) => any;
528
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
529
+ "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
530
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
531
+
525
532
  declare interface Cookie {
526
533
  name: string;
527
534
  description?: string;
528
535
  conservation: string;
529
536
  }
530
537
 
531
- export declare const CookieBanner: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
538
+ export declare const CookieBanner: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
532
539
  submit: (...args: any[]) => void;
533
540
  accept: (...args: any[]) => void;
534
541
  reject: (...args: any[]) => void;
535
542
  customize: (...args: any[]) => void;
536
543
  "update:modelValue": (value: boolean) => void;
537
- }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
544
+ }, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
538
545
  onSubmit?: ((...args: any[]) => any) | undefined;
539
546
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
540
547
  onAccept?: ((...args: any[]) => any) | undefined;
541
548
  onReject?: ((...args: any[]) => any) | undefined;
542
549
  onCustomize?: ((...args: any[]) => any) | undefined;
543
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<NonNullable<string | number>, (_: {
544
- cookie: Cookie;
545
- }) => any>> & {
546
- default?(_: {}): any;
547
- }>;
550
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, any>;
548
551
 
549
- export declare const CookiesInformation: __VLS_WithTemplateSlots_29<DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
552
+ export declare const CookiesInformation: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
550
553
  "update:modelValue": (value: boolean | undefined) => any;
551
- }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
554
+ }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
552
555
  "onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
553
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Partial<Record<NonNullable<string | number>, (_: {
554
- cookie: Cookie;
555
- }) => any>>>;
556
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, any>;
556
557
 
557
558
  declare type CookiesItems = {
558
559
  [key in CookieTypes]?: Cookie[];
559
560
  };
560
561
 
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>>>;
562
+ export { CookiesSelection }
568
563
 
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, (_: {
564
+ export declare const CookiesTable: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<string, (_: {
570
565
  cookie: Cookie;
571
566
  }) => any>>>;
572
567
 
@@ -574,10 +569,10 @@ declare type CookieTypes = 'essentials' | 'functional' | 'analytics';
574
569
 
575
570
  declare function copy(): void;
576
571
 
577
- export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Props_5, {
572
+ export declare const CopyBtn: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_Props_8, {
578
573
  copy: typeof copy;
579
574
  tooltip: Ref<boolean, boolean>;
580
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
575
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
581
576
  ariaLabel: string;
582
577
  ariaOwns: string;
583
578
  textToCopy: string | (() => string);
@@ -592,7 +587,7 @@ export declare interface CustomizableOptions {
592
587
  vuetifyOptions?: ComponentsProps;
593
588
  }
594
589
 
595
- export declare const DataList: __VLS_WithTemplateSlots_7<DefineComponent<ExtractPropTypes< {
590
+ export declare const DataList: __VLS_WithTemplateSlots_9<DefineComponent<ExtractPropTypes< {
596
591
  items: {
597
592
  type: PropType<DataListItem_2[]>;
598
593
  required: true;
@@ -703,10 +698,10 @@ default: undefined;
703
698
  }>> & Readonly<{
704
699
  "onClick:item-action"?: ((...args: any[]) => any) | undefined;
705
700
  }>, {
701
+ loading: boolean;
706
702
  maxWidth: string;
707
703
  minWidth: string;
708
704
  width: string;
709
- loading: boolean;
710
705
  listTitle: string;
711
706
  placeholder: string;
712
707
  row: boolean;
@@ -772,16 +767,16 @@ itemWidth: string;
772
767
  icons: DataListIcons_2 | undefined;
773
768
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
774
769
 
775
- export declare const DataListItem: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
770
+ export declare const DataListItem: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
776
771
  "click:action": (...args: any[]) => void;
777
- }, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
772
+ }, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
778
773
  "onClick:action"?: ((...args: any[]) => any) | undefined;
779
774
  }>, {
780
775
  icon: string;
781
- label: string;
782
776
  value: string | number;
783
- placeholder: string;
777
+ label: string;
784
778
  action: string;
779
+ placeholder: string;
785
780
  chip: boolean;
786
781
  row: boolean;
787
782
  renderHtmlValue: boolean;
@@ -793,30 +788,7 @@ renderHtmlValue: boolean;
793
788
  action?(_: {}): any;
794
789
  }>;
795
790
 
796
- export declare const DialogBox: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
797
- cancel: (...args: any[]) => void;
798
- "update:modelValue": (...args: any[]) => void;
799
- confirm: (...args: any[]) => void;
800
- }, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
801
- onCancel?: ((...args: any[]) => any) | undefined;
802
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
803
- onConfirm?: ((...args: any[]) => any) | undefined;
804
- }>, {
805
- width: string;
806
- title: string;
807
- hideActions: boolean;
808
- persistent: boolean;
809
- cancelBtnText: string;
810
- confirmBtnText: string;
811
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
812
- default?: (() => undefined) | undefined;
813
- title?: (() => undefined) | undefined;
814
- actions?: (() => undefined) | undefined;
815
- }> & {
816
- default?: (() => undefined) | undefined;
817
- title?: (() => undefined) | undefined;
818
- actions?: (() => undefined) | undefined;
819
- }>;
791
+ export { DialogBox }
820
792
 
821
793
  declare function dismissAlert(): void;
822
794
 
@@ -824,16 +796,16 @@ declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'co
824
796
 
825
797
  declare function download(): Promise<void>;
826
798
 
827
- export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_Props_10, {
799
+ export declare const DownloadBtn: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_Props_12, {
828
800
  getFileInfo: typeof getFileInfo;
829
801
  download: typeof download;
830
802
  state: Ref<State, State>;
831
803
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
832
- error: (...args: any[]) => void;
833
804
  success: (...args: any[]) => void;
834
- }, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
835
- onError?: ((...args: any[]) => any) | undefined;
805
+ error: (...args: any[]) => void;
806
+ }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
836
807
  onSuccess?: ((...args: any[]) => any) | undefined;
808
+ onError?: ((...args: any[]) => any) | undefined;
837
809
  }>, {
838
810
  fallbackFilename: string;
839
811
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
@@ -841,9 +813,9 @@ fallbackFilename: string;
841
813
  default?(_: {}): any;
842
814
  }>;
843
815
 
844
- export declare const ErrorPage: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
845
- code: string;
816
+ export declare const ErrorPage: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
846
817
  message: string;
818
+ code: string;
847
819
  pageTitle: string;
848
820
  codeErrorText: string;
849
821
  btnText: string;
@@ -851,11 +823,23 @@ btnHref: string;
851
823
  btnLink: string | RouteRecordRaw;
852
824
  hideBtn: boolean;
853
825
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
854
- "additional-content"?(_: {}): any;
826
+ 'additional-content'?(_: {}): any;
855
827
  action?(_: {}): any;
856
828
  illustration?(_: {}): any;
857
829
  }>;
858
830
 
831
+ export declare const ExternalLinks: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
832
+ position: "top left" | "top right" | "bottom left" | "bottom right";
833
+ fixed: boolean;
834
+ nudgeBottom: string | number;
835
+ ariaLabel: string;
836
+ ariaOwns: string;
837
+ btnText: string;
838
+ nudgeTop: string | number;
839
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
840
+ 'link-icon'?(_: {}): any;
841
+ }>;
842
+
859
843
  declare interface FileInfo {
860
844
  name: string;
861
845
  type: string;
@@ -863,9 +847,9 @@ declare interface FileInfo {
863
847
 
864
848
  declare function focus_2(): void;
865
849
 
866
- export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Props_12, {
850
+ export declare const FooterBar: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_Props_15, {
867
851
  logoSize: ComputedRef<"small" | "normal">;
868
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
852
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
869
853
  light: boolean;
870
854
  items: LinkItem[] | null;
871
855
  a11yCompliance: string;
@@ -891,7 +875,7 @@ socialMediaLinks: SocialMediaLink[];
891
875
  append?(_: {}): any;
892
876
  }>;
893
877
 
894
- export declare const FranceConnectBtn: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
878
+ export declare const FranceConnectBtn: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
895
879
  dark: boolean;
896
880
  isConnectPlus: boolean;
897
881
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -901,7 +885,7 @@ isConnectPlus: boolean;
901
885
  */
902
886
  declare function getFileInfo(header: Record<string, string>): FileInfo;
903
887
 
904
- export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
888
+ export declare const HeaderBar: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
905
889
  sticky: boolean;
906
890
  serviceTitle: string;
907
891
  serviceSubtitle: string;
@@ -916,7 +900,10 @@ href?: string | undefined;
916
900
  };
917
901
  hideWhenDown: boolean;
918
902
  homeAriaLabel: string;
919
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>, Readonly<{
903
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
904
+ header: HTMLElement;
905
+ headerSticky: HTMLDivElement;
906
+ }, HTMLElement>, Readonly<{
920
907
  prepend: (props: SlotProps) => unknown;
921
908
  append: (props: SlotProps) => unknown;
922
909
  menu: (props: SlotProps) => unknown;
@@ -932,11 +919,62 @@ homeAriaLabel: string;
932
919
  'header-side': (props: SlotProps) => unknown;
933
920
  }>;
934
921
 
935
- export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
922
+ export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
936
923
  "update:modelValue": (value: boolean) => any;
937
- }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
924
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
938
925
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
939
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
926
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
927
+ menuBtnWrapper: HTMLDivElement;
928
+ outerBtn: CreateComponentPublicInstanceWithMixins<Readonly<{
929
+ modelValue?: boolean | undefined;
930
+ }> & Readonly<{
931
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
932
+ }>, {
933
+ focus: () => void;
934
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
935
+ "update:modelValue": (value: boolean) => any;
936
+ }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
937
+ btn: HTMLButtonElement;
938
+ }, HTMLButtonElement, ComponentProvideOptions, {
939
+ P: {};
940
+ B: {};
941
+ D: {};
942
+ C: {};
943
+ M: {};
944
+ Defaults: {};
945
+ }, Readonly<{
946
+ modelValue?: boolean | undefined;
947
+ }> & Readonly<{
948
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
949
+ }>, {
950
+ focus: () => void;
951
+ }, {}, {}, {}, {}> | null;
952
+ innerBtn: CreateComponentPublicInstanceWithMixins<Readonly<{
953
+ modelValue?: boolean | undefined;
954
+ }> & Readonly<{
955
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
956
+ }>, {
957
+ focus: () => void;
958
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
959
+ "update:modelValue": (value: boolean) => any;
960
+ }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
961
+ btn: HTMLButtonElement;
962
+ }, HTMLButtonElement, ComponentProvideOptions, {
963
+ P: {};
964
+ B: {};
965
+ D: {};
966
+ C: {};
967
+ M: {};
968
+ Defaults: {};
969
+ }, Readonly<{
970
+ modelValue?: boolean | undefined;
971
+ }> & Readonly<{
972
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
973
+ }>, {
974
+ focus: () => void;
975
+ }, {}, {}, {}, {}> | null;
976
+ headerMenuWrapper: HTMLElement;
977
+ }, HTMLDivElement>, {
940
978
  default?(_: {}): any;
941
979
  }>;
942
980
 
@@ -963,7 +1001,7 @@ height: string;
963
1001
  width: string;
964
1002
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
965
1003
 
966
- export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
1004
+ export declare const HeaderLogo: __VLS_WithTemplateSlots_20<DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
967
1005
  ariaLabel: string;
968
1006
  serviceTitle: string;
969
1007
  serviceSubtitle: string;
@@ -978,26 +1016,28 @@ href?: string | undefined;
978
1016
  'brand-content'?(): void;
979
1017
  }>;
980
1018
 
981
- export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_4, {
1019
+ export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_5, {
982
1020
  focus: typeof focus_2;
983
1021
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
984
1022
  "update:modelValue": (value: boolean) => any;
985
- }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
1023
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
986
1024
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
987
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
1025
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
1026
+ btn: HTMLButtonElement;
1027
+ }, HTMLButtonElement>;
988
1028
 
989
- export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
1029
+ export declare const HeaderMenuItem: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
990
1030
  default?(_: {}): any;
991
1031
  }>;
992
1032
 
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>, {
1033
+ export declare const HeaderMenuSection: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
994
1034
  title?(_: {}): any;
995
1035
  default?(_: {}): any;
996
1036
  }>;
997
1037
 
998
- export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1038
+ export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
999
1039
  "update:burgerMenu": (value: boolean) => any;
1000
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
1040
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1001
1041
  "onUpdate:burgerMenu"?: ((value: boolean) => any) | undefined;
1002
1042
  }>, {
1003
1043
  sticky: boolean;
@@ -1034,14 +1074,14 @@ maxHorizontalMenuItems: number;
1034
1074
  'navigation-menu-content': (props: SlotProps_2) => unknown;
1035
1075
  }>;
1036
1076
 
1037
- export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1077
+ export declare const HeaderSubMenu: __VLS_WithTemplateSlots_19<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1038
1078
  title?(_: {}): any;
1039
1079
  default?(_: {}): any;
1040
1080
  }>;
1041
1081
 
1042
- export declare const HeaderToolbar: __VLS_WithTemplateSlots_20<DefineComponent<ExtractPropTypes< {
1082
+ export declare const HeaderToolbar: __VLS_WithTemplateSlots_22<DefineComponent<ExtractPropTypes< {
1043
1083
  leftMenu: {
1044
- type: PropType<MenuItem[]>;
1084
+ type: PropType<MenuItem_2[]>;
1045
1085
  default: () => ({
1046
1086
  title: string;
1047
1087
  href: string;
@@ -1053,7 +1093,7 @@ openInNewTab?: undefined;
1053
1093
  })[];
1054
1094
  };
1055
1095
  rightMenu: {
1056
- type: PropType<MenuItem[]>;
1096
+ type: PropType<MenuItem_2[]>;
1057
1097
  default: () => {
1058
1098
  title: string;
1059
1099
  href: string;
@@ -1085,10 +1125,10 @@ deleteActiveLink: () => void;
1085
1125
  activeIndex: Ref<number | null, number | null>;
1086
1126
  highlightMenu: Ref<boolean, boolean>;
1087
1127
  showOverlay: Ref<boolean, boolean>;
1088
- getLinkComponent: (item: MenuItem) => string;
1128
+ getLinkComponent: (item: MenuItem_2) => string;
1089
1129
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
1090
1130
  leftMenu: {
1091
- type: PropType<MenuItem[]>;
1131
+ type: PropType<MenuItem_2[]>;
1092
1132
  default: () => ({
1093
1133
  title: string;
1094
1134
  href: string;
@@ -1100,7 +1140,7 @@ openInNewTab?: undefined;
1100
1140
  })[];
1101
1141
  };
1102
1142
  rightMenu: {
1103
- type: PropType<MenuItem[]>;
1143
+ type: PropType<MenuItem_2[]>;
1104
1144
  default: () => {
1105
1145
  title: string;
1106
1146
  href: string;
@@ -1125,14 +1165,14 @@ type: StringConstructor;
1125
1165
  default: string;
1126
1166
  };
1127
1167
  }>> & Readonly<{}>, {
1128
- leftMenu: MenuItem[];
1129
- rightMenu: MenuItem[];
1168
+ leftMenu: MenuItem_2[];
1169
+ rightMenu: MenuItem_2[];
1130
1170
  itemsSelectMenu: SelectItem[];
1131
1171
  ariaLeftMenu: string;
1132
1172
  ariaRightMenu: string;
1133
1173
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1134
- "left-menu"?(_: {}): any;
1135
- "right-menu"?(_: {}): any;
1174
+ 'left-menu'?(_: {}): any;
1175
+ 'right-menu'?(_: {}): any;
1136
1176
  }>;
1137
1177
 
1138
1178
  declare type Indicatif = {
@@ -1149,7 +1189,7 @@ declare type Item = string | Record<string, unknown>;
1149
1189
 
1150
1190
  export declare const KEY_LENGTH = 2;
1151
1191
 
1152
- export declare const LangBtn: DefineComponent<__VLS_Props_18, {
1192
+ export declare const LangBtn: DefineComponent<__VLS_Props_21, {
1153
1193
  currentLangData: ComputedRef< {
1154
1194
  name: string;
1155
1195
  label: string;
@@ -1159,7 +1199,7 @@ selectedLanguage: Ref<string, string>;
1159
1199
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1160
1200
  change: (...args: any[]) => void;
1161
1201
  "update:modelValue": (...args: any[]) => void;
1162
- }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
1202
+ }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
1163
1203
  onChange?: ((...args: any[]) => any) | undefined;
1164
1204
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1165
1205
  }>, {
@@ -1231,8 +1271,8 @@ default: "normal";
1231
1271
  validator: (value: string) => boolean;
1232
1272
  };
1233
1273
  }>> & Readonly<{}>, {
1234
- size: "small" | "x-small" | "normal";
1235
1274
  dark: boolean;
1275
+ size: "small" | "x-small" | "normal";
1236
1276
  ariaLabel: string;
1237
1277
  avatar: boolean;
1238
1278
  hideSignature: boolean;
@@ -1240,7 +1280,7 @@ hideOrganism: boolean;
1240
1280
  risquePro: boolean;
1241
1281
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
1242
1282
 
1243
- export declare const LogoBrandSection: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
1283
+ export declare const LogoBrandSection: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
1244
1284
  theme: Theme;
1245
1285
  serviceTitle: string;
1246
1286
  homeLink: {
@@ -1278,7 +1318,13 @@ declare type LogoProps_2 = {
1278
1318
 
1279
1319
  export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1280
1320
 
1281
- declare type MenuItem_2 = {
1321
+ declare interface MenuItem {
1322
+ text: string;
1323
+ hash: string;
1324
+ level?: number;
1325
+ }
1326
+
1327
+ declare type MenuItem_3 = {
1282
1328
  text: string;
1283
1329
  value: string;
1284
1330
  link?: string;
@@ -1290,30 +1336,14 @@ declare interface NavigationItem {
1290
1336
  to?: RouteLocationRaw;
1291
1337
  }
1292
1338
 
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
- }>;
1339
+ export { NirField }
1315
1340
 
1316
- export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1341
+ export declare const NotFoundPage: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1342
+ btnText: string;
1343
+ btnHref: string;
1344
+ btnLink: string | RouteRecordRaw;
1345
+ hideBtn: boolean;
1346
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1317
1347
 
1318
1348
  declare interface Notification_2 {
1319
1349
  id: string;
@@ -1324,7 +1354,7 @@ declare interface Notification_2 {
1324
1354
  }
1325
1355
  export { Notification_2 as Notification }
1326
1356
 
1327
- export declare const NotificationBar: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_21, {
1357
+ export declare const NotificationBar: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_Props_24, {
1328
1358
  openNotification: (notification: Notification_2) => void;
1329
1359
  handleClearNotification: () => void;
1330
1360
  showNextNotification: () => void;
@@ -1341,7 +1371,7 @@ contentColor: string;
1341
1371
  }>;
1342
1372
  smallCloseBtn: ComputedRef<boolean>;
1343
1373
  isVertical: ComputedRef<boolean>;
1344
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
1374
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
1345
1375
  rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "lg" | "sm" | "xs" | "shaped";
1346
1376
  bottom: boolean;
1347
1377
  closeBtnText: string;
@@ -1359,10 +1389,10 @@ export declare const NUMBER_LENGTH = 13;
1359
1389
 
1360
1390
  export declare type NumberOrNumberString = string | number | undefined;
1361
1391
 
1362
- export declare const PageContainer: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_Props_22, {
1392
+ export declare const PageContainer: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_Props_25, {
1363
1393
  spacingClass: ComputedRef<string>;
1364
1394
  containerSize: ComputedRef<number>;
1365
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
1395
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
1366
1396
  color: string;
1367
1397
  size: "xl" | "lg" | "md" | "sm" | "xs";
1368
1398
  spacing: "xl" | "lg" | "md" | "sm" | "xs";
@@ -1370,6 +1400,22 @@ spacing: "xl" | "lg" | "md" | "sm" | "xs";
1370
1400
  default?(_: {}): any;
1371
1401
  }>;
1372
1402
 
1403
+ export declare const PasswordField: DefineComponent<__VLS_Props_30, {
1404
+ validateOnSubmit: typeof validateOnSubmit;
1405
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1406
+ submit: (...args: any[]) => void;
1407
+ "update:modelValue": (...args: any[]) => void;
1408
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
1409
+ onSubmit?: ((...args: any[]) => any) | undefined;
1410
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1411
+ }>, {
1412
+ outlined: boolean;
1413
+ modelValue: string | null;
1414
+ required: boolean;
1415
+ isValidateOnBlur: boolean;
1416
+ customRules: any;
1417
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1418
+
1373
1419
  export declare const PhoneField: DefineComponent<ExtractPropTypes< {
1374
1420
  modelValue: {
1375
1421
  type: StringConstructor;
@@ -1490,10 +1536,6 @@ useCustomIndicatifsOnly: boolean;
1490
1536
  isValidatedOnBlur: boolean;
1491
1537
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1492
1538
 
1493
- declare type Preferences = {
1494
- [key in CookieTypes]: boolean | undefined;
1495
- };
1496
-
1497
1539
  declare interface Props {
1498
1540
  threshold?: number;
1499
1541
  nudgeRight?: string | number;
@@ -1520,10 +1562,12 @@ declare type RuleOptions = {
1520
1562
  validate?: (value: any) => boolean | string;
1521
1563
  };
1522
1564
 
1523
- export declare const SkipLink: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1565
+ export declare const SkipLink: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
1524
1566
  target: string;
1525
1567
  label: string;
1526
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1568
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1569
+ skipLinkSpan: HTMLSpanElement;
1570
+ }, HTMLDivElement>, {
1527
1571
  default?(_: {}): any;
1528
1572
  }>;
1529
1573
 
@@ -1551,10 +1595,10 @@ links: SocialMediaLink_2[];
1551
1595
 
1552
1596
  declare type State = 'idle' | 'loading' | 'success' | 'error';
1553
1597
 
1554
- export declare const SubHeader: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1598
+ export declare const SubHeader: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1555
1599
  "click:list-item": (...args: any[]) => void;
1556
1600
  back: (...args: any[]) => void;
1557
- }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1601
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
1558
1602
  "onClick:list-item"?: ((...args: any[]) => any) | undefined;
1559
1603
  onBack?: ((...args: any[]) => any) | undefined;
1560
1604
  }>, {
@@ -1566,33 +1610,33 @@ titleText: string;
1566
1610
  subTitleText: string;
1567
1611
  dataListGroupItems: DataListGroupItems_2;
1568
1612
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1569
- "back-btn"?(_: {}): any;
1570
- "back-btn-icon"?(_: {}): any;
1613
+ 'back-btn'?(_: {}): any;
1614
+ 'back-btn-icon'?(_: {}): any;
1571
1615
  title?(_: {}): any;
1572
- "sub-title"?(_: {}): any;
1573
- "additional-informations"?(_: {}): any;
1574
- "right-content"?(_: {}): any;
1616
+ 'sub-title'?(_: {}): any;
1617
+ 'additional-informations'?(_: {}): any;
1618
+ 'right-content'?(_: {}): any;
1575
1619
  }>;
1576
1620
 
1577
- export declare const SyAlert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
1621
+ export declare const SyAlert: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_PublicProps_7, {
1578
1622
  prependIcon: ComputedRef<string>;
1579
1623
  dismissAlert: typeof dismissAlert;
1580
1624
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1581
1625
  "update:modelValue": (value: boolean) => any;
1582
- }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
1626
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
1583
1627
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1584
1628
  }>, {
1585
- type: "error" | "success" | "info" | "warning";
1629
+ type: "info" | "success" | "warning" | "error";
1630
+ variant: "outlined" | "tonal";
1586
1631
  closable: boolean;
1587
- variant: "tonal" | "outlined";
1588
1632
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1589
1633
  icon?(_: {}): any;
1590
1634
  default?(_: {}): any;
1591
1635
  }>;
1592
1636
 
1593
- export declare const SyBtnSelect: __VLS_WithTemplateSlots_5<DefineComponent<ExtractPropTypes< {
1637
+ export declare const SyBtnSelect: __VLS_WithTemplateSlots_7<DefineComponent<ExtractPropTypes< {
1594
1638
  modelValue: {
1595
- type: (ObjectConstructor | StringConstructor | null)[];
1639
+ type: (StringConstructor | ObjectConstructor | null)[];
1596
1640
  default: null;
1597
1641
  };
1598
1642
  menuItems: {
@@ -1660,7 +1704,7 @@ selectedItem: Ref<string | Record<string, unknown> | null, string | Record<strin
1660
1704
  logout: (...args: any[]) => void;
1661
1705
  }, string, PublicProps, Readonly<ExtractPropTypes< {
1662
1706
  modelValue: {
1663
- type: (ObjectConstructor | StringConstructor | null)[];
1707
+ type: (StringConstructor | ObjectConstructor | null)[];
1664
1708
  default: null;
1665
1709
  };
1666
1710
  menuItems: {
@@ -1723,9 +1767,9 @@ list: {};
1723
1767
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1724
1768
  onLogout?: ((...args: any[]) => any) | undefined;
1725
1769
  }>, {
1726
- modelValue: string | Record<string, any> | null;
1727
- label: string;
1728
1770
  options: Record<string, any>;
1771
+ label: string;
1772
+ modelValue: string | Record<string, any> | null;
1729
1773
  required: boolean;
1730
1774
  menuItems: Item[];
1731
1775
  menuId: string;
@@ -1737,15 +1781,17 @@ hideIcon: boolean;
1737
1781
  hideLogoutBtn: boolean;
1738
1782
  isMobileView: boolean;
1739
1783
  iconOnly: boolean;
1740
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1741
- "prepend-icon"?(_: {}): any;
1742
- "append-icon"?(_: {}): any;
1784
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {
1785
+ buttonRef: HTMLDivElement;
1786
+ }, HTMLDivElement>, {
1787
+ 'prepend-icon'?(_: {}): any;
1788
+ 'append-icon'?(_: {}): any;
1743
1789
  content?(_: {}): any;
1744
1790
  default?(_: {}): any;
1745
- "footer-list-item"?(_: {}): any;
1791
+ 'footer-list-item'?(_: {}): any;
1746
1792
  }>;
1747
1793
 
1748
- export declare const SyInputSelect: DefineComponent<__VLS_Props_6, {
1794
+ export declare const SyInputSelect: DefineComponent<__VLS_Props_9, {
1749
1795
  isOpen: Ref<boolean, boolean>;
1750
1796
  closeList: () => void;
1751
1797
  selectItem: (item: any) => void;
@@ -1753,122 +1799,33 @@ selectedItem: Ref<string | Record<string, unknown> | null, string | Record<strin
1753
1799
  getItemText: (item: unknown) => any;
1754
1800
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1755
1801
  "update:modelValue": (...args: any[]) => void;
1756
- }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
1802
+ }, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
1757
1803
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1758
1804
  }>, {
1759
1805
  outlined: boolean;
1760
- modelValue: string | Record<string, unknown> | null;
1761
1806
  label: string;
1762
1807
  items: string[] | Record<string, unknown>[];
1808
+ modelValue: string | Record<string, unknown> | null;
1763
1809
  required: boolean;
1810
+ errorMessages: string | string[];
1764
1811
  textKey: string;
1765
1812
  valueKey: string;
1766
- errorMessages: string | string[];
1767
1813
  isHeaderToolbar: boolean;
1768
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1814
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1815
+ menu: HTMLDivElement;
1816
+ }, any>;
1769
1817
 
1770
- export declare const SySelect: DefineComponent<ExtractPropTypes< {
1771
- modelValue: {
1772
- type: (ObjectConstructor | StringConstructor)[];
1773
- default: null;
1774
- };
1775
- items: {
1776
- type: ArrayConstructor;
1777
- default: () => never[];
1778
- };
1779
- label: {
1780
- type: StringConstructor;
1781
- default: string;
1782
- };
1783
- errorMessages: {
1784
- type: PropType<string | readonly string[]>;
1785
- default: () => never[];
1786
- };
1787
- required: {
1788
- type: BooleanConstructor;
1789
- default: boolean;
1790
- };
1791
- menuId: {
1792
- type: StringConstructor;
1793
- default: string;
1794
- };
1795
- outlined: {
1796
- type: BooleanConstructor;
1797
- default: boolean;
1798
- };
1799
- textKey: {
1800
- type: StringConstructor;
1801
- default: string;
1802
- };
1803
- valueKey: {
1804
- type: StringConstructor;
1805
- default: string;
1806
- };
1807
- }>, {
1808
- isOpen: Ref<boolean, boolean>;
1809
- closeList: () => void;
1810
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1811
- "update:modelValue": (...args: any[]) => void;
1812
- }, string, PublicProps, Readonly<ExtractPropTypes< {
1813
- modelValue: {
1814
- type: (ObjectConstructor | StringConstructor)[];
1815
- default: null;
1816
- };
1817
- items: {
1818
- type: ArrayConstructor;
1819
- default: () => never[];
1820
- };
1821
- label: {
1822
- type: StringConstructor;
1823
- default: string;
1824
- };
1825
- errorMessages: {
1826
- type: PropType<string | readonly string[]>;
1827
- default: () => never[];
1828
- };
1829
- required: {
1830
- type: BooleanConstructor;
1831
- default: boolean;
1832
- };
1833
- menuId: {
1834
- type: StringConstructor;
1835
- default: string;
1836
- };
1837
- outlined: {
1838
- type: BooleanConstructor;
1839
- default: boolean;
1840
- };
1841
- textKey: {
1842
- type: StringConstructor;
1843
- default: string;
1844
- };
1845
- valueKey: {
1846
- type: StringConstructor;
1847
- default: string;
1848
- };
1849
- }>> & Readonly<{
1850
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1851
- }>, {
1852
- outlined: boolean;
1853
- modelValue: string | Record<string, any>;
1854
- label: string;
1855
- items: unknown[];
1856
- required: boolean;
1857
- menuId: string;
1858
- textKey: string;
1859
- valueKey: string;
1860
- errorMessages: string | readonly string[];
1861
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
1818
+ export { SySelect }
1862
1819
 
1863
- export declare const SyTextField: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_Props_7, {
1864
- appendInnerIconColor: ComputedRef<"error" | "success" | "black">;
1865
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
1820
+ export declare const SyTextField: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Props_10, {
1821
+ appendInnerIconColor: ComputedRef<"success" | "error" | "black">;
1822
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
1866
1823
  variantStyle: VariantStyle;
1867
1824
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1868
1825
  prepend?(_: {}): any;
1869
1826
  append?(_: {}): any;
1870
- "prepend-inner"?(_: {}): any;
1871
- "append-inner"?(_: {}): any;
1827
+ 'prepend-inner'?(_: {}): any;
1828
+ 'append-inner'?(_: {}): any;
1872
1829
  details?(_: {}): any;
1873
1830
  }>;
1874
1831
 
@@ -1887,13 +1844,13 @@ export declare function useNotificationService(): {
1887
1844
  notificationQueue: Ref< {
1888
1845
  id: string;
1889
1846
  message: string;
1890
- type: "error" | "success" | "info" | "warning";
1847
+ type: "info" | "success" | "warning" | "error";
1891
1848
  timeout?: number | undefined;
1892
1849
  icon?: string | null | undefined;
1893
1850
  }[], Notification_2[] | {
1894
1851
  id: string;
1895
1852
  message: string;
1896
- type: "error" | "success" | "info" | "warning";
1853
+ type: "info" | "success" | "warning" | "error";
1897
1854
  timeout?: number | undefined;
1898
1855
  icon?: string | null | undefined;
1899
1856
  }[]>;
@@ -1902,14 +1859,14 @@ export declare function useNotificationService(): {
1902
1859
  clearQueue: () => void;
1903
1860
  };
1904
1861
 
1905
- export declare const UserMenuBtn: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1862
+ export declare const UserMenuBtn: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1906
1863
  logout: (...args: any[]) => void;
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;
1864
+ "update:modelValue": (value: MenuItem_3 | null) => void;
1865
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
1866
+ "onUpdate:modelValue"?: ((value: MenuItem_3 | null) => any) | undefined;
1910
1867
  onLogout?: ((...args: any[]) => any) | undefined;
1911
1868
  }>, {
1912
- menuItems: MenuItem_2[];
1869
+ menuItems: MenuItem_3[];
1913
1870
  hideLogoutBtn: boolean;
1914
1871
  isMobileView: boolean;
1915
1872
  additionalInformation: string;