@cnamts/synapse 1.0.13 → 1.0.15

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 (254) hide show
  1. package/README.md +72 -72
  2. package/dist/{DateFilter-_EFzsvvM.js → DateFilter-isr8mXVb.js} +1 -1
  3. package/dist/{NumberFilter-CUxEbKJh.js → NumberFilter-BOe7DqWX.js} +1 -1
  4. package/dist/{PeriodFilter-D5ueqtKy.js → PeriodFilter-WTprpO40.js} +1 -1
  5. package/dist/{SelectFilter-BciBNydy.js → SelectFilter-CqlG5dmI.js} +1 -1
  6. package/dist/{TextFilter-DMN_WAQB.js → TextFilter-fVW5bsRw.js} +1 -1
  7. package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +60 -28
  8. package/dist/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.d.ts +3 -3
  9. package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +60 -28
  10. package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +61 -29
  11. package/dist/components/Amelipro/AmeliproTextArea/AmeliproTextArea.d.ts +5 -1
  12. package/dist/components/Amelipro/AmeliproTextField/AmeliproTextField.d.ts +3 -1
  13. package/dist/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.d.ts +1 -1
  14. package/dist/components/Captcha/Captcha.d.ts +2 -0
  15. package/dist/components/Captcha/CaptchaBase.d.ts +1 -0
  16. package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +29 -17
  17. package/dist/components/Customs/SyTabs/SyTabs.d.ts +20 -0
  18. package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +100 -10
  19. package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +108 -21
  20. package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +6 -6
  21. package/dist/components/DatePicker/composables/useDateFormatDisplay.d.ts +3 -0
  22. package/dist/components/DatePicker/tests/setup.d.ts +768 -48
  23. package/dist/components/FilterSideBar/FilterSideBar.d.ts +8 -0
  24. package/dist/components/HeaderToolbar/HeaderToolbar.d.ts +58 -34
  25. package/dist/components/LangBtn/LangBtn.d.ts +4 -0
  26. package/dist/components/PeriodField/PeriodField.d.ts +192 -12
  27. package/dist/components/RatingPicker/RatingPicker.d.ts +9 -0
  28. package/dist/components/SearchListField/SearchListField.d.ts +42 -413
  29. package/dist/components/SearchListField/locales.d.ts +1 -2
  30. package/dist/components/SyAlert/SyAlert.d.ts +1 -1
  31. package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
  32. package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +15 -8
  33. package/dist/components/Tables/SyTable/SyTable.d.ts +15 -8
  34. package/dist/components/Tables/common/SyTablePagination.d.ts +29 -17
  35. package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +4 -0
  36. package/dist/components/Tables/common/types.d.ts +2 -0
  37. package/dist/design-system-v3.js +1 -1
  38. package/dist/design-system-v3.umd.cjs +32 -16
  39. package/dist/{main-DISHlqcd.js → main-CbBVJ_le.js} +9911 -9751
  40. package/dist/style.css +1 -1
  41. package/package.json +5 -2
  42. package/src/assets/amelipro/icons.ts +17 -0
  43. package/src/components/Amelipro/AmeliproAccordionFrieze/AmeliproAccordionFrieze.stories.ts +40 -36
  44. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/AmeliproAccordionGroup.spec.ts +226 -26
  45. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/__snapshots__/AmeliproAccordionGroup.spec.ts.snap +55 -506
  46. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.stories.ts +1 -1
  47. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.vue +7 -2
  48. package/src/components/Amelipro/AmeliproAccordionList/__tests__/__snapshots__/AmeliproAccordionList.spec.ts.snap +2 -1
  49. package/src/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResultTemplate/__tests__/__snapshots__/AmeliproAccordionResultTemplate.spec.ts.snap +4 -1
  50. package/src/components/Amelipro/AmeliproAccordionResult/__tests__/__snapshots__/AmeliproAccordionResult.spec.ts.snap +4 -1
  51. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.stories.ts +1 -1
  52. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.vue +9 -3
  53. package/src/components/Amelipro/AmeliproAccordionResultList/__tests__/__snapshots__/AmeliproAccordionResultList.spec.ts.snap +42 -11
  54. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.stories.ts +4 -4
  55. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.vue +7 -5
  56. package/src/components/Amelipro/AmeliproAutoCompleteField/__tests__/__snapshots__/AmeliproAutoCompleteField.spec.ts.snap +4 -2
  57. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.stories.ts +1 -40
  58. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.vue +4 -0
  59. package/src/components/Amelipro/AmeliproCallback/AmeliproCallback.stories.ts +4 -2
  60. package/src/components/Amelipro/AmeliproCaptcha/__tests__/__snapshots__/AmeliproCaptcha.spec.ts.snap +2 -1
  61. package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.stories.ts +39 -29
  62. package/src/components/Amelipro/AmeliproCopyBtn/__tests__/__snapshots__/AmeliproCopyBtn.spec.ts.snap +4 -1
  63. package/src/components/Amelipro/AmeliproCustomSelector/AmeliproCustomSelector.vue +3 -3
  64. package/src/components/Amelipro/AmeliproCustomSelector/__tests__/__snapshots__/AmeliproCustomSelector.spec.ts.snap +8 -6
  65. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.mdx +3 -1
  66. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.stories.ts +23 -5
  67. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.vue +5 -6
  68. package/src/components/Amelipro/AmeliproFilePreview/__tests__/AmeliproFilePreview.spec.ts +2 -2
  69. package/src/components/Amelipro/AmeliproFilePreview/__tests__/__snapshots__/AmeliproFilePreview.spec.ts.snap +5 -6
  70. package/src/components/Amelipro/AmeliproFirstLogin/__tests__/__snapshots__/AmeliproFirstLogin.spec.ts.snap +4 -1
  71. package/src/components/Amelipro/AmeliproHeader/AmeliproHeader.vue +1 -2
  72. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/__tests__/AmeliproLogoAm.spec.ts +78 -0
  73. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/{tests → __tests__}/__snapshots__/AmeliproLogoAm.spec.ts.snap +64 -2
  74. package/src/components/Amelipro/AmeliproIcon/__tests__/AmeliproIcon.spec.ts +358 -0
  75. package/src/components/Amelipro/AmeliproIcon/{tests → __tests__}/__snapshots__/AmeliproIcon.spec.ts.snap +30 -3
  76. package/src/components/Amelipro/AmeliproIcon/iconList.ts +1 -0
  77. package/src/components/Amelipro/AmeliproIconBtn/AmeliproIconBtn.vue +1 -1
  78. package/src/components/Amelipro/AmeliproIconBtn/__tests__/AmeliproIconBtn.spec.ts +459 -0
  79. package/src/components/Amelipro/AmeliproIconBtn/__tests__/__snapshots__/AmeliproIconBtn.spec.ts.snap +58 -0
  80. package/src/components/Amelipro/AmeliproIllustratedDataTile/AmeliproIllustratedDataTile.stories.ts +38 -26
  81. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/AmeliproIllustratedDataTile.spec.ts +321 -0
  82. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +148 -0
  83. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.stories.ts +14 -5
  84. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.vue +1 -1
  85. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/AmeliproIllustratedRadioGroup.spec.ts +498 -0
  86. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +325 -0
  87. package/src/components/Amelipro/AmeliproMailTile/__tests__/AmeliproMailTile.spec.ts +210 -0
  88. package/src/components/Amelipro/AmeliproMailTile/__tests__/__snapshots__/AmeliproMailTile.spec.ts.snap +98 -0
  89. package/src/components/Amelipro/AmeliproMessage/__tests__/AmeliproMessage.spec.ts +446 -0
  90. package/src/components/Amelipro/AmeliproMessage/__tests__/__snapshots__/AmeliproMessage.spec.ts.snap +60 -0
  91. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/AmeliproMessagingLayout.spec.ts +300 -0
  92. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +197 -0
  93. package/src/components/Amelipro/AmeliproNumberedCard/__tests__/AmeliproNumberedCard.spec.ts +117 -0
  94. package/src/components/Amelipro/AmeliproNumberedCard/{tests → __tests__}/__snapshots__/AmeliproNumberedCard.spec.ts.snap +47 -45
  95. package/src/components/Amelipro/AmeliproOnboarding/__tests__/AmeliproOnboarding.spec.ts +219 -0
  96. package/src/components/Amelipro/AmeliproOnboarding/__tests__/__snapshots__/AmeliproOnboarding.spec.ts.snap +41 -0
  97. package/src/components/Amelipro/AmeliproPageLayout/__tests__/AmeliproPageLayout.spec.ts +129 -0
  98. package/src/components/Amelipro/AmeliproPageLayout/__tests__/__snapshots__/AmeliproPageLayout.spec.ts.snap +189 -0
  99. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/AmeliproPaginationBtn.spec.ts +92 -0
  100. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +56 -0
  101. package/src/components/Amelipro/AmeliproPagination/__tests__/AmeliproPagination.spec.ts +165 -0
  102. package/src/components/Amelipro/AmeliproPagination/__tests__/__snapshots__/AmeliproPagination.spec.ts.snap +83 -0
  103. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/AmeliproPatientBanner.spec.ts +208 -0
  104. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/__snapshots__/AmeliproPatientBanner.spec.ts.snap +285 -0
  105. package/src/components/Amelipro/AmeliproPatientLogged/__tests__/__snapshots__/AmeliproPatientLogged.spec.ts.snap +26 -7
  106. package/src/components/Amelipro/AmeliproPostalAddressField/AmeliproPostalAddressCityRow/__tests__/__snapshots__/AmeliproPostalAddressCityRow.spec.ts.snap +12 -4
  107. package/src/components/Amelipro/AmeliproRadioGroup/AmeliproRadioGroup.stories.ts +28 -8
  108. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/AmeliproRadioGroup.spec.ts +332 -0
  109. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/__snapshots__/AmeliproRadioGroup.spec.ts.snap +255 -0
  110. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.stories.ts +1 -2
  111. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.vue +3 -1
  112. package/src/components/Amelipro/AmeliproResultList/__tests__/__snapshots__/AmeliproResultList.spec.ts.snap +2 -1
  113. package/src/components/Amelipro/AmeliproSelect/AmeliproSelect.vue +11 -5
  114. package/src/components/Amelipro/AmeliproSelect/__tests__/AmeliproSelect.spec.ts +481 -0
  115. package/src/components/Amelipro/AmeliproSelect/__tests__/__snapshots__/AmeliproSelect.spec.ts.snap +117 -0
  116. package/src/components/Amelipro/AmeliproStateTile/AmeliproStateTile.vue +5 -2
  117. package/src/components/Amelipro/AmeliproStateTile/__tests__/AmeliproStateTile.spec.ts +206 -0
  118. package/src/components/Amelipro/AmeliproStateTile/__tests__/__snapshots__/AmeliproStateTile.spec.ts.snap +158 -0
  119. package/src/components/Amelipro/AmeliproStatus/__tests__/AmeliproStatus.spec.ts +120 -0
  120. package/src/components/Amelipro/AmeliproStatus/__tests__/__snapshots__/AmeliproStatus.spec.ts.snap +39 -0
  121. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/AmeliproStepBtn.spec.ts +97 -0
  122. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/__snapshots__/AmeliproStepBtn.spec.ts.snap +61 -0
  123. package/src/components/Amelipro/AmeliproStepper/__tests__/AmeliproStepper.spec.ts +248 -0
  124. package/src/components/Amelipro/AmeliproStepper/__tests__/__snapshots__/AmeliproStepper.spec.ts.snap +179 -0
  125. package/src/components/Amelipro/AmeliproTable/AmeliproTable.stories.ts +14 -13
  126. package/src/components/Amelipro/AmeliproTable/AmeliproTable.vue +2 -1
  127. package/src/components/Amelipro/AmeliproTable/__tests__/__snapshots__/AmeliproTable.spec.ts.snap +10 -3
  128. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/AmeliproTabBtn.spec.ts +129 -0
  129. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/__snapshots__/AmeliproTabBtn.spec.ts.snap +81 -0
  130. package/src/components/Amelipro/AmeliproTabs/AmeliproTabs.vue +2 -2
  131. package/src/components/Amelipro/AmeliproTabs/__tests__/AmeliproTabs.spec.ts +234 -0
  132. package/src/components/Amelipro/AmeliproTabs/__tests__/__snapshots__/AmeliproTabs.spec.ts.snap +122 -0
  133. package/src/components/Amelipro/AmeliproTextArea/AmeliproTextArea.vue +7 -5
  134. package/src/components/Amelipro/AmeliproTextArea/__tests__/AmeliproTextArea.spec.ts +265 -9
  135. package/src/components/Amelipro/AmeliproTextArea/__tests__/__snapshots__/AmeliproTextArea.spec.ts.snap +98 -155
  136. package/src/components/Amelipro/AmeliproTextField/AmeliproTextField.vue +7 -5
  137. package/src/components/Amelipro/AmeliproTextField/__tests__/AmeliproTextField.spec.ts +375 -0
  138. package/src/components/Amelipro/AmeliproTextField/__tests__/__snapshots__/AmeliproTextField.spec.ts.snap +143 -0
  139. package/src/components/Amelipro/AmeliproTileBtn/__tests__/AmeliproTileBtn.spec.ts +241 -0
  140. package/src/components/Amelipro/AmeliproTileBtn/__tests__/__snapshots__/AmeliproTileBtn.spec.ts.snap +74 -0
  141. package/src/components/Amelipro/AmeliproTooltips/__tests__/AmeliproTooltips.spec.ts +212 -0
  142. package/src/components/Amelipro/AmeliproTooltips/__tests__/__snapshots__/AmeliproTooltips.spec.ts.snap +71 -0
  143. package/src/components/Amelipro/AmeliproTransmission/__tests__/AmeliproTransmission.spec.ts +155 -0
  144. package/src/components/Amelipro/AmeliproTransmission/__tests__/__snapshots__/AmeliproTransmission.spec.ts.snap +240 -0
  145. package/src/components/Amelipro/AmeliproUpload/AmeliproUpload.stories.ts +0 -1
  146. package/src/components/Amelipro/ServiceMenu/tests/__snapshots__/ServiceMenu.spec.ts.snap +4 -1
  147. package/src/components/Amelipro/StructureMenu/StructureBtn/StructureBtn.vue +4 -0
  148. package/src/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.vue +4 -5
  149. package/src/components/Amelipro/StructureMenu/StructureTabs/tests/__snapshots__/StructureTabs.spec.ts.snap +5 -4
  150. package/src/components/Amelipro/StructureMenu/tests/__snapshots__/StructureMenu.spec.ts.snap +13 -6
  151. package/src/components/Amelipro/UserMenu/UserMenu.vue +2 -1
  152. package/src/components/Amelipro/UserMenu/tests/__snapshots__/UserMenu.spec.ts.snap +4 -1
  153. package/src/components/Captcha/Captcha.mdx +4 -4
  154. package/src/components/Captcha/Captcha.stories.ts +8 -1
  155. package/src/components/Captcha/Captcha.vue +3 -0
  156. package/src/components/Captcha/CaptchaBase.vue +3 -0
  157. package/src/components/Captcha/captchaApi.ts +0 -1
  158. package/src/components/Customs/Selects/SySelect/SySelect.vue +2 -2
  159. package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +5 -0
  160. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +1 -1
  161. package/src/components/Customs/SyTabs/SyTabs.stories.ts +174 -10
  162. package/src/components/Customs/SyTabs/SyTabs.vue +62 -0
  163. package/src/components/Customs/SyTabs/tests/SyTabs.spec.ts +98 -0
  164. package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +13 -13
  165. package/src/components/DatePicker/CalendarMode/DatePicker.vue +13 -0
  166. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +11 -11
  167. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +5 -0
  168. package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.mdx +7 -0
  169. package/src/components/DatePicker/DateTextInput/DateTextInput.range.spec.ts +1 -1
  170. package/src/components/DatePicker/DateTextInput/DateTextInput.spec.ts +3 -3
  171. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +50 -2
  172. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +15 -15
  173. package/src/components/DatePicker/composables/tests/useDateFormatValidation.spec.ts +2 -2
  174. package/src/components/DatePicker/composables/tests/useManualDateValidation.spec.ts +1 -1
  175. package/src/components/DatePicker/composables/useDateFormatDisplay.ts +25 -0
  176. package/src/components/DatePicker/composables/useDateFormatValidation.ts +5 -2
  177. package/src/components/DatePicker/composables/useManualDateValidation.ts +5 -1
  178. package/src/components/DatePicker/tests/DatePicker.validation.spec.ts +1 -1
  179. package/src/components/ErrorPage/ErrorPage.vue +54 -7
  180. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +6 -2
  181. package/src/components/ExternalLinks/ExternalLinks.vue +2 -4
  182. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +6 -2
  183. package/src/components/PasswordField/PasswordField.vue +6 -6
  184. package/src/components/RangeField/RangeSlider/RangeSlider.vue +3 -2
  185. package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +2 -1
  186. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -0
  187. package/src/components/RatingPicker/RatingPicker.stories.ts +10 -0
  188. package/src/components/RatingPicker/RatingPicker.vue +23 -1
  189. package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +2 -0
  190. package/src/components/SearchListField/Accessibilite.stories.ts +4 -0
  191. package/src/components/SearchListField/SearchListField.stories.ts +16 -0
  192. package/src/components/SearchListField/SearchListField.vue +121 -109
  193. package/src/components/SearchListField/locales.ts +11 -2
  194. package/src/components/SearchListField/tests/SearchListField.spec.ts +91 -25
  195. package/src/components/SyAlert/SyAlert.vue +8 -0
  196. package/src/components/SyAlert/tests/SyAlert.spec.ts +1 -22
  197. package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +304 -0
  198. package/src/components/Tables/SyServerTable/SyServerTable.vue +12 -4
  199. package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +67 -0
  200. package/src/components/Tables/SyTable/SyTable.stories.ts +186 -0
  201. package/src/components/Tables/SyTable/SyTable.vue +12 -4
  202. package/src/components/Tables/SyTable/tests/SyTable.spec.ts +65 -1
  203. package/src/components/Tables/common/types.ts +2 -0
  204. package/src/composables/rules/useFieldValidation.ts +47 -7
  205. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/tests/AmeliproLogoAm.spec.ts +0 -15
  206. package/src/components/Amelipro/AmeliproIcon/tests/AmeliproIcon.spec.ts +0 -19
  207. package/src/components/Amelipro/AmeliproIconBtn/tests/AmeliproIconBtn.spec.ts +0 -22
  208. package/src/components/Amelipro/AmeliproIconBtn/tests/__snapshots__/AmeliproIconBtn.spec.ts.snap +0 -87
  209. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/AmeliproIllustratedDataTile.spec.ts +0 -20
  210. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +0 -69
  211. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/AmeliproIllustratedRadioGroup.spec.ts +0 -53
  212. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +0 -544
  213. package/src/components/Amelipro/AmeliproMailTile/tests/AmeliproMailTile.spec.ts +0 -25
  214. package/src/components/Amelipro/AmeliproMailTile/tests/__snapshots__/AmeliproMailTile.spec.ts.snap +0 -164
  215. package/src/components/Amelipro/AmeliproMessage/tests/AmeliproMessage.spec.ts +0 -18
  216. package/src/components/Amelipro/AmeliproMessage/tests/__snapshots__/AmeliproMessage.spec.ts.snap +0 -94
  217. package/src/components/Amelipro/AmeliproMessagingLayout/tests/AmeliproMessagingLayout.spec.ts +0 -30
  218. package/src/components/Amelipro/AmeliproMessagingLayout/tests/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +0 -439
  219. package/src/components/Amelipro/AmeliproNumberedCard/tests/AmeliproNumberedCard.spec.ts +0 -23
  220. package/src/components/Amelipro/AmeliproOnboarding/tests/AmeliproOnboarding.spec.ts +0 -41
  221. package/src/components/Amelipro/AmeliproOnboarding/tests/__snapshots__/AmeliproOnboarding.spec.ts.snap +0 -3
  222. package/src/components/Amelipro/AmeliproPageLayout/tests/AmeliproPageLayout.spec.ts +0 -183
  223. package/src/components/Amelipro/AmeliproPageLayout/tests/__snapshots__/AmeliproPageLayout.spec.ts.snap +0 -1602
  224. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/AmeliproPaginationBtn.spec.ts +0 -15
  225. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +0 -46
  226. package/src/components/Amelipro/AmeliproPagination/tests/AmeliproPagination.spec.ts +0 -15
  227. package/src/components/Amelipro/AmeliproPagination/tests/__snapshots__/AmeliproPagination.spec.ts.snap +0 -116
  228. package/src/components/Amelipro/AmeliproPatientBanner/tests/AmeliproPatientBanner.spec.ts +0 -24
  229. package/src/components/Amelipro/AmeliproPatientBanner/tests/__snapshots__/AmeliproPatientBanner.spec.ts.snap +0 -268
  230. package/src/components/Amelipro/AmeliproRadioGroup/tests/AmeliproRadioGroup.spec.ts +0 -43
  231. package/src/components/Amelipro/AmeliproRadioGroup/tests/__snapshots__/AmeliproRadioGroup.spec.ts.snap +0 -262
  232. package/src/components/Amelipro/AmeliproSelect/tests/AmeliproSelect.spec.ts +0 -38
  233. package/src/components/Amelipro/AmeliproSelect/tests/__snapshots__/AmeliproSelect.spec.ts.snap +0 -196
  234. package/src/components/Amelipro/AmeliproStateTile/tests/AmeliproStateTile.spec.ts +0 -20
  235. package/src/components/Amelipro/AmeliproStateTile/tests/__snapshots__/AmeliproStateTile.spec.ts.snap +0 -90
  236. package/src/components/Amelipro/AmeliproStatus/tests/AmeliproStatus.spec.ts +0 -16
  237. package/src/components/Amelipro/AmeliproStatus/tests/__snapshots__/AmeliproStatus.spec.ts.snap +0 -21
  238. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/AmeliproStepBtn.spec.ts +0 -18
  239. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/__snapshots__/AmeliproStepBtn.spec.ts.snap +0 -34
  240. package/src/components/Amelipro/AmeliproStepper/tests/AmeliproStepper.spec.ts +0 -36
  241. package/src/components/Amelipro/AmeliproStepper/tests/__snapshots__/AmeliproStepper.spec.ts.snap +0 -354
  242. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/AmeliproTabBtn.spec.ts +0 -20
  243. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/__snapshots__/AmeliproTabBtn.spec.ts.snap +0 -34
  244. package/src/components/Amelipro/AmeliproTabs/tests/AmeliproTabs.spec.ts +0 -39
  245. package/src/components/Amelipro/AmeliproTabs/tests/__snapshots__/AmeliproTabs.spec.ts.snap +0 -217
  246. package/src/components/Amelipro/AmeliproTextField/tests/AmeliproTextField.spec.ts +0 -16
  247. package/src/components/Amelipro/AmeliproTextField/tests/__snapshots__/AmeliproTextField.spec.ts.snap +0 -162
  248. package/src/components/Amelipro/AmeliproTileBtn/tests/AmeliproTileBtn.spec.ts +0 -17
  249. package/src/components/Amelipro/AmeliproTileBtn/tests/__snapshots__/AmeliproTileBtn.spec.ts.snap +0 -65
  250. package/src/components/Amelipro/AmeliproTooltips/tests/AmeliproTooltips.spec.ts +0 -16
  251. package/src/components/Amelipro/AmeliproTooltips/tests/__snapshots__/AmeliproTooltips.spec.ts.snap +0 -105
  252. package/src/components/Amelipro/AmeliproTransmission/tests/AmeliproTransmission.spec.ts +0 -16
  253. package/src/components/Amelipro/AmeliproTransmission/tests/__snapshots__/AmeliproTransmission.spec.ts.snap +0 -246
  254. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +0 -99
