@cnamts/synapse 0.0.9-alpha → 0.0.10-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 (55) hide show
  1. package/dist/design-system-v3.d.ts +631 -62
  2. package/dist/design-system-v3.js +3451 -2650
  3. package/dist/design-system-v3.umd.cjs +1 -1
  4. package/dist/style.css +1 -1
  5. package/package.json +1 -1
  6. package/src/components/DatePicker/Accessibilite.mdx +14 -0
  7. package/src/components/DatePicker/Accessibilite.stories.ts +191 -0
  8. package/src/components/DatePicker/AccessibiliteItems.ts +233 -0
  9. package/src/components/DatePicker/DatePicker.mdx +1 -6
  10. package/src/components/DatePicker/DatePicker.stories.ts +16 -16
  11. package/src/components/DatePicker/DatePicker.vue +20 -6
  12. package/src/components/DatePicker/constants/ExpertiseLevelEnum.ts +4 -0
  13. package/src/components/FileList/FileList.mdx +103 -0
  14. package/src/components/FileList/FileList.stories.ts +562 -0
  15. package/src/components/FileList/FileList.vue +78 -0
  16. package/src/components/FileList/UploadItem/UploadItem.vue +270 -0
  17. package/src/components/FileList/UploadItem/locales.ts +9 -0
  18. package/src/components/FileList/tests/FileList.spec.ts +176 -0
  19. package/src/components/FilePreview/FilePreview.mdx +82 -0
  20. package/src/components/FilePreview/FilePreview.stories.ts +242 -0
  21. package/src/components/FilePreview/FilePreview.vue +68 -0
  22. package/src/components/FilePreview/config.ts +10 -0
  23. package/src/components/FilePreview/locales.ts +4 -0
  24. package/src/components/FilePreview/tests/FilePreview.spec.ts +124 -0
  25. package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +11 -0
  26. package/src/components/PeriodField/PeriodField.mdx +32 -0
  27. package/src/components/PeriodField/PeriodField.stories.ts +807 -0
  28. package/src/components/PeriodField/PeriodField.vue +355 -0
  29. package/src/components/PeriodField/tests/PeriodField.spec.ts +348 -0
  30. package/src/components/RangeField/Accessibilite.mdx +14 -0
  31. package/src/components/RangeField/Accessibilite.stories.ts +191 -0
  32. package/src/components/RangeField/AccessibiliteItems.ts +179 -0
  33. package/src/components/RangeField/constants/ExpertiseLevelEnum.ts +4 -0
  34. package/src/components/RatingPicker/Accessibilite.mdx +14 -0
  35. package/src/components/RatingPicker/Accessibilite.stories.ts +191 -0
  36. package/src/components/RatingPicker/AccessibiliteItems.ts +208 -0
  37. package/src/components/RatingPicker/constants/ExpertiseLevelEnum.ts +4 -0
  38. package/src/components/SearchListField/Accessibilite.mdx +14 -0
  39. package/src/components/SearchListField/Accessibilite.stories.ts +191 -0
  40. package/src/components/SearchListField/AccessibiliteItems.ts +310 -0
  41. package/src/components/SearchListField/constants/ExpertiseLevelEnum.ts +4 -0
  42. package/src/components/SelectBtnField/Accessibilite.mdx +14 -0
  43. package/src/components/SelectBtnField/Accessibilite.stories.ts +191 -0
  44. package/src/components/SelectBtnField/AccessibiliteItems.ts +191 -0
  45. package/src/components/SelectBtnField/constants/ExpertiseLevelEnum.ts +4 -0
  46. package/src/components/SyAlert/SyAlert.vue +11 -9
  47. package/src/components/TableToolbar/TableToolbar.mdx +130 -0
  48. package/src/components/TableToolbar/TableToolbar.stories.ts +935 -0
  49. package/src/components/TableToolbar/TableToolbar.vue +168 -0
  50. package/src/components/TableToolbar/config.ts +24 -0
  51. package/src/components/TableToolbar/locales.ts +6 -0
  52. package/src/components/TableToolbar/tests/TableToolbar.spec.ts +166 -0
  53. package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +359 -0
  54. package/src/components/index.ts +3 -0
  55. package/src/composables/rules/useFieldValidation.ts +17 -15
@@ -169,16 +169,30 @@ declare type __VLS_Props_15 = CustomizableOptions & {
169
169
  };
170
170
 
171
171
  declare type __VLS_Props_16 = {
172
+ uploadList: Item_2[];
173
+ locales?: typeof locales;
174
+ } & Widthable;
175
+
176
+ declare type __VLS_Props_17 = {
177
+ file?: File | Blob;
178
+ options?: {
179
+ pdf?: Record<string, string>;
180
+ image?: Record<string, string>;
181
+ };
182
+ locales?: typeof locales_2;
183
+ };
184
+
185
+ declare type __VLS_Props_18 = {
172
186
  modelValue: File[];
173
187
  disabled?: boolean;
174
188
  multiple?: boolean;
175
189
  fileSizeMax?: number;
176
190
  fileSizeUnits?: Array<string>;
177
191
  allowedExtensions?: Array<string>;
178
- locales?: typeof locales;
192
+ locales?: typeof locales_3;
179
193
  } & Widthable;
180
194
 
