@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
@@ -22,7 +22,7 @@ type __VLS_Props = {
22
22
  customRules?: ValidationRule[];
23
23
  customWarningRules?: ValidationRule[];
24
24
  disableErrorHandling?: boolean;
25
- readOnly?: boolean;
25
+ readonly?: boolean;
26
26
  };
27
27
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
28
28
  validateOnSubmit: () => boolean;
@@ -46,7 +46,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
46
46
  }>, {
47
47
  required: boolean;
48
48
  modelValue: PeriodValue;
49
- readOnly: boolean;
49
+ readonly: boolean;
50
50
  disabled: boolean;
51
51
  noIcon: boolean;
52
52
  customRules: ValidationRule[];
@@ -87,7 +87,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
87
87
  noIcon?: boolean | undefined;
88
88
  noCalendar?: boolean | undefined;
89
89
  isOutlined?: boolean | undefined;
90
- readOnly?: boolean | undefined;
90
+ readonly?: boolean | undefined;
91
91
  width?: string | undefined;
92
92
  disableErrorHandling?: boolean | undefined;
93
93
  showSuccessMessages?: boolean | undefined;
@@ -114,7 +114,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
114
114
  }, import('vue').PublicProps, {
115
115
  required: boolean;
116
116
  modelValue: import('../../composables/date/useDateInitialization').DateInput;
117
- readOnly: boolean;
117
+ readonly: boolean;
118
118
  bgColor: string;
119
119
  disabled: boolean;
120
120
  placeholder: string;
@@ -149,7 +149,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
149
149
  label?: string | undefined;
150
150
  required?: boolean | undefined;
151
151
  disabled?: boolean | undefined;
152
- readOnly?: boolean | undefined;
152
+ readonly?: boolean | undefined;
153
153
  isOutlined?: boolean | undefined;
154
154
  displayIcon?: boolean | undefined;
155
155
  displayAppendIcon?: boolean | undefined;
@@ -175,7 +175,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
175
175
  required: boolean;
176
176
  modelValue: string | null;
177
177
  label: string;
178
- readOnly: boolean;
178
+ readonly: boolean;
179
179
  disabled: boolean;
180
180
  placeholder: string;
181
181
  noIcon: boolean;
@@ -211,7 +211,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
211
211
  readonly errorMessages?: string[] | null | undefined;
212
212
  readonly warningMessages?: string[] | null | undefined;
213
213
  readonly successMessages?: string[] | null | undefined;
214
- readonly readOnly?: boolean | undefined;
214
+ readonly readonly?: boolean | undefined;
215
215
  readonly isActive?: boolean | undefined;
216
216
  readonly baseColor?: string | undefined;
217
217
  readonly bgColor?: string | undefined;
@@ -295,7 +295,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
295
295
  errorMessages?: string[] | null | undefined;
296
296
  warningMessages?: string[] | null | undefined;
297
297
  successMessages?: string[] | null | undefined;
298
- readOnly?: boolean | undefined;
298
+ readonly?: boolean | undefined;
299
299
  isActive?: boolean | undefined;
300
300
  baseColor?: string | undefined;
301
301
  bgColor?: string | undefined;
@@ -382,7 +382,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
382
382
  errorMessages: string[] | null;
383
383
  warningMessages: string[] | null;
384
384
  successMessages: string[] | null;
385
- readOnly: boolean;
385
+ readonly: boolean;
386
386
  isActive: boolean;
387
387
  baseColor: string;
388
388
  bgColor: string;
@@ -465,7 +465,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
465
465
  errorMessages: string[] | null;
466
466
  warningMessages: string[] | null;
467
467
  successMessages: string[] | null;
468
- readOnly: boolean;
468
+ readonly: boolean;
469
469
  isActive: boolean;
470
470
  baseColor: string;
471
471
  bgColor: string;
@@ -530,7 +530,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
530
530
  errorMessages?: string[] | null | undefined;
531
531
  warningMessages?: string[] | null | undefined;
532
532
  successMessages?: string[] | null | undefined;
533
- readOnly?: boolean | undefined;
533
+ readonly?: boolean | undefined;
534
534
  isActive?: boolean | undefined;
535
535
  baseColor?: string | undefined;
536
536
  bgColor?: string | undefined;
@@ -582,7 +582,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
582
582
  onClear?: ((...args: any[]) => any) | undefined;
583
583
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
584
584
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
585
- }>, "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<{
585
+ }>, "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<{
586
586
  validation: {
587
587
  errors: import('vue').Ref<string[], string[]>;
588
588
  warnings: import('vue').Ref<string[], string[]>;
@@ -620,7 +620,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
620
620
  label?: string | undefined;
621
621
  required?: boolean | undefined;
622
622
  disabled?: boolean | undefined;
623
- readOnly?: boolean | undefined;
623
+ readonly?: boolean | undefined;
624
624
  isOutlined?: boolean | undefined;
625
625
  displayIcon?: boolean | undefined;
626
626
  displayAppendIcon?: boolean | undefined;
@@ -642,7 +642,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
642
642
  required: boolean;
643
643
  modelValue: string | null;
644
644
  label: string;
645
- readOnly: boolean;
645
+ readonly: boolean;
646
646
  disabled: boolean;
647
647
  placeholder: string;
648
648
  noIcon: boolean;
@@ -657,6 +657,722 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
657
657
  displayAppendIcon: boolean;
658
658
  displayPrependIcon: boolean;
659
659
  }> | null;