@@ -6314,6 +6314,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6314
6314
  hideHeader: boolean;
6315
6315
  hideTitle: boolean;
6316
6316
  active: string | string[];
6317
+ controlVariant: "docked" | "modal";
6318
+ noMonthPicker: boolean;
6317
6319
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6318
6320
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6319
6321
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6328,7 +6330,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6328
6330
  showWeek: boolean;
6329
6331
  transition: string;
6330
6332
  reverseTransition: string;
6333
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6334
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6331
6335
  header: string;
6336
+ headerDateFormat: string;
6332
6337
  }> & Omit<{
6333
6338
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
6334
6339
  tile: boolean;
@@ -6338,6 +6343,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6338
6343
  title: string;
6339
6344
  hideHeader: boolean;
6340
6345
  hideTitle: boolean;
6346
+ controlVariant: "docked" | "modal";
6347
+ noMonthPicker: boolean;
6341
6348
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6342
6349
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6343
6350
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6350,7 +6357,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6350
6357
  showWeek: boolean;
6351
6358
  transition: string;
6352
6359
  reverseTransition: string;
6360
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6361
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6353
6362
  header: string;
6363
+ headerDateFormat: string;
6354
6364
  theme?: string | undefined;
6355
6365
  class?: any;
6356
6366
  border?: string | number | boolean | undefined;
@@ -6369,6 +6379,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6369
6379
  active?: string | string[] | undefined;
6370
6380
  controlHeight?: string | number | undefined;
6371
6381
  text?: string | undefined;
6382
+ monthText?: string | undefined;
6383
+ yearText?: string | undefined;
6372
6384
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6373
6385
  month?: string | number | undefined;
6374
6386
  firstDayOfWeek?: string | number | undefined;
@@ -6380,10 +6392,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6380
6392
  max?: unknown;
6381
6393
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6382
6394
  headerColor?: string | undefined;
6395
+ landscapeHeaderWidth?: string | number | undefined;
6383
6396
  "onUpdate:month"?: ((date: any) => any) | undefined;
6384
6397
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
6385
6398
  "onUpdate:year"?: ((date: any) => any) | undefined;
6386
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition">;
6399
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat">;
6387
6400
  $attrs: {
6388
6401
  [x: string]: unknown;
6389
6402
  };
@@ -6447,6 +6460,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6447
6460
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6448
6461
  [key: string]: any;
6449
6462
  }>[]) | undefined;
