@cnamts/synapse 0.0.14-alpha → 0.0.15-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 (86) hide show
  1. package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +2 -2
  2. package/dist/components/Customs/SySelect/SySelect.d.ts +24 -12
  3. package/dist/components/Customs/SySelect/locales.d.ts +3 -0
  4. package/dist/components/Customs/SyTextField/SyTextField.d.ts +2 -2
  5. package/dist/components/DatePicker/DatePicker.d.ts +732 -16
  6. package/dist/components/DatePicker/DateTextInput.d.ts +8 -8
  7. package/dist/components/DialogBox/config.d.ts +1 -1
  8. package/dist/components/DownloadBtn/DownloadBtn.d.ts +2 -0
  9. package/dist/components/LangBtn/LangBtn.d.ts +467 -1
  10. package/dist/components/LangBtn/config.d.ts +1 -3
  11. package/dist/components/NirField/NirField.d.ts +13 -13
  12. package/dist/components/PasswordField/PasswordField.d.ts +2 -2
  13. package/dist/components/PeriodField/PeriodField.d.ts +1462 -30
  14. package/dist/components/PhoneField/PhoneField.d.ts +3 -3
  15. package/dist/components/SelectBtnField/SelectBtnField.d.ts +1 -1
  16. package/dist/components/SkipLink/SkipLink.d.ts +3 -2
  17. package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +2 -0
  18. package/dist/components/index.d.ts +1 -0
  19. package/dist/design-system-v3.js +3038 -2936
  20. package/dist/design-system-v3.umd.cjs +1 -1
  21. package/dist/style.css +1 -1
  22. package/dist/vuetifyConfig.d.ts +1 -0
  23. package/package.json +1 -1
  24. package/src/components/BackBtn/Accessibilite.stories.ts +4 -0
  25. package/src/components/BackBtn/BackBtn.vue +2 -1
  26. package/src/components/BackToTopBtn/Accessibilite.stories.ts +4 -0
  27. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +78 -21
  28. package/src/components/BackToTopBtn/BackToTopBtn.vue +15 -0
  29. package/src/components/BackToTopBtn/config.ts +2 -2
  30. package/src/components/BackToTopBtn/tests/__snapshots__/BackToTopBtn.spec.ts.snap +4 -4
  31. package/src/components/CopyBtn/Accessibilite.stories.ts +4 -0
  32. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +2 -2
  33. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +0 -1
  34. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +3 -3
  35. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +4 -4
  36. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -0
  37. package/src/components/Customs/SySelect/SySelect.vue +75 -10
  38. package/src/components/Customs/SySelect/locales.ts +3 -0
  39. package/src/components/Customs/SySelect/tests/SySelect.spec.ts +24 -2
  40. package/src/components/Customs/SyTextField/SyTextField.stories.ts +1 -1
  41. package/src/components/Customs/SyTextField/SyTextField.vue +3 -3
  42. package/src/components/DatePicker/DatePicker.vue +82 -57
  43. package/src/components/DatePicker/DatePickerValidation.mdx +338 -0
  44. package/src/components/DatePicker/DatePickerValidation.stories.ts +22 -0
  45. package/src/components/DatePicker/DatePickerValidationExamples.vue +535 -0
  46. package/src/components/DatePicker/DateTextInput.vue +3 -3
  47. package/src/components/DatePicker/tests/DateTextInput.spec.ts +2 -2
  48. package/src/components/DialogBox/DialogBox.stories.ts +5 -2
  49. package/src/components/DialogBox/DialogBox.vue +1 -1
  50. package/src/components/DialogBox/config.ts +1 -1
  51. package/src/components/DownloadBtn/Accessibilite.stories.ts +4 -0
  52. package/src/components/DownloadBtn/DownloadBtn.stories.ts +17 -8
  53. package/src/components/DownloadBtn/DownloadBtn.vue +13 -6
  54. package/src/components/DownloadBtn/tests/__snapshots__/DownloadBtn.spec.ts.snap +0 -2
  55. package/src/components/FranceConnectBtn/Accessibilite.stories.ts +4 -0
  56. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +3 -0
  57. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +3 -0
  58. package/src/components/HeaderBar/HeaderBurgerMenu/menu.scss +19 -0
  59. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +12 -2
  60. package/src/components/LangBtn/Accessibilite.stories.ts +4 -0
  61. package/src/components/LangBtn/LangBtn.stories.ts +1 -4
  62. package/src/components/LangBtn/LangBtn.vue +68 -9
  63. package/src/components/LangBtn/config.ts +0 -1
  64. package/src/components/LangBtn/tests/LangBtn.spec.ts +30 -2
  65. package/src/components/PageContainer/Accessibilite.stories.ts +36 -23
  66. package/src/components/PaginatedTable/PaginatedTable.stories.ts +144 -18
  67. package/src/components/PasswordField/PasswordField.stories.ts +6 -6
  68. package/src/components/PasswordField/PasswordField.vue +3 -3
  69. package/src/components/PeriodField/PeriodField.vue +4 -4
  70. package/src/components/PhoneField/PhoneField.stories.ts +216 -24
  71. package/src/components/PhoneField/PhoneField.vue +32 -2
  72. package/src/components/PhoneField/tests/PhoneField.spec.ts +161 -14
  73. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -1
  74. package/src/components/RatingPicker/RatingPicker.stories.ts +1 -1
  75. package/src/components/SkipLink/Accessibilite.stories.ts +8 -0
  76. package/src/components/SkipLink/SkipLink.vue +11 -9
  77. package/src/components/SkipLink/tests/__snapshots__/skipLink.spec.ts.snap +7 -4
  78. package/src/components/SkipLink/tests/skipLink.spec.ts +120 -6
  79. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +56 -0
  80. package/src/components/UserMenuBtn/UserMenuBtn.vue +4 -2
  81. package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +41 -0
  82. package/src/components/index.ts +1 -0
  83. package/src/composables/rules/useFieldValidation.ts +26 -3
  84. package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +1 -1
  85. package/src/stories/GuideDuDev/LesBreackingChanges.mdx +31 -2
  86. package/src/components/LangBtn/tests/Config.spec.ts +0 -24