660
+ dateCalendarTextInputRef: ({
661
+ $: import('vue').ComponentInternalInstance;
662
+ $data: {};
663
+ $props: {
664
+ readonly modelValue?: string | number | null | undefined;
665
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
666
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
667
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
668
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
669
+ readonly prependTooltip?: string | undefined;
670
+ readonly appendTooltip?: string | undefined;
671
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
672
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
673
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
674
+ readonly isClearable?: boolean | undefined;
675
+ readonly showDivider?: boolean | undefined;
676
+ readonly label?: string | undefined;
677
+ readonly required?: boolean | undefined;
678
+ readonly errorMessages?: string[] | null | undefined;
679
+ readonly warningMessages?: string[] | null | undefined;
680
+ readonly successMessages?: string[] | null | undefined;
681
+ readonly readonly?: boolean | undefined;
682
+ readonly isActive?: boolean | undefined;
683
+ readonly baseColor?: string | undefined;
684
+ readonly bgColor?: string | undefined;
685
+ readonly centerAffix?: boolean | undefined;
686
+ readonly counter?: string | number | boolean | undefined;
687
+ readonly counterValue?: number | ((value: any) => number) | undefined;
688
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
689
+ readonly direction?: "horizontal" | "vertical" | undefined;
690
+ readonly isDirty?: boolean | undefined;
691
+ readonly disabled?: boolean | undefined;
692
+ readonly isOnError?: boolean | undefined;
693
+ readonly isFlat?: boolean | undefined;
694
+ readonly isFocused?: boolean | undefined;
695
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
696
+ readonly areSpinButtonsHidden?: boolean | undefined;
697
+ readonly hint?: string | undefined;
698
+ readonly id?: string | undefined;
699
+ readonly loading?: string | boolean | undefined;
700
+ readonly maxErrors?: string | number | undefined;
701
+ readonly maxWidth?: string | number | undefined;
702
+ readonly messages?: string | string[] | undefined;
703
+ readonly minWidth?: string | number | undefined;
704
+ readonly name?: string | undefined;
705
+ readonly displayPersistentClear?: boolean | undefined;
706
+ readonly displayPersistentCounter?: boolean | undefined;
707
+ readonly displayPersistentHint?: boolean | undefined;
708
+ readonly displayPersistentPlaceholder?: boolean | undefined;
709
+ readonly placeholder?: string | undefined;
710
+ readonly prefix?: string | undefined;
711
+ readonly isReversed?: boolean | undefined;
712
+ readonly role?: string | undefined;
713
+ readonly rounded?: string | number | boolean | undefined;
714
+ readonly isOnSingleLine?: boolean | undefined;
715
+ readonly suffix?: string | undefined;
716
+ readonly theme?: string | undefined;
717
+ readonly isTiled?: boolean | undefined;
718
+ readonly type?: string | undefined;
719
+ readonly width?: string | number | undefined;
720
+ readonly displayAsterisk?: boolean | undefined;
721
+ readonly noIcon?: boolean | undefined;
722
+ readonly customRules?: ValidationRule[] | undefined;
723
+ readonly customWarningRules?: ValidationRule[] | undefined;
724
+ readonly customSuccessRules?: ValidationRule[] | undefined;
725
+ readonly showSuccessMessages?: boolean | undefined;
726
+ readonly isValidateOnBlur?: boolean | undefined;
727
+ readonly disableErrorHandling?: boolean | undefined;
728
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
729
+ readonly onClear?: ((...args: any[]) => any) | undefined;
730
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
731
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
732
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
733
+ $attrs: {
734
+ [x: string]: unknown;
735
+ };
736
+ $refs: {
737
+ [x: string]: unknown;
738
+ };
739
+ $slots: Readonly<{
740
+ [name: string]: import('vue').Slot<any> | undefined;
741
+ }>;
742
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
743
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
744
+ $host: Element | null;
745
+ $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);
746
+ $el: any;
747
+ $options: import('vue').ComponentOptionsBase<Readonly<{
748
+ modelValue?: string | number | null | undefined;
749
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
750
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
751
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
752
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
753
+ prependTooltip?: string | undefined;
754
+ appendTooltip?: string | undefined;
755
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
756
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
757
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
758
+ isClearable?: boolean | undefined;
759
+ showDivider?: boolean | undefined;
760
+ label?: string | undefined;
761
+ required?: boolean | undefined;
762
+ errorMessages?: string[] | null | undefined;
763
+ warningMessages?: string[] | null | undefined;
764
+ successMessages?: string[] | null | undefined;
765
+ readonly?: boolean | undefined;
766
+ isActive?: boolean | undefined;
767
+ baseColor?: string | undefined;
768
+ bgColor?: string | undefined;
769
+ centerAffix?: boolean | undefined;
770
+ counter?: string | number | boolean | undefined;
771
+ counterValue?: number | ((value: any) => number) | undefined;
772
+ density?: "default" | "comfortable" | "compact" | undefined;
773
+ direction?: "horizontal" | "vertical" | undefined;
774
+ isDirty?: boolean | undefined;
775
+ disabled?: boolean | undefined;
776
+ isOnError?: boolean | undefined;
777
+ isFlat?: boolean | undefined;
778
+ isFocused?: boolean | undefined;
779
+ areDetailsHidden?: boolean | "auto" | undefined;
780
+ areSpinButtonsHidden?: boolean | undefined;
781
+ hint?: string | undefined;
782
+ id?: string | undefined;
783
+ loading?: string | boolean | undefined;
784
+ maxErrors?: string | number | undefined;
785
+ maxWidth?: string | number | undefined;
786
+ messages?: string | string[] | undefined;
787
+ minWidth?: string | number | undefined;
788
+ name?: string | undefined;
789
+ displayPersistentClear?: boolean | undefined;
790
+ displayPersistentCounter?: boolean | undefined;
791
+ displayPersistentHint?: boolean | undefined;
792
+ displayPersistentPlaceholder?: boolean | undefined;
793
+ placeholder?: string | undefined;
794
+ prefix?: string | undefined;
795
+ isReversed?: boolean | undefined;
796
+ role?: string | undefined;
797
+ rounded?: string | number | boolean | undefined;
798
+ isOnSingleLine?: boolean | undefined;
799
+ suffix?: string | undefined;
800
+ theme?: string | undefined;
801
+ isTiled?: boolean | undefined;
802
+ type?: string | undefined;
803
+ width?: string | number | undefined;
804
+ displayAsterisk?: boolean | undefined;
805
+ noIcon?: boolean | undefined;
806
+ customRules?: ValidationRule[] | undefined;
807
+ customWarningRules?: ValidationRule[] | undefined;
808
+ customSuccessRules?: ValidationRule[] | undefined;
809
+ showSuccessMessages?: boolean | undefined;
810
+ isValidateOnBlur?: boolean | undefined;
811
+ disableErrorHandling?: boolean | undefined;
812
+ }> & Readonly<{
813
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
814
+ onClear?: ((...args: any[]) => any) | undefined;
815
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
816
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
817
+ }>, {
818
+ validation: {
819
+ errors: import('vue').Ref<string[], string[]>;
820
+ warnings: import('vue').Ref<string[], string[]>;
821
+ successes: import('vue').Ref<string[], string[]>;
822
+ hasError: import('vue').ComputedRef<boolean>;
823
+ hasWarning: import('vue').ComputedRef<boolean>;
824
+ hasSuccess: import('vue').ComputedRef<boolean>;
825
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
826
+ validateOnSubmit: () => Promise<boolean>;
827
+ clearValidation: () => void;
828
+ };
829
+ validateOnSubmit: () => boolean;
830
+ checkErrorOnBlur: () => void;
831
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
832
+ "update:modelValue": (...args: any[]) => void;
833
+ clear: (...args: any[]) => void;
834
+ "prepend-icon-click": (...args: any[]) => void;
835
+ "append-icon-click": (...args: any[]) => void;
836
+ }, string, {
837
+ modelValue: string | number | null;
838
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
839
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
840
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
841
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
842
+ prependTooltip: string;
843
+ appendTooltip: string;
844
+ tooltipLocation: "top" | "bottom" | "start" | "end";
845
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
846
+ color: import('../Customs/SyTextField/types').ColorType;
847
+ isClearable: boolean;
848
+ label: string;
849
+ errorMessages: string[] | null;
850
+ warningMessages: string[] | null;
851
+ successMessages: string[] | null;
852
+ readonly: boolean;
853
+ isActive: boolean;
854
+ baseColor: string;
855
+ bgColor: string;
856
+ centerAffix: boolean;
857
+ counter: string | number | boolean;
858
+ counterValue: number | ((value: any) => number);
859
+ density: "default" | "comfortable" | "compact";
860
+ direction: "horizontal" | "vertical";
861
+ isDirty: boolean;
862
+ disabled: boolean;
863
+ isOnError: boolean;
864
+ isFlat: boolean;
865
+ isFocused: boolean;
866
+ areDetailsHidden: boolean | "auto";
867
+ areSpinButtonsHidden: boolean;
868
+ hint: string;
869
+ id: string;
870
+ loading: string | boolean;
871
+ maxErrors: string | number;
872
+ maxWidth: string | number;
873
+ messages: string | string[];
874
+ minWidth: string | number;
875
+ name: string;
876
+ displayPersistentClear: boolean;
877
+ displayPersistentCounter: boolean;
878
+ displayPersistentHint: boolean;
879
+ displayPersistentPlaceholder: boolean;
880
+ placeholder: string;
881
+ prefix: string;
882
+ isReversed: boolean;
883
+ role: string;
884
+ rounded: string | number | boolean;
885
+ isOnSingleLine: boolean;
886
+ suffix: string;
887
+ theme: string;
888
+ isTiled: boolean;
889
+ type: string;
890
+ width: string | number;
891
+ displayAsterisk: boolean;
892
+ noIcon: boolean;
893
+ customRules: ValidationRule[];
894
+ customWarningRules: ValidationRule[];
895
+ customSuccessRules: ValidationRule[];
896
+ showSuccessMessages: boolean;
897
+ isValidateOnBlur: boolean;
898
+ disableErrorHandling: boolean;
899
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
900
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
901
+ created?: ((() => void) | (() => void)[]) | undefined;
902
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
903
+ mounted?: ((() => void) | (() => void)[]) | undefined;
904
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
905
+ updated?: ((() => void) | (() => void)[]) | undefined;
906
+ activated?: ((() => void) | (() => void)[]) | undefined;
907
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
908
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
909
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
910
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
911
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
912
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
913
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
914
+ 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;
915
+ };
916
+ $forceUpdate: () => void;
917
+ $nextTick: typeof import('vue').nextTick;
918
+ $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;
919
+ } & Readonly<{
920
+ modelValue: string | number | null;
921
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
922
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
923
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
924
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
925
+ prependTooltip: string;
926
+ appendTooltip: string;
927
+ tooltipLocation: "top" | "bottom" | "start" | "end";
928
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
929
+ color: import('../Customs/SyTextField/types').ColorType;
930
+ isClearable: boolean;
931
+ label: string;
932
+ errorMessages: string[] | null;
933
+ warningMessages: string[] | null;
934
+ successMessages: string[] | null;
935
+ readonly: boolean;
936
+ isActive: boolean;
937
+ baseColor: string;
938
+ bgColor: string;
939
+ centerAffix: boolean;
940
+ counter: string | number | boolean;
941
+ counterValue: number | ((value: any) => number);
942
+ density: "default" | "comfortable" | "compact";
943
+ direction: "horizontal" | "vertical";
944
+ isDirty: boolean;
945
+ disabled: boolean;
946
+ isOnError: boolean;
947
+ isFlat: boolean;
948
+ isFocused: boolean;
949
+ areDetailsHidden: boolean | "auto";
950
+ areSpinButtonsHidden: boolean;
951
+ hint: string;
952
+ id: string;
953
+ loading: string | boolean;
954
+ maxErrors: string | number;
955
+ maxWidth: string | number;
956
+ messages: string | string[];
957
+ minWidth: string | number;
958
+ name: string;
959
+ displayPersistentClear: boolean;
960
+ displayPersistentCounter: boolean;
961
+ displayPersistentHint: boolean;
962
+ displayPersistentPlaceholder: boolean;
963
+ placeholder: string;
964
+ prefix: string;
965
+ isReversed: boolean;
966
+ role: string;
967
+ rounded: string | number | boolean;
968
+ isOnSingleLine: boolean;
969
+ suffix: string;
970
+ theme: string;
971
+ isTiled: boolean;
972
+ type: string;
973
+ width: string | number;
974
+ displayAsterisk: boolean;
975
+ noIcon: boolean;
976
+ customRules: ValidationRule[];
977
+ customWarningRules: ValidationRule[];
978
+ customSuccessRules: ValidationRule[];
979
+ showSuccessMessages: boolean;
980
+ isValidateOnBlur: boolean;
981
+ disableErrorHandling: boolean;
982
+ }> & Omit<Readonly<{
983
+ modelValue?: string | number | null | undefined;
984
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
985
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
986
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
987
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
988
+ prependTooltip?: string | undefined;
989
+ appendTooltip?: string | undefined;
990
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
991
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
992
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
993
+ isClearable?: boolean | undefined;
994
+ showDivider?: boolean | undefined;
995
+ label?: string | undefined;
996
+ required?: boolean | undefined;
997
+ errorMessages?: string[] | null | undefined;
998
+ warningMessages?: string[] | null | undefined;
999
+ successMessages?: string[] | null | undefined;
1000
+ readonly?: boolean | undefined;
1001
+ isActive?: boolean | undefined;
1002
+ baseColor?: string | undefined;
1003
+ bgColor?: string | undefined;
1004
+ centerAffix?: boolean | undefined;
1005
+ counter?: string | number | boolean | undefined;
1006
+ counterValue?: number | ((value: any) => number) | undefined;
1007
+ density?: "default" | "comfortable" | "compact" | undefined;
1008
+ direction?: "horizontal" | "vertical" | undefined;
1009
+ isDirty?: boolean | undefined;
1010
+ disabled?: boolean | undefined;
1011
+ isOnError?: boolean | undefined;
1012
+ isFlat?: boolean | undefined;
1013
+ isFocused?: boolean | undefined;
1014
+ areDetailsHidden?: boolean | "auto" | undefined;
1015
+ areSpinButtonsHidden?: boolean | undefined;
1016
+ hint?: string | undefined;
1017
+ id?: string | undefined;
1018
+ loading?: string | boolean | undefined;
1019
+ maxErrors?: string | number | undefined;
1020
+ maxWidth?: string | number | undefined;
1021
+ messages?: string | string[] | undefined;
1022
+ minWidth?: string | number | undefined;
1023
+ name?: string | undefined;
1024
+ displayPersistentClear?: boolean | undefined;
1025
+ displayPersistentCounter?: boolean | undefined;
1026
+ displayPersistentHint?: boolean | undefined;
1027
+ displayPersistentPlaceholder?: boolean | undefined;
1028
+ placeholder?: string | undefined;
1029
+ prefix?: string | undefined;
1030
+ isReversed?: boolean | undefined;
1031
+ role?: string | undefined;
1032
+ rounded?: string | number | boolean | undefined;
1033
+ isOnSingleLine?: boolean | undefined;
1034
+ suffix?: string | undefined;
1035
+ theme?: string | undefined;
1036
+ isTiled?: boolean | undefined;
1037
+ type?: string | undefined;
1038
+ width?: string | number | undefined;
1039
+ displayAsterisk?: boolean | undefined;
1040
+ noIcon?: boolean | undefined;
1041
+ customRules?: ValidationRule[] | undefined;
1042
+ customWarningRules?: ValidationRule[] | undefined;
1043
+ customSuccessRules?: ValidationRule[] | undefined;
1044
+ showSuccessMessages?: boolean | undefined;
1045
+ isValidateOnBlur?: boolean | undefined;
1046
+ disableErrorHandling?: boolean | undefined;
1047
+ }> & Readonly<{
1048
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1049
+ onClear?: ((...args: any[]) => any) | undefined;
1050
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1051
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1052
+ }>, "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<{
1053
+ validation: {
1054
+ errors: import('vue').Ref<string[], string[]>;
1055
+ warnings: import('vue').Ref<string[], string[]>;
1056
+ successes: import('vue').Ref<string[], string[]>;
1057
+ hasError: import('vue').ComputedRef<boolean>;
1058
+ hasWarning: import('vue').ComputedRef<boolean>;
1059
+ hasSuccess: import('vue').ComputedRef<boolean>;
1060
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
1061
+ validateOnSubmit: () => Promise<boolean>;
1062
+ clearValidation: () => void;
1063
+ };
1064
+ validateOnSubmit: () => boolean;
1065
+ checkErrorOnBlur: () => void;
1066
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
1067
+ $slots: {
1068
+ prepend?(_: {}): any;
1069
+ append?(_: {}): any;
1070
+ 'prepend-inner'?(_: {}): any;
1071
+ 'append-inner'?(_: {}): any;
1072
+ details?(_: {}): any;
1073
+ };
1074
+ }) | null;
1075
+ datePickerRef: ({
1076
+ $: import('vue').ComponentInternalInstance;
1077
+ $data: {};
1078
+ $props: Partial<{
1079
+ active: string | string[];
1080
+ transition: string;
1081
+ header: string;
1082
+ style: import('vue').StyleValue;
1083
+ title: string;
1084
+ disabled: boolean;
1085
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1086
+ landscape: boolean;
1087
+ rounded: string | number | boolean;
1088
+ tile: boolean;
1089
+ divided: boolean;
1090
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1091
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1092
+ reverseTransition: string;
1093
+ hideHeader: boolean;
1094
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1095
+ viewMode: "month" | "year" | "months";
1096
+ showAdjacentMonths: boolean;
1097
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1098
+ weeksInMonth: "static" | "dynamic";
1099
+ firstDayOfWeek: string | number;
1100
+ hideWeekdays: boolean;
1101
+ showWeek: boolean;
1102
+ }> & Omit<{
1103
+ transition: string;
1104
+ header: string;
1105
+ style: import('vue').StyleValue;
1106
+ title: string;
1107
+ disabled: boolean;
1108
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1109
+ landscape: boolean;
1110
+ tile: boolean;
1111
+ divided: boolean;
1112
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1113
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1114
+ reverseTransition: string;
1115
+ hideHeader: boolean;
1116
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1117
+ viewMode: "month" | "year" | "months";
1118
+ showAdjacentMonths: boolean;
1119
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1120
+ weeksInMonth: "static" | "dynamic";
1121
+ hideWeekdays: boolean;
1122
+ showWeek: boolean;
1123
+ max?: unknown;
1124
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1125
+ height?: string | number | undefined;
1126
+ width?: string | number | undefined;
1127
+ active?: string | string[] | undefined;
1128
+ min?: unknown;
1129
+ border?: string | number | boolean | undefined;
1130
+ color?: string | undefined;
1131
+ maxHeight?: string | number | undefined;
1132
+ maxWidth?: string | number | undefined;
1133
+ minHeight?: string | number | undefined;
1134
+ minWidth?: string | number | undefined;
1135
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1136
+ text?: string | undefined;
1137
+ month?: string | number | undefined;
1138
+ year?: number | undefined;
1139
+ class?: any;
1140
+ theme?: string | undefined;
1141
+ elevation?: string | number | undefined;
1142
+ rounded?: string | number | boolean | undefined;
1143
+ bgColor?: string | undefined;
1144
+ controlHeight?: string | number | undefined;
1145
+ headerColor?: string | undefined;
1146
+ firstDayOfWeek?: string | number | undefined;
1147
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1148
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1149
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1150
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1151
+ } & 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">;
1152
+ $attrs: {
1153
+ [x: string]: unknown;
1154
+ };
1155
+ $refs: {
1156
+ [x: string]: unknown;
1157
+ };
1158
+ $slots: Readonly<{
1159
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1160
+ [key: string]: any;
1161
+ }>[]) | undefined;
1162
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1163
+ [key: string]: any;
1164
+ }>[]) | undefined;
1165
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1166
+ [key: string]: any;
1167
+ }>[]) | undefined;
1168
+ header?: ((arg: {
1169
+ header: string;
1170
+ transition: string;
1171
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1172
+ [key: string]: any;
1173
+ }>[]) | undefined;
1174
+ }>;
1175
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1176
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
1177
+ $host: Element | null;
1178
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
1179
+ $el: any;
1180
+ $options: import('vue').ComponentOptionsBase<{
1181
+ transition: string;
1182
+ header: string;
1183
+ style: import('vue').StyleValue;
1184
+ title: string;
1185
+ disabled: boolean;
1186
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1187
+ landscape: boolean;
1188
+ tile: boolean;
1189
+ divided: boolean;
1190
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1191
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1192
+ reverseTransition: string;
1193
+ hideHeader: boolean;
1194
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1195
+ viewMode: "month" | "year" | "months";
1196
+ showAdjacentMonths: boolean;
1197
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1198
+ weeksInMonth: "static" | "dynamic";
1199
+ hideWeekdays: boolean;
1200
+ showWeek: boolean;
1201
+ } & {
1202
+ max?: unknown;
1203
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1204
+ height?: string | number | undefined;
1205
+ width?: string | number | undefined;
1206
+ active?: string | string[] | undefined;
1207
+ min?: unknown;
1208
+ border?: string | number | boolean | undefined;
1209
+ color?: string | undefined;
1210
+ maxHeight?: string | number | undefined;
1211
+ maxWidth?: string | number | undefined;
1212
+ minHeight?: string | number | undefined;
1213
+ minWidth?: string | number | undefined;
1214
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1215
+ text?: string | undefined;
1216
+ month?: string | number | undefined;
1217
+ year?: number | undefined;
1218
+ class?: any;
1219
+ theme?: string | undefined;
1220
+ elevation?: string | number | undefined;
1221
+ rounded?: string | number | boolean | undefined;
1222
+ bgColor?: string | undefined;
1223
+ controlHeight?: string | number | undefined;
1224
+ headerColor?: string | undefined;
1225
+ firstDayOfWeek?: string | number | undefined;
1226
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1227
+ } & {
1228
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1229
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1230
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1231
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
1232
+ 'update:modelValue': (date: any) => true;
1233
+ 'update:month': (date: any) => true;
1234
+ 'update:year': (date: any) => true;
1235
+ 'update:viewMode': (date: any) => true;
1236
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
1237
+ active: string | string[];
1238
+ transition: string;
1239
+ header: string;
1240
+ style: import('vue').StyleValue;
1241
+ title: string;
1242
+ disabled: boolean;
1243
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1244
+ landscape: boolean;
1245
+ rounded: string | number | boolean;
1246
+ tile: boolean;
1247
+ divided: boolean;
1248
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1249
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1250
+ reverseTransition: string;
1251
+ hideHeader: boolean;
1252
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1253
+ viewMode: "month" | "year" | "months";
1254
+ showAdjacentMonths: boolean;
1255
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1256
+ weeksInMonth: "static" | "dynamic";
1257
+ firstDayOfWeek: string | number;
1258
+ hideWeekdays: boolean;
1259
+ showWeek: boolean;
1260
+ }, {}, string, import('vue').SlotsType<Partial<{
1261
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1262
+ [key: string]: any;
1263
+ }>[];
1264
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1265
+ [key: string]: any;
1266
+ }>[];
1267
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1268
+ [key: string]: any;
1269
+ }>[];
1270
+ header: (arg: {
1271
+ header: string;
1272
+ transition: string;
1273
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
1274
+ [key: string]: any;
1275
+ }>[];
1276
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1277
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1278
+ created?: ((() => void) | (() => void)[]) | undefined;
1279
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
1280
+ mounted?: ((() => void) | (() => void)[]) | undefined;
1281
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
1282
+ updated?: ((() => void) | (() => void)[]) | undefined;
1283
+ activated?: ((() => void) | (() => void)[]) | undefined;
1284
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
1285
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
1286
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
1287
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
1288
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
1289
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1290
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
1291
+ 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;
1292
+ };
1293
+ $forceUpdate: () => void;
1294
+ $nextTick: typeof import('vue').nextTick;
1295
+ $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;
1296
+ } & Readonly<{
1297
+ active: string | string[];
1298
+ transition: string;
1299
+ header: string;
1300
+ style: import('vue').StyleValue;
1301
+ title: string;
1302
+ disabled: boolean;
1303
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1304
+ landscape: boolean;
1305
+ rounded: string | number | boolean;
1306
+ tile: boolean;
1307
+ divided: boolean;
1308
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1309
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1310
+ reverseTransition: string;
1311
+ hideHeader: boolean;
1312
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1313
+ viewMode: "month" | "year" | "months";
1314
+ showAdjacentMonths: boolean;
1315
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1316
+ weeksInMonth: "static" | "dynamic";
1317
+ firstDayOfWeek: string | number;
1318
+ hideWeekdays: boolean;
1319
+ showWeek: boolean;
1320
+ }> & Omit<{
1321
+ transition: string;
1322
+ header: string;
1323
+ style: import('vue').StyleValue;
1324
+ title: string;
1325
+ disabled: boolean;
1326
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
1327
+ landscape: boolean;
1328
+ tile: boolean;
1329
+ divided: boolean;
1330
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1331
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1332
+ reverseTransition: string;
1333
+ hideHeader: boolean;
1334
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
1335
+ viewMode: "month" | "year" | "months";
1336
+ showAdjacentMonths: boolean;
1337
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
1338
+ weeksInMonth: "static" | "dynamic";
1339
+ hideWeekdays: boolean;
1340
+ showWeek: boolean;
1341
+ } & {
1342
+ max?: unknown;
1343
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
1344
+ height?: string | number | undefined;
1345
+ width?: string | number | undefined;
1346
+ active?: string | string[] | undefined;
1347
+ min?: unknown;
1348
+ border?: string | number | boolean | undefined;
1349
+ color?: string | undefined;
1350
+ maxHeight?: string | number | undefined;
1351
+ maxWidth?: string | number | undefined;
1352
+ minHeight?: string | number | undefined;
1353
+ minWidth?: string | number | undefined;
1354
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
1355
+ text?: string | undefined;
1356
+ month?: string | number | undefined;
1357
+ year?: number | undefined;
1358
+ class?: any;
1359
+ theme?: string | undefined;
1360
+ elevation?: string | number | undefined;
1361
+ rounded?: string | number | boolean | undefined;
1362
+ bgColor?: string | undefined;
1363
+ controlHeight?: string | number | undefined;
1364
+ headerColor?: string | undefined;
1365
+ firstDayOfWeek?: string | number | undefined;
1366
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1367
+ } & {
1368
+ "onUpdate:month"?: ((date: any) => any) | undefined;
1369
+ "onUpdate:year"?: ((date: any) => any) | undefined;
1370
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
1371
+ }, "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<{
1372
+ modelValue?: Date | Date[] | null | undefined;
1373
+ "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
1374
+ multiple?: false | "range" | undefined;
1375
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
660
1376
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
661
1377
  P: {};