6463
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6464
+ [key: string]: any;
6465
+ }>[]) | undefined;
6450
6466
  }>;
6451
6467
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
6452
6468
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -6462,6 +6478,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6462
6478
  title: string;
6463
6479
  hideHeader: boolean;
6464
6480
  hideTitle: boolean;
6481
+ controlVariant: "docked" | "modal";
6482
+ noMonthPicker: boolean;
6465
6483
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6466
6484
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6467
6485
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6474,7 +6492,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6474
6492
  showWeek: boolean;
6475
6493
  transition: string;
6476
6494
  reverseTransition: string;
6495
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6496
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6477
6497
  header: string;
6498
+ headerDateFormat: string;
6478
6499
  } & {
6479
6500
  theme?: string | undefined;
6480
6501
  class?: any;
@@ -6494,6 +6515,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6494
6515
  active?: string | string[] | undefined;
6495
6516
  controlHeight?: string | number | undefined;
6496
6517
  text?: string | undefined;
6518
+ monthText?: string | undefined;
6519
+ yearText?: string | undefined;
6497
6520
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6498
6521
  month?: string | number | undefined;
6499
6522
  firstDayOfWeek?: string | number | undefined;
@@ -6505,6 +6528,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6505
6528
  max?: unknown;
6506
6529
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6507
6530
  headerColor?: string | undefined;
6531
+ landscapeHeaderWidth?: string | number | undefined;
6508
6532
  } & {
6509
6533
  "onUpdate:month"?: ((date: any) => any) | undefined;
6510
6534
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -6514,7 +6538,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6514
6538
  "update:month": (date: any) => true;
6515
6539
  "update:year": (date: any) => true;
6516
6540
  "update:viewMode": (date: any) => true;
6517
- }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
6541
+ }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:controls" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
6518
6542
  style: import('vue').StyleValue;