181
- declare type __VLS_Props_17 = CustomizableOptions & {
195
+ declare type __VLS_Props_19 = CustomizableOptions & {
182
196
  a11yCompliance?: string;
183
197
  linkItems?: LinkItem[] | null;
184
198
  items?: LinkItem[] | null;
@@ -199,13 +213,18 @@ declare type __VLS_Props_17 = CustomizableOptions & {
199
213
  light?: boolean;
200
214
  };
201
215
 
202
- declare type __VLS_Props_18 = {
216
+ declare type __VLS_Props_2 = {
217
+ hideBackIcon?: boolean;
218
+ dark?: boolean;
219
+ };
220
+
221
+ declare type __VLS_Props_20 = {
203
222
  href: string;
204
223
  isConnectPlus?: boolean;
205
224
  dark?: boolean;
206
225
  };
207
226
 
208
- declare type __VLS_Props_19 = {
227
+ declare type __VLS_Props_21 = {
209
228
  /** Keep the header visible */
210
229
  sticky?: boolean;
211
230
  /**
@@ -220,16 +239,11 @@ declare type __VLS_Props_19 = {
220
239
  };
221
240
  } & LogoProps;
222
241
 
223
- declare type __VLS_Props_2 = {
224
- hideBackIcon?: boolean;
225
- dark?: boolean;
226
- };
227
-
228
- declare type __VLS_Props_20 = {
242
+ declare type __VLS_Props_22 = {
229
243
  title?: string;
230
244
  };
231
245
 
232
- declare type __VLS_Props_21 = {
246
+ declare type __VLS_Props_23 = {
233
247
  ariaLabel?: string;
234
248
  serviceTitle?: string;
235
249
  serviceSubtitle?: string;
@@ -240,7 +254,7 @@ declare type __VLS_Props_21 = {
240
254
  };
241
255
  };
242
256
 
243
- declare type __VLS_Props_22 = CustomizableOptions & {
257
+ declare type __VLS_Props_24 = CustomizableOptions & {
244
258
  homeAriaLabel?: string;
245
259
  serviceTitle?: string;
246
260
  serviceSubtitle?: string;
@@ -267,7 +281,7 @@ declare type __VLS_Props_22 = CustomizableOptions & {
267
281
  items?: NavigationItem[];
268
282
  };
269
283
 
270
- declare type __VLS_Props_23 = CustomizableOptions & {
284
+ declare type __VLS_Props_25 = CustomizableOptions & {
271
285
  modelValue?: string;
272
286
  hideDownArrow?: boolean;
273
287
  ariaLabel?: string;
@@ -275,7 +289,7 @@ declare type __VLS_Props_23 = CustomizableOptions & {
275
289
  availableLanguages?: string[] | AllLanguagesChar;
276
290
  };
277
291
 
278
- declare type __VLS_Props_24 = {
292
+ declare type __VLS_Props_26 = {
279
293
  theme?: Theme;
280
294
  serviceTitle?: string;
281
295
  serviceSubTitle?: string;
@@ -288,26 +302,28 @@ declare type __VLS_Props_24 = {
288
302
  };
289
303
  };
290
304
 
291
- declare type __VLS_Props_25 = {
305
+ declare type __VLS_Props_27 = {
292
306
  btnText?: string;
293
307
  btnHref?: string;
294
308
  btnLink?: RouteRecordRaw | string;
295
309
  hideBtn?: boolean;
296
310
  };
297
311
 
298
- declare type __VLS_Props_26 = CustomizableOptions & {
312
+ declare type __VLS_Props_28 = CustomizableOptions & {
299
313
  closeBtnText?: string;
300
314
  rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped';
301
315
  bottom?: true | false;
302
316
  };
303
317
 
304
- declare type __VLS_Props_27 = {
318
+ declare type __VLS_Props_29 = {
305
319
  size?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
306
320
  spacing?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
307
321
  color?: string;
308
322
  };
309
323
 
310
- declare type __VLS_Props_28 = {
324
+ declare type __VLS_Props_3 = Props & CustomizableOptions;
325
+
326
+ declare type __VLS_Props_30 = {
311
327
  modelValue?: string | null;
312
328
  outlined?: boolean;
313
329
  required?: boolean;
@@ -315,15 +331,38 @@ declare type __VLS_Props_28 = {
315
331
  customRules?: any;
316
332
  } & CustomizableOptions;
317
333
 
318
- declare type __VLS_Props_29 = CustomizableOptions & {
334
+ declare type __VLS_Props_31 = {
335
+ modelValue?: PeriodValue;
336
+ placeholderFrom?: string;
337
+ placeholderTo?: string;
338
+ format?: string;
339
+ dateFormatReturn?: string;
340
+ showWeekNumber?: boolean;
341
+ required?: boolean;
342
+ displayIcon?: boolean;
343
+ displayAppendIcon?: boolean;
344
+ isDisabled?: boolean;
345
+ noIcon?: boolean;
346
+ noCalendar?: boolean;
347
+ isOutlined?: boolean;
348
+ showSuccessMessages?: boolean;
349
+ customRules?: {
350
+ type: string;
351
+ options: RuleOptions;
352
+ }[];
353
+ customWarningRules?: {
354
+ type: string;
355
+ options: RuleOptions;
356
+ }[];
357
+ };
358
+
359
+ declare type __VLS_Props_32 = CustomizableOptions & {
319
360
  min?: number;
320
361
  max?: number;
321
362
  step?: number;
322
363
  };
323
364
 
324
- declare type __VLS_Props_3 = Props & CustomizableOptions;
325
-
326
- declare type __VLS_Props_30 = CustomizableOptions & {
365
+ declare type __VLS_Props_33 = CustomizableOptions & {
327
366
  modelValue?: SelectBtnValue;
328
367
  items?: SelectBtnItem[];
329
368
  label?: string;
@@ -335,12 +374,12 @@ declare type __VLS_Props_30 = CustomizableOptions & {
335
374
  readonly?: boolean;
336
375
  };
337
376
 
338
- declare type __VLS_Props_31 = {
377
+ declare type __VLS_Props_34 = {
339
378
  label?: string;
340
379
  target?: string;
341
380
  };
342
381
 
343
- declare type __VLS_Props_32 = CustomizableOptions & Widthable & {
382
+ declare type __VLS_Props_35 = CustomizableOptions & Widthable & {
344
383
  hideBackBtn?: boolean;
345
384
  backBtnText?: string;
346
385
  titleText?: string;
@@ -350,13 +389,13 @@ declare type __VLS_Props_32 = CustomizableOptions & Widthable & {
350
389
  renderHtmlValue?: boolean;
351
390
  };
352
391
 
353
- declare type __VLS_Props_33 = {
392
+ declare type __VLS_Props_36 = {
354
393
  type?: 'success' | 'info' | 'warning' | 'error';
355
394
  closable?: boolean;
356
395
  variant?: 'tonal' | 'outlined';
357
396
  };
358
397
 
359
- declare type __VLS_Props_34 = CustomizableOptions & {
398
+ declare type __VLS_Props_37 = CustomizableOptions & {
360
399
  menuItems?: MenuItem_3[];
361
400
  additionalInformation?: string;
362
401
  fullName?: string;
@@ -417,19 +456,19 @@ declare type __VLS_PublicProps_5 = {
417
456
 
418
457
  declare type __VLS_PublicProps_6 = {
419
458
  'burgerMenu'?: boolean;
420
- } & __VLS_Props_22;
459
+ } & __VLS_Props_24;
421
460
 
422
461
  declare type __VLS_PublicProps_7 = {
423
462
  modelValue?: Array<number>;
424
- } & __VLS_Props_29;
463
+ } & __VLS_Props_32;
425
464
 
426
465
  declare type __VLS_PublicProps_8 = {
427
466
  modelValue?: boolean;
428
- } & __VLS_Props_33;
467
+ } & __VLS_Props_36;
429
468
 
430
469
  declare type __VLS_PublicProps_9 = {
431
470
  modelValue?: MenuItem_3 | null;
432
- } & __VLS_Props_34;
471
+ } & __VLS_Props_37;
433
472
 
434
473
  declare type __VLS_WithTemplateSlots<T, S> = T & {
435
474
  new (): {
@@ -575,6 +614,18 @@ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
575
614
  };
576
615
  };
577
616
 
617
+ declare type __VLS_WithTemplateSlots_31<T, S> = T & {
618
+ new (): {
619
+ $slots: S;
620
+ };
621
+ };
622
+
623
+ declare type __VLS_WithTemplateSlots_32<T, S> = T & {
624
+ new (): {
625
+ $slots: S;
626
+ };
627
+ };
628
+
578
629
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
579
630
  new (): {
580
631
  $slots: S;
@@ -901,7 +952,9 @@ renderHtmlValue: boolean;
901
952
  action?(_: {}): any;
902
953
  }>;
903
954
 
904
- declare type DateInput = string | string[];
955
+ declare type DateInput = string | string[] | null | object;
956
+
957
+ declare type DateInput_2 = string | null;
905
958
 
906
959
  export declare const DatePicker: DefineComponent<__VLS_Props, {
907
960
  validateOnSubmit: () => any;
@@ -912,8 +965,10 @@ handleClickOutside: (event: MouseEvent) => void;
912
965
  initializeSelectedDates: typeof initializeSelectedDates;
913
966
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
914
967
  "update:model-value": (value: DateValue) => any;
968
+ closed: () => any;
915
969
  }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
916
970
  "onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
971
+ onClosed?: (() => any) | undefined;
917
972
  }>, {
918
973
  modelValue: DateInput;
919
974
  required: boolean;
@@ -1079,12 +1134,49 @@ declare interface FileInfo {
1079
1134
  type: string;
1080
1135
  }
1081
1136
 
1082
- export declare const FileUpload: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_Props_16, {
1137
+ declare const FileList_2: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1138
+ delete: (item: Item_2) => any;
1139
+ upload: (item: Item_2) => any;
1140
+ preview: (item: Item_2) => any;
1141
+ }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
1142
+ onDelete?: ((item: Item_2) => any) | undefined;
1143
+ onUpload?: ((item: Item_2) => any) | undefined;
1144
+ onPreview?: ((item: Item_2) => any) | undefined;
1145
+ }>, {
1146
+ locales: {
1147
+ optionalDocument: string;
1148
+ see: string;
1149
+ delete: string;
1150
+ uploading: string;
1151
+ success: string;
1152
+ error: string;
1153
+ errorOccurred: string;
1154
+ };
1155
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>, Partial<Record<`file-icon-${string}`, (_: {
1156
+ state: "success" | "error" | "loading" | "initial";
1157
+ }) => any>>>;
1158
+ export { FileList_2 as FileList }
1159
+
1160
+ export declare const FilePreview: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1161
+ options: {
1162
+ pdf?: Record<string, string> | undefined;
1163
+ image?: Record<string, string> | undefined;
1164
+ };
1165
+ locales: {
1166
+ previewNotAvailable: string;
1167
+ previewTypeNotAvailable: string;
1168
+ };
1169
+ file: Blob | File;
1170
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1171
+ default?(_: {}): any;
1172
+ }>;
1173
+
1174
+ export declare const FileUpload: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_Props_18, {
1083
1175
  fileInput: Ref<HTMLInputElement | null, HTMLInputElement | null>;
1084
1176
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1085
1177
  error: (value: string[]) => any;
1086
1178
  "update:modelValue": (value: File[]) => any;
1087
- }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
1179
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
1088
1180
  onError?: ((value: string[]) => any) | undefined;
1089
1181
  "onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
1090
1182
  }>, {
@@ -1121,9 +1213,9 @@ declare interface FileUploadContentSlots {
1121
1213
 
1122
1214
  declare function focus_2(): void;
1123
1215
 
1124
- export declare const FooterBar: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_Props_17, {
1216
+ export declare const FooterBar: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_Props_19, {
1125
1217
  logoSize: ComputedRef<"small" | "normal">;
1126
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1218
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
1127
1219
  light: boolean;
1128
1220
  items: LinkItem[] | null;
1129
1221
  a11yCompliance: string;
@@ -1149,7 +1241,7 @@ socialMediaLinks: SocialMediaLink[];
1149
1241
  append?(_: {}): any;
1150
1242
  }>;
1151
1243
 
1152
- export declare const FranceConnectBtn: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {
1244
+ export declare const FranceConnectBtn: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
1153
1245
  dark: boolean;
1154
1246
  isConnectPlus: boolean;
1155
1247
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -1159,7 +1251,7 @@ isConnectPlus: boolean;
1159
1251
  */
1160
1252
  declare function getFileInfo(header: Record<string, string>): FileInfo;
1161
1253
 
1162
- export declare const HeaderBar: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
1254
+ export declare const HeaderBar: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
1163
1255
  sticky: boolean;
1164
1256
  serviceTitle: string;
1165
1257
  serviceSubtitle: string;
@@ -1193,7 +1285,7 @@ headerSticky: HTMLDivElement;
1193
1285
  'header-side': (props: SlotProps) => unknown;
1194
1286
  }>;
1195
1287
 
1196
- export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1288
+ export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1197
1289
  "update:modelValue": (value: boolean) => any;
1198
1290
  }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
1199
1291
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -1275,7 +1367,7 @@ width: string;
1275
1367
  height: string;
1276
1368
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1277
1369
 
1278
- export declare const HeaderLogo: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
1370
+ export declare const HeaderLogo: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1279
1371
  ariaLabel: string;
1280
1372
  serviceTitle: string;
1281
1373
  serviceSubtitle: string;
@@ -1300,16 +1392,16 @@ focus: typeof focus_2;
1300
1392
  btn: HTMLButtonElement;
1301
1393
  }, HTMLButtonElement>;
1302
1394
 
1303
- export declare const HeaderMenuItem: __VLS_WithTemplateSlots_18<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
1395
+ export declare const HeaderMenuItem: __VLS_WithTemplateSlots_20<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
1304
1396
  default?(_: {}): any;
1305
1397
  }>;
1306
1398
 
1307
- export declare const HeaderMenuSection: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1399
+ export declare const HeaderMenuSection: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1308
1400
  title?(_: {}): any;
1309
1401
  default?(_: {}): any;
1310
1402
  }>;