@@ -1,4 +1,4 @@
1
- import { nextTick } from 'vue';
1
+ import { nextTick, ComponentPublicInstance } from 'vue';
2
2
  import { DateValue, DateInput } from '../../composables/date/useDateInitialization';
3
3
  type __VLS_Props = {
4
4
  modelValue?: DateInput;
@@ -24,7 +24,7 @@ type __VLS_Props = {
24
24
  noIcon?: boolean;
25
25
  noCalendar?: boolean;
26
26
  isOutlined?: boolean;
27
- readOnly?: boolean;
27
+ readonly?: boolean;
28
28
  width?: string;
29
29
  disableErrorHandling?: boolean;
30
30
  showSuccessMessages?: boolean;
@@ -52,7 +52,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
52
52
  }>, {
53
53
  required: boolean;
54
54
  modelValue: DateInput;
55
- readOnly: boolean;
55
+ readonly: boolean;
56
56
  bgColor: string;
57
57
  disabled: boolean;
58
58
  placeholder: string;
@@ -87,7 +87,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
87
87
  label?: string | undefined;
88
88
  required?: boolean | undefined;
89
89
  disabled?: boolean | undefined;
90
- readOnly?: boolean | undefined;
90
+ readonly?: boolean | undefined;
91
91
  isOutlined?: boolean | undefined;
92
92
  displayIcon?: boolean | undefined;
93
93
  displayAppendIcon?: boolean | undefined;
@@ -113,7 +113,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
113
113
  required: boolean;
114
114
  modelValue: string | null;
115
115
  label: string;
116
- readOnly: boolean;
116
+ readonly: boolean;
117
117
  disabled: boolean;
118
118
  placeholder: string;
119
119
  noIcon: boolean;
@@ -149,7 +149,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
149
149
  readonly errorMessages?: string[] | null | undefined;
150
150
  readonly warningMessages?: string[] | null | undefined;
151
151
  readonly successMessages?: string[] | null | undefined;
152
- readonly readOnly?: boolean | undefined;
152
+ readonly readonly?: boolean | undefined;
153
153
  readonly isActive?: boolean | undefined;
154
154
  readonly baseColor?: string | undefined;
155
155
  readonly bgColor?: string | undefined;
@@ -210,8 +210,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
210
210
  $slots: Readonly<{
211
211
  [name: string]: import('vue').Slot<any> | undefined;
212
212
  }>;
213
- $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
214
- $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
213
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
214
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
215
215
  $host: Element | null;
216
216
  $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
217
217
  $el: any;
@@ -233,7 +233,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
233
233
  errorMessages?: string[] | null | undefined;
234
234
  warningMessages?: string[] | null | undefined;
235
235
  successMessages?: string[] | null | undefined;
236
- readOnly?: boolean | undefined;
236
+ readonly?: boolean | undefined;
237
237
  isActive?: boolean | undefined;
238
238
  baseColor?: string | undefined;
239
239
  bgColor?: string | undefined;
@@ -320,7 +320,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
320
320
  errorMessages: string[] | null;
321
321
  warningMessages: string[] | null;
322
322
  successMessages: string[] | null;
323
- readOnly: boolean;
323
+ readonly: boolean;
324
324
  isActive: boolean;
325
325
  baseColor: string;
326
326
  bgColor: string;
@@ -382,7 +382,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
382
382
  unmounted?: ((() => void) | (() => void)[]) | undefined;
383
383
  renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
384
384
  renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
385
- errorCaptured?: (((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
385
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
386
386
  };
387
387
  $forceUpdate: () => void;
388
388
  $nextTick: typeof nextTick;
@@ -403,7 +403,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
403
403
  errorMessages: string[] | null;
404
404
  warningMessages: string[] | null;
405
405
  successMessages: string[] | null;
406
- readOnly: boolean;
406
+ readonly: boolean;
407
407
  isActive: boolean;
408
408
  baseColor: string;
409
409
  bgColor: string;
@@ -468,7 +468,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
468
468
  errorMessages?: string[] | null | undefined;
469
469
  warningMessages?: string[] | null | undefined;
470
470
  successMessages?: string[] | null | undefined;
471
- readOnly?: boolean | undefined;
471
+ readonly?: boolean | undefined;
472
472
  isActive?: boolean | undefined;
473
473
  baseColor?: string | undefined;
474
474
  bgColor?: string | undefined;
@@ -520,7 +520,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
520
520
  onClear?: ((...args: any[]) => any) | undefined;
521
521
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
522
522
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
523
- }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readOnly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
523
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
524
524
  validation: {
525
525
  errors: import('vue').Ref<string[], string[]>;
526
526
  warnings: import('vue').Ref<string[], string[]>;
@@ -558,7 +558,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
558
558
  label?: string | undefined;
559
559
  required?: boolean | undefined;
560
560
  disabled?: boolean | undefined;
561
- readOnly?: boolean | undefined;
561
+ readonly?: boolean | undefined;
562
562
  isOutlined?: boolean | undefined;
563
563
  displayIcon?: boolean | undefined;
564
564
  displayAppendIcon?: boolean | undefined;
@@ -580,7 +580,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
580
580
  required: boolean;
581
581
  modelValue: string | null;
582
582
  label: string;
583
- readOnly: boolean;
583
+ readonly: boolean;
584
584
  disabled: boolean;
585
585
  placeholder: string;
586
586
  noIcon: boolean;
@@ -595,5 +595,721 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
595
595
  displayAppendIcon: boolean;
596
596
  displayPrependIcon: boolean;
597
597
  }> | null;
598
+ dateCalendarTextInputRef: ({
599
+ $: import('vue').ComponentInternalInstance;
600
+ $data: {};
601
+ $props: {
602
+ readonly modelValue?: string | number | null | undefined;
603
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
604
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
605
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
606
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
607
+ readonly prependTooltip?: string | undefined;
608
+ readonly appendTooltip?: string | undefined;
609
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
610
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
611
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
612
+ readonly isClearable?: boolean | undefined;
613
+ readonly showDivider?: boolean | undefined;
614
+ readonly label?: string | undefined;
615
+ readonly required?: boolean | undefined;
616
+ readonly errorMessages?: string[] | null | undefined;
617
+ readonly warningMessages?: string[] | null | undefined;
618
+ readonly successMessages?: string[] | null | undefined;
619
+ readonly readonly?: boolean | undefined;
620
+ readonly isActive?: boolean | undefined;
621
+ readonly baseColor?: string | undefined;
622
+ readonly bgColor?: string | undefined;
623
+ readonly centerAffix?: boolean | undefined;
624
+ readonly counter?: string | number | boolean | undefined;
625
+ readonly counterValue?: number | ((value: any) => number) | undefined;
626
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
627
+ readonly direction?: "horizontal" | "vertical" | undefined;
628
+ readonly isDirty?: boolean | undefined;
629
+ readonly disabled?: boolean | undefined;
630
+ readonly isOnError?: boolean | undefined;
631
+ readonly isFlat?: boolean | undefined;
632
+ readonly isFocused?: boolean | undefined;
633
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
634
+ readonly areSpinButtonsHidden?: boolean | undefined;
635
+ readonly hint?: string | undefined;
636
+ readonly id?: string | undefined;
637
+ readonly loading?: string | boolean | undefined;
638
+ readonly maxErrors?: string | number | undefined;
639
+ readonly maxWidth?: string | number | undefined;
640
+ readonly messages?: string | string[] | undefined;
641
+ readonly minWidth?: string | number | undefined;
642
+ readonly name?: string | undefined;
643
+ readonly displayPersistentClear?: boolean | undefined;
644
+ readonly displayPersistentCounter?: boolean | undefined;
645
+ readonly displayPersistentHint?: boolean | undefined;
646
+ readonly displayPersistentPlaceholder?: boolean | undefined;
647
+ readonly placeholder?: string | undefined;
648
+ readonly prefix?: string | undefined;
649
+ readonly isReversed?: boolean | undefined;
650
+ readonly role?: string | undefined;
651
+ readonly rounded?: string | number | boolean | undefined;
652
+ readonly isOnSingleLine?: boolean | undefined;
653
+ readonly suffix?: string | undefined;
654
+ readonly theme?: string | undefined;
655
+ readonly isTiled?: boolean | undefined;
656
+ readonly type?: string | undefined;
657
+ readonly width?: string | number | undefined;
658
+ readonly displayAsterisk?: boolean | undefined;
659
+ readonly noIcon?: boolean | undefined;
660
+ readonly customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
661
+ readonly customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
662
+ readonly customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
663
+ readonly showSuccessMessages?: boolean | undefined;
664
+ readonly isValidateOnBlur?: boolean | undefined;
665
+ readonly disableErrorHandling?: boolean | undefined;
666
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
667
+ readonly onClear?: ((...args: any[]) => any) | undefined;
668
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
669
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
670
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
671
+ $attrs: {
672
+ [x: string]: unknown;
673
+ };
674
+ $refs: {
675
+ [x: string]: unknown;
676
+ };
677
+ $slots: Readonly<{
678
+ [name: string]: import('vue').Slot<any> | undefined;
679
+ }>;
680
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
681
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
682
+ $host: Element | null;
683
+ $emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
684
+ $el: any;
685
+ $options: import('vue').ComponentOptionsBase<Readonly<{
686
+ modelValue?: string | number | null | undefined;
687
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
688
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
689
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
690
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
691
+ prependTooltip?: string | undefined;
692
+ appendTooltip?: string | undefined;
693
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
694
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
695
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
696
+ isClearable?: boolean | undefined;
697
+ showDivider?: boolean | undefined;
698
+ label?: string | undefined;
699
+ required?: boolean | undefined;
700
+ errorMessages?: string[] | null | undefined;
701
+ warningMessages?: string[] | null | undefined;
702
+ successMessages?: string[] | null | undefined;
703
+ readonly?: boolean | undefined;
704
+ isActive?: boolean | undefined;
705
+ baseColor?: string | undefined;
706
+ bgColor?: string | undefined;
707
+ centerAffix?: boolean | undefined;
708
+ counter?: string | number | boolean | undefined;
709
+ counterValue?: number | ((value: any) => number) | undefined;
710
+ density?: "default" | "comfortable" | "compact" | undefined;
711
+ direction?: "horizontal" | "vertical" | undefined;
712
+ isDirty?: boolean | undefined;
713
+ disabled?: boolean | undefined;
714
+ isOnError?: boolean | undefined;
715
+ isFlat?: boolean | undefined;
716
+ isFocused?: boolean | undefined;
717
+ areDetailsHidden?: boolean | "auto" | undefined;
718
+ areSpinButtonsHidden?: boolean | undefined;
719
+ hint?: string | undefined;
720
+ id?: string | undefined;
721
+ loading?: string | boolean | undefined;
722
+ maxErrors?: string | number | undefined;
723
+ maxWidth?: string | number | undefined;
724
+ messages?: string | string[] | undefined;
725
+ minWidth?: string | number | undefined;
726
+ name?: string | undefined;
727
+ displayPersistentClear?: boolean | undefined;
728
+ displayPersistentCounter?: boolean | undefined;
729
+ displayPersistentHint?: boolean | undefined;
730
+ displayPersistentPlaceholder?: boolean | undefined;
731
+ placeholder?: string | undefined;
732
+ prefix?: string | undefined;
733
+ isReversed?: boolean | undefined;
734
+ role?: string | undefined;
735
+ rounded?: string | number | boolean | undefined;
736
+ isOnSingleLine?: boolean | undefined;
737
+ suffix?: string | undefined;
738
+ theme?: string | undefined;
739
+ isTiled?: boolean | undefined;
740
+ type?: string | undefined;
741
+ width?: string | number | undefined;
742
+ displayAsterisk?: boolean | undefined;
743
+ noIcon?: boolean | undefined;
744
+ customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
745
+ customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
746
+ customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
747
+ showSuccessMessages?: boolean | undefined;
748
+ isValidateOnBlur?: boolean | undefined;
749
+ disableErrorHandling?: boolean | undefined;
750
+ }> & Readonly<{
751
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
752
+ onClear?: ((...args: any[]) => any) | undefined;
753
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
754
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
755
+ }>, {
756
+ validation: {
757
+ errors: import('vue').Ref<string[], string[]>;
758
+ warnings: import('vue').Ref<string[], string[]>;
759
+ successes: import('vue').Ref<string[], string[]>;
760
+ hasError: import('vue').ComputedRef<boolean>;
761
+ hasWarning: import('vue').ComputedRef<boolean>;
762
+ hasSuccess: import('vue').ComputedRef<boolean>;
763
+ validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
764
+ validateOnSubmit: () => Promise<boolean>;
765
+ clearValidation: () => void;
766
+ };
767
+ validateOnSubmit: () => boolean;
768
+ checkErrorOnBlur: () => void;
769
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
770
+ "update:modelValue": (...args: any[]) => void;
771
+ clear: (...args: any[]) => void;
772
+ "prepend-icon-click": (...args: any[]) => void;
773
+ "append-icon-click": (...args: any[]) => void;
774
+ }, string, {
775
+ modelValue: string | number | null;
776
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
777
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
778
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
779
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
780
+ prependTooltip: string;
781
+ appendTooltip: string;
782
+ tooltipLocation: "top" | "bottom" | "start" | "end";
783
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
784
+ color: import('../Customs/SyTextField/types').ColorType;
785
+ isClearable: boolean;
786
+ label: string;
787
+ errorMessages: string[] | null;
788
+ warningMessages: string[] | null;
789
+ successMessages: string[] | null;
790
+ readonly: boolean;
791
+ isActive: boolean;
792
+ baseColor: string;
793
+ bgColor: string;
794
+ centerAffix: boolean;
795
+ counter: string | number | boolean;
796
+ counterValue: number | ((value: any) => number);
797
+ density: "default" | "comfortable" | "compact";
798
+ direction: "horizontal" | "vertical";
799
+ isDirty: boolean;
800
+ disabled: boolean;
801
+ isOnError: boolean;
802
+ isFlat: boolean;
803
+ isFocused: boolean;
804
+ areDetailsHidden: boolean | "auto";
805
+ areSpinButtonsHidden: boolean;
806
+ hint: string;
807
+ id: string;
808
+ loading: string | boolean;
809
+ maxErrors: string | number;
810
+ maxWidth: string | number;
811
+ messages: string | string[];
812
+ minWidth: string | number;
813
+ name: string;
814
+ displayPersistentClear: boolean;
815
+ displayPersistentCounter: boolean;
816
+ displayPersistentHint: boolean;
817
+ displayPersistentPlaceholder: boolean;
818
+ placeholder: string;
819
+ prefix: string;
820
+ isReversed: boolean;
821
+ role: string;
822
+ rounded: string | number | boolean;
823
+ isOnSingleLine: boolean;
824
+ suffix: string;
825
+ theme: string;
826
+ isTiled: boolean;
827
+ type: string;
828
+ width: string | number;
829
+ displayAsterisk: boolean;
830
+ noIcon: boolean;
831
+ customRules: import('../../composables/validation/useValidation').ValidationRule[];
832
+ customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
833
+ customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
834
+ showSuccessMessages: boolean;
835
+ isValidateOnBlur: boolean;
836
+ disableErrorHandling: boolean;
837
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
838
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
839
+ created?: ((() => void) | (() => void)[]) | undefined;
840
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
841
+ mounted?: ((() => void) | (() => void)[]) | undefined;
842
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
843
+ updated?: ((() => void) | (() => void)[]) | undefined;
844
+ activated?: ((() => void) | (() => void)[]) | undefined;
845
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
846
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
847
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
848
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
849
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
850
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
851
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
852
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
853
+ };
854
+ $forceUpdate: () => void;
855
+ $nextTick: typeof nextTick;
856
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
857
+ } & Readonly<{
858
+ modelValue: string | number | null;
859
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
860
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
861
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
862
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
863
+ prependTooltip: string;
864
+ appendTooltip: string;
865
+ tooltipLocation: "top" | "bottom" | "start" | "end";
866
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
867
+ color: import('../Customs/SyTextField/types').ColorType;
868
+ isClearable: boolean;
869
+ label: string;
870
+ errorMessages: string[] | null;
871
+ warningMessages: string[] | null;
872
+ successMessages: string[] | null;
873
+ readonly: boolean;
874
+ isActive: boolean;
875
+ baseColor: string;
876
+ bgColor: string;
877
+ centerAffix: boolean;
878
+ counter: string | number | boolean;
879
+ counterValue: number | ((value: any) => number);
880
+ density: "default" | "comfortable" | "compact";
881
+ direction: "horizontal" | "vertical";
882
+ isDirty: boolean;
883
+ disabled: boolean;
884
+ isOnError: boolean;
885
+ isFlat: boolean;
886
+ isFocused: boolean;
887
+ areDetailsHidden: boolean | "auto";
888
+ areSpinButtonsHidden: boolean;
889
+ hint: string;
890
+ id: string;
891
+ loading: string | boolean;
892
+ maxErrors: string | number;
893
+ maxWidth: string | number;
894
+ messages: string | string[];
895
+ minWidth: string | number;
896
+ name: string;
897
+ displayPersistentClear: boolean;
898
+ displayPersistentCounter: boolean;
899
+ displayPersistentHint: boolean;
900
+ displayPersistentPlaceholder: boolean;
901
+ placeholder: string;
902
+ prefix: string;
903
+ isReversed: boolean;
904
+ role: string;
905
+ rounded: string | number | boolean;
906
+ isOnSingleLine: boolean;
907
+ suffix: string;
908
+ theme: string;
909
+ isTiled: boolean;
910
+ type: string;
911
+ width: string | number;
912
+ displayAsterisk: boolean;
913
+ noIcon: boolean;
914
+ customRules: import('../../composables/validation/useValidation').ValidationRule[];
915
+ customWarningRules: import('../../composables/validation/useValidation').ValidationRule[];
916
+ customSuccessRules: import('../../composables/validation/useValidation').ValidationRule[];
917
+ showSuccessMessages: boolean;
918
+ isValidateOnBlur: boolean;
919
+ disableErrorHandling: boolean;
920
+ }> & Omit<Readonly<{
921
+ modelValue?: string | number | null | undefined;
922
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
923
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
924
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
925
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
926
+ prependTooltip?: string | undefined;
927
+ appendTooltip?: string | undefined;
928
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
929
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
930
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
931
+ isClearable?: boolean | undefined;
932
+ showDivider?: boolean | undefined;
933
+ label?: string | undefined;
934
+ required?: boolean | undefined;
935
+ errorMessages?: string[] | null | undefined;
936
+ warningMessages?: string[] | null | undefined;
937
+ successMessages?: string[] | null | undefined;
938
+ readonly?: boolean | undefined;
939
+ isActive?: boolean | undefined;
940
+ baseColor?: string | undefined;
941
+ bgColor?: string | undefined;
942
+ centerAffix?: boolean | undefined;
943
+ counter?: string | number | boolean | undefined;
944
+ counterValue?: number | ((value: any) => number) | undefined;
945
+ density?: "default" | "comfortable" | "compact" | undefined;
946
+ direction?: "horizontal" | "vertical" | undefined;
947
+ isDirty?: boolean | undefined;
948
+ disabled?: boolean | undefined;
949
+ isOnError?: boolean | undefined;
950
+ isFlat?: boolean | undefined;
951
+ isFocused?: boolean | undefined;
952
+ areDetailsHidden?: boolean | "auto" | undefined;
953
+ areSpinButtonsHidden?: boolean | undefined;
954
+ hint?: string | undefined;
955
+ id?: string | undefined;
956
+ loading?: string | boolean | undefined;
957
+ maxErrors?: string | number | undefined;
958
+ maxWidth?: string | number | undefined;
959
+ messages?: string | string[] | undefined;
960
+ minWidth?: string | number | undefined;
961
+ name?: string | undefined;
962
+ displayPersistentClear?: boolean | undefined;
963
+ displayPersistentCounter?: boolean | undefined;
964
+ displayPersistentHint?: boolean | undefined;
965
+ displayPersistentPlaceholder?: boolean | undefined;
966
+ placeholder?: string | undefined;
967
+ prefix?: string | undefined;
968
+ isReversed?: boolean | undefined;
969
+ role?: string | undefined;
970
+ rounded?: string | number | boolean | undefined;
971
+ isOnSingleLine?: boolean | undefined;
972
+ suffix?: string | undefined;
973
+ theme?: string | undefined;
974
+ isTiled?: boolean | undefined;
975
+ type?: string | undefined;
976
+ width?: string | number | undefined;
977
+ displayAsterisk?: boolean | undefined;
978
+ noIcon?: boolean | undefined;
979
+ customRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
980
+ customWarningRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
981
+ customSuccessRules?: import('../../composables/validation/useValidation').ValidationRule[] | undefined;
982
+ showSuccessMessages?: boolean | undefined;
983
+ isValidateOnBlur?: boolean | undefined;
984
+ disableErrorHandling?: boolean | undefined;
985
+ }> & Readonly<{
986
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
987
+ onClear?: ((...args: any[]) => any) | undefined;
988
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
989
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
990
+ }>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling")> & import('vue').ShallowUnwrapRef<{
991
+ validation: {
992
+ errors: import('vue').Ref<string[], string[]>;
993
+ warnings: import('vue').Ref<string[], string[]>;
994
+ successes: import('vue').Ref<string[], string[]>;
995
+ hasError: import('vue').ComputedRef<boolean>;
996
+ hasWarning: import('vue').ComputedRef<boolean>;
997
+ hasSuccess: import('vue').ComputedRef<boolean>;
998
+ validateField: (value: unknown, rules?: import('../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../composables/validation/useValidation').ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
999
+ validateOnSubmit: () => Promise<boolean>;
1000
+ clearValidation: () => void;
1001
+ };
1002
+ validateOnSubmit: () => boolean;
1003
+ checkErrorOnBlur: () => void;
1004
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1005
+ $slots: {
1006
+ prepend?(_: {}): any;
1007
+ append?(_: {}): any;
1008
+ 'prepend-inner'?(_: {}): any;
1009
+ 'append-inner'?(_: {}): any;
1010
+ details?(_: {}): any;
1011
+ };
1012
+ }) | null;
1013
+ datePickerRef: ({
1014
+ $: import('vue').ComponentInternalInstance;
1015
+ $data: {};
1016
+ $props: Partial<{
1017
+ active: string | string[];
1018
+ transition: string;
1019
+ header: string;
1020
+ style: import('vue').StyleValue;
1021
+ title: string;
1022
+ disabled: boolean;
1023
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1024
+ landscape: boolean;
1025
+ rounded: string | number | boolean;
1026
+ tile: boolean;
1027
+ divided: boolean;
1028
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1029
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1030
+ reverseTransition: string;
1031
+ hideHeader: boolean;
1032
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1033
+ viewMode: "month" | "year" | "months";
1034
+ showAdjacentMonths: boolean;
1035
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1036
+ weeksInMonth: "static" | "dynamic";
1037
+ firstDayOfWeek: string | number;
1038
+ hideWeekdays: boolean;
1039
+ showWeek: boolean;
1040
+ }> & Omit<{
1041
+ transition: string;
1042
+ header: string;
1043
+ style: import('vue').StyleValue;
1044
+ title: string;
1045
+ disabled: boolean;
1046
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1047
+ landscape: boolean;
1048
+ tile: boolean;
1049
+ divided: boolean;
1050
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1051
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1052
+ reverseTransition: string;
1053
+ hideHeader: boolean;
1054
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1055
+ viewMode: "month" | "year" | "months";
1056
+ showAdjacentMonths: boolean;
1057
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1058
+ weeksInMonth: "static" | "dynamic";
1059
+ hideWeekdays: boolean;
1060
+ showWeek: boolean;
1061
+ max?: unknown;
1062
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1063
+ height?: string | number | undefined;
1064
+ width?: string | number | undefined;
1065
+ active?: string | string[] | undefined;
1066
+ min?: unknown;
1067
+ border?: string | number | boolean | undefined;
1068
+ color?: string | undefined;
1069
+ maxHeight?: string | number | undefined;
1070
+ maxWidth?: string | number | undefined;
1071
+ minHeight?: string | number | undefined;
1072
+ minWidth?: string | number | undefined;
1073
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1074
+ text?: string | undefined;
1075
+ month?: string | number | undefined;
1076
+ year?: number | undefined;
1077
+ class?: any;
1078
+ theme?: string | undefined;
1079
+ elevation?: string | number | undefined;
1080
+ rounded?: string | number | boolean | undefined;
1081
+ bgColor?: string | undefined;
1082
+ controlHeight?: string | number | undefined;
1083
+ headerColor?: string | undefined;
1084
+ firstDayOfWeek?: string | number | undefined;
1085
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1086
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1087
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1088
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1089
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode">;
1090
+ $attrs: {
1091
+ [x: string]: unknown;
1092
+ };
1093
+ $refs: {
1094
+ [x: string]: unknown;
1095
+ };
1096
+ $slots: Readonly<{
1097
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1098
+ [key: string]: any;
1099
+ }>[]) | undefined;
1100
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1101
+ [key: string]: any;
1102
+ }>[]) | undefined;
1103
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1104
+ [key: string]: any;
1105
+ }>[]) | undefined;
1106
+ header?: ((arg: {
1107
+ header: string;
1108
+ transition: string;
1109
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1110
+ [key: string]: any;
1111
+ }>[]) | undefined;
1112
+ }>;
1113
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1114
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1115
+ $host: Element | null;
1116
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
1117
+ $el: any;
1118
+ $options: import('vue').ComponentOptionsBase<{
1119
+ transition: string;
1120
+ header: string;
1121
+ style: import('vue').StyleValue;
1122
+ title: string;
1123
+ disabled: boolean;
1124
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1125
+ landscape: boolean;
1126
+ tile: boolean;
1127
+ divided: boolean;
1128
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1129
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1130
+ reverseTransition: string;
1131
+ hideHeader: boolean;
1132
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1133
+ viewMode: "month" | "year" | "months";
1134
+ showAdjacentMonths: boolean;
1135
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1136
+ weeksInMonth: "static" | "dynamic";
1137
+ hideWeekdays: boolean;
1138
+ showWeek: boolean;
1139
+ } & {
1140
+ max?: unknown;
1141
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1142
+ height?: string | number | undefined;
1143
+ width?: string | number | undefined;
1144
+ active?: string | string[] | undefined;
1145
+ min?: unknown;
1146
+ border?: string | number | boolean | undefined;
1147
+ color?: string | undefined;
1148
+ maxHeight?: string | number | undefined;
1149
+ maxWidth?: string | number | undefined;
1150
+ minHeight?: string | number | undefined;
1151
+ minWidth?: string | number | undefined;
1152
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1153
+ text?: string | undefined;
1154
+ month?: string | number | undefined;
1155
+ year?: number | undefined;
1156
+ class?: any;
1157
+ theme?: string | undefined;
1158
+ elevation?: string | number | undefined;
1159
+ rounded?: string | number | boolean | undefined;
1160
+ bgColor?: string | undefined;
1161
+ controlHeight?: string | number | undefined;
1162
+ headerColor?: string | undefined;
1163
+ firstDayOfWeek?: string | number | undefined;
1164
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1165
+ } & {
1166
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1167
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1168
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1169
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1170
+ 'update:modelValue': (date: any) => true;
1171
+ 'update:month': (date: any) => true;
1172
+ 'update:year': (date: any) => true;
1173
+ 'update:viewMode': (date: any) => true;
1174
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
1175
+ active: string | string[];
1176
+ transition: string;
1177
+ header: string;
1178
+ style: import('vue').StyleValue;
1179
+ title: string;
1180
+ disabled: boolean;
1181
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1182
+ landscape: boolean;
1183
+ rounded: string | number | boolean;
1184
+ tile: boolean;
1185
+ divided: boolean;
1186
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1187
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1188
+ reverseTransition: string;
1189
+ hideHeader: boolean;
1190
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1191
+ viewMode: "month" | "year" | "months";
1192
+ showAdjacentMonths: boolean;
1193
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1194
+ weeksInMonth: "static" | "dynamic";
1195
+ firstDayOfWeek: string | number;
1196
+ hideWeekdays: boolean;
1197
+ showWeek: boolean;
1198
+ }, {}, string, import('vue').SlotsType<Partial<{
1199
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1200
+ [key: string]: any;
1201
+ }>[];
1202
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1203
+ [key: string]: any;
1204
+ }>[];
1205
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1206
+ [key: string]: any;
1207
+ }>[];
1208
+ header: (arg: {
1209
+ header: string;
1210
+ transition: string;
1211
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1212
+ [key: string]: any;
1213
+ }>[];
1214
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1215
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1216
+ created?: ((() => void) | (() => void)[]) | undefined;
1217
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
1218
+ mounted?: ((() => void) | (() => void)[]) | undefined;
1219
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
1220
+ updated?: ((() => void) | (() => void)[]) | undefined;
1221
+ activated?: ((() => void) | (() => void)[]) | undefined;
1222
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
1223
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
1224
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
1225
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
1226
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
1227
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1228
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1229
+ errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
1230
+ };
1231
+ $forceUpdate: () => void;
1232
+ $nextTick: typeof nextTick;
1233
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
1234
+ } & Readonly<{
1235
+ active: string | string[];
1236
+ transition: string;
1237
+ header: string;
1238
+ style: import('vue').StyleValue;
1239
+ title: string;
1240
+ disabled: boolean;
1241
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1242
+ landscape: boolean;
1243
+ rounded: string | number | boolean;
1244
+ tile: boolean;
1245
+ divided: boolean;
1246
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1247
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1248
+ reverseTransition: string;
1249
+ hideHeader: boolean;
1250
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1251
+ viewMode: "month" | "year" | "months";
1252
+ showAdjacentMonths: boolean;
1253
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1254
+ weeksInMonth: "static" | "dynamic";
1255
+ firstDayOfWeek: string | number;
1256
+ hideWeekdays: boolean;
1257
+ showWeek: boolean;
1258
+ }> & Omit<{
1259
+ transition: string;
1260
+ header: string;
1261
+ style: import('vue').StyleValue;
1262
+ title: string;
1263
+ disabled: boolean;
1264
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1265
+ landscape: boolean;
1266
+ tile: boolean;
1267
+ divided: boolean;
1268
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1269
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1270
+ reverseTransition: string;
1271
+ hideHeader: boolean;
1272
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1273
+ viewMode: "month" | "year" | "months";
1274
+ showAdjacentMonths: boolean;
1275
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1276
+ weeksInMonth: "static" | "dynamic";
1277
+ hideWeekdays: boolean;
1278
+ showWeek: boolean;
1279
+ } & {
1280
+ max?: unknown;
1281
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1282
+ height?: string | number | undefined;
1283
+ width?: string | number | undefined;
1284
+ active?: string | string[] | undefined;
1285
+ min?: unknown;
1286
+ border?: string | number | boolean | undefined;
1287
+ color?: string | undefined;
1288
+ maxHeight?: string | number | undefined;
1289
+ maxWidth?: string | number | undefined;
1290
+ minHeight?: string | number | undefined;
1291
+ minWidth?: string | number | undefined;
1292
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1293
+ text?: string | undefined;
1294
+ month?: string | number | undefined;
1295
+ year?: number | undefined;
1296
+ class?: any;
1297
+ theme?: string | undefined;
1298
+ elevation?: string | number | undefined;
1299
+ rounded?: string | number | boolean | undefined;
1300
+ bgColor?: string | undefined;
1301
+ controlHeight?: string | number | undefined;
1302
+ headerColor?: string | undefined;
1303
+ firstDayOfWeek?: string | number | undefined;
1304
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1305
+ } & {
1306
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1307
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1308
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1309
+ }, "disabled" | "rounded" | "style" | "active" | "tile" | "title" | "transition" | "header" | "tag" | "divided" | "landscape" | "hideHeader" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "hideWeekdays" | "showWeek" | "reverseTransition" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
1310
+ modelValue?: Date | Date[] | null | undefined;
1311
+ "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
1312
+ multiple?: false | "range" | undefined;
1313
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
598
1314
  }, HTMLDivElement>;
599
1315
  export default _default;