6519
6543
  rounded: string | number | boolean;
6520
6544
  tile: boolean;
@@ -6525,6 +6549,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6525
6549
  hideHeader: boolean;
6526
6550
  hideTitle: boolean;
6527
6551
  active: string | string[];
6552
+ controlVariant: "docked" | "modal";
6553
+ noMonthPicker: boolean;
6528
6554
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6529
6555
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6530
6556
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6539,7 +6565,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6539
6565
  showWeek: boolean;
6540
6566
  transition: string;
6541
6567
  reverseTransition: string;
6568
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6569
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6542
6570
  header: string;
6571
+ headerDateFormat: string;
6543
6572
  }, {}, string, import('vue').SlotsType<Partial<{
6544
6573
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6545
6574
  [key: string]: any;
@@ -6597,6 +6626,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6597
6626
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6598
6627
  [key: string]: any;
6599
6628
  }>[];
6629
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6630
+ [key: string]: any;
6631
+ }>[];
6600
6632
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
6601
6633
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
6602
6634
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -6628,6 +6660,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6628
6660
  hideHeader: boolean;
6629
6661
  hideTitle: boolean;
6630
6662
  active: string | string[];
6663
+ controlVariant: "docked" | "modal";
6664
+ noMonthPicker: boolean;
6631
6665
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6632
6666
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6633
6667
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6642,7 +6676,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6642
6676
  showWeek: boolean;