1311
1403
 
1312
- export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1404
+ export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1313
1405
  "update:burgerMenu": (value: boolean) => any;
1314
1406
  }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1315
1407
  "onUpdate:burgerMenu"?: ((value: boolean) => any) | undefined;
@@ -1348,12 +1440,12 @@ maxHorizontalMenuItems: number;
1348
1440
  'navigation-menu-content': (props: SlotProps_2) => unknown;
1349
1441
  }>;
1350
1442
 
1351
- export declare const HeaderSubMenu: __VLS_WithTemplateSlots_20<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1443
+ export declare const HeaderSubMenu: __VLS_WithTemplateSlots_22<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
1352
1444
  title?(_: {}): any;
1353
1445
  default?(_: {}): any;
1354
1446
  }>;
1355
1447
 
1356
- export declare const HeaderToolbar: __VLS_WithTemplateSlots_23<DefineComponent<ExtractPropTypes< {
1448
+ export declare const HeaderToolbar: __VLS_WithTemplateSlots_25<DefineComponent<ExtractPropTypes< {
1357
1449
  leftMenu: {
1358
1450
  type: PropType<MenuItem_2[]>;
1359
1451
  default: () => ({
@@ -1463,9 +1555,21 @@ export declare function isNIRKeyValid(nir: string): boolean;
1463
1555
 
1464
1556
  declare type Item = string | Record<string, unknown>;
1465
1557
 
1558
+ declare interface Item_2 {
1559
+ id: string;
1560
+ title: string;
1561
+ state: string;
1562
+ fileName?: string;
1563
+ optional?: boolean;
1564
+ progress?: number;
1565
+ showUploadBtn?: boolean;
1566
+ showPreviewBtn?: boolean;
1567
+ showDeleteBtn?: boolean;
1568
+ }
1569
+
1466
1570
  export declare const KEY_LENGTH = 2;
1467
1571
 
1468
- export declare const LangBtn: DefineComponent<__VLS_Props_23, {
1572
+ export declare const LangBtn: DefineComponent<__VLS_Props_25, {
1469
1573
  currentLangData: ComputedRef< {
1470
1574
  name: string;
1471
1575
  label: string;
@@ -1475,7 +1579,7 @@ selectedLanguage: Ref<string, string>;
1475
1579
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1476
1580
  change: (...args: any[]) => void;
1477
1581
  "update:modelValue": (...args: any[]) => void;
1478
- }, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{
1582
+ }, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
1479
1583
  onChange?: ((...args: any[]) => any) | undefined;
1480
1584
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1481
1585
  }>, {
@@ -1487,6 +1591,21 @@ availableLanguages: string[] | "*";
1487
1591
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1488
1592
 
1489
1593
  declare const locales: {
1594
+ optionalDocument: string;
1595
+ see: string;
1596
+ delete: string;
1597
+ uploading: string;
1598
+ success: string;
1599
+ error: string;
1600
+ errorOccurred: string;
1601
+ };
1602
+
1603
+ declare const locales_2: {
1604
+ previewNotAvailable: string;
1605
+ previewTypeNotAvailable: string;
1606
+ };
1607
+
1608
+ declare const locales_3: {
1490
1609
  or: string;
1491
1610
  chooseFile: (multiple: boolean) => "Choisir des fichiers" | "Choisir un fichier";
1492
1611
  infoText: (max: string, ext: string[]) => string;
@@ -1566,7 +1685,7 @@ hideOrganism: boolean;
1566
1685
  risquePro: boolean;
1567
1686
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
1568
1687
 
1569
- export declare const LogoBrandSection: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
1688
+ export declare const LogoBrandSection: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
1570
1689
  theme: Theme;
1571
1690
  serviceTitle: string;
1572
1691
  homeLink: {
@@ -1624,7 +1743,7 @@ declare interface NavigationItem {
1624
1743
 
1625
1744
  export { NirField }
1626
1745
 
1627
- export declare const NotFoundPage: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
1746
+ export declare const NotFoundPage: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
1628
1747
  btnText: string;
1629
1748
  btnHref: string;
1630
1749
  btnLink: string | RouteRecordRaw;
@@ -1640,7 +1759,7 @@ declare interface Notification_2 {
1640
1759
  }
1641
1760
  export { Notification_2 as Notification }
1642
1761
 
1643
- export declare const NotificationBar: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_Props_26, {
1762
+ export declare const NotificationBar: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_Props_28, {
1644
1763
  openNotification: (notification: Notification_2) => void;
1645
1764
  handleClearNotification: () => void;
1646
1765
  showNextNotification: () => void;
@@ -1657,7 +1776,7 @@ contentColor: string;
1657
1776
  }>;
1658
1777
  smallCloseBtn: ComputedRef<boolean>;
1659
1778
  isVertical: ComputedRef<boolean>;
1660
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
1779
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
1661
1780
  rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "lg" | "sm" | "xs" | "shaped";
1662
1781
  bottom: boolean;
1663
1782
  closeBtnText: string;
@@ -1675,10 +1794,10 @@ export declare const NUMBER_LENGTH = 13;
1675
1794
 
1676
1795
  export declare type NumberOrNumberString = string | number | undefined;
1677
1796
 
1678
- export declare const PageContainer: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_27, {
1797
+ export declare const PageContainer: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_Props_29, {
1679
1798
  spacingClass: ComputedRef<string>;
1680
1799
  containerSize: ComputedRef<number>;
1681
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
1800
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {
1682
1801
  color: string;
1683
1802
  size: "xl" | "lg" | "md" | "sm" | "xs";
1684
1803
  spacing: "xl" | "lg" | "md" | "sm" | "xs";
@@ -1686,12 +1805,12 @@ spacing: "xl" | "lg" | "md" | "sm" | "xs";
1686
1805
  default?(_: {}): any;
1687
1806
  }>;
1688
1807
 
1689
- export declare const PasswordField: DefineComponent<__VLS_Props_28, {
1808
+ export declare const PasswordField: DefineComponent<__VLS_Props_30, {
1690
1809
  validateOnSubmit: typeof validateOnSubmit;
1691
1810
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1692
1811
  submit: (...args: any[]) => void;
1693
1812
  "update:modelValue": (...args: any[]) => void;
1694
- }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
1813
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
1695
1814
  onSubmit?: ((...args: any[]) => any) | undefined;
1696
1815
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1697
1816
  }>, {
@@ -1702,6 +1821,454 @@ customRules: any;
1702
1821
  isValidateOnBlur: boolean;
1703
1822
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1704
1823
 
1824
+ export declare const PeriodField: DefineComponent<__VLS_Props_31, {
1825
+ validateOnSubmit: () => boolean;
1826
+ errors: Ref<string[], string[]>;
1827
+ successes: Ref<string[], string[]>;
1828
+ isValid: ComputedRef<boolean>;
1829
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1830
+ "update:modelValue": (...args: any[]) => void;
1831
+ }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
1832
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1833
+ }>, {
1834
+ modelValue: PeriodValue;
1835
+ required: boolean;
1836
+ isDisabled: boolean;
1837
+ noIcon: boolean;
1838
+ format: string;
1839
+ dateFormatReturn: string;
1840
+ showWeekNumber: boolean;
1841
+ displayIcon: boolean;
1842
+ displayAppendIcon: boolean;
1843
+ customRules: {
1844
+ type: string;
1845
+ options: RuleOptions;
1846
+ }[];
1847
+ customWarningRules: {
1848
+ type: string;
1849
+ options: RuleOptions;
1850
+ }[];
1851
+ noCalendar: boolean;
1852
+ isOutlined: boolean;
1853
+ showSuccessMessages: boolean;
1854
+ placeholderFrom: string;
1855
+ placeholderTo: string;
1856
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1857
+ fromDateRef: CreateComponentPublicInstanceWithMixins<Readonly<{
1858
+ modelValue?: (string | object | string[] | null) | undefined;
1859
+ placeholder?: string | undefined;
1860
+ format?: string | undefined;
1861
+ dateFormatReturn?: string | undefined;
1862
+ isBirthDate?: boolean | undefined;
1863
+ showWeekNumber?: boolean | undefined;
1864
+ required?: boolean | undefined;
1865
+ displayRange?: boolean | undefined;
1866
+ displayIcon?: boolean | undefined;
1867
+ displayAppendIcon?: boolean | undefined;
1868
+ customRules?: {
1869
+ type: string;
1870
+ options: RuleOptions;
1871
+ }[] | undefined;
1872
+ customWarningRules?: {
1873
+ type: string;
1874
+ options: RuleOptions;
1875
+ }[] | undefined;
1876
+ isDisabled?: boolean | undefined;
1877
+ noIcon?: boolean | undefined;
1878
+ noCalendar?: boolean | undefined;
1879
+ isOutlined?: boolean | undefined;
1880
+ }> & Readonly<{
1881
+ "onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
1882
+ onClosed?: (() => any) | undefined;
1883
+ }>, {
1884
+ validateOnSubmit: () => any;
1885
+ isDatePickerVisible: Ref<boolean, boolean>;
1886
+ selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
1887
+ errorMessages: Ref<string[], string[]>;
1888
+ handleClickOutside: (event: MouseEvent) => void;
1889
+ initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
1890
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1891
+ "update:model-value": (value: string | [string, string]) => any;
1892
+ closed: () => any;
1893
+ }, PublicProps, {
1894
+ modelValue: string | object | string[] | null;
1895
+ required: boolean;
1896
+ isDisabled: boolean;
1897
+ placeholder: string;
1898
+ noIcon: boolean;
1899
+ format: string;
1900
+ dateFormatReturn: string;
1901
+ isBirthDate: boolean;
1902
+ showWeekNumber: boolean;
1903
+ displayRange: boolean;
1904
+ displayIcon: boolean;
1905
+ displayAppendIcon: boolean;
1906
+ customRules: {
1907
+ type: string;
1908
+ options: RuleOptions;
1909
+ }[];
1910
+ customWarningRules: {
1911
+ type: string;
1912
+ options: RuleOptions;
1913
+ }[];
1914
+ noCalendar: boolean;
1915
+ isOutlined: boolean;
1916
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
1917
+ dateTextInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
1918
+ modelValue?: (string | [string, string]) | undefined;
1919
+ displayFormat?: string | undefined;
1920
+ returnFormat?: string | undefined;
1921
+ range?: boolean | undefined;
1922
+ placeholder?: string | undefined;
1923
+ rules?: {
1924
+ type: string;
1925
+ options: RuleOptions;
1926
+ }[] | undefined;
1927
+ warningRules?: {
1928
+ type: string;
1929
+ options: RuleOptions;
1930
+ }[] | undefined;
1931
+ required?: boolean | undefined;
1932
+ }> & Readonly<{
1933
+ "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
1934
+ }>, {
1935
+ validate: () => void;
1936
+ validateOnSubmit: () => boolean;
1937
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1938
+ "update:modelValue": (value: string | [string, string]) => any;
1939
+ }, PublicProps, {
1940
+ modelValue: string | [string, string];
1941
+ required: boolean;
1942
+ placeholder: string;
1943
+ rules: {
1944
+ type: string;
1945
+ options: RuleOptions;
1946
+ }[];
1947
+ displayFormat: string;
1948
+ returnFormat: string;
1949
+ range: boolean;
1950
+ warningRules: {
1951
+ type: string;
1952
+ options: RuleOptions;
1953
+ }[];
1954
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1955
+ P: {};
1956
+ B: {};
1957
+ D: {};
1958
+ C: {};
1959
+ M: {};
1960
+ Defaults: {};
1961
+ }, Readonly<{
1962
+ modelValue?: (string | [string, string]) | undefined;
1963
+ displayFormat?: string | undefined;
1964
+ returnFormat?: string | undefined;
1965
+ range?: boolean | undefined;
1966
+ placeholder?: string | undefined;
1967
+ rules?: {
1968
+ type: string;
1969
+ options: RuleOptions;
1970
+ }[] | undefined;
1971
+ warningRules?: {
1972
+ type: string;
1973
+ options: RuleOptions;
1974
+ }[] | undefined;
1975
+ required?: boolean | undefined;
1976
+ }> & Readonly<{
1977
+ "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
1978
+ }>, {
1979
+ validate: () => void;
1980
+ validateOnSubmit: () => boolean;
1981
+ }, {}, {}, {}, {
1982
+ modelValue: string | [string, string];
1983
+ required: boolean;
1984
+ placeholder: string;
1985
+ rules: {
1986
+ type: string;
1987
+ options: RuleOptions;
1988
+ }[];
1989
+ displayFormat: string;
1990
+ returnFormat: string;
1991
+ range: boolean;
1992
+ warningRules: {
1993
+ type: string;
1994
+ options: RuleOptions;
1995
+ }[];
1996
+ }> | null;
1997
+ }, HTMLDivElement, ComponentProvideOptions, {
1998
+ P: {};
1999
+ B: {};
2000
+ D: {};
2001
+ C: {};
2002
+ M: {};
2003
+ Defaults: {};
2004
+ }, Readonly<{
2005
+ modelValue?: (string | object | string[] | null) | undefined;
2006
+ placeholder?: string | undefined;
2007
+ format?: string | undefined;
2008
+ dateFormatReturn?: string | undefined;
2009
+ isBirthDate?: boolean | undefined;
2010
+ showWeekNumber?: boolean | undefined;
2011
+ required?: boolean | undefined;
2012
+ displayRange?: boolean | undefined;
2013
+ displayIcon?: boolean | undefined;
2014
+ displayAppendIcon?: boolean | undefined;
2015
+ customRules?: {
2016
+ type: string;
2017
+ options: RuleOptions;
2018
+ }[] | undefined;
2019
+ customWarningRules?: {
2020
+ type: string;
2021
+ options: RuleOptions;
2022
+ }[] | undefined;
2023
+ isDisabled?: boolean | undefined;
2024
+ noIcon?: boolean | undefined;
2025
+ noCalendar?: boolean | undefined;
2026
+ isOutlined?: boolean | undefined;
2027
+ }> & Readonly<{
2028
+ "onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
2029
+ onClosed?: (() => any) | undefined;
2030
+ }>, {
2031
+ validateOnSubmit: () => any;
2032
+ isDatePickerVisible: Ref<boolean, boolean>;
2033
+ selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
2034
+ errorMessages: Ref<string[], string[]>;
2035
+ handleClickOutside: (event: MouseEvent) => void;
2036
+ initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
2037
+ }, {}, {}, {}, {
2038
+ modelValue: string | object | string[] | null;
2039
+ required: boolean;
2040
+ isDisabled: boolean;
2041
+ placeholder: string;
2042
+ noIcon: boolean;
2043
+ format: string;
2044
+ dateFormatReturn: string;
2045
+ isBirthDate: boolean;
2046
+ showWeekNumber: boolean;
2047
+ displayRange: boolean;
2048
+ displayIcon: boolean;
2049
+ displayAppendIcon: boolean;
2050
+ customRules: {
2051
+ type: string;
2052
+ options: RuleOptions;
2053
+ }[];
2054
+ customWarningRules: {
2055
+ type: string;
2056
+ options: RuleOptions;
2057
+ }[];
2058
+ noCalendar: boolean;
2059
+ isOutlined: boolean;
2060
+ }> | null;
2061
+ toDateRef: CreateComponentPublicInstanceWithMixins<Readonly<{
2062
+ modelValue?: (string | object | string[] | null) | undefined;
2063
+ placeholder?: string | undefined;
2064
+ format?: string | undefined;
2065
+ dateFormatReturn?: string | undefined;
2066
+ isBirthDate?: boolean | undefined;
2067
+ showWeekNumber?: boolean | undefined;
2068
+ required?: boolean | undefined;
2069
+ displayRange?: boolean | undefined;
2070
+ displayIcon?: boolean | undefined;
2071
+ displayAppendIcon?: boolean | undefined;
2072
+ customRules?: {
2073
+ type: string;
2074
+ options: RuleOptions;
2075
+ }[] | undefined;
2076
+ customWarningRules?: {
2077
+ type: string;
2078
+ options: RuleOptions;
2079
+ }[] | undefined;
2080
+ isDisabled?: boolean | undefined;
2081
+ noIcon?: boolean | undefined;
2082
+ noCalendar?: boolean | undefined;
2083
+ isOutlined?: boolean | undefined;
2084
+ }> & Readonly<{
2085
+ "onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
2086
+ onClosed?: (() => any) | undefined;
2087
+ }>, {
2088
+ validateOnSubmit: () => any;
2089
+ isDatePickerVisible: Ref<boolean, boolean>;
2090
+ selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
2091
+ errorMessages: Ref<string[], string[]>;
2092
+ handleClickOutside: (event: MouseEvent) => void;
2093
+ initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
2094
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2095
+ "update:model-value": (value: string | [string, string]) => any;
2096
+ closed: () => any;
2097
+ }, PublicProps, {
2098
+ modelValue: string | object | string[] | null;
2099
+ required: boolean;
2100
+ isDisabled: boolean;
2101
+ placeholder: string;
2102
+ noIcon: boolean;
2103
+ format: string;
2104
+ dateFormatReturn: string;
2105
+ isBirthDate: boolean;
2106
+ showWeekNumber: boolean;
2107
+ displayRange: boolean;
2108
+ displayIcon: boolean;
2109
+ displayAppendIcon: boolean;
2110
+ customRules: {
2111
+ type: string;
2112
+ options: RuleOptions;
2113
+ }[];
2114
+ customWarningRules: {
2115
+ type: string;
2116
+ options: RuleOptions;
2117
+ }[];
2118
+ noCalendar: boolean;
2119
+ isOutlined: boolean;
2120
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
2121
+ dateTextInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
2122
+ modelValue?: (string | [string, string]) | undefined;
2123
+ displayFormat?: string | undefined;
2124
+ returnFormat?: string | undefined;
2125
+ range?: boolean | undefined;
2126
+ placeholder?: string | undefined;
2127
+ rules?: {
2128
+ type: string;
2129
+ options: RuleOptions;
2130
+ }[] | undefined;
2131
+ warningRules?: {
2132
+ type: string;
2133
+ options: RuleOptions;
2134
+ }[] | undefined;
2135
+ required?: boolean | undefined;
2136
+ }> & Readonly<{
2137
+ "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
2138
+ }>, {
2139
+ validate: () => void;
2140
+ validateOnSubmit: () => boolean;
2141
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2142
+ "update:modelValue": (value: string | [string, string]) => any;
2143
+ }, PublicProps, {
2144
+ modelValue: string | [string, string];
2145
+ required: boolean;
2146
+ placeholder: string;
2147
+ rules: {
2148
+ type: string;
2149
+ options: RuleOptions;
2150
+ }[];
2151
+ displayFormat: string;
2152
+ returnFormat: string;
2153
+ range: boolean;
2154
+ warningRules: {
2155
+ type: string;
2156
+ options: RuleOptions;
2157
+ }[];
2158
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2159
+ P: {};
2160
+ B: {};
2161
+ D: {};
2162
+ C: {};
2163
+ M: {};
2164
+ Defaults: {};
2165
+ }, Readonly<{
2166
+ modelValue?: (string | [string, string]) | undefined;
2167
+ displayFormat?: string | undefined;
2168
+ returnFormat?: string | undefined;
2169
+ range?: boolean | undefined;
2170
+ placeholder?: string | undefined;
2171
+ rules?: {
2172
+ type: string;
2173
+ options: RuleOptions;
2174
+ }[] | undefined;
2175
+ warningRules?: {
2176
+ type: string;
2177
+ options: RuleOptions;
2178
+ }[] | undefined;
2179
+ required?: boolean | undefined;
2180
+ }> & Readonly<{
2181
+ "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
2182
+ }>, {
2183
+ validate: () => void;
2184
+ validateOnSubmit: () => boolean;
2185
+ }, {}, {}, {}, {
2186
+ modelValue: string | [string, string];
2187
+ required: boolean;
2188
+ placeholder: string;
2189
+ rules: {
2190
+ type: string;
2191
+ options: RuleOptions;
2192
+ }[];
2193
+ displayFormat: string;
2194
+ returnFormat: string;
2195
+ range: boolean;
2196
+ warningRules: {
2197
+ type: string;
2198
+ options: RuleOptions;
2199
+ }[];
2200
+ }> | null;
2201
+ }, HTMLDivElement, ComponentProvideOptions, {
2202
+ P: {};
2203
+ B: {};
2204
+ D: {};
2205
+ C: {};
2206
+ M: {};
2207
+ Defaults: {};
2208
+ }, Readonly<{
2209
+ modelValue?: (string | object | string[] | null) | undefined;
2210
+ placeholder?: string | undefined;
2211
+ format?: string | undefined;
2212
+ dateFormatReturn?: string | undefined;
2213
+ isBirthDate?: boolean | undefined;
2214
+ showWeekNumber?: boolean | undefined;
2215
+ required?: boolean | undefined;
2216
+ displayRange?: boolean | undefined;
2217
+ displayIcon?: boolean | undefined;
2218
+ displayAppendIcon?: boolean | undefined;
2219
+ customRules?: {
2220
+ type: string;
2221
+ options: RuleOptions;
2222
+ }[] | undefined;
2223
+ customWarningRules?: {
2224
+ type: string;
2225
+ options: RuleOptions;
2226
+ }[] | undefined;
2227
+ isDisabled?: boolean | undefined;
2228
+ noIcon?: boolean | undefined;
2229
+ noCalendar?: boolean | undefined;
2230
+ isOutlined?: boolean | undefined;
2231
+ }> & Readonly<{
2232
+ "onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
2233
+ onClosed?: (() => any) | undefined;
2234
+ }>, {
2235
+ validateOnSubmit: () => any;
2236
+ isDatePickerVisible: Ref<boolean, boolean>;
2237
+ selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
2238
+ errorMessages: Ref<string[], string[]>;
2239
+ handleClickOutside: (event: MouseEvent) => void;
2240
+ initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
2241
+ }, {}, {}, {}, {
2242
+ modelValue: string | object | string[] | null;
2243
+ required: boolean;
2244
+ isDisabled: boolean;
2245
+ placeholder: string;
2246
+ noIcon: boolean;
2247
+ format: string;
2248
+ dateFormatReturn: string;
2249
+ isBirthDate: boolean;
2250
+ showWeekNumber: boolean;
2251
+ displayRange: boolean;
2252
+ displayIcon: boolean;
2253
+ displayAppendIcon: boolean;
2254
+ customRules: {
2255
+ type: string;
2256
+ options: RuleOptions;
2257
+ }[];
2258
+ customWarningRules: {
2259
+ type: string;
2260
+ options: RuleOptions;
2261
+ }[];
2262
+ noCalendar: boolean;
2263
+ isOutlined: boolean;
2264
+ }> | null;
2265
+ }, HTMLDivElement>;
2266
+
2267
+ declare type PeriodValue = {
2268
+ from: DateInput_2;
2269
+ to: DateInput_2;
2270
+ };
2271
+
1705
2272
  export declare const PhoneField: DefineComponent<ExtractPropTypes< {
1706
2273
  modelValue: {
1707
2274
  type: StringConstructor;
@@ -1846,7 +2413,7 @@ min: number;
1846
2413
  step: number;
1847
2414
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1848
2415
 
1849
- export declare const RatingPicker: __VLS_WithTemplateSlots_27<DefineComponent<ExtractPropTypes< {
2416
+ export declare const RatingPicker: __VLS_WithTemplateSlots_29<DefineComponent<ExtractPropTypes< {
1850
2417
  type: {
1851
2418
  type: StringConstructor;
1852
2419
  required: true;
@@ -1937,11 +2504,11 @@ export declare type RuleOptions = {
1937
2504
  date?: string | Date;
1938
2505
  };
1939
2506
 
1940
- export declare const SelectBtnField: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2507
+ export declare const SelectBtnField: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1941
2508
  "update:modelValue": (...args: any[]) => void;
1942
2509
  "update:error": (...args: any[]) => void;
1943
2510
  "update:error-messages": (...args: any[]) => void;
1944
- }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
2511
+ }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
1945
2512
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1946
2513
  "onUpdate:error"?: ((...args: any[]) => any) | undefined;
1947
2514
  "onUpdate:error-messages"?: ((...args: any[]) => any) | undefined;
@@ -1957,7 +2524,7 @@ items: SelectBtnItem[];
1957
2524
  inline: boolean;
1958
2525
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1959
2526
 
1960
- export declare const SkipLink: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
2527
+ export declare const SkipLink: __VLS_WithTemplateSlots_30<DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {
1961
2528
  label: string;
1962
2529
  target: string;
1963
2530
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
@@ -1990,10 +2557,10 @@ links: SocialMediaLink_2[];
1990
2557
 
1991
2558
  declare type State = 'idle' | 'loading' | 'success' | 'error';
1992
2559
 
1993
- export declare const SubHeader: __VLS_WithTemplateSlots_29<DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2560
+ export declare const SubHeader: __VLS_WithTemplateSlots_31<DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1994
2561
  "click:list-item": (...args: any[]) => void;
1995
2562
  back: (...args: any[]) => void;
1996
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
2563
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
1997
2564
  "onClick:list-item"?: ((...args: any[]) => any) | undefined;
1998
2565
  onBack?: ((...args: any[]) => any) | undefined;
1999
2566
  }>, {
@@ -2013,13 +2580,15 @@ dataListGroupItems: DataListGroupItems_2;
2013
2580
  'right-content'?(_: {}): any;
2014
2581
  }>;
2015
2582
 
2016
- export declare const SyAlert: __VLS_WithTemplateSlots_30<DefineComponent<__VLS_PublicProps_8, {
2583
+ export declare const SyAlert: __VLS_WithTemplateSlots_32<DefineComponent<__VLS_PublicProps_8, {
2017
2584
  prependIcon: ComputedRef<string>;
2018
2585
  dismissAlert: typeof dismissAlert;
2019
2586
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2020
- "update:modelValue": (value: boolean) => any;
2587
+ "click:close": (...args: any[]) => void;
2588
+ "update:modelValue": (value: boolean) => void;
2021
2589
  }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
2022
2590
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2591
+ "onClick:close"?: ((...args: any[]) => any) | undefined;
2023
2592
  }>, {
2024
2593
  type: "info" | "success" | "warning" | "error";
2025
2594
  variant: "outlined" | "tonal";