662
1378
  B: {};
@@ -688,7 +1404,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
688
1404
  noIcon?: boolean | undefined;
689
1405
  noCalendar?: boolean | undefined;
690
1406
  isOutlined?: boolean | undefined;
691
- readOnly?: boolean | undefined;
1407
+ readonly?: boolean | undefined;
692
1408
  width?: string | undefined;
693
1409
  disableErrorHandling?: boolean | undefined;
694
1410
  showSuccessMessages?: boolean | undefined;
@@ -710,7 +1426,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
710
1426
  }, {}, {}, {}, {
711
1427
  required: boolean;
712
1428
  modelValue: import('../../composables/date/useDateInitialization').DateInput;
713
- readOnly: boolean;
1429
+ readonly: boolean;
714
1430
  bgColor: string;
715
1431
  disabled: boolean;
716
1432
  placeholder: string;
@@ -761,7 +1477,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
761
1477
  noIcon?: boolean | undefined;
762
1478
  noCalendar?: boolean | undefined;
763
1479
  isOutlined?: boolean | undefined;
764
- readOnly?: boolean | undefined;
1480
+ readonly?: boolean | undefined;
765
1481
  width?: string | undefined;
766
1482
  disableErrorHandling?: boolean | undefined;
767
1483
  showSuccessMessages?: boolean | undefined;
@@ -788,7 +1504,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
788
1504
  }, import('vue').PublicProps, {
789
1505
  required: boolean;
790
1506
  modelValue: import('../../composables/date/useDateInitialization').DateInput;
791
- readOnly: boolean;
1507
+ readonly: boolean;
792
1508
  bgColor: string;
793
1509
  disabled: boolean;
794
1510
  placeholder: string;
@@ -823,7 +1539,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
823
1539
  label?: string | undefined;
824
1540
  required?: boolean | undefined;
825
1541
  disabled?: boolean | undefined;
826
- readOnly?: boolean | undefined;
1542
+ readonly?: boolean | undefined;
827
1543
  isOutlined?: boolean | undefined;
828
1544
  displayIcon?: boolean | undefined;
829
1545
  displayAppendIcon?: boolean | undefined;
@@ -849,7 +1565,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
849
1565
  required: boolean;
850
1566
  modelValue: string | null;
851
1567
  label: string;
852
- readOnly: boolean;
1568
+ readonly: boolean;
853
1569
  disabled: boolean;
854
1570
  placeholder: string;
855
1571
  noIcon: boolean;
@@ -885,7 +1601,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
885
1601
  readonly errorMessages?: string[] | null | undefined;
886
1602
  readonly warningMessages?: string[] | null | undefined;
887
1603
  readonly successMessages?: string[] | null | undefined;
888
- readonly readOnly?: boolean | undefined;
1604
+ readonly readonly?: boolean | undefined;
889
1605
  readonly isActive?: boolean | undefined;
890
1606
  readonly baseColor?: string | undefined;
891
1607
  readonly bgColor?: string | undefined;
@@ -969,7 +1685,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
969
1685
  errorMessages?: string[] | null | undefined;
970
1686
  warningMessages?: string[] | null | undefined;
971
1687
  successMessages?: string[] | null | undefined;
972
- readOnly?: boolean | undefined;
1688
+ readonly?: boolean | undefined;
973
1689
  isActive?: boolean | undefined;
974
1690
  baseColor?: string | undefined;
975
1691
  bgColor?: string | undefined;
@@ -1056,7 +1772,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1056
1772
  errorMessages: string[] | null;
1057
1773
  warningMessages: string[] | null;
1058
1774
  successMessages: string[] | null;
1059
- readOnly: boolean;
1775
+ readonly: boolean;
1060
1776
  isActive: boolean;
1061
1777
  baseColor: string;
1062
1778
  bgColor: string;
@@ -1139,7 +1855,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1139
1855
  errorMessages: string[] | null;
1140
1856
  warningMessages: string[] | null;
1141
1857
  successMessages: string[] | null;
1142
- readOnly: boolean;
1858
+ readonly: boolean;
1143
1859
  isActive: boolean;
1144
1860
  baseColor: string;
1145
1861
  bgColor: string;
@@ -1204,7 +1920,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1204
1920
  errorMessages?: string[] | null | undefined;
1205
1921
  warningMessages?: string[] | null | undefined;
1206
1922
  successMessages?: string[] | null | undefined;
1207
- readOnly?: boolean | undefined;
1923
+ readonly?: boolean | undefined;
1208
1924
  isActive?: boolean | undefined;
1209
1925
  baseColor?: string | undefined;
1210
1926
  bgColor?: string | undefined;
@@ -1256,7 +1972,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1256
1972
  onClear?: ((...args: any[]) => any) | undefined;
1257
1973
  "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
1258
1974
  "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
1259
- }>, "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<{
1975
+ }>, "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<{
1260
1976
  validation: {
1261
1977
  errors: import('vue').Ref<string[], string[]>;
1262
1978
  warnings: import('vue').Ref<string[], string[]>;
@@ -1294,7 +2010,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1294
2010
  label?: string | undefined;
1295
2011
  required?: boolean | undefined;
1296
2012
  disabled?: boolean | undefined;
1297
- readOnly?: boolean | undefined;
2013
+ readonly?: boolean | undefined;
1298
2014
  isOutlined?: boolean | undefined;
1299
2015
  displayIcon?: boolean | undefined;
1300
2016
  displayAppendIcon?: boolean | undefined;
@@ -1316,7 +2032,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1316
2032
  required: boolean;
1317
2033
  modelValue: string | null;
1318
2034
  label: string;
1319
- readOnly: boolean;
2035
+ readonly: boolean;
1320
2036
  disabled: boolean;
1321
2037
  placeholder: string;
1322
2038
  noIcon: boolean;
@@ -1331,6 +2047,722 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1331
2047
  displayAppendIcon: boolean;
1332
2048
  displayPrependIcon: boolean;
1333
2049
  }> | null;