6643
6677
  transition: string;
6644
6678
  reverseTransition: string;
6679
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6680
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6645
6681
  header: string;
6682
+ headerDateFormat: string;
6646
6683
  }> & Omit<{
6647
6684
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
6648
6685
  tile: boolean;
@@ -6652,6 +6689,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6652
6689
  title: string;
6653
6690
  hideHeader: boolean;
6654
6691
  hideTitle: boolean;
6692
+ controlVariant: "docked" | "modal";
6693
+ noMonthPicker: boolean;
6655
6694
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6656
6695
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6657
6696
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6664,7 +6703,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6664
6703
  showWeek: boolean;
6665
6704
  transition: string;
6666
6705
  reverseTransition: string;
6706
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6707
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6667
6708
  header: string;
6709
+ headerDateFormat: string;
6668
6710
  } & {
6669
6711
  theme?: string | undefined;
6670
6712
  class?: any;
@@ -6684,6 +6726,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6684
6726
  active?: string | string[] | undefined;
6685
6727
  controlHeight?: string | number | undefined;
6686
6728
  text?: string | undefined;
6729
+ monthText?: string | undefined;
6730
+ yearText?: string | undefined;
6687
6731
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6688
6732
  month?: string | number | undefined;
6689
6733
  firstDayOfWeek?: string | number | undefined;
@@ -6695,11 +6739,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6695
6739
  max?: unknown;
6696
6740
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6697
6741
  headerColor?: string | undefined;
6742
+ landscapeHeaderWidth?: string | number | undefined;
6698
6743
  } & {
6699
6744
  "onUpdate:month"?: ((date: any) => any) | undefined;
6700
6745
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
6701
6746
  "onUpdate:year"?: ((date: any) => any) | undefined;
6702
- }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
6747
+ }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
6703
6748
  modelValue?: Date | (Date | null)[] | null | undefined;
6704
6749
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
6705
6750
  multiple?: false | "range" | undefined;
@@ -8701,6 +8746,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8701
8746
  hideHeader: boolean;
8702
8747
  hideTitle: boolean;
8703
8748
  active: string | string[];
8749
+ controlVariant: "docked" | "modal";
8750
+ noMonthPicker: boolean;
8704
8751
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8705
8752
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8706
8753
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8715,7 +8762,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8715
8762
  showWeek: boolean;
8716
8763
  transition: string;
8717
8764
  reverseTransition: string;
8765
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8766
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8718
8767
  header: string;
8768
+ headerDateFormat: string;
8719
8769
  }> & Omit<{
8720
8770
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
8721
8771
  tile: boolean;
@@ -8725,6 +8775,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8725
8775
  title: string;
8726
8776
  hideHeader: boolean;
8727
8777
  hideTitle: boolean;
8778
+ controlVariant: "docked" | "modal";
8779
+ noMonthPicker: boolean;
8728
8780
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8729
8781
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8730
8782
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8737,7 +8789,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8737
8789
  showWeek: boolean;
8738
8790
  transition: string;
8739
8791
  reverseTransition: string;
8792
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8793
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8740
8794
  header: string;
8795
+ headerDateFormat: string;
8741
8796
  theme?: string | undefined;
8742
8797
  class?: any;
8743
8798
  border?: string | number | boolean | undefined;
@@ -8756,6 +8811,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8756
8811
  active?: string | string[] | undefined;
8757
8812
  controlHeight?: string | number | undefined;
8758
8813
  text?: string | undefined;
8814
+ monthText?: string | undefined;
8815
+ yearText?: string | undefined;
8759
8816
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
8760
8817
  month?: string | number | undefined;
8761
8818
  firstDayOfWeek?: string | number | undefined;
@@ -8767,10 +8824,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8767
8824
  max?: unknown;
8768
8825
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
8769
8826
  headerColor?: string | undefined;
8827
+ landscapeHeaderWidth?: string | number | undefined;
8770
8828
  "onUpdate:month"?: ((date: any) => any) | undefined;
8771
8829
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
8772
8830
  "onUpdate:year"?: ((date: any) => any) | undefined;
8773
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition">;
8831
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat">;
8774
8832
  $attrs: {
8775
8833
  [x: string]: unknown;
8776
8834
  };
@@ -8834,6 +8892,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8834
8892
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8835
8893
  [key: string]: any;
8836
8894
  }>[]) | undefined;
8895
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8896
+ [key: string]: any;
8897
+ }>[]) | undefined;
8837
8898
  }>;
8838
8899
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
8839
8900
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -8849,6 +8910,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8849
8910
  title: string;
8850
8911
  hideHeader: boolean;
8851
8912
  hideTitle: boolean;
8913
+ controlVariant: "docked" | "modal";
8914
+ noMonthPicker: boolean;
8852
8915
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8853
8916
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8854
8917
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8861,7 +8924,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8861
8924
  showWeek: boolean;
8862
8925
  transition: string;
8863
8926
  reverseTransition: string;
8927
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8928
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8864
8929
  header: string;
8930
+ headerDateFormat: string;
8865
8931
  } & {
8866
8932
  theme?: string | undefined;
8867
8933
  class?: any;
@@ -8881,6 +8947,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8881
8947
  active?: string | string[] | undefined;
8882
8948
  controlHeight?: string | number | undefined;
8883
8949
  text?: string | undefined;
8950
+ monthText?: string | undefined;
8951
+ yearText?: string | undefined;
8884
8952
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
8885
8953
  month?: string | number | undefined;
8886
8954
  firstDayOfWeek?: string | number | undefined;
@@ -8892,6 +8960,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8892
8960
  max?: unknown;
8893
8961
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
8894
8962
  headerColor?: string | undefined;
8963
+ landscapeHeaderWidth?: string | number | undefined;
8895
8964
  } & {
8896
8965
  "onUpdate:month"?: ((date: any) => any) | undefined;
8897
8966
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -8901,7 +8970,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8901
8970
  "update:month": (date: any) => true;
8902
8971
  "update:year": (date: any) => true;
8903
8972
  "update:viewMode": (date: any) => true;
8904
- }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
8973
+ }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:controls" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
8905
8974
  style: import('vue').StyleValue;
8906
8975
  rounded: string | number | boolean;
8907
8976
  tile: boolean;
@@ -8912,6 +8981,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8912
8981
  hideHeader: boolean;
8913
8982
  hideTitle: boolean;
8914
8983
  active: string | string[];
8984
+ controlVariant: "docked" | "modal";
8985
+ noMonthPicker: boolean;
8915
8986
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8916
8987
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8917
8988
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8926,7 +8997,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8926
8997
  showWeek: boolean;
8927
8998
  transition: string;
8928
8999
  reverseTransition: string;
9000
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9001
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8929
9002
  header: string;
9003
+ headerDateFormat: string;
8930
9004
  }, {}, string, import('vue').SlotsType<Partial<{
8931
9005
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8932
9006
  [key: string]: any;
@@ -8984,6 +9058,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
8984
9058
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8985
9059
  [key: string]: any;
8986
9060
  }>[];
9061
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
9062
+ [key: string]: any;
9063
+ }>[];
8987
9064
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
8988
9065
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
8989
9066
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -9015,6 +9092,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9015
9092
  hideHeader: boolean;
9016
9093
  hideTitle: boolean;
9017
9094
  active: string | string[];
9095
+ controlVariant: "docked" | "modal";
9096
+ noMonthPicker: boolean;
9018
9097
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9019
9098
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9020
9099
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -9029,7 +9108,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9029
9108
  showWeek: boolean;
9030
9109
  transition: string;
9031
9110
  reverseTransition: string;
9111
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9112
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
9032
9113
  header: string;
9114
+ headerDateFormat: string;
9033
9115
  }> & Omit<{
9034
9116
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
9035
9117
  tile: boolean;
@@ -9039,6 +9121,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9039
9121
  title: string;
9040
9122
  hideHeader: boolean;
9041
9123
  hideTitle: boolean;
9124
+ controlVariant: "docked" | "modal";
9125
+ noMonthPicker: boolean;
9042
9126
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9043
9127
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9044
9128
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -9051,7 +9135,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9051
9135
  showWeek: boolean;
9052
9136
  transition: string;
9053
9137
  reverseTransition: string;
9138
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9139
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
9054
9140
  header: string;
9141
+ headerDateFormat: string;
9055
9142
  } & {
9056
9143
  theme?: string | undefined;
9057
9144
  class?: any;
@@ -9071,6 +9158,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9071
9158
  active?: string | string[] | undefined;
9072
9159
  controlHeight?: string | number | undefined;
9073
9160
  text?: string | undefined;
9161
+ monthText?: string | undefined;
9162
+ yearText?: string | undefined;
9074
9163
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
9075
9164
  month?: string | number | undefined;
9076
9165
  firstDayOfWeek?: string | number | undefined;
@@ -9082,11 +9171,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9082
9171
  max?: unknown;
9083
9172
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
9084
9173
  headerColor?: string | undefined;
9174
+ landscapeHeaderWidth?: string | number | undefined;
9085
9175
  } & {
9086
9176
  "onUpdate:month"?: ((date: any) => any) | undefined;
9087
9177
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
9088
9178
  "onUpdate:year"?: ((date: any) => any) | undefined;
9089
- }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
9179
+ }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
9090
9180
  modelValue?: Date | Date[] | null | undefined;
9091
9181
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
9092
9182
  multiple?: false | "range" | undefined;
@@ -15456,6 +15546,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15456
15546
  hideHeader: boolean;
15457
15547
  hideTitle: boolean;
15458
15548
  active: string | string[];
15549
+ controlVariant: "docked" | "modal";
15550
+ noMonthPicker: boolean;
15459
15551
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15460
15552
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15461
15553
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15470,7 +15562,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15470
15562
  showWeek: boolean;
15471
15563
  transition: string;
15472
15564
  reverseTransition: string;
15565
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15566
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15473
15567
  header: string;
15568
+ headerDateFormat: string;
15474
15569
  }> & Omit<{
15475
15570
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
15476
15571
  tile: boolean;
@@ -15480,6 +15575,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15480
15575
  title: string;
15481
15576
  hideHeader: boolean;
15482
15577
  hideTitle: boolean;
15578
+ controlVariant: "docked" | "modal";
15579
+ noMonthPicker: boolean;
15483
15580
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15484
15581
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15485
15582
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15492,7 +15589,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15492
15589
  showWeek: boolean;
15493
15590
  transition: string;
15494
15591
  reverseTransition: string;
15592
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15593
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15495
15594
  header: string;
15595
+ headerDateFormat: string;
15496
15596
  theme?: string | undefined;
15497
15597
  class?: any;
15498
15598
  border?: string | number | boolean | undefined;
@@ -15511,6 +15611,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15511
15611
  active?: string | string[] | undefined;
15512
15612
  controlHeight?: string | number | undefined;
15513
15613
  text?: string | undefined;
15614
+ monthText?: string | undefined;
15615
+ yearText?: string | undefined;
15514
15616
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
15515
15617
  month?: string | number | undefined;
15516
15618
  firstDayOfWeek?: string | number | undefined;
@@ -15522,10 +15624,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15522
15624
  max?: unknown;
15523
15625
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
15524
15626
  headerColor?: string | undefined;
15627
+ landscapeHeaderWidth?: string | number | undefined;
15525
15628
  "onUpdate:month"?: ((date: any) => any) | undefined;
15526
15629
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
15527
15630
  "onUpdate:year"?: ((date: any) => any) | undefined;
15528
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition">;
15631
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat">;
15529
15632
  $attrs: {
15530
15633
  [x: string]: unknown;
15531
15634
  };
@@ -15589,6 +15692,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15589
15692
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15590
15693
  [key: string]: any;
15591
15694
  }>[]) | undefined;