2050
+ dateCalendarTextInputRef: ({
2051
+ $: import('vue').ComponentInternalInstance;
2052
+ $data: {};
2053
+ $props: {
2054
+ readonly modelValue?: string | number | null | undefined;
2055
+ readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
2056
+ readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
2057
+ readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2058
+ readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2059
+ readonly prependTooltip?: string | undefined;
2060
+ readonly appendTooltip?: string | undefined;
2061
+ readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2062
+ readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2063
+ readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
2064
+ readonly isClearable?: boolean | undefined;
2065
+ readonly showDivider?: boolean | undefined;
2066
+ readonly label?: string | undefined;
2067
+ readonly required?: boolean | undefined;
2068
+ readonly errorMessages?: string[] | null | undefined;
2069
+ readonly warningMessages?: string[] | null | undefined;
2070
+ readonly successMessages?: string[] | null | undefined;
2071
+ readonly readonly?: boolean | undefined;
2072
+ readonly isActive?: boolean | undefined;
2073
+ readonly baseColor?: string | undefined;
2074
+ readonly bgColor?: string | undefined;
2075
+ readonly centerAffix?: boolean | undefined;
2076
+ readonly counter?: string | number | boolean | undefined;
2077
+ readonly counterValue?: number | ((value: any) => number) | undefined;
2078
+ readonly density?: "default" | "comfortable" | "compact" | undefined;
2079
+ readonly direction?: "horizontal" | "vertical" | undefined;
2080
+ readonly isDirty?: boolean | undefined;
2081
+ readonly disabled?: boolean | undefined;
2082
+ readonly isOnError?: boolean | undefined;
2083
+ readonly isFlat?: boolean | undefined;
2084
+ readonly isFocused?: boolean | undefined;
2085
+ readonly areDetailsHidden?: boolean | "auto" | undefined;
2086
+ readonly areSpinButtonsHidden?: boolean | undefined;
2087
+ readonly hint?: string | undefined;
2088
+ readonly id?: string | undefined;
2089
+ readonly loading?: string | boolean | undefined;
2090
+ readonly maxErrors?: string | number | undefined;
2091
+ readonly maxWidth?: string | number | undefined;
2092
+ readonly messages?: string | string[] | undefined;
2093
+ readonly minWidth?: string | number | undefined;
2094
+ readonly name?: string | undefined;
2095
+ readonly displayPersistentClear?: boolean | undefined;
2096
+ readonly displayPersistentCounter?: boolean | undefined;
2097
+ readonly displayPersistentHint?: boolean | undefined;
2098
+ readonly displayPersistentPlaceholder?: boolean | undefined;
2099
+ readonly placeholder?: string | undefined;
2100
+ readonly prefix?: string | undefined;
2101
+ readonly isReversed?: boolean | undefined;
2102
+ readonly role?: string | undefined;
2103
+ readonly rounded?: string | number | boolean | undefined;
2104
+ readonly isOnSingleLine?: boolean | undefined;
2105
+ readonly suffix?: string | undefined;
2106
+ readonly theme?: string | undefined;
2107
+ readonly isTiled?: boolean | undefined;
2108
+ readonly type?: string | undefined;
2109
+ readonly width?: string | number | undefined;
2110
+ readonly displayAsterisk?: boolean | undefined;
2111
+ readonly noIcon?: boolean | undefined;
2112
+ readonly customRules?: ValidationRule[] | undefined;
2113
+ readonly customWarningRules?: ValidationRule[] | undefined;
2114
+ readonly customSuccessRules?: ValidationRule[] | undefined;
2115
+ readonly showSuccessMessages?: boolean | undefined;
2116
+ readonly isValidateOnBlur?: boolean | undefined;
2117
+ readonly disableErrorHandling?: boolean | undefined;
2118
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2119
+ readonly onClear?: ((...args: any[]) => any) | undefined;
2120
+ readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2121
+ readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2122
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
2123
+ $attrs: {
2124
+ [x: string]: unknown;
2125
+ };
2126
+ $refs: {
2127
+ [x: string]: unknown;
2128
+ };
2129
+ $slots: Readonly<{
2130
+ [name: string]: import('vue').Slot<any> | undefined;
2131
+ }>;
2132
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2133
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2134
+ $host: Element | null;
2135
+ $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);
2136
+ $el: any;
2137
+ $options: import('vue').ComponentOptionsBase<Readonly<{
2138
+ modelValue?: string | number | null | undefined;
2139
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
2140
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
2141
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2142
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2143
+ prependTooltip?: string | undefined;
2144
+ appendTooltip?: string | undefined;
2145
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2146
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2147
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
2148
+ isClearable?: boolean | undefined;
2149
+ showDivider?: boolean | undefined;
2150
+ label?: string | undefined;
2151
+ required?: boolean | undefined;
2152
+ errorMessages?: string[] | null | undefined;
2153
+ warningMessages?: string[] | null | undefined;
2154
+ successMessages?: string[] | null | undefined;
2155
+ readonly?: boolean | undefined;
2156
+ isActive?: boolean | undefined;
2157
+ baseColor?: string | undefined;
2158
+ bgColor?: string | undefined;
2159
+ centerAffix?: boolean | undefined;
2160
+ counter?: string | number | boolean | undefined;
2161
+ counterValue?: number | ((value: any) => number) | undefined;
2162
+ density?: "default" | "comfortable" | "compact" | undefined;
2163
+ direction?: "horizontal" | "vertical" | undefined;
2164
+ isDirty?: boolean | undefined;
2165
+ disabled?: boolean | undefined;
2166
+ isOnError?: boolean | undefined;
2167
+ isFlat?: boolean | undefined;
2168
+ isFocused?: boolean | undefined;
2169
+ areDetailsHidden?: boolean | "auto" | undefined;
2170
+ areSpinButtonsHidden?: boolean | undefined;
2171
+ hint?: string | undefined;
2172
+ id?: string | undefined;
2173
+ loading?: string | boolean | undefined;
2174
+ maxErrors?: string | number | undefined;
2175
+ maxWidth?: string | number | undefined;
2176
+ messages?: string | string[] | undefined;
2177
+ minWidth?: string | number | undefined;
2178
+ name?: string | undefined;
2179
+ displayPersistentClear?: boolean | undefined;
2180
+ displayPersistentCounter?: boolean | undefined;
2181
+ displayPersistentHint?: boolean | undefined;
2182
+ displayPersistentPlaceholder?: boolean | undefined;
2183
+ placeholder?: string | undefined;
2184
+ prefix?: string | undefined;
2185
+ isReversed?: boolean | undefined;
2186
+ role?: string | undefined;
2187
+ rounded?: string | number | boolean | undefined;
2188
+ isOnSingleLine?: boolean | undefined;
2189
+ suffix?: string | undefined;
2190
+ theme?: string | undefined;
2191
+ isTiled?: boolean | undefined;
2192
+ type?: string | undefined;
2193
+ width?: string | number | undefined;
2194
+ displayAsterisk?: boolean | undefined;
2195
+ noIcon?: boolean | undefined;
2196
+ customRules?: ValidationRule[] | undefined;
2197
+ customWarningRules?: ValidationRule[] | undefined;
2198
+ customSuccessRules?: ValidationRule[] | undefined;
2199
+ showSuccessMessages?: boolean | undefined;
2200
+ isValidateOnBlur?: boolean | undefined;
2201
+ disableErrorHandling?: boolean | undefined;
2202
+ }> & Readonly<{
2203
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2204
+ onClear?: ((...args: any[]) => any) | undefined;
2205
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2206
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2207
+ }>, {
2208
+ validation: {
2209
+ errors: import('vue').Ref<string[], string[]>;
2210
+ warnings: import('vue').Ref<string[], string[]>;
2211
+ successes: import('vue').Ref<string[], string[]>;
2212
+ hasError: import('vue').ComputedRef<boolean>;
2213
+ hasWarning: import('vue').ComputedRef<boolean>;
2214
+ hasSuccess: import('vue').ComputedRef<boolean>;
2215
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
2216
+ validateOnSubmit: () => Promise<boolean>;
2217
+ clearValidation: () => void;
2218
+ };
2219
+ validateOnSubmit: () => boolean;
2220
+ checkErrorOnBlur: () => void;
2221
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2222
+ "update:modelValue": (...args: any[]) => void;
2223
+ clear: (...args: any[]) => void;
2224
+ "prepend-icon-click": (...args: any[]) => void;
2225
+ "append-icon-click": (...args: any[]) => void;
2226
+ }, string, {
2227
+ modelValue: string | number | null;
2228
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2229
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2230
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2231
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2232
+ prependTooltip: string;
2233
+ appendTooltip: string;
2234
+ tooltipLocation: "top" | "bottom" | "start" | "end";
2235
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
2236
+ color: import('../Customs/SyTextField/types').ColorType;
2237
+ isClearable: boolean;
2238
+ label: string;
2239
+ errorMessages: string[] | null;
2240
+ warningMessages: string[] | null;
2241
+ successMessages: string[] | null;
2242
+ readonly: boolean;
2243
+ isActive: boolean;
2244
+ baseColor: string;
2245
+ bgColor: string;
2246
+ centerAffix: boolean;
2247
+ counter: string | number | boolean;
2248
+ counterValue: number | ((value: any) => number);
2249
+ density: "default" | "comfortable" | "compact";
2250
+ direction: "horizontal" | "vertical";
2251
+ isDirty: boolean;
2252
+ disabled: boolean;
2253
+ isOnError: boolean;
2254
+ isFlat: boolean;
2255
+ isFocused: boolean;
2256
+ areDetailsHidden: boolean | "auto";
2257
+ areSpinButtonsHidden: boolean;
2258
+ hint: string;
2259
+ id: string;
2260
+ loading: string | boolean;
2261
+ maxErrors: string | number;
2262
+ maxWidth: string | number;
2263
+ messages: string | string[];
2264
+ minWidth: string | number;
2265
+ name: string;
2266
+ displayPersistentClear: boolean;
2267
+ displayPersistentCounter: boolean;
2268
+ displayPersistentHint: boolean;
2269
+ displayPersistentPlaceholder: boolean;
2270
+ placeholder: string;
2271
+ prefix: string;
2272
+ isReversed: boolean;
2273
+ role: string;
2274
+ rounded: string | number | boolean;
2275
+ isOnSingleLine: boolean;
2276
+ suffix: string;
2277
+ theme: string;
2278
+ isTiled: boolean;
2279
+ type: string;
2280
+ width: string | number;
2281
+ displayAsterisk: boolean;
2282
+ noIcon: boolean;
2283
+ customRules: ValidationRule[];
2284
+ customWarningRules: ValidationRule[];
2285
+ customSuccessRules: ValidationRule[];
2286
+ showSuccessMessages: boolean;
2287
+ isValidateOnBlur: boolean;
2288
+ disableErrorHandling: boolean;
2289
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2290
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2291
+ created?: ((() => void) | (() => void)[]) | undefined;
2292
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2293
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2294
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2295
+ updated?: ((() => void) | (() => void)[]) | undefined;
2296
+ activated?: ((() => void) | (() => void)[]) | undefined;
2297
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2298
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2299
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2300
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2301
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2302
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2303
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2304
+ 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;
2305
+ };
2306
+ $forceUpdate: () => void;
2307
+ $nextTick: typeof import('vue').nextTick;
2308
+ $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;
2309
+ } & Readonly<{
2310
+ modelValue: string | number | null;
2311
+ prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2312
+ appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2313
+ prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2314
+ appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
2315
+ prependTooltip: string;
2316
+ appendTooltip: string;
2317
+ tooltipLocation: "top" | "bottom" | "start" | "end";
2318
+ variantStyle: import('../Customs/SyTextField/types').VariantStyle;
2319
+ color: import('../Customs/SyTextField/types').ColorType;
2320
+ isClearable: boolean;
2321
+ label: string;
2322
+ errorMessages: string[] | null;
2323
+ warningMessages: string[] | null;
2324
+ successMessages: string[] | null;
2325
+ readonly: boolean;
2326
+ isActive: boolean;
2327
+ baseColor: string;
2328
+ bgColor: string;
2329
+ centerAffix: boolean;
2330
+ counter: string | number | boolean;
2331
+ counterValue: number | ((value: any) => number);
2332
+ density: "default" | "comfortable" | "compact";
2333
+ direction: "horizontal" | "vertical";
2334
+ isDirty: boolean;
2335
+ disabled: boolean;
2336
+ isOnError: boolean;
2337
+ isFlat: boolean;
2338
+ isFocused: boolean;
2339
+ areDetailsHidden: boolean | "auto";
2340
+ areSpinButtonsHidden: boolean;
2341
+ hint: string;
2342
+ id: string;
2343
+ loading: string | boolean;
2344
+ maxErrors: string | number;
2345
+ maxWidth: string | number;
2346
+ messages: string | string[];
2347
+ minWidth: string | number;
2348
+ name: string;
2349
+ displayPersistentClear: boolean;
2350
+ displayPersistentCounter: boolean;
2351
+ displayPersistentHint: boolean;
2352
+ displayPersistentPlaceholder: boolean;
2353
+ placeholder: string;
2354
+ prefix: string;
2355
+ isReversed: boolean;
2356
+ role: string;
2357
+ rounded: string | number | boolean;
2358
+ isOnSingleLine: boolean;
2359
+ suffix: string;
2360
+ theme: string;
2361
+ isTiled: boolean;
2362
+ type: string;
2363
+ width: string | number;
2364
+ displayAsterisk: boolean;
2365
+ noIcon: boolean;
2366
+ customRules: ValidationRule[];
2367
+ customWarningRules: ValidationRule[];
2368
+ customSuccessRules: ValidationRule[];
2369
+ showSuccessMessages: boolean;
2370
+ isValidateOnBlur: boolean;
2371
+ disableErrorHandling: boolean;
2372
+ }> & Omit<Readonly<{
2373
+ modelValue?: string | number | null | undefined;
2374
+ prependIcon?: import('../Customs/SyTextField/types').IconType;
2375
+ appendIcon?: import('../Customs/SyTextField/types').IconType;
2376
+ prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
2377
+ appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
2378
+ prependTooltip?: string | undefined;
2379
+ appendTooltip?: string | undefined;
2380
+ tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
2381
+ variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
2382
+ color?: import('../Customs/SyTextField/types').ColorType | undefined;
2383
+ isClearable?: boolean | undefined;
2384
+ showDivider?: boolean | undefined;
2385
+ label?: string | undefined;
2386
+ required?: boolean | undefined;
2387
+ errorMessages?: string[] | null | undefined;
2388
+ warningMessages?: string[] | null | undefined;
2389
+ successMessages?: string[] | null | undefined;
2390
+ readonly?: boolean | undefined;
2391
+ isActive?: boolean | undefined;
2392
+ baseColor?: string | undefined;
2393
+ bgColor?: string | undefined;
2394
+ centerAffix?: boolean | undefined;
2395
+ counter?: string | number | boolean | undefined;
2396
+ counterValue?: number | ((value: any) => number) | undefined;
2397
+ density?: "default" | "comfortable" | "compact" | undefined;
2398
+ direction?: "horizontal" | "vertical" | undefined;
2399
+ isDirty?: boolean | undefined;
2400
+ disabled?: boolean | undefined;
2401
+ isOnError?: boolean | undefined;
2402
+ isFlat?: boolean | undefined;
2403
+ isFocused?: boolean | undefined;
2404
+ areDetailsHidden?: boolean | "auto" | undefined;
2405
+ areSpinButtonsHidden?: boolean | undefined;
2406
+ hint?: string | undefined;
2407
+ id?: string | undefined;
2408
+ loading?: string | boolean | undefined;
2409
+ maxErrors?: string | number | undefined;
2410
+ maxWidth?: string | number | undefined;
2411
+ messages?: string | string[] | undefined;
2412
+ minWidth?: string | number | undefined;
2413
+ name?: string | undefined;
2414
+ displayPersistentClear?: boolean | undefined;
2415
+ displayPersistentCounter?: boolean | undefined;
2416
+ displayPersistentHint?: boolean | undefined;
2417
+ displayPersistentPlaceholder?: boolean | undefined;
2418
+ placeholder?: string | undefined;
2419
+ prefix?: string | undefined;
2420
+ isReversed?: boolean | undefined;
2421
+ role?: string | undefined;
2422
+ rounded?: string | number | boolean | undefined;
2423
+ isOnSingleLine?: boolean | undefined;
2424
+ suffix?: string | undefined;
2425
+ theme?: string | undefined;
2426
+ isTiled?: boolean | undefined;
2427
+ type?: string | undefined;
2428
+ width?: string | number | undefined;
2429
+ displayAsterisk?: boolean | undefined;
2430
+ noIcon?: boolean | undefined;
2431
+ customRules?: ValidationRule[] | undefined;
2432
+ customWarningRules?: ValidationRule[] | undefined;
2433
+ customSuccessRules?: ValidationRule[] | undefined;
2434
+ showSuccessMessages?: boolean | undefined;
2435
+ isValidateOnBlur?: boolean | undefined;
2436
+ disableErrorHandling?: boolean | undefined;
2437
+ }> & Readonly<{
2438
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2439
+ onClear?: ((...args: any[]) => any) | undefined;
2440
+ "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
2441
+ "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
2442
+ }>, "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<{
2443
+ validation: {
2444
+ errors: import('vue').Ref<string[], string[]>;
2445
+ warnings: import('vue').Ref<string[], string[]>;
2446
+ successes: import('vue').Ref<string[], string[]>;
2447
+ hasError: import('vue').ComputedRef<boolean>;
2448
+ hasWarning: import('vue').ComputedRef<boolean>;
2449
+ hasSuccess: import('vue').ComputedRef<boolean>;
2450
+ validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult;
2451
+ validateOnSubmit: () => Promise<boolean>;
2452
+ clearValidation: () => void;
2453
+ };
2454
+ validateOnSubmit: () => boolean;
2455
+ checkErrorOnBlur: () => void;
2456
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
2457
+ $slots: {
2458
+ prepend?(_: {}): any;
2459
+ append?(_: {}): any;
2460
+ 'prepend-inner'?(_: {}): any;
2461
+ 'append-inner'?(_: {}): any;
2462
+ details?(_: {}): any;
2463
+ };
2464
+ }) | null;
2465
+ datePickerRef: ({
2466
+ $: import('vue').ComponentInternalInstance;
2467
+ $data: {};
2468
+ $props: Partial<{
2469
+ active: string | string[];
2470
+ transition: string;
2471
+ header: string;
2472
+ style: import('vue').StyleValue;
2473
+ title: string;
2474
+ disabled: boolean;
2475
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2476
+ landscape: boolean;
2477
+ rounded: string | number | boolean;
2478
+ tile: boolean;
2479
+ divided: boolean;
2480
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2481
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2482
+ reverseTransition: string;
2483
+ hideHeader: boolean;
2484
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2485
+ viewMode: "month" | "year" | "months";
2486
+ showAdjacentMonths: boolean;
2487
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2488
+ weeksInMonth: "static" | "dynamic";
2489
+ firstDayOfWeek: string | number;
2490
+ hideWeekdays: boolean;
2491
+ showWeek: boolean;
2492
+ }> & Omit<{
2493
+ transition: string;
2494
+ header: string;
2495
+ style: import('vue').StyleValue;
2496
+ title: string;
2497
+ disabled: boolean;
2498
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2499
+ landscape: boolean;
2500
+ tile: boolean;
2501
+ divided: boolean;
2502
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2503
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2504
+ reverseTransition: string;
2505
+ hideHeader: boolean;
2506
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2507
+ viewMode: "month" | "year" | "months";
2508
+ showAdjacentMonths: boolean;
2509
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2510
+ weeksInMonth: "static" | "dynamic";
2511
+ hideWeekdays: boolean;
2512
+ showWeek: boolean;
2513
+ max?: unknown;
2514
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2515
+ height?: string | number | undefined;
2516
+ width?: string | number | undefined;
2517
+ active?: string | string[] | undefined;
2518
+ min?: unknown;
2519
+ border?: string | number | boolean | undefined;
2520
+ color?: string | undefined;
2521
+ maxHeight?: string | number | undefined;
2522
+ maxWidth?: string | number | undefined;
2523
+ minHeight?: string | number | undefined;
2524
+ minWidth?: string | number | undefined;
2525
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2526
+ text?: string | undefined;
2527
+ month?: string | number | undefined;
2528
+ year?: number | undefined;
2529
+ class?: any;
2530
+ theme?: string | undefined;
2531
+ elevation?: string | number | undefined;
2532
+ rounded?: string | number | boolean | undefined;
2533
+ bgColor?: string | undefined;
2534
+ controlHeight?: string | number | undefined;
2535
+ headerColor?: string | undefined;
2536
+ firstDayOfWeek?: string | number | undefined;
2537
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2538
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2539
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2540
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2541
+ } & 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">;
2542
+ $attrs: {
2543
+ [x: string]: unknown;
2544
+ };
2545
+ $refs: {
2546
+ [x: string]: unknown;
2547
+ };
2548
+ $slots: Readonly<{
2549
+ default?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2550
+ [key: string]: any;
2551
+ }>[]) | undefined;
2552
+ title?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2553
+ [key: string]: any;
2554
+ }>[]) | undefined;
2555
+ actions?: (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2556
+ [key: string]: any;
2557
+ }>[]) | undefined;
2558
+ header?: ((arg: {
2559
+ header: string;
2560
+ transition: string;
2561
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2562
+ [key: string]: any;
2563
+ }>[]) | undefined;
2564
+ }>;
2565
+ $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2566
+ $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
2567
+ $host: Element | null;
2568
+ $emit: ((event: "update:month", date: any) => void) & ((event: "update:year", date: any) => void) & ((event: "update:viewMode", date: any) => void);
2569
+ $el: any;
2570
+ $options: import('vue').ComponentOptionsBase<{
2571
+ transition: string;
2572
+ header: string;
2573
+ style: import('vue').StyleValue;
2574
+ title: string;
2575
+ disabled: boolean;
2576
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2577
+ landscape: boolean;
2578
+ tile: boolean;
2579
+ divided: boolean;
2580
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2581
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2582
+ reverseTransition: string;
2583
+ hideHeader: boolean;
2584
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2585
+ viewMode: "month" | "year" | "months";
2586
+ showAdjacentMonths: boolean;
2587
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2588
+ weeksInMonth: "static" | "dynamic";
2589
+ hideWeekdays: boolean;
2590
+ showWeek: boolean;
2591
+ } & {
2592
+ max?: unknown;
2593
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2594
+ height?: string | number | undefined;
2595
+ width?: string | number | undefined;
2596
+ active?: string | string[] | undefined;
2597
+ min?: unknown;
2598
+ border?: string | number | boolean | undefined;
2599
+ color?: string | undefined;
2600
+ maxHeight?: string | number | undefined;
2601
+ maxWidth?: string | number | undefined;
2602
+ minHeight?: string | number | undefined;
2603
+ minWidth?: string | number | undefined;
2604
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2605
+ text?: string | undefined;
2606
+ month?: string | number | undefined;
2607
+ year?: number | undefined;
2608
+ class?: any;
2609
+ theme?: string | undefined;
2610
+ elevation?: string | number | undefined;
2611
+ rounded?: string | number | boolean | undefined;
2612
+ bgColor?: string | undefined;
2613
+ controlHeight?: string | number | undefined;
2614
+ headerColor?: string | undefined;
2615
+ firstDayOfWeek?: string | number | undefined;
2616
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2617
+ } & {
2618
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2619
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2620
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2621
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
2622
+ 'update:modelValue': (date: any) => true;
2623
+ 'update:month': (date: any) => true;
2624
+ 'update:year': (date: any) => true;
2625
+ 'update:viewMode': (date: any) => true;
2626
+ }, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "multiple" | "v-slot:actions" | "v-slot:title" | "v-slot:header">, string, {
2627
+ active: string | string[];
2628
+ transition: string;
2629
+ header: string;
2630
+ style: import('vue').StyleValue;
2631
+ title: string;
2632
+ disabled: boolean;
2633
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2634
+ landscape: boolean;
2635
+ rounded: string | number | boolean;
2636
+ tile: boolean;
2637
+ divided: boolean;
2638
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2639
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2640
+ reverseTransition: string;
2641
+ hideHeader: boolean;
2642
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2643
+ viewMode: "month" | "year" | "months";
2644
+ showAdjacentMonths: boolean;
2645
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2646
+ weeksInMonth: "static" | "dynamic";
2647
+ firstDayOfWeek: string | number;
2648
+ hideWeekdays: boolean;
2649
+ showWeek: boolean;
2650
+ }, {}, string, import('vue').SlotsType<Partial<{
2651
+ default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2652
+ [key: string]: any;
2653
+ }>[];
2654
+ title: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2655
+ [key: string]: any;
2656
+ }>[];
2657
+ actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2658
+ [key: string]: any;
2659
+ }>[];
2660
+ header: (arg: {
2661
+ header: string;
2662
+ transition: string;
2663
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2664
+ [key: string]: any;
2665
+ }>[];
2666
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
2667
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2668
+ created?: ((() => void) | (() => void)[]) | undefined;
2669
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2670
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2671
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2672
+ updated?: ((() => void) | (() => void)[]) | undefined;
2673
+ activated?: ((() => void) | (() => void)[]) | undefined;
2674
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2675
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2676
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2677
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2678
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2679
+ renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2680
+ renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
2681
+ 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;
2682
+ };
2683
+ $forceUpdate: () => void;
2684
+ $nextTick: typeof import('vue').nextTick;
2685
+ $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;
2686
+ } & Readonly<{
2687
+ active: string | string[];
2688
+ transition: string;
2689
+ header: string;
2690
+ style: import('vue').StyleValue;
2691
+ title: string;
2692
+ disabled: boolean;
2693
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2694
+ landscape: boolean;
2695
+ rounded: string | number | boolean;
2696
+ tile: boolean;
2697
+ divided: boolean;
2698
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2699
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2700
+ reverseTransition: string;
2701
+ hideHeader: boolean;
2702
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2703
+ viewMode: "month" | "year" | "months";
2704
+ showAdjacentMonths: boolean;
2705
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2706
+ weeksInMonth: "static" | "dynamic";
2707
+ firstDayOfWeek: string | number;
2708
+ hideWeekdays: boolean;
2709
+ showWeek: boolean;
2710
+ }> & Omit<{
2711
+ transition: string;
2712
+ header: string;
2713
+ style: import('vue').StyleValue;
2714
+ title: string;
2715
+ disabled: boolean;
2716
+ tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
2717
+ landscape: boolean;
2718
+ tile: boolean;
2719
+ divided: boolean;
2720
+ nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2721
+ prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2722
+ reverseTransition: string;
2723
+ hideHeader: boolean;
2724
+ modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
2725
+ viewMode: "month" | "year" | "months";
2726
+ showAdjacentMonths: boolean;
2727
+ weekdays: import('vuetify/lib/composables/calendar.mjs').CalendarWeekdays[];
2728
+ weeksInMonth: "static" | "dynamic";
2729
+ hideWeekdays: boolean;
2730
+ showWeek: boolean;
2731
+ } & {
2732
+ max?: unknown;
2733
+ location?: import('vuetify/lib/types.mjs').Anchor | null | undefined;
2734
+ height?: string | number | undefined;
2735
+ width?: string | number | undefined;
2736
+ active?: string | string[] | undefined;
2737
+ min?: unknown;
2738
+ border?: string | number | boolean | undefined;
2739
+ color?: string | undefined;
2740
+ maxHeight?: string | number | undefined;
2741
+ maxWidth?: string | number | undefined;
2742
+ minHeight?: string | number | undefined;
2743
+ minWidth?: string | number | undefined;
2744
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
2745
+ text?: string | undefined;
2746
+ month?: string | number | undefined;
2747
+ year?: number | undefined;
2748
+ class?: any;
2749
+ theme?: string | undefined;
2750
+ elevation?: string | number | undefined;
2751
+ rounded?: string | number | boolean | undefined;
2752
+ bgColor?: string | undefined;
2753
+ controlHeight?: string | number | undefined;
2754
+ headerColor?: string | undefined;
2755
+ firstDayOfWeek?: string | number | undefined;
2756
+ allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2757
+ } & {
2758
+ "onUpdate:month"?: ((date: any) => any) | undefined;
2759
+ "onUpdate:year"?: ((date: any) => any) | undefined;
2760
+ "onUpdate:viewMode"?: ((date: any) => any) | undefined;
2761
+ }, "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<{
2762
+ modelValue?: Date | Date[] | null | undefined;
2763
+ "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
2764
+ multiple?: false | "range" | undefined;
2765
+ }, import('vuetify/lib/components/VDatePicker/VDatePicker.mjs').VDatePickerSlots>) | null;
1334
2766
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1335
2767
  P: {};
1336
2768
  B: {};
@@ -1362,7 +2794,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1362
2794
  noIcon?: boolean | undefined;
1363
2795
  noCalendar?: boolean | undefined;
1364
2796
  isOutlined?: boolean | undefined;
1365
- readOnly?: boolean | undefined;
2797
+ readonly?: boolean | undefined;
1366
2798
  width?: string | undefined;
1367
2799
  disableErrorHandling?: boolean | undefined;
1368
2800
  showSuccessMessages?: boolean | undefined;
@@ -1384,7 +2816,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1384
2816
  }, {}, {}, {}, {
1385
2817
  required: boolean;
1386
2818
  modelValue: import('../../composables/date/useDateInitialization').DateInput;
1387
- readOnly: boolean;
2819
+ readonly: boolean;
1388
2820
  bgColor: string;
1389
2821
  disabled: boolean;
1390
2822
  placeholder: string;