15695
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15696
+ [key: string]: any;
15697
+ }>[]) | undefined;
15592
15698
  }>;
15593
15699
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
15594
15700
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -15604,6 +15710,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15604
15710
  title: string;
15605
15711
  hideHeader: boolean;
15606
15712
  hideTitle: boolean;
15713
+ controlVariant: "docked" | "modal";
15714
+ noMonthPicker: boolean;
15607
15715
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15608
15716
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15609
15717
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15616,7 +15724,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15616
15724
  showWeek: boolean;
15617
15725
  transition: string;
15618
15726
  reverseTransition: string;
15727
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15728
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15619
15729
  header: string;
15730
+ headerDateFormat: string;
15620
15731
  } & {
15621
15732
  theme?: string | undefined;
15622
15733
  class?: any;
@@ -15636,6 +15747,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15636
15747
  active?: string | string[] | undefined;
15637
15748
  controlHeight?: string | number | undefined;
15638
15749
  text?: string | undefined;
15750
+ monthText?: string | undefined;
15751
+ yearText?: string | undefined;
15639
15752
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
15640
15753
  month?: string | number | undefined;
15641
15754
  firstDayOfWeek?: string | number | undefined;
@@ -15647,6 +15760,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15647
15760
  max?: unknown;
15648
15761
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
15649
15762
  headerColor?: string | undefined;
15763
+ landscapeHeaderWidth?: string | number | undefined;
15650
15764
  } & {
15651
15765
  "onUpdate:month"?: ((date: any) => any) | undefined;
15652
15766
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -15656,7 +15770,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15656
15770
  "update:month": (date: any) => true;
15657
15771
  "update:year": (date: any) => true;
15658
15772
  "update:viewMode": (date: any) => true;
15659
- }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
15773
+ }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:controls" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
15660
15774
  style: import('vue').StyleValue;
15661
15775
  rounded: string | number | boolean;
15662
15776
  tile: boolean;
@@ -15667,6 +15781,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15667
15781
  hideHeader: boolean;
15668
15782
  hideTitle: boolean;
15669
15783
  active: string | string[];
15784
+ controlVariant: "docked" | "modal";
15785
+ noMonthPicker: boolean;
15670
15786
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15671
15787
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15672
15788
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15681,7 +15797,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15681
15797
  showWeek: boolean;
15682
15798
  transition: string;
15683
15799
  reverseTransition: string;
15800
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15801
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15684
15802
  header: string;
15803
+ headerDateFormat: string;
15685
15804
  }, {}, string, import('vue').SlotsType<Partial<{
15686
15805
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15687
15806
  [key: string]: any;
@@ -15739,6 +15858,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15739
15858
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15740
15859
  [key: string]: any;
15741
15860
  }>[];
15861
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15862
+ [key: string]: any;
15863
+ }>[];
15742
15864
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
15743
15865
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
15744
15866
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -15770,6 +15892,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15770
15892
  hideHeader: boolean;
15771
15893
  hideTitle: boolean;
15772
15894
  active: string | string[];
15895
+ controlVariant: "docked" | "modal";
15896
+ noMonthPicker: boolean;
15773
15897
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15774
15898
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15775
15899
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15784,7 +15908,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15784
15908
  showWeek: boolean;
15785
15909
  transition: string;
15786
15910
  reverseTransition: string;
15911
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15912
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15787
15913
  header: string;
15914
+ headerDateFormat: string;
15788
15915
  }> & Omit<{
15789
15916
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
15790
15917
  tile: boolean;
@@ -15794,6 +15921,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15794
15921
  title: string;
15795
15922
  hideHeader: boolean;
15796
15923
  hideTitle: boolean;
15924
+ controlVariant: "docked" | "modal";
15925
+ noMonthPicker: boolean;
15797
15926
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15798
15927
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15799
15928
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15806,7 +15935,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15806
15935
  showWeek: boolean;
15807
15936
  transition: string;
15808
15937
  reverseTransition: string;
15938
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15939
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15809
15940
  header: string;
15941
+ headerDateFormat: string;
15810
15942
  } & {
15811
15943
  theme?: string | undefined;
15812
15944
  class?: any;
@@ -15826,6 +15958,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15826
15958
  active?: string | string[] | undefined;
15827
15959
  controlHeight?: string | number | undefined;
15828
15960
  text?: string | undefined;
15961
+ monthText?: string | undefined;
15962
+ yearText?: string | undefined;
15829
15963
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
15830
15964
  month?: string | number | undefined;
15831
15965
  firstDayOfWeek?: string | number | undefined;
@@ -15837,11 +15971,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
15837
15971
  max?: unknown;
15838
15972
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
15839
15973
  headerColor?: string | undefined;
15974
+ landscapeHeaderWidth?: string | number | undefined;
15840
15975
  } & {
15841
15976
  "onUpdate:month"?: ((date: any) => any) | undefined;
15842
15977
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
15843
15978
  "onUpdate:year"?: ((date: any) => any) | undefined;
15844
- }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
15979
+ }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
15845
15980
  modelValue?: Date | (Date | null)[] | null | undefined;
15846
15981
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
15847
15982
  multiple?: false | "range" | undefined;
@@ -17843,6 +17978,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17843
17978
  hideHeader: boolean;
17844
17979
  hideTitle: boolean;
17845
17980
  active: string | string[];
17981
+ controlVariant: "docked" | "modal";
17982
+ noMonthPicker: boolean;
17846
17983
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17847
17984
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17848
17985
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -17857,7 +17994,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17857
17994
  showWeek: boolean;
17858
17995
  transition: string;
17859
17996
  reverseTransition: string;
17997
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
17998
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
17860
17999
  header: string;
18000
+ headerDateFormat: string;
17861
18001
  }> & Omit<{
17862
18002
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
17863
18003
  tile: boolean;
@@ -17867,6 +18007,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17867
18007
  title: string;
17868
18008
  hideHeader: boolean;
17869
18009
  hideTitle: boolean;
18010
+ controlVariant: "docked" | "modal";
18011
+ noMonthPicker: boolean;
17870
18012
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17871
18013
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17872
18014
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -17879,7 +18021,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17879
18021
  showWeek: boolean;
17880
18022
  transition: string;
17881
18023
  reverseTransition: string;
18024
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18025
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
17882
18026
  header: string;
18027
+ headerDateFormat: string;
17883
18028
  theme?: string | undefined;
17884
18029
  class?: any;
17885
18030
  border?: string | number | boolean | undefined;
@@ -17898,6 +18043,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17898
18043
  active?: string | string[] | undefined;
17899
18044
  controlHeight?: string | number | undefined;
17900
18045
  text?: string | undefined;
18046
+ monthText?: string | undefined;
18047
+ yearText?: string | undefined;
17901
18048
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
17902
18049
  month?: string | number | undefined;
17903
18050
  firstDayOfWeek?: string | number | undefined;
@@ -17909,10 +18056,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17909
18056
  max?: unknown;
17910
18057
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
17911
18058
  headerColor?: string | undefined;
18059
+ landscapeHeaderWidth?: string | number | undefined;
17912
18060
  "onUpdate:month"?: ((date: any) => any) | undefined;
17913
18061
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
17914
18062
  "onUpdate:year"?: ((date: any) => any) | undefined;
17915
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition">;
18063
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat">;
17916
18064
  $attrs: {
17917
18065
  [x: string]: unknown;
17918
18066
  };
@@ -17976,6 +18124,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17976
18124
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
17977
18125
  [key: string]: any;
17978
18126
  }>[]) | undefined;
18127
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18128
+ [key: string]: any;
18129
+ }>[]) | undefined;
17979
18130
  }>;
17980
18131
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
17981
18132
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -17991,6 +18142,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
17991
18142
  title: string;
17992
18143
  hideHeader: boolean;
17993
18144
  hideTitle: boolean;
18145
+ controlVariant: "docked" | "modal";
18146
+ noMonthPicker: boolean;
17994
18147
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17995
18148
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
17996
18149
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18003,7 +18156,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18003
18156
  showWeek: boolean;
18004
18157
  transition: string;
18005
18158
  reverseTransition: string;
18159
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18160
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18006
18161
  header: string;
18162
+ headerDateFormat: string;
18007
18163
  } & {
18008
18164
  theme?: string | undefined;
18009
18165
  class?: any;
@@ -18023,6 +18179,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18023
18179
  active?: string | string[] | undefined;
18024
18180
  controlHeight?: string | number | undefined;
18025
18181
  text?: string | undefined;
18182
+ monthText?: string | undefined;
18183
+ yearText?: string | undefined;
18026
18184
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
18027
18185
  month?: string | number | undefined;
18028
18186
  firstDayOfWeek?: string | number | undefined;
@@ -18034,6 +18192,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18034
18192
  max?: unknown;
18035
18193
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
18036
18194
  headerColor?: string | undefined;
18195
+ landscapeHeaderWidth?: string | number | undefined;
18037
18196
  } & {
18038
18197
  "onUpdate:month"?: ((date: any) => any) | undefined;
18039
18198
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -18043,7 +18202,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18043
18202
  "update:month": (date: any) => true;
18044
18203
  "update:year": (date: any) => true;
18045
18204
  "update:viewMode": (date: any) => true;
18046
- }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
18205
+ }, "$children" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "update:modelValue" | "modelValue" | "v-slot:header" | "v-slot:title" | "multiple" | "v-slot:actions" | "v-slot:controls" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
18047
18206
  style: import('vue').StyleValue;
18048
18207
  rounded: string | number | boolean;
18049
18208
  tile: boolean;
@@ -18054,6 +18213,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18054
18213
  hideHeader: boolean;
18055
18214
  hideTitle: boolean;
18056
18215
  active: string | string[];
18216
+ controlVariant: "docked" | "modal";
18217
+ noMonthPicker: boolean;
18057
18218
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18058
18219
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18059
18220
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18068,7 +18229,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18068
18229
  showWeek: boolean;
18069
18230
  transition: string;
18070
18231
  reverseTransition: string;
18232
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18233
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18071
18234
  header: string;
18235
+ headerDateFormat: string;
18072
18236
  }, {}, string, import('vue').SlotsType<Partial<{
18073
18237
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18074
18238
  [key: string]: any;
@@ -18126,6 +18290,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18126
18290
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18127
18291
  [key: string]: any;
18128
18292
  }>[];
18293
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18294
+ [key: string]: any;
18295
+ }>[];
18129
18296
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
18130
18297
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
18131
18298
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -18157,6 +18324,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18157
18324
  hideHeader: boolean;
18158
18325
  hideTitle: boolean;
18159
18326
  active: string | string[];
18327
+ controlVariant: "docked" | "modal";
18328
+ noMonthPicker: boolean;
18160
18329
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18161
18330
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18162
18331
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18171,7 +18340,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18171
18340
  showWeek: boolean;
18172
18341
  transition: string;
18173
18342
  reverseTransition: string;
18343
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18344
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18174
18345
  header: string;
18346
+ headerDateFormat: string;
18175
18347
  }> & Omit<{
18176
18348
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
18177
18349
  tile: boolean;
@@ -18181,6 +18353,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18181
18353
  title: string;
18182
18354
  hideHeader: boolean;
18183
18355
  hideTitle: boolean;
18356
+ controlVariant: "docked" | "modal";
18357
+ noMonthPicker: boolean;
18184
18358
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18185
18359
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18186
18360
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18193,7 +18367,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18193
18367
  showWeek: boolean;
18194
18368
  transition: string;
18195
18369
  reverseTransition: string;
18370
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18371
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18196
18372
  header: string;
18373
+ headerDateFormat: string;
18197
18374
  } & {
18198
18375
  theme?: string | undefined;
18199
18376
  class?: any;
@@ -18213,6 +18390,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18213
18390
  active?: string | string[] | undefined;
18214
18391
  controlHeight?: string | number | undefined;
18215
18392
  text?: string | undefined;
18393
+ monthText?: string | undefined;
18394
+ yearText?: string | undefined;
18216
18395
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
18217
18396
  month?: string | number | undefined;
18218
18397
  firstDayOfWeek?: string | number | undefined;
@@ -18224,11 +18403,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
18224
18403
  max?: unknown;
18225
18404
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
18226
18405
  headerColor?: string | undefined;
18406
+ landscapeHeaderWidth?: string | number | undefined;
18227
18407
  } & {
18228
18408
  "onUpdate:month"?: ((date: any) => any) | undefined;
18229
18409
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
18230
18410
  "onUpdate:year"?: ((date: any) => any) | undefined;
18231
- }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
18411
+ }, "header" | "style" | "title" | "tag" | "disabled" | "transition" | "rounded" | "tile" | "active" | "divided" | "landscape" | "hideHeader" | "hideTitle" | "controlVariant" | "noMonthPicker" | "nextIcon" | "prevIcon" | "modeIcon" | "viewMode" | "showAdjacentMonths" | "weekdays" | "weeksInMonth" | "firstDayOfWeek" | "firstDayOfYear" | "hideWeekdays" | "showWeek" | "reverseTransition" | "events" | "eventColor" | "headerDateFormat"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
18232
18412
  modelValue?: Date | Date[] | null | undefined;
18233
18413
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
18234
18414
  multiple?: false | "range" | undefined;