@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
@@ -6361,6 +6361,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6361
6361
  hideHeader: boolean;
6362
6362
  hideTitle: boolean;
6363
6363
  active: string | string[];
6364
+ controlVariant: "docked" | "modal";
6365
+ noMonthPicker: boolean;
6364
6366
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6365
6367
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6366
6368
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6375,7 +6377,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6375
6377
  showWeek: boolean;
6376
6378
  transition: string;
6377
6379
  reverseTransition: string;
6380
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6381
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6378
6382
  header: string;
6383
+ headerDateFormat: string;
6379
6384
  }> & Omit<{
6380
6385
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
6381
6386
  tile: boolean;
@@ -6385,6 +6390,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6385
6390
  title: string;
6386
6391
  hideHeader: boolean;
6387
6392
  hideTitle: boolean;
6393
+ controlVariant: "docked" | "modal";
6394
+ noMonthPicker: boolean;
6388
6395
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6389
6396
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6390
6397
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6397,7 +6404,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6397
6404
  showWeek: boolean;
6398
6405
  transition: string;
6399
6406
  reverseTransition: string;
6407
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6408
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6400
6409
  header: string;
6410
+ headerDateFormat: string;
6401
6411
  theme?: string | undefined;
6402
6412
  class?: any;
6403
6413
  border?: string | number | boolean | undefined;
@@ -6416,6 +6426,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6416
6426
  active?: string | string[] | undefined;
6417
6427
  controlHeight?: string | number | undefined;
6418
6428
  text?: string | undefined;
6429
+ monthText?: string | undefined;
6430
+ yearText?: string | undefined;
6419
6431
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6420
6432
  month?: string | number | undefined;
6421
6433
  firstDayOfWeek?: string | number | undefined;
@@ -6427,10 +6439,11 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6427
6439
  max?: unknown;
6428
6440
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6429
6441
  headerColor?: string | undefined;
6442
+ landscapeHeaderWidth?: string | number | undefined;
6430
6443
  "onUpdate:month"?: ((date: any) => any) | undefined;
6431
6444
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
6432
6445
  "onUpdate:year"?: ((date: any) => any) | undefined;
6433
- } & 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">;
6446
+ } & 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">;
6434
6447
  $attrs: {
6435
6448
  [x: string]: unknown;
6436
6449
  };
@@ -6494,6 +6507,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6494
6507
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6495
6508
  [key: string]: any;
6496
6509
  }>[]) | undefined;
6510
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6511
+ [key: string]: any;
6512
+ }>[]) | undefined;
6497
6513
  }>;
6498
6514
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
6499
6515
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -6509,6 +6525,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6509
6525
  title: string;
6510
6526
  hideHeader: boolean;
6511
6527
  hideTitle: boolean;
6528
+ controlVariant: "docked" | "modal";
6529
+ noMonthPicker: boolean;
6512
6530
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6513
6531
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6514
6532
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6521,7 +6539,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6521
6539
  showWeek: boolean;
6522
6540
  transition: string;
6523
6541
  reverseTransition: string;
6542
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6543
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6524
6544
  header: string;
6545
+ headerDateFormat: string;
6525
6546
  } & {
6526
6547
  theme?: string | undefined;
6527
6548
  class?: any;
@@ -6541,6 +6562,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6541
6562
  active?: string | string[] | undefined;
6542
6563
  controlHeight?: string | number | undefined;
6543
6564
  text?: string | undefined;
6565
+ monthText?: string | undefined;
6566
+ yearText?: string | undefined;
6544
6567
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6545
6568
  month?: string | number | undefined;
6546
6569
  firstDayOfWeek?: string | number | undefined;
@@ -6552,6 +6575,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6552
6575
  max?: unknown;
6553
6576
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6554
6577
  headerColor?: string | undefined;
6578
+ landscapeHeaderWidth?: string | number | undefined;
6555
6579
  } & {
6556
6580
  "onUpdate:month"?: ((date: any) => any) | undefined;
6557
6581
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -6561,7 +6585,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6561
6585
  "update:month": (date: any) => true;
6562
6586
  "update:year": (date: any) => true;
6563
6587
  "update:viewMode": (date: any) => true;
6564
- }, "$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, {
6588
+ }, "$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, {
6565
6589
  style: import('vue').StyleValue;
6566
6590
  rounded: string | number | boolean;
6567
6591
  tile: boolean;
@@ -6572,6 +6596,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6572
6596
  hideHeader: boolean;
6573
6597
  hideTitle: boolean;
6574
6598
  active: string | string[];
6599
+ controlVariant: "docked" | "modal";
6600
+ noMonthPicker: boolean;
6575
6601
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6576
6602
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6577
6603
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6586,7 +6612,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6586
6612
  showWeek: boolean;
6587
6613
  transition: string;
6588
6614
  reverseTransition: string;
6615
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6616
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6589
6617
  header: string;
6618
+ headerDateFormat: string;
6590
6619
  }, {}, string, import('vue').SlotsType<Partial<{
6591
6620
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6592
6621
  [key: string]: any;
@@ -6644,6 +6673,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6644
6673
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6645
6674
  [key: string]: any;
6646
6675
  }>[];
6676
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
6677
+ [key: string]: any;
6678
+ }>[];
6647
6679
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
6648
6680
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
6649
6681
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -6675,6 +6707,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6675
6707
  hideHeader: boolean;
6676
6708
  hideTitle: boolean;
6677
6709
  active: string | string[];
6710
+ controlVariant: "docked" | "modal";
6711
+ noMonthPicker: boolean;
6678
6712
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6679
6713
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6680
6714
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6689,7 +6723,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6689
6723
  showWeek: boolean;
6690
6724
  transition: string;
6691
6725
  reverseTransition: string;
6726
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6727
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6692
6728
  header: string;
6729
+ headerDateFormat: string;
6693
6730
  }> & Omit<{
6694
6731
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
6695
6732
  tile: boolean;
@@ -6699,6 +6736,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6699
6736
  title: string;
6700
6737
  hideHeader: boolean;
6701
6738
  hideTitle: boolean;
6739
+ controlVariant: "docked" | "modal";
6740
+ noMonthPicker: boolean;
6702
6741
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6703
6742
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
6704
6743
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -6711,7 +6750,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6711
6750
  showWeek: boolean;
6712
6751
  transition: string;
6713
6752
  reverseTransition: string;
6753
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
6754
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
6714
6755
  header: string;
6756
+ headerDateFormat: string;
6715
6757
  } & {
6716
6758
  theme?: string | undefined;
6717
6759
  class?: any;
@@ -6731,6 +6773,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6731
6773
  active?: string | string[] | undefined;
6732
6774
  controlHeight?: string | number | undefined;
6733
6775
  text?: string | undefined;
6776
+ monthText?: string | undefined;
6777
+ yearText?: string | undefined;
6734
6778
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
6735
6779
  month?: string | number | undefined;
6736
6780
  firstDayOfWeek?: string | number | undefined;
@@ -6742,11 +6786,12 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
6742
6786
  max?: unknown;
6743
6787
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
6744
6788
  headerColor?: string | undefined;
6789
+ landscapeHeaderWidth?: string | number | undefined;
6745
6790
  } & {
6746
6791
  "onUpdate:month"?: ((date: any) => any) | undefined;
6747
6792
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
6748
6793
  "onUpdate:year"?: ((date: any) => any) | undefined;
6749
- }, "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<{
6794
+ }, "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<{
6750
6795
  modelValue?: Date | (Date | null)[] | null | undefined;
6751
6796
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
6752
6797
  multiple?: false | "range" | undefined;
@@ -8748,6 +8793,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8748
8793
  hideHeader: boolean;
8749
8794
  hideTitle: boolean;
8750
8795
  active: string | string[];
8796
+ controlVariant: "docked" | "modal";
8797
+ noMonthPicker: boolean;
8751
8798
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8752
8799
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8753
8800
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8762,7 +8809,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8762
8809
  showWeek: boolean;
8763
8810
  transition: string;
8764
8811
  reverseTransition: string;
8812
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8813
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8765
8814
  header: string;
8815
+ headerDateFormat: string;
8766
8816
  }> & Omit<{
8767
8817
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
8768
8818
  tile: boolean;
@@ -8772,6 +8822,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8772
8822
  title: string;
8773
8823
  hideHeader: boolean;
8774
8824
  hideTitle: boolean;
8825
+ controlVariant: "docked" | "modal";
8826
+ noMonthPicker: boolean;
8775
8827
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8776
8828
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8777
8829
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8784,7 +8836,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8784
8836
  showWeek: boolean;
8785
8837
  transition: string;
8786
8838
  reverseTransition: string;
8839
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8840
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8787
8841
  header: string;
8842
+ headerDateFormat: string;
8788
8843
  theme?: string | undefined;
8789
8844
  class?: any;
8790
8845
  border?: string | number | boolean | undefined;
@@ -8803,6 +8858,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8803
8858
  active?: string | string[] | undefined;
8804
8859
  controlHeight?: string | number | undefined;
8805
8860
  text?: string | undefined;
8861
+ monthText?: string | undefined;
8862
+ yearText?: string | undefined;
8806
8863
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
8807
8864
  month?: string | number | undefined;
8808
8865
  firstDayOfWeek?: string | number | undefined;
@@ -8814,10 +8871,11 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8814
8871
  max?: unknown;
8815
8872
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
8816
8873
  headerColor?: string | undefined;
8874
+ landscapeHeaderWidth?: string | number | undefined;
8817
8875
  "onUpdate:month"?: ((date: any) => any) | undefined;
8818
8876
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
8819
8877
  "onUpdate:year"?: ((date: any) => any) | undefined;
8820
- } & 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">;
8878
+ } & 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">;
8821
8879
  $attrs: {
8822
8880
  [x: string]: unknown;
8823
8881
  };
@@ -8881,6 +8939,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8881
8939
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8882
8940
  [key: string]: any;
8883
8941
  }>[]) | undefined;
8942
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8943
+ [key: string]: any;
8944
+ }>[]) | undefined;
8884
8945
  }>;
8885
8946
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
8886
8947
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -8896,6 +8957,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8896
8957
  title: string;
8897
8958
  hideHeader: boolean;
8898
8959
  hideTitle: boolean;
8960
+ controlVariant: "docked" | "modal";
8961
+ noMonthPicker: boolean;
8899
8962
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8900
8963
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8901
8964
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8908,7 +8971,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8908
8971
  showWeek: boolean;
8909
8972
  transition: string;
8910
8973
  reverseTransition: string;
8974
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
8975
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8911
8976
  header: string;
8977
+ headerDateFormat: string;
8912
8978
  } & {
8913
8979
  theme?: string | undefined;
8914
8980
  class?: any;
@@ -8928,6 +8994,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8928
8994
  active?: string | string[] | undefined;
8929
8995
  controlHeight?: string | number | undefined;
8930
8996
  text?: string | undefined;
8997
+ monthText?: string | undefined;
8998
+ yearText?: string | undefined;
8931
8999
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
8932
9000
  month?: string | number | undefined;
8933
9001
  firstDayOfWeek?: string | number | undefined;
@@ -8939,6 +9007,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8939
9007
  max?: unknown;
8940
9008
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
8941
9009
  headerColor?: string | undefined;
9010
+ landscapeHeaderWidth?: string | number | undefined;
8942
9011
  } & {
8943
9012
  "onUpdate:month"?: ((date: any) => any) | undefined;
8944
9013
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -8948,7 +9017,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8948
9017
  "update:month": (date: any) => true;
8949
9018
  "update:year": (date: any) => true;
8950
9019
  "update:viewMode": (date: any) => true;
8951
- }, "$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, {
9020
+ }, "$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, {
8952
9021
  style: import('vue').StyleValue;
8953
9022
  rounded: string | number | boolean;
8954
9023
  tile: boolean;
@@ -8959,6 +9028,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8959
9028
  hideHeader: boolean;
8960
9029
  hideTitle: boolean;
8961
9030
  active: string | string[];
9031
+ controlVariant: "docked" | "modal";
9032
+ noMonthPicker: boolean;
8962
9033
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8963
9034
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
8964
9035
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -8973,7 +9044,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
8973
9044
  showWeek: boolean;
8974
9045
  transition: string;
8975
9046
  reverseTransition: string;
9047
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9048
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
8976
9049
  header: string;
9050
+ headerDateFormat: string;
8977
9051
  }, {}, string, import('vue').SlotsType<Partial<{
8978
9052
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
8979
9053
  [key: string]: any;
@@ -9031,6 +9105,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9031
9105
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
9032
9106
  [key: string]: any;
9033
9107
  }>[];
9108
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
9109
+ [key: string]: any;
9110
+ }>[];
9034
9111
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
9035
9112
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
9036
9113
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -9062,6 +9139,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9062
9139
  hideHeader: boolean;
9063
9140
  hideTitle: boolean;
9064
9141
  active: string | string[];
9142
+ controlVariant: "docked" | "modal";
9143
+ noMonthPicker: boolean;
9065
9144
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9066
9145
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9067
9146
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -9076,7 +9155,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9076
9155
  showWeek: boolean;
9077
9156
  transition: string;
9078
9157
  reverseTransition: string;
9158
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9159
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
9079
9160
  header: string;
9161
+ headerDateFormat: string;
9080
9162
  }> & Omit<{
9081
9163
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
9082
9164
  tile: boolean;
@@ -9086,6 +9168,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9086
9168
  title: string;
9087
9169
  hideHeader: boolean;
9088
9170
  hideTitle: boolean;
9171
+ controlVariant: "docked" | "modal";
9172
+ noMonthPicker: boolean;
9089
9173
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9090
9174
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
9091
9175
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -9098,7 +9182,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9098
9182
  showWeek: boolean;
9099
9183
  transition: string;
9100
9184
  reverseTransition: string;
9185
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
9186
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
9101
9187
  header: string;
9188
+ headerDateFormat: string;
9102
9189
  } & {
9103
9190
  theme?: string | undefined;
9104
9191
  class?: any;
@@ -9118,6 +9205,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9118
9205
  active?: string | string[] | undefined;
9119
9206
  controlHeight?: string | number | undefined;
9120
9207
  text?: string | undefined;
9208
+ monthText?: string | undefined;
9209
+ yearText?: string | undefined;
9121
9210
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
9122
9211
  month?: string | number | undefined;
9123
9212
  firstDayOfWeek?: string | number | undefined;
@@ -9129,11 +9218,12 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
9129
9218
  max?: unknown;
9130
9219
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
9131
9220
  headerColor?: string | undefined;
9221
+ landscapeHeaderWidth?: string | number | undefined;
9132
9222
  } & {
9133
9223
  "onUpdate:month"?: ((date: any) => any) | undefined;
9134
9224
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
9135
9225
  "onUpdate:year"?: ((date: any) => any) | undefined;
9136
- }, "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<{
9226
+ }, "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<{
9137
9227
  modelValue?: Date | Date[] | null | undefined;
9138
9228
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
9139
9229
  multiple?: false | "range" | undefined;
@@ -15641,6 +15731,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15641
15731
  hideHeader: boolean;
15642
15732
  hideTitle: boolean;
15643
15733
  active: string | string[];
15734
+ controlVariant: "docked" | "modal";
15735
+ noMonthPicker: boolean;
15644
15736
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15645
15737
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15646
15738
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15655,7 +15747,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15655
15747
  showWeek: boolean;
15656
15748
  transition: string;
15657
15749
  reverseTransition: string;
15750
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15751
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15658
15752
  header: string;
15753
+ headerDateFormat: string;
15659
15754
  }> & Omit<{
15660
15755
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
15661
15756
  tile: boolean;
@@ -15665,6 +15760,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15665
15760
  title: string;
15666
15761
  hideHeader: boolean;
15667
15762
  hideTitle: boolean;
15763
+ controlVariant: "docked" | "modal";
15764
+ noMonthPicker: boolean;
15668
15765
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15669
15766
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15670
15767
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15677,7 +15774,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15677
15774
  showWeek: boolean;
15678
15775
  transition: string;
15679
15776
  reverseTransition: string;
15777
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15778
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15680
15779
  header: string;
15780
+ headerDateFormat: string;
15681
15781
  theme?: string | undefined;
15682
15782
  class?: any;
15683
15783
  border?: string | number | boolean | undefined;
@@ -15696,6 +15796,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15696
15796
  active?: string | string[] | undefined;
15697
15797
  controlHeight?: string | number | undefined;
15698
15798
  text?: string | undefined;
15799
+ monthText?: string | undefined;
15800
+ yearText?: string | undefined;
15699
15801
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
15700
15802
  month?: string | number | undefined;
15701
15803
  firstDayOfWeek?: string | number | undefined;
@@ -15707,10 +15809,11 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15707
15809
  max?: unknown;
15708
15810
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
15709
15811
  headerColor?: string | undefined;
15812
+ landscapeHeaderWidth?: string | number | undefined;
15710
15813
  "onUpdate:month"?: ((date: any) => any) | undefined;
15711
15814
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
15712
15815
  "onUpdate:year"?: ((date: any) => any) | undefined;
15713
- } & 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">;
15816
+ } & 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">;
15714
15817
  $attrs: {
15715
15818
  [x: string]: unknown;
15716
15819
  };
@@ -15774,6 +15877,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15774
15877
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15775
15878
  [key: string]: any;
15776
15879
  }>[]) | undefined;
15880
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15881
+ [key: string]: any;
15882
+ }>[]) | undefined;
15777
15883
  }>;
15778
15884
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
15779
15885
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -15789,6 +15895,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15789
15895
  title: string;
15790
15896
  hideHeader: boolean;
15791
15897
  hideTitle: boolean;
15898
+ controlVariant: "docked" | "modal";
15899
+ noMonthPicker: boolean;
15792
15900
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15793
15901
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15794
15902
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15801,7 +15909,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15801
15909
  showWeek: boolean;
15802
15910
  transition: string;
15803
15911
  reverseTransition: string;
15912
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15913
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15804
15914
  header: string;
15915
+ headerDateFormat: string;
15805
15916
  } & {
15806
15917
  theme?: string | undefined;
15807
15918
  class?: any;
@@ -15821,6 +15932,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15821
15932
  active?: string | string[] | undefined;
15822
15933
  controlHeight?: string | number | undefined;
15823
15934
  text?: string | undefined;
15935
+ monthText?: string | undefined;
15936
+ yearText?: string | undefined;
15824
15937
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
15825
15938
  month?: string | number | undefined;
15826
15939
  firstDayOfWeek?: string | number | undefined;
@@ -15832,6 +15945,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15832
15945
  max?: unknown;
15833
15946
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
15834
15947
  headerColor?: string | undefined;
15948
+ landscapeHeaderWidth?: string | number | undefined;
15835
15949
  } & {
15836
15950
  "onUpdate:month"?: ((date: any) => any) | undefined;
15837
15951
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -15841,7 +15955,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15841
15955
  "update:month": (date: any) => true;
15842
15956
  "update:year": (date: any) => true;
15843
15957
  "update:viewMode": (date: any) => true;
15844
- }, "$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, {
15958
+ }, "$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, {
15845
15959
  style: import('vue').StyleValue;
15846
15960
  rounded: string | number | boolean;
15847
15961
  tile: boolean;
@@ -15852,6 +15966,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15852
15966
  hideHeader: boolean;
15853
15967
  hideTitle: boolean;
15854
15968
  active: string | string[];
15969
+ controlVariant: "docked" | "modal";
15970
+ noMonthPicker: boolean;
15855
15971
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15856
15972
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15857
15973
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15866,7 +15982,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15866
15982
  showWeek: boolean;
15867
15983
  transition: string;
15868
15984
  reverseTransition: string;
15985
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
15986
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15869
15987
  header: string;
15988
+ headerDateFormat: string;
15870
15989
  }, {}, string, import('vue').SlotsType<Partial<{
15871
15990
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15872
15991
  [key: string]: any;
@@ -15924,6 +16043,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15924
16043
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
15925
16044
  [key: string]: any;
15926
16045
  }>[];
16046
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
16047
+ [key: string]: any;
16048
+ }>[];
15927
16049
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
15928
16050
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
15929
16051
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -15955,6 +16077,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15955
16077
  hideHeader: boolean;
15956
16078
  hideTitle: boolean;
15957
16079
  active: string | string[];
16080
+ controlVariant: "docked" | "modal";
16081
+ noMonthPicker: boolean;
15958
16082
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15959
16083
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15960
16084
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15969,7 +16093,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15969
16093
  showWeek: boolean;
15970
16094
  transition: string;
15971
16095
  reverseTransition: string;
16096
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
16097
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15972
16098
  header: string;
16099
+ headerDateFormat: string;
15973
16100
  }> & Omit<{
15974
16101
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
15975
16102
  tile: boolean;
@@ -15979,6 +16106,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15979
16106
  title: string;
15980
16107
  hideHeader: boolean;
15981
16108
  hideTitle: boolean;
16109
+ controlVariant: "docked" | "modal";
16110
+ noMonthPicker: boolean;
15982
16111
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15983
16112
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
15984
16113
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -15991,7 +16120,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
15991
16120
  showWeek: boolean;
15992
16121
  transition: string;
15993
16122
  reverseTransition: string;
16123
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
16124
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
15994
16125
  header: string;
16126
+ headerDateFormat: string;
15995
16127
  } & {
15996
16128
  theme?: string | undefined;
15997
16129
  class?: any;
@@ -16011,6 +16143,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
16011
16143
  active?: string | string[] | undefined;
16012
16144
  controlHeight?: string | number | undefined;
16013
16145
  text?: string | undefined;
16146
+ monthText?: string | undefined;
16147
+ yearText?: string | undefined;
16014
16148
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
16015
16149
  month?: string | number | undefined;
16016
16150
  firstDayOfWeek?: string | number | undefined;
@@ -16022,11 +16156,12 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
16022
16156
  max?: unknown;
16023
16157
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
16024
16158
  headerColor?: string | undefined;
16159
+ landscapeHeaderWidth?: string | number | undefined;
16025
16160
  } & {
16026
16161
  "onUpdate:month"?: ((date: any) => any) | undefined;
16027
16162
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
16028
16163
  "onUpdate:year"?: ((date: any) => any) | undefined;
16029
- }, "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<{
16164
+ }, "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<{
16030
16165
  modelValue?: Date | (Date | null)[] | null | undefined;
16031
16166
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
16032
16167
  multiple?: false | "range" | undefined;
@@ -18028,6 +18163,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18028
18163
  hideHeader: boolean;
18029
18164
  hideTitle: boolean;
18030
18165
  active: string | string[];
18166
+ controlVariant: "docked" | "modal";
18167
+ noMonthPicker: boolean;
18031
18168
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18032
18169
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18033
18170
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18042,7 +18179,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18042
18179
  showWeek: boolean;
18043
18180
  transition: string;
18044
18181
  reverseTransition: string;
18182
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18183
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18045
18184
  header: string;
18185
+ headerDateFormat: string;
18046
18186
  }> & Omit<{
18047
18187
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
18048
18188
  tile: boolean;
@@ -18052,6 +18192,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18052
18192
  title: string;
18053
18193
  hideHeader: boolean;
18054
18194
  hideTitle: boolean;
18195
+ controlVariant: "docked" | "modal";
18196
+ noMonthPicker: boolean;
18055
18197
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18056
18198
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18057
18199
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18064,7 +18206,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18064
18206
  showWeek: boolean;
18065
18207
  transition: string;
18066
18208
  reverseTransition: string;
18209
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18210
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18067
18211
  header: string;
18212
+ headerDateFormat: string;
18068
18213
  theme?: string | undefined;
18069
18214
  class?: any;
18070
18215
  border?: string | number | boolean | undefined;
@@ -18083,6 +18228,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18083
18228
  active?: string | string[] | undefined;
18084
18229
  controlHeight?: string | number | undefined;
18085
18230
  text?: string | undefined;
18231
+ monthText?: string | undefined;
18232
+ yearText?: string | undefined;
18086
18233
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
18087
18234
  month?: string | number | undefined;
18088
18235
  firstDayOfWeek?: string | number | undefined;
@@ -18094,10 +18241,11 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18094
18241
  max?: unknown;
18095
18242
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
18096
18243
  headerColor?: string | undefined;
18244
+ landscapeHeaderWidth?: string | number | undefined;
18097
18245
  "onUpdate:month"?: ((date: any) => any) | undefined;
18098
18246
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
18099
18247
  "onUpdate:year"?: ((date: any) => any) | undefined;
18100
- } & 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">;
18248
+ } & 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">;
18101
18249
  $attrs: {
18102
18250
  [x: string]: unknown;
18103
18251
  };
@@ -18161,6 +18309,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18161
18309
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18162
18310
  [key: string]: any;
18163
18311
  }>[]) | undefined;
18312
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18313
+ [key: string]: any;
18314
+ }>[]) | undefined;
18164
18315
  }>;
18165
18316
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
18166
18317
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -18176,6 +18327,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18176
18327
  title: string;
18177
18328
  hideHeader: boolean;
18178
18329
  hideTitle: boolean;
18330
+ controlVariant: "docked" | "modal";
18331
+ noMonthPicker: boolean;
18179
18332
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18180
18333
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18181
18334
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18188,7 +18341,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18188
18341
  showWeek: boolean;
18189
18342
  transition: string;
18190
18343
  reverseTransition: string;
18344
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18345
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18191
18346
  header: string;
18347
+ headerDateFormat: string;
18192
18348
  } & {
18193
18349
  theme?: string | undefined;
18194
18350
  class?: any;
@@ -18208,6 +18364,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18208
18364
  active?: string | string[] | undefined;
18209
18365
  controlHeight?: string | number | undefined;
18210
18366
  text?: string | undefined;
18367
+ monthText?: string | undefined;
18368
+ yearText?: string | undefined;
18211
18369
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
18212
18370
  month?: string | number | undefined;
18213
18371
  firstDayOfWeek?: string | number | undefined;
@@ -18219,6 +18377,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18219
18377
  max?: unknown;
18220
18378
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
18221
18379
  headerColor?: string | undefined;
18380
+ landscapeHeaderWidth?: string | number | undefined;
18222
18381
  } & {
18223
18382
  "onUpdate:month"?: ((date: any) => any) | undefined;
18224
18383
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -18228,7 +18387,7 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18228
18387
  "update:month": (date: any) => true;
18229
18388
  "update:year": (date: any) => true;
18230
18389
  "update:viewMode": (date: any) => true;
18231
- }, "$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, {
18390
+ }, "$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, {
18232
18391
  style: import('vue').StyleValue;
18233
18392
  rounded: string | number | boolean;
18234
18393
  tile: boolean;
@@ -18239,6 +18398,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18239
18398
  hideHeader: boolean;
18240
18399
  hideTitle: boolean;
18241
18400
  active: string | string[];
18401
+ controlVariant: "docked" | "modal";
18402
+ noMonthPicker: boolean;
18242
18403
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18243
18404
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18244
18405
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18253,7 +18414,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18253
18414
  showWeek: boolean;
18254
18415
  transition: string;
18255
18416
  reverseTransition: string;
18417
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18418
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18256
18419
  header: string;
18420
+ headerDateFormat: string;
18257
18421
  }, {}, string, import('vue').SlotsType<Partial<{
18258
18422
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18259
18423
  [key: string]: any;
@@ -18311,6 +18475,9 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18311
18475
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18312
18476
  [key: string]: any;
18313
18477
  }>[];
18478
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18479
+ [key: string]: any;
18480
+ }>[];
18314
18481
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
18315
18482
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
18316
18483
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -18342,6 +18509,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18342
18509
  hideHeader: boolean;
18343
18510
  hideTitle: boolean;
18344
18511
  active: string | string[];
18512
+ controlVariant: "docked" | "modal";
18513
+ noMonthPicker: boolean;
18345
18514
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18346
18515
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18347
18516
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18356,7 +18525,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18356
18525
  showWeek: boolean;
18357
18526
  transition: string;
18358
18527
  reverseTransition: string;
18528
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18529
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18359
18530
  header: string;
18531
+ headerDateFormat: string;
18360
18532
  }> & Omit<{
18361
18533
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
18362
18534
  tile: boolean;
@@ -18366,6 +18538,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18366
18538
  title: string;
18367
18539
  hideHeader: boolean;
18368
18540
  hideTitle: boolean;
18541
+ controlVariant: "docked" | "modal";
18542
+ noMonthPicker: boolean;
18369
18543
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18370
18544
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
18371
18545
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -18378,7 +18552,10 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18378
18552
  showWeek: boolean;
18379
18553
  transition: string;
18380
18554
  reverseTransition: string;
18555
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
18556
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
18381
18557
  header: string;
18558
+ headerDateFormat: string;
18382
18559
  } & {
18383
18560
  theme?: string | undefined;
18384
18561
  class?: any;
@@ -18398,6 +18575,8 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18398
18575
  active?: string | string[] | undefined;
18399
18576
  controlHeight?: string | number | undefined;
18400
18577
  text?: string | undefined;
18578
+ monthText?: string | undefined;
18579
+ yearText?: string | undefined;
18401
18580
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
18402
18581
  month?: string | number | undefined;
18403
18582
  firstDayOfWeek?: string | number | undefined;
@@ -18409,11 +18588,12 @@ export declare function mountDatePicker(props?: Record<string, unknown>, config?
18409
18588
  max?: unknown;
18410
18589
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
18411
18590
  headerColor?: string | undefined;
18591
+ landscapeHeaderWidth?: string | number | undefined;
18412
18592
  } & {
18413
18593
  "onUpdate:month"?: ((date: any) => any) | undefined;
18414
18594
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
18415
18595
  "onUpdate:year"?: ((date: any) => any) | undefined;
18416
- }, "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<{
18596
+ }, "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<{
18417
18597
  modelValue?: Date | Date[] | null | undefined;
18418
18598
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
18419
18599
  multiple?: false | "range" | undefined;
@@ -24976,6 +25156,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
24976
25156
  hideHeader: boolean;
24977
25157
  hideTitle: boolean;
24978
25158
  active: string | string[];
25159
+ controlVariant: "docked" | "modal";
25160
+ noMonthPicker: boolean;
24979
25161
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
24980
25162
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
24981
25163
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -24990,7 +25172,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
24990
25172
  showWeek: boolean;
24991
25173
  transition: string;
24992
25174
  reverseTransition: string;
25175
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25176
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
24993
25177
  header: string;
25178
+ headerDateFormat: string;
24994
25179
  }> & Omit<{
24995
25180
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
24996
25181
  tile: boolean;
@@ -25000,6 +25185,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25000
25185
  title: string;
25001
25186
  hideHeader: boolean;
25002
25187
  hideTitle: boolean;
25188
+ controlVariant: "docked" | "modal";
25189
+ noMonthPicker: boolean;
25003
25190
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25004
25191
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25005
25192
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -25012,7 +25199,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25012
25199
  showWeek: boolean;
25013
25200
  transition: string;
25014
25201
  reverseTransition: string;
25202
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25203
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
25015
25204
  header: string;
25205
+ headerDateFormat: string;
25016
25206
  theme?: string | undefined;
25017
25207
  class?: any;
25018
25208
  border?: string | number | boolean | undefined;
@@ -25031,6 +25221,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25031
25221
  active?: string | string[] | undefined;
25032
25222
  controlHeight?: string | number | undefined;
25033
25223
  text?: string | undefined;
25224
+ monthText?: string | undefined;
25225
+ yearText?: string | undefined;
25034
25226
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
25035
25227
  month?: string | number | undefined;
25036
25228
  firstDayOfWeek?: string | number | undefined;
@@ -25042,10 +25234,11 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25042
25234
  max?: unknown;
25043
25235
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
25044
25236
  headerColor?: string | undefined;
25237
+ landscapeHeaderWidth?: string | number | undefined;
25045
25238
  "onUpdate:month"?: ((date: any) => any) | undefined;
25046
25239
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
25047
25240
  "onUpdate:year"?: ((date: any) => any) | undefined;
25048
- } & 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">;
25241
+ } & 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">;
25049
25242
  $attrs: {
25050
25243
  [x: string]: unknown;
25051
25244
  };
@@ -25109,6 +25302,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25109
25302
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
25110
25303
  [key: string]: any;
25111
25304
  }>[]) | undefined;
25305
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
25306
+ [key: string]: any;
25307
+ }>[]) | undefined;
25112
25308
  }>;
25113
25309
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
25114
25310
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -25124,6 +25320,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25124
25320
  title: string;
25125
25321
  hideHeader: boolean;
25126
25322
  hideTitle: boolean;
25323
+ controlVariant: "docked" | "modal";
25324
+ noMonthPicker: boolean;
25127
25325
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25128
25326
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25129
25327
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -25136,7 +25334,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25136
25334
  showWeek: boolean;
25137
25335
  transition: string;
25138
25336
  reverseTransition: string;
25337
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25338
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
25139
25339
  header: string;
25340
+ headerDateFormat: string;
25140
25341
  } & {
25141
25342
  theme?: string | undefined;
25142
25343
  class?: any;
@@ -25156,6 +25357,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25156
25357
  active?: string | string[] | undefined;
25157
25358
  controlHeight?: string | number | undefined;
25158
25359
  text?: string | undefined;
25360
+ monthText?: string | undefined;
25361
+ yearText?: string | undefined;
25159
25362
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
25160
25363
  month?: string | number | undefined;
25161
25364
  firstDayOfWeek?: string | number | undefined;
@@ -25167,6 +25370,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25167
25370
  max?: unknown;
25168
25371
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
25169
25372
  headerColor?: string | undefined;
25373
+ landscapeHeaderWidth?: string | number | undefined;
25170
25374
  } & {
25171
25375
  "onUpdate:month"?: ((date: any) => any) | undefined;
25172
25376
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -25176,7 +25380,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25176
25380
  "update:month": (date: any) => true;
25177
25381
  "update:year": (date: any) => true;
25178
25382
  "update:viewMode": (date: any) => true;
25179
- }, "$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, {
25383
+ }, "$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, {
25180
25384
  style: import('vue').StyleValue;
25181
25385
  rounded: string | number | boolean;
25182
25386
  tile: boolean;
@@ -25187,6 +25391,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25187
25391
  hideHeader: boolean;
25188
25392
  hideTitle: boolean;
25189
25393
  active: string | string[];
25394
+ controlVariant: "docked" | "modal";
25395
+ noMonthPicker: boolean;
25190
25396
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25191
25397
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25192
25398
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -25201,7 +25407,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25201
25407
  showWeek: boolean;
25202
25408
  transition: string;
25203
25409
  reverseTransition: string;
25410
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25411
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
25204
25412
  header: string;
25413
+ headerDateFormat: string;
25205
25414
  }, {}, string, import('vue').SlotsType<Partial<{
25206
25415
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
25207
25416
  [key: string]: any;
@@ -25259,6 +25468,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25259
25468
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
25260
25469
  [key: string]: any;
25261
25470
  }>[];
25471
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
25472
+ [key: string]: any;
25473
+ }>[];
25262
25474
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
25263
25475
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
25264
25476
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -25290,6 +25502,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25290
25502
  hideHeader: boolean;
25291
25503
  hideTitle: boolean;
25292
25504
  active: string | string[];
25505
+ controlVariant: "docked" | "modal";
25506
+ noMonthPicker: boolean;
25293
25507
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25294
25508
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25295
25509
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -25304,7 +25518,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25304
25518
  showWeek: boolean;
25305
25519
  transition: string;
25306
25520
  reverseTransition: string;
25521
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25522
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
25307
25523
  header: string;
25524
+ headerDateFormat: string;
25308
25525
  }> & Omit<{
25309
25526
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
25310
25527
  tile: boolean;
@@ -25314,6 +25531,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25314
25531
  title: string;
25315
25532
  hideHeader: boolean;
25316
25533
  hideTitle: boolean;
25534
+ controlVariant: "docked" | "modal";
25535
+ noMonthPicker: boolean;
25317
25536
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25318
25537
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
25319
25538
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -25326,7 +25545,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25326
25545
  showWeek: boolean;
25327
25546
  transition: string;
25328
25547
  reverseTransition: string;
25548
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
25549
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
25329
25550
  header: string;
25551
+ headerDateFormat: string;
25330
25552
  } & {
25331
25553
  theme?: string | undefined;
25332
25554
  class?: any;
@@ -25346,6 +25568,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25346
25568
  active?: string | string[] | undefined;
25347
25569
  controlHeight?: string | number | undefined;
25348
25570
  text?: string | undefined;
25571
+ monthText?: string | undefined;
25572
+ yearText?: string | undefined;
25349
25573
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
25350
25574
  month?: string | number | undefined;
25351
25575
  firstDayOfWeek?: string | number | undefined;
@@ -25357,11 +25581,12 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
25357
25581
  max?: unknown;
25358
25582
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
25359
25583
  headerColor?: string | undefined;
25584
+ landscapeHeaderWidth?: string | number | undefined;
25360
25585
  } & {
25361
25586
  "onUpdate:month"?: ((date: any) => any) | undefined;
25362
25587
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
25363
25588
  "onUpdate:year"?: ((date: any) => any) | undefined;
25364
- }, "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<{
25589
+ }, "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<{
25365
25590
  modelValue?: Date | (Date | null)[] | null | undefined;
25366
25591
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
25367
25592
  multiple?: false | "range" | undefined;
@@ -27363,6 +27588,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27363
27588
  hideHeader: boolean;
27364
27589
  hideTitle: boolean;
27365
27590
  active: string | string[];
27591
+ controlVariant: "docked" | "modal";
27592
+ noMonthPicker: boolean;
27366
27593
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27367
27594
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27368
27595
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27377,7 +27604,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27377
27604
  showWeek: boolean;
27378
27605
  transition: string;
27379
27606
  reverseTransition: string;
27607
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27608
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27380
27609
  header: string;
27610
+ headerDateFormat: string;
27381
27611
  }> & Omit<{
27382
27612
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
27383
27613
  tile: boolean;
@@ -27387,6 +27617,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27387
27617
  title: string;
27388
27618
  hideHeader: boolean;
27389
27619
  hideTitle: boolean;
27620
+ controlVariant: "docked" | "modal";
27621
+ noMonthPicker: boolean;
27390
27622
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27391
27623
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27392
27624
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27399,7 +27631,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27399
27631
  showWeek: boolean;
27400
27632
  transition: string;
27401
27633
  reverseTransition: string;
27634
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27635
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27402
27636
  header: string;
27637
+ headerDateFormat: string;
27403
27638
  theme?: string | undefined;
27404
27639
  class?: any;
27405
27640
  border?: string | number | boolean | undefined;
@@ -27418,6 +27653,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27418
27653
  active?: string | string[] | undefined;
27419
27654
  controlHeight?: string | number | undefined;
27420
27655
  text?: string | undefined;
27656
+ monthText?: string | undefined;
27657
+ yearText?: string | undefined;
27421
27658
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
27422
27659
  month?: string | number | undefined;
27423
27660
  firstDayOfWeek?: string | number | undefined;
@@ -27429,10 +27666,11 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27429
27666
  max?: unknown;
27430
27667
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
27431
27668
  headerColor?: string | undefined;
27669
+ landscapeHeaderWidth?: string | number | undefined;
27432
27670
  "onUpdate:month"?: ((date: any) => any) | undefined;
27433
27671
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
27434
27672
  "onUpdate:year"?: ((date: any) => any) | undefined;
27435
- } & 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">;
27673
+ } & 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">;
27436
27674
  $attrs: {
27437
27675
  [x: string]: unknown;
27438
27676
  };
@@ -27496,6 +27734,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27496
27734
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
27497
27735
  [key: string]: any;
27498
27736
  }>[]) | undefined;
27737
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
27738
+ [key: string]: any;
27739
+ }>[]) | undefined;
27499
27740
  }>;
27500
27741
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
27501
27742
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -27511,6 +27752,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27511
27752
  title: string;
27512
27753
  hideHeader: boolean;
27513
27754
  hideTitle: boolean;
27755
+ controlVariant: "docked" | "modal";
27756
+ noMonthPicker: boolean;
27514
27757
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27515
27758
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27516
27759
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27523,7 +27766,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27523
27766
  showWeek: boolean;
27524
27767
  transition: string;
27525
27768
  reverseTransition: string;
27769
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27770
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27526
27771
  header: string;
27772
+ headerDateFormat: string;
27527
27773
  } & {
27528
27774
  theme?: string | undefined;
27529
27775
  class?: any;
@@ -27543,6 +27789,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27543
27789
  active?: string | string[] | undefined;
27544
27790
  controlHeight?: string | number | undefined;
27545
27791
  text?: string | undefined;
27792
+ monthText?: string | undefined;
27793
+ yearText?: string | undefined;
27546
27794
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
27547
27795
  month?: string | number | undefined;
27548
27796
  firstDayOfWeek?: string | number | undefined;
@@ -27554,6 +27802,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27554
27802
  max?: unknown;
27555
27803
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
27556
27804
  headerColor?: string | undefined;
27805
+ landscapeHeaderWidth?: string | number | undefined;
27557
27806
  } & {
27558
27807
  "onUpdate:month"?: ((date: any) => any) | undefined;
27559
27808
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -27563,7 +27812,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27563
27812
  "update:month": (date: any) => true;
27564
27813
  "update:year": (date: any) => true;
27565
27814
  "update:viewMode": (date: any) => true;
27566
- }, "$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, {
27815
+ }, "$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, {
27567
27816
  style: import('vue').StyleValue;
27568
27817
  rounded: string | number | boolean;
27569
27818
  tile: boolean;
@@ -27574,6 +27823,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27574
27823
  hideHeader: boolean;
27575
27824
  hideTitle: boolean;
27576
27825
  active: string | string[];
27826
+ controlVariant: "docked" | "modal";
27827
+ noMonthPicker: boolean;
27577
27828
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27578
27829
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27579
27830
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27588,7 +27839,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27588
27839
  showWeek: boolean;
27589
27840
  transition: string;
27590
27841
  reverseTransition: string;
27842
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27843
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27591
27844
  header: string;
27845
+ headerDateFormat: string;
27592
27846
  }, {}, string, import('vue').SlotsType<Partial<{
27593
27847
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
27594
27848
  [key: string]: any;
@@ -27646,6 +27900,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27646
27900
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
27647
27901
  [key: string]: any;
27648
27902
  }>[];
27903
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
27904
+ [key: string]: any;
27905
+ }>[];
27649
27906
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
27650
27907
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
27651
27908
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -27677,6 +27934,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27677
27934
  hideHeader: boolean;
27678
27935
  hideTitle: boolean;
27679
27936
  active: string | string[];
27937
+ controlVariant: "docked" | "modal";
27938
+ noMonthPicker: boolean;
27680
27939
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27681
27940
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27682
27941
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27691,7 +27950,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27691
27950
  showWeek: boolean;
27692
27951
  transition: string;
27693
27952
  reverseTransition: string;
27953
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27954
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27694
27955
  header: string;
27956
+ headerDateFormat: string;
27695
27957
  }> & Omit<{
27696
27958
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
27697
27959
  tile: boolean;
@@ -27701,6 +27963,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27701
27963
  title: string;
27702
27964
  hideHeader: boolean;
27703
27965
  hideTitle: boolean;
27966
+ controlVariant: "docked" | "modal";
27967
+ noMonthPicker: boolean;
27704
27968
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27705
27969
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
27706
27970
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -27713,7 +27977,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27713
27977
  showWeek: boolean;
27714
27978
  transition: string;
27715
27979
  reverseTransition: string;
27980
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
27981
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
27716
27982
  header: string;
27983
+ headerDateFormat: string;
27717
27984
  } & {
27718
27985
  theme?: string | undefined;
27719
27986
  class?: any;
@@ -27733,6 +28000,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27733
28000
  active?: string | string[] | undefined;
27734
28001
  controlHeight?: string | number | undefined;
27735
28002
  text?: string | undefined;
28003
+ monthText?: string | undefined;
28004
+ yearText?: string | undefined;
27736
28005
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
27737
28006
  month?: string | number | undefined;
27738
28007
  firstDayOfWeek?: string | number | undefined;
@@ -27744,11 +28013,12 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
27744
28013
  max?: unknown;
27745
28014
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
27746
28015
  headerColor?: string | undefined;
28016
+ landscapeHeaderWidth?: string | number | undefined;
27747
28017
  } & {
27748
28018
  "onUpdate:month"?: ((date: any) => any) | undefined;
27749
28019
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
27750
28020
  "onUpdate:year"?: ((date: any) => any) | undefined;
27751
- }, "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<{
28021
+ }, "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<{
27752
28022
  modelValue?: Date | Date[] | null | undefined;
27753
28023
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
27754
28024
  multiple?: false | "range" | undefined;
@@ -34256,6 +34526,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34256
34526
  hideHeader: boolean;
34257
34527
  hideTitle: boolean;
34258
34528
  active: string | string[];
34529
+ controlVariant: "docked" | "modal";
34530
+ noMonthPicker: boolean;
34259
34531
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34260
34532
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34261
34533
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34270,7 +34542,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34270
34542
  showWeek: boolean;
34271
34543
  transition: string;
34272
34544
  reverseTransition: string;
34545
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34546
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34273
34547
  header: string;
34548
+ headerDateFormat: string;
34274
34549
  }> & Omit<{
34275
34550
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
34276
34551
  tile: boolean;
@@ -34280,6 +34555,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34280
34555
  title: string;
34281
34556
  hideHeader: boolean;
34282
34557
  hideTitle: boolean;
34558
+ controlVariant: "docked" | "modal";
34559
+ noMonthPicker: boolean;
34283
34560
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34284
34561
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34285
34562
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34292,7 +34569,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34292
34569
  showWeek: boolean;
34293
34570
  transition: string;
34294
34571
  reverseTransition: string;
34572
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34573
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34295
34574
  header: string;
34575
+ headerDateFormat: string;
34296
34576
  theme?: string | undefined;
34297
34577
  class?: any;
34298
34578
  border?: string | number | boolean | undefined;
@@ -34311,6 +34591,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34311
34591
  active?: string | string[] | undefined;
34312
34592
  controlHeight?: string | number | undefined;
34313
34593
  text?: string | undefined;
34594
+ monthText?: string | undefined;
34595
+ yearText?: string | undefined;
34314
34596
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
34315
34597
  month?: string | number | undefined;
34316
34598
  firstDayOfWeek?: string | number | undefined;
@@ -34322,10 +34604,11 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34322
34604
  max?: unknown;
34323
34605
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
34324
34606
  headerColor?: string | undefined;
34607
+ landscapeHeaderWidth?: string | number | undefined;
34325
34608
  "onUpdate:month"?: ((date: any) => any) | undefined;
34326
34609
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
34327
34610
  "onUpdate:year"?: ((date: any) => any) | undefined;
34328
- } & 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">;
34611
+ } & 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">;
34329
34612
  $attrs: {
34330
34613
  [x: string]: unknown;
34331
34614
  };
@@ -34389,6 +34672,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34389
34672
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
34390
34673
  [key: string]: any;
34391
34674
  }>[]) | undefined;
34675
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
34676
+ [key: string]: any;
34677
+ }>[]) | undefined;
34392
34678
  }>;
34393
34679
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
34394
34680
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -34404,6 +34690,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34404
34690
  title: string;
34405
34691
  hideHeader: boolean;
34406
34692
  hideTitle: boolean;
34693
+ controlVariant: "docked" | "modal";
34694
+ noMonthPicker: boolean;
34407
34695
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34408
34696
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34409
34697
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34416,7 +34704,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34416
34704
  showWeek: boolean;
34417
34705
  transition: string;
34418
34706
  reverseTransition: string;
34707
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34708
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34419
34709
  header: string;
34710
+ headerDateFormat: string;
34420
34711
  } & {
34421
34712
  theme?: string | undefined;
34422
34713
  class?: any;
@@ -34436,6 +34727,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34436
34727
  active?: string | string[] | undefined;
34437
34728
  controlHeight?: string | number | undefined;
34438
34729
  text?: string | undefined;
34730
+ monthText?: string | undefined;
34731
+ yearText?: string | undefined;
34439
34732
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
34440
34733
  month?: string | number | undefined;
34441
34734
  firstDayOfWeek?: string | number | undefined;
@@ -34447,6 +34740,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34447
34740
  max?: unknown;
34448
34741
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
34449
34742
  headerColor?: string | undefined;
34743
+ landscapeHeaderWidth?: string | number | undefined;
34450
34744
  } & {
34451
34745
  "onUpdate:month"?: ((date: any) => any) | undefined;
34452
34746
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -34456,7 +34750,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34456
34750
  "update:month": (date: any) => true;
34457
34751
  "update:year": (date: any) => true;
34458
34752
  "update:viewMode": (date: any) => true;
34459
- }, "$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, {
34753
+ }, "$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, {
34460
34754
  style: import('vue').StyleValue;
34461
34755
  rounded: string | number | boolean;
34462
34756
  tile: boolean;
@@ -34467,6 +34761,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34467
34761
  hideHeader: boolean;
34468
34762
  hideTitle: boolean;
34469
34763
  active: string | string[];
34764
+ controlVariant: "docked" | "modal";
34765
+ noMonthPicker: boolean;
34470
34766
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34471
34767
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34472
34768
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34481,7 +34777,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34481
34777
  showWeek: boolean;
34482
34778
  transition: string;
34483
34779
  reverseTransition: string;
34780
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34781
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34484
34782
  header: string;
34783
+ headerDateFormat: string;
34485
34784
  }, {}, string, import('vue').SlotsType<Partial<{
34486
34785
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
34487
34786
  [key: string]: any;
@@ -34539,6 +34838,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34539
34838
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
34540
34839
  [key: string]: any;
34541
34840
  }>[];
34841
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
34842
+ [key: string]: any;
34843
+ }>[];
34542
34844
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
34543
34845
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
34544
34846
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -34570,6 +34872,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34570
34872
  hideHeader: boolean;
34571
34873
  hideTitle: boolean;
34572
34874
  active: string | string[];
34875
+ controlVariant: "docked" | "modal";
34876
+ noMonthPicker: boolean;
34573
34877
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34574
34878
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34575
34879
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34584,7 +34888,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34584
34888
  showWeek: boolean;
34585
34889
  transition: string;
34586
34890
  reverseTransition: string;
34891
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34892
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34587
34893
  header: string;
34894
+ headerDateFormat: string;
34588
34895
  }> & Omit<{
34589
34896
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
34590
34897
  tile: boolean;
@@ -34594,6 +34901,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34594
34901
  title: string;
34595
34902
  hideHeader: boolean;
34596
34903
  hideTitle: boolean;
34904
+ controlVariant: "docked" | "modal";
34905
+ noMonthPicker: boolean;
34597
34906
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34598
34907
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
34599
34908
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -34606,7 +34915,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34606
34915
  showWeek: boolean;
34607
34916
  transition: string;
34608
34917
  reverseTransition: string;
34918
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
34919
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
34609
34920
  header: string;
34921
+ headerDateFormat: string;
34610
34922
  } & {
34611
34923
  theme?: string | undefined;
34612
34924
  class?: any;
@@ -34626,6 +34938,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34626
34938
  active?: string | string[] | undefined;
34627
34939
  controlHeight?: string | number | undefined;
34628
34940
  text?: string | undefined;
34941
+ monthText?: string | undefined;
34942
+ yearText?: string | undefined;
34629
34943
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
34630
34944
  month?: string | number | undefined;
34631
34945
  firstDayOfWeek?: string | number | undefined;
@@ -34637,11 +34951,12 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
34637
34951
  max?: unknown;
34638
34952
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
34639
34953
  headerColor?: string | undefined;
34954
+ landscapeHeaderWidth?: string | number | undefined;
34640
34955
  } & {
34641
34956
  "onUpdate:month"?: ((date: any) => any) | undefined;
34642
34957
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
34643
34958
  "onUpdate:year"?: ((date: any) => any) | undefined;
34644
- }, "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<{
34959
+ }, "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<{
34645
34960
  modelValue?: Date | (Date | null)[] | null | undefined;
34646
34961
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
34647
34962
  multiple?: false | "range" | undefined;
@@ -36643,6 +36958,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36643
36958
  hideHeader: boolean;
36644
36959
  hideTitle: boolean;
36645
36960
  active: string | string[];
36961
+ controlVariant: "docked" | "modal";
36962
+ noMonthPicker: boolean;
36646
36963
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36647
36964
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36648
36965
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36657,7 +36974,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36657
36974
  showWeek: boolean;
36658
36975
  transition: string;
36659
36976
  reverseTransition: string;
36977
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
36978
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36660
36979
  header: string;
36980
+ headerDateFormat: string;
36661
36981
  }> & Omit<{
36662
36982
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
36663
36983
  tile: boolean;
@@ -36667,6 +36987,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36667
36987
  title: string;
36668
36988
  hideHeader: boolean;
36669
36989
  hideTitle: boolean;
36990
+ controlVariant: "docked" | "modal";
36991
+ noMonthPicker: boolean;
36670
36992
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36671
36993
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36672
36994
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36679,7 +37001,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36679
37001
  showWeek: boolean;
36680
37002
  transition: string;
36681
37003
  reverseTransition: string;
37004
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
37005
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36682
37006
  header: string;
37007
+ headerDateFormat: string;
36683
37008
  theme?: string | undefined;
36684
37009
  class?: any;
36685
37010
  border?: string | number | boolean | undefined;
@@ -36698,6 +37023,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36698
37023
  active?: string | string[] | undefined;
36699
37024
  controlHeight?: string | number | undefined;
36700
37025
  text?: string | undefined;
37026
+ monthText?: string | undefined;
37027
+ yearText?: string | undefined;
36701
37028
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
36702
37029
  month?: string | number | undefined;
36703
37030
  firstDayOfWeek?: string | number | undefined;
@@ -36709,10 +37036,11 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36709
37036
  max?: unknown;
36710
37037
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
36711
37038
  headerColor?: string | undefined;
37039
+ landscapeHeaderWidth?: string | number | undefined;
36712
37040
  "onUpdate:month"?: ((date: any) => any) | undefined;
36713
37041
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
36714
37042
  "onUpdate:year"?: ((date: any) => any) | undefined;
36715
- } & 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">;
37043
+ } & 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">;
36716
37044
  $attrs: {
36717
37045
  [x: string]: unknown;
36718
37046
  };
@@ -36776,6 +37104,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36776
37104
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
36777
37105
  [key: string]: any;
36778
37106
  }>[]) | undefined;
37107
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
37108
+ [key: string]: any;
37109
+ }>[]) | undefined;
36779
37110
  }>;
36780
37111
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
36781
37112
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -36791,6 +37122,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36791
37122
  title: string;
36792
37123
  hideHeader: boolean;
36793
37124
  hideTitle: boolean;
37125
+ controlVariant: "docked" | "modal";
37126
+ noMonthPicker: boolean;
36794
37127
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36795
37128
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36796
37129
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36803,7 +37136,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36803
37136
  showWeek: boolean;
36804
37137
  transition: string;
36805
37138
  reverseTransition: string;
37139
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
37140
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36806
37141
  header: string;
37142
+ headerDateFormat: string;
36807
37143
  } & {
36808
37144
  theme?: string | undefined;
36809
37145
  class?: any;
@@ -36823,6 +37159,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36823
37159
  active?: string | string[] | undefined;
36824
37160
  controlHeight?: string | number | undefined;
36825
37161
  text?: string | undefined;
37162
+ monthText?: string | undefined;
37163
+ yearText?: string | undefined;
36826
37164
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
36827
37165
  month?: string | number | undefined;
36828
37166
  firstDayOfWeek?: string | number | undefined;
@@ -36834,6 +37172,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36834
37172
  max?: unknown;
36835
37173
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
36836
37174
  headerColor?: string | undefined;
37175
+ landscapeHeaderWidth?: string | number | undefined;
36837
37176
  } & {
36838
37177
  "onUpdate:month"?: ((date: any) => any) | undefined;
36839
37178
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -36843,7 +37182,7 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36843
37182
  "update:month": (date: any) => true;
36844
37183
  "update:year": (date: any) => true;
36845
37184
  "update:viewMode": (date: any) => true;
36846
- }, "$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, {
37185
+ }, "$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, {
36847
37186
  style: import('vue').StyleValue;
36848
37187
  rounded: string | number | boolean;
36849
37188
  tile: boolean;
@@ -36854,6 +37193,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36854
37193
  hideHeader: boolean;
36855
37194
  hideTitle: boolean;
36856
37195
  active: string | string[];
37196
+ controlVariant: "docked" | "modal";
37197
+ noMonthPicker: boolean;
36857
37198
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36858
37199
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36859
37200
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36868,7 +37209,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36868
37209
  showWeek: boolean;
36869
37210
  transition: string;
36870
37211
  reverseTransition: string;
37212
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
37213
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36871
37214
  header: string;
37215
+ headerDateFormat: string;
36872
37216
  }, {}, string, import('vue').SlotsType<Partial<{
36873
37217
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
36874
37218
  [key: string]: any;
@@ -36926,6 +37270,9 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36926
37270
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
36927
37271
  [key: string]: any;
36928
37272
  }>[];
37273
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
37274
+ [key: string]: any;
37275
+ }>[];
36929
37276
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
36930
37277
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
36931
37278
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -36957,6 +37304,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36957
37304
  hideHeader: boolean;
36958
37305
  hideTitle: boolean;
36959
37306
  active: string | string[];
37307
+ controlVariant: "docked" | "modal";
37308
+ noMonthPicker: boolean;
36960
37309
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36961
37310
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36962
37311
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36971,7 +37320,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36971
37320
  showWeek: boolean;
36972
37321
  transition: string;
36973
37322
  reverseTransition: string;
37323
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
37324
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36974
37325
  header: string;
37326
+ headerDateFormat: string;
36975
37327
  }> & Omit<{
36976
37328
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
36977
37329
  tile: boolean;
@@ -36981,6 +37333,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36981
37333
  title: string;
36982
37334
  hideHeader: boolean;
36983
37335
  hideTitle: boolean;
37336
+ controlVariant: "docked" | "modal";
37337
+ noMonthPicker: boolean;
36984
37338
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36985
37339
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
36986
37340
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -36993,7 +37347,10 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
36993
37347
  showWeek: boolean;
36994
37348
  transition: string;
36995
37349
  reverseTransition: string;
37350
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
37351
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
36996
37352
  header: string;
37353
+ headerDateFormat: string;
36997
37354
  } & {
36998
37355
  theme?: string | undefined;
36999
37356
  class?: any;
@@ -37013,6 +37370,8 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
37013
37370
  active?: string | string[] | undefined;
37014
37371
  controlHeight?: string | number | undefined;
37015
37372
  text?: string | undefined;
37373
+ monthText?: string | undefined;
37374
+ yearText?: string | undefined;
37016
37375
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
37017
37376
  month?: string | number | undefined;
37018
37377
  firstDayOfWeek?: string | number | undefined;
@@ -37024,11 +37383,12 @@ export declare function mountCalendarMode(props?: Record<string, unknown>): impo
37024
37383
  max?: unknown;
37025
37384
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
37026
37385
  headerColor?: string | undefined;
37386
+ landscapeHeaderWidth?: string | number | undefined;
37027
37387
  } & {
37028
37388
  "onUpdate:month"?: ((date: any) => any) | undefined;
37029
37389
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
37030
37390
  "onUpdate:year"?: ((date: any) => any) | undefined;
37031
- }, "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<{
37391
+ }, "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<{
37032
37392
  modelValue?: Date | Date[] | null | undefined;
37033
37393
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
37034
37394
  multiple?: false | "range" | undefined;
@@ -43591,6 +43951,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43591
43951
  hideHeader: boolean;
43592
43952
  hideTitle: boolean;
43593
43953
  active: string | string[];
43954
+ controlVariant: "docked" | "modal";
43955
+ noMonthPicker: boolean;
43594
43956
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43595
43957
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43596
43958
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43605,7 +43967,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43605
43967
  showWeek: boolean;
43606
43968
  transition: string;
43607
43969
  reverseTransition: string;
43970
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
43971
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43608
43972
  header: string;
43973
+ headerDateFormat: string;
43609
43974
  }> & Omit<{
43610
43975
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
43611
43976
  tile: boolean;
@@ -43615,6 +43980,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43615
43980
  title: string;
43616
43981
  hideHeader: boolean;
43617
43982
  hideTitle: boolean;
43983
+ controlVariant: "docked" | "modal";
43984
+ noMonthPicker: boolean;
43618
43985
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43619
43986
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43620
43987
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43627,7 +43994,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43627
43994
  showWeek: boolean;
43628
43995
  transition: string;
43629
43996
  reverseTransition: string;
43997
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
43998
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43630
43999
  header: string;
44000
+ headerDateFormat: string;
43631
44001
  theme?: string | undefined;
43632
44002
  class?: any;
43633
44003
  border?: string | number | boolean | undefined;
@@ -43646,6 +44016,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43646
44016
  active?: string | string[] | undefined;
43647
44017
  controlHeight?: string | number | undefined;
43648
44018
  text?: string | undefined;
44019
+ monthText?: string | undefined;
44020
+ yearText?: string | undefined;
43649
44021
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43650
44022
  month?: string | number | undefined;
43651
44023
  firstDayOfWeek?: string | number | undefined;
@@ -43657,10 +44029,11 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43657
44029
  max?: unknown;
43658
44030
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
43659
44031
  headerColor?: string | undefined;
44032
+ landscapeHeaderWidth?: string | number | undefined;
43660
44033
  "onUpdate:month"?: ((date: any) => any) | undefined;
43661
44034
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
43662
44035
  "onUpdate:year"?: ((date: any) => any) | undefined;
43663
- } & 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">;
44036
+ } & 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">;
43664
44037
  $attrs: {
43665
44038
  [x: string]: unknown;
43666
44039
  };
@@ -43724,6 +44097,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43724
44097
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
43725
44098
  [key: string]: any;
43726
44099
  }>[]) | undefined;
44100
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
44101
+ [key: string]: any;
44102
+ }>[]) | undefined;
43727
44103
  }>;
43728
44104
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
43729
44105
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -43739,6 +44115,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43739
44115
  title: string;
43740
44116
  hideHeader: boolean;
43741
44117
  hideTitle: boolean;
44118
+ controlVariant: "docked" | "modal";
44119
+ noMonthPicker: boolean;
43742
44120
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43743
44121
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43744
44122
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43751,7 +44129,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43751
44129
  showWeek: boolean;
43752
44130
  transition: string;
43753
44131
  reverseTransition: string;
44132
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
44133
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43754
44134
  header: string;
44135
+ headerDateFormat: string;
43755
44136
  } & {
43756
44137
  theme?: string | undefined;
43757
44138
  class?: any;
@@ -43771,6 +44152,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43771
44152
  active?: string | string[] | undefined;
43772
44153
  controlHeight?: string | number | undefined;
43773
44154
  text?: string | undefined;
44155
+ monthText?: string | undefined;
44156
+ yearText?: string | undefined;
43774
44157
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43775
44158
  month?: string | number | undefined;
43776
44159
  firstDayOfWeek?: string | number | undefined;
@@ -43782,6 +44165,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43782
44165
  max?: unknown;
43783
44166
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
43784
44167
  headerColor?: string | undefined;
44168
+ landscapeHeaderWidth?: string | number | undefined;
43785
44169
  } & {
43786
44170
  "onUpdate:month"?: ((date: any) => any) | undefined;
43787
44171
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -43791,7 +44175,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43791
44175
  "update:month": (date: any) => true;
43792
44176
  "update:year": (date: any) => true;
43793
44177
  "update:viewMode": (date: any) => true;
43794
- }, "$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, {
44178
+ }, "$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, {
43795
44179
  style: import('vue').StyleValue;
43796
44180
  rounded: string | number | boolean;
43797
44181
  tile: boolean;
@@ -43802,6 +44186,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43802
44186
  hideHeader: boolean;
43803
44187
  hideTitle: boolean;
43804
44188
  active: string | string[];
44189
+ controlVariant: "docked" | "modal";
44190
+ noMonthPicker: boolean;
43805
44191
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43806
44192
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43807
44193
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43816,7 +44202,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43816
44202
  showWeek: boolean;
43817
44203
  transition: string;
43818
44204
  reverseTransition: string;
44205
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
44206
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43819
44207
  header: string;
44208
+ headerDateFormat: string;
43820
44209
  }, {}, string, import('vue').SlotsType<Partial<{
43821
44210
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
43822
44211
  [key: string]: any;
@@ -43874,6 +44263,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43874
44263
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
43875
44264
  [key: string]: any;
43876
44265
  }>[];
44266
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
44267
+ [key: string]: any;
44268
+ }>[];
43877
44269
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
43878
44270
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
43879
44271
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -43905,6 +44297,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43905
44297
  hideHeader: boolean;
43906
44298
  hideTitle: boolean;
43907
44299
  active: string | string[];
44300
+ controlVariant: "docked" | "modal";
44301
+ noMonthPicker: boolean;
43908
44302
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43909
44303
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43910
44304
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43919,7 +44313,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43919
44313
  showWeek: boolean;
43920
44314
  transition: string;
43921
44315
  reverseTransition: string;
44316
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
44317
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43922
44318
  header: string;
44319
+ headerDateFormat: string;
43923
44320
  }> & Omit<{
43924
44321
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
43925
44322
  tile: boolean;
@@ -43929,6 +44326,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43929
44326
  title: string;
43930
44327
  hideHeader: boolean;
43931
44328
  hideTitle: boolean;
44329
+ controlVariant: "docked" | "modal";
44330
+ noMonthPicker: boolean;
43932
44331
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43933
44332
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
43934
44333
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -43941,7 +44340,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43941
44340
  showWeek: boolean;
43942
44341
  transition: string;
43943
44342
  reverseTransition: string;
44343
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
44344
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
43944
44345
  header: string;
44346
+ headerDateFormat: string;
43945
44347
  } & {
43946
44348
  theme?: string | undefined;
43947
44349
  class?: any;
@@ -43961,6 +44363,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43961
44363
  active?: string | string[] | undefined;
43962
44364
  controlHeight?: string | number | undefined;
43963
44365
  text?: string | undefined;
44366
+ monthText?: string | undefined;
44367
+ yearText?: string | undefined;
43964
44368
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43965
44369
  month?: string | number | undefined;
43966
44370
  firstDayOfWeek?: string | number | undefined;
@@ -43972,11 +44376,12 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
43972
44376
  max?: unknown;
43973
44377
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
43974
44378
  headerColor?: string | undefined;
44379
+ landscapeHeaderWidth?: string | number | undefined;
43975
44380
  } & {
43976
44381
  "onUpdate:month"?: ((date: any) => any) | undefined;
43977
44382
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
43978
44383
  "onUpdate:year"?: ((date: any) => any) | undefined;
43979
- }, "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<{
44384
+ }, "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<{
43980
44385
  modelValue?: Date | (Date | null)[] | null | undefined;
43981
44386
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
43982
44387
  multiple?: false | "range" | undefined;
@@ -45978,6 +46383,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
45978
46383
  hideHeader: boolean;
45979
46384
  hideTitle: boolean;
45980
46385
  active: string | string[];
46386
+ controlVariant: "docked" | "modal";
46387
+ noMonthPicker: boolean;
45981
46388
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
45982
46389
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
45983
46390
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -45992,7 +46399,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
45992
46399
  showWeek: boolean;
45993
46400
  transition: string;
45994
46401
  reverseTransition: string;
46402
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46403
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
45995
46404
  header: string;
46405
+ headerDateFormat: string;
45996
46406
  }> & Omit<{
45997
46407
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
45998
46408
  tile: boolean;
@@ -46002,6 +46412,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46002
46412
  title: string;
46003
46413
  hideHeader: boolean;
46004
46414
  hideTitle: boolean;
46415
+ controlVariant: "docked" | "modal";
46416
+ noMonthPicker: boolean;
46005
46417
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46006
46418
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46007
46419
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -46014,7 +46426,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46014
46426
  showWeek: boolean;
46015
46427
  transition: string;
46016
46428
  reverseTransition: string;
46429
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46430
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
46017
46431
  header: string;
46432
+ headerDateFormat: string;
46018
46433
  theme?: string | undefined;
46019
46434
  class?: any;
46020
46435
  border?: string | number | boolean | undefined;
@@ -46033,6 +46448,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46033
46448
  active?: string | string[] | undefined;
46034
46449
  controlHeight?: string | number | undefined;
46035
46450
  text?: string | undefined;
46451
+ monthText?: string | undefined;
46452
+ yearText?: string | undefined;
46036
46453
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
46037
46454
  month?: string | number | undefined;
46038
46455
  firstDayOfWeek?: string | number | undefined;
@@ -46044,10 +46461,11 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46044
46461
  max?: unknown;
46045
46462
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
46046
46463
  headerColor?: string | undefined;
46464
+ landscapeHeaderWidth?: string | number | undefined;
46047
46465
  "onUpdate:month"?: ((date: any) => any) | undefined;
46048
46466
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
46049
46467
  "onUpdate:year"?: ((date: any) => any) | undefined;
46050
- } & 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">;
46468
+ } & 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">;
46051
46469
  $attrs: {
46052
46470
  [x: string]: unknown;
46053
46471
  };
@@ -46111,6 +46529,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46111
46529
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
46112
46530
  [key: string]: any;
46113
46531
  }>[]) | undefined;
46532
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
46533
+ [key: string]: any;
46534
+ }>[]) | undefined;
46114
46535
  }>;
46115
46536
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
46116
46537
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -46126,6 +46547,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46126
46547
  title: string;
46127
46548
  hideHeader: boolean;
46128
46549
  hideTitle: boolean;
46550
+ controlVariant: "docked" | "modal";
46551
+ noMonthPicker: boolean;
46129
46552
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46130
46553
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46131
46554
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -46138,7 +46561,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46138
46561
  showWeek: boolean;
46139
46562
  transition: string;
46140
46563
  reverseTransition: string;
46564
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46565
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
46141
46566
  header: string;
46567
+ headerDateFormat: string;
46142
46568
  } & {
46143
46569
  theme?: string | undefined;
46144
46570
  class?: any;
@@ -46158,6 +46584,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46158
46584
  active?: string | string[] | undefined;
46159
46585
  controlHeight?: string | number | undefined;
46160
46586
  text?: string | undefined;
46587
+ monthText?: string | undefined;
46588
+ yearText?: string | undefined;
46161
46589
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
46162
46590
  month?: string | number | undefined;
46163
46591
  firstDayOfWeek?: string | number | undefined;
@@ -46169,6 +46597,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46169
46597
  max?: unknown;
46170
46598
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
46171
46599
  headerColor?: string | undefined;
46600
+ landscapeHeaderWidth?: string | number | undefined;
46172
46601
  } & {
46173
46602
  "onUpdate:month"?: ((date: any) => any) | undefined;
46174
46603
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -46178,7 +46607,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46178
46607
  "update:month": (date: any) => true;
46179
46608
  "update:year": (date: any) => true;
46180
46609
  "update:viewMode": (date: any) => true;
46181
- }, "$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, {
46610
+ }, "$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, {
46182
46611
  style: import('vue').StyleValue;
46183
46612
  rounded: string | number | boolean;
46184
46613
  tile: boolean;
@@ -46189,6 +46618,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46189
46618
  hideHeader: boolean;
46190
46619
  hideTitle: boolean;
46191
46620
  active: string | string[];
46621
+ controlVariant: "docked" | "modal";
46622
+ noMonthPicker: boolean;
46192
46623
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46193
46624
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46194
46625
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -46203,7 +46634,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46203
46634
  showWeek: boolean;
46204
46635
  transition: string;
46205
46636
  reverseTransition: string;
46637
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46638
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
46206
46639
  header: string;
46640
+ headerDateFormat: string;
46207
46641
  }, {}, string, import('vue').SlotsType<Partial<{
46208
46642
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
46209
46643
  [key: string]: any;
@@ -46261,6 +46695,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46261
46695
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
46262
46696
  [key: string]: any;
46263
46697
  }>[];
46698
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
46699
+ [key: string]: any;
46700
+ }>[];
46264
46701
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
46265
46702
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
46266
46703
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -46292,6 +46729,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46292
46729
  hideHeader: boolean;
46293
46730
  hideTitle: boolean;
46294
46731
  active: string | string[];
46732
+ controlVariant: "docked" | "modal";
46733
+ noMonthPicker: boolean;
46295
46734
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46296
46735
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46297
46736
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -46306,7 +46745,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46306
46745
  showWeek: boolean;
46307
46746
  transition: string;
46308
46747
  reverseTransition: string;
46748
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46749
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
46309
46750
  header: string;
46751
+ headerDateFormat: string;
46310
46752
  }> & Omit<{
46311
46753
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
46312
46754
  tile: boolean;
@@ -46316,6 +46758,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46316
46758
  title: string;
46317
46759
  hideHeader: boolean;
46318
46760
  hideTitle: boolean;
46761
+ controlVariant: "docked" | "modal";
46762
+ noMonthPicker: boolean;
46319
46763
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46320
46764
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
46321
46765
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -46328,7 +46772,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46328
46772
  showWeek: boolean;
46329
46773
  transition: string;
46330
46774
  reverseTransition: string;
46775
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
46776
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
46331
46777
  header: string;
46778
+ headerDateFormat: string;
46332
46779
  } & {
46333
46780
  theme?: string | undefined;
46334
46781
  class?: any;
@@ -46348,6 +46795,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46348
46795
  active?: string | string[] | undefined;
46349
46796
  controlHeight?: string | number | undefined;
46350
46797
  text?: string | undefined;
46798
+ monthText?: string | undefined;
46799
+ yearText?: string | undefined;
46351
46800
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
46352
46801
  month?: string | number | undefined;
46353
46802
  firstDayOfWeek?: string | number | undefined;
@@ -46359,11 +46808,12 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
46359
46808
  max?: unknown;
46360
46809
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
46361
46810
  headerColor?: string | undefined;
46811
+ landscapeHeaderWidth?: string | number | undefined;
46362
46812
  } & {
46363
46813
  "onUpdate:month"?: ((date: any) => any) | undefined;
46364
46814
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
46365
46815
  "onUpdate:year"?: ((date: any) => any) | undefined;
46366
- }, "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<{
46816
+ }, "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<{
46367
46817
  modelValue?: Date | Date[] | null | undefined;
46368
46818
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
46369
46819
  multiple?: false | "range" | undefined;
@@ -52871,6 +53321,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52871
53321
  hideHeader: boolean;
52872
53322
  hideTitle: boolean;
52873
53323
  active: string | string[];
53324
+ controlVariant: "docked" | "modal";
53325
+ noMonthPicker: boolean;
52874
53326
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
52875
53327
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
52876
53328
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -52885,7 +53337,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52885
53337
  showWeek: boolean;
52886
53338
  transition: string;
52887
53339
  reverseTransition: string;
53340
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53341
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
52888
53342
  header: string;
53343
+ headerDateFormat: string;
52889
53344
  }> & Omit<{
52890
53345
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
52891
53346
  tile: boolean;
@@ -52895,6 +53350,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52895
53350
  title: string;
52896
53351
  hideHeader: boolean;
52897
53352
  hideTitle: boolean;
53353
+ controlVariant: "docked" | "modal";
53354
+ noMonthPicker: boolean;
52898
53355
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
52899
53356
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
52900
53357
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -52907,7 +53364,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52907
53364
  showWeek: boolean;
52908
53365
  transition: string;
52909
53366
  reverseTransition: string;
53367
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53368
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
52910
53369
  header: string;
53370
+ headerDateFormat: string;
52911
53371
  theme?: string | undefined;
52912
53372
  class?: any;
52913
53373
  border?: string | number | boolean | undefined;
@@ -52926,6 +53386,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52926
53386
  active?: string | string[] | undefined;
52927
53387
  controlHeight?: string | number | undefined;
52928
53388
  text?: string | undefined;
53389
+ monthText?: string | undefined;
53390
+ yearText?: string | undefined;
52929
53391
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
52930
53392
  month?: string | number | undefined;
52931
53393
  firstDayOfWeek?: string | number | undefined;
@@ -52937,10 +53399,11 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
52937
53399
  max?: unknown;
52938
53400
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
52939
53401
  headerColor?: string | undefined;
53402
+ landscapeHeaderWidth?: string | number | undefined;
52940
53403
  "onUpdate:month"?: ((date: any) => any) | undefined;
52941
53404
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
52942
53405
  "onUpdate:year"?: ((date: any) => any) | undefined;
52943
- } & 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">;
53406
+ } & 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">;
52944
53407
  $attrs: {
52945
53408
  [x: string]: unknown;
52946
53409
  };
@@ -53004,6 +53467,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53004
53467
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
53005
53468
  [key: string]: any;
53006
53469
  }>[]) | undefined;
53470
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
53471
+ [key: string]: any;
53472
+ }>[]) | undefined;
53007
53473
  }>;
53008
53474
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
53009
53475
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -53019,6 +53485,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53019
53485
  title: string;
53020
53486
  hideHeader: boolean;
53021
53487
  hideTitle: boolean;
53488
+ controlVariant: "docked" | "modal";
53489
+ noMonthPicker: boolean;
53022
53490
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53023
53491
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53024
53492
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -53031,7 +53499,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53031
53499
  showWeek: boolean;
53032
53500
  transition: string;
53033
53501
  reverseTransition: string;
53502
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53503
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
53034
53504
  header: string;
53505
+ headerDateFormat: string;
53035
53506
  } & {
53036
53507
  theme?: string | undefined;
53037
53508
  class?: any;
@@ -53051,6 +53522,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53051
53522
  active?: string | string[] | undefined;
53052
53523
  controlHeight?: string | number | undefined;
53053
53524
  text?: string | undefined;
53525
+ monthText?: string | undefined;
53526
+ yearText?: string | undefined;
53054
53527
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
53055
53528
  month?: string | number | undefined;
53056
53529
  firstDayOfWeek?: string | number | undefined;
@@ -53062,6 +53535,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53062
53535
  max?: unknown;
53063
53536
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
53064
53537
  headerColor?: string | undefined;
53538
+ landscapeHeaderWidth?: string | number | undefined;
53065
53539
  } & {
53066
53540
  "onUpdate:month"?: ((date: any) => any) | undefined;
53067
53541
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -53071,7 +53545,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53071
53545
  "update:month": (date: any) => true;
53072
53546
  "update:year": (date: any) => true;
53073
53547
  "update:viewMode": (date: any) => true;
53074
- }, "$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, {
53548
+ }, "$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, {
53075
53549
  style: import('vue').StyleValue;
53076
53550
  rounded: string | number | boolean;
53077
53551
  tile: boolean;
@@ -53082,6 +53556,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53082
53556
  hideHeader: boolean;
53083
53557
  hideTitle: boolean;
53084
53558
  active: string | string[];
53559
+ controlVariant: "docked" | "modal";
53560
+ noMonthPicker: boolean;
53085
53561
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53086
53562
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53087
53563
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -53096,7 +53572,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53096
53572
  showWeek: boolean;
53097
53573
  transition: string;
53098
53574
  reverseTransition: string;
53575
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53576
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
53099
53577
  header: string;
53578
+ headerDateFormat: string;
53100
53579
  }, {}, string, import('vue').SlotsType<Partial<{
53101
53580
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
53102
53581
  [key: string]: any;
@@ -53154,6 +53633,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53154
53633
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
53155
53634
  [key: string]: any;
53156
53635
  }>[];
53636
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
53637
+ [key: string]: any;
53638
+ }>[];
53157
53639
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
53158
53640
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53159
53641
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -53185,6 +53667,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53185
53667
  hideHeader: boolean;
53186
53668
  hideTitle: boolean;
53187
53669
  active: string | string[];
53670
+ controlVariant: "docked" | "modal";
53671
+ noMonthPicker: boolean;
53188
53672
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53189
53673
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53190
53674
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -53199,7 +53683,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53199
53683
  showWeek: boolean;
53200
53684
  transition: string;
53201
53685
  reverseTransition: string;
53686
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53687
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
53202
53688
  header: string;
53689
+ headerDateFormat: string;
53203
53690
  }> & Omit<{
53204
53691
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
53205
53692
  tile: boolean;
@@ -53209,6 +53696,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53209
53696
  title: string;
53210
53697
  hideHeader: boolean;
53211
53698
  hideTitle: boolean;
53699
+ controlVariant: "docked" | "modal";
53700
+ noMonthPicker: boolean;
53212
53701
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53213
53702
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
53214
53703
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -53221,7 +53710,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53221
53710
  showWeek: boolean;
53222
53711
  transition: string;
53223
53712
  reverseTransition: string;
53713
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
53714
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
53224
53715
  header: string;
53716
+ headerDateFormat: string;
53225
53717
  } & {
53226
53718
  theme?: string | undefined;
53227
53719
  class?: any;
@@ -53241,6 +53733,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53241
53733
  active?: string | string[] | undefined;
53242
53734
  controlHeight?: string | number | undefined;
53243
53735
  text?: string | undefined;
53736
+ monthText?: string | undefined;
53737
+ yearText?: string | undefined;
53244
53738
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
53245
53739
  month?: string | number | undefined;
53246
53740
  firstDayOfWeek?: string | number | undefined;
@@ -53252,11 +53746,12 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
53252
53746
  max?: unknown;
53253
53747
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
53254
53748
  headerColor?: string | undefined;
53749
+ landscapeHeaderWidth?: string | number | undefined;
53255
53750
  } & {
53256
53751
  "onUpdate:month"?: ((date: any) => any) | undefined;
53257
53752
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
53258
53753
  "onUpdate:year"?: ((date: any) => any) | undefined;
53259
- }, "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<{
53754
+ }, "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<{
53260
53755
  modelValue?: Date | (Date | null)[] | null | undefined;
53261
53756
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
53262
53757
  multiple?: false | "range" | undefined;
@@ -55258,6 +55753,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55258
55753
  hideHeader: boolean;
55259
55754
  hideTitle: boolean;
55260
55755
  active: string | string[];
55756
+ controlVariant: "docked" | "modal";
55757
+ noMonthPicker: boolean;
55261
55758
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55262
55759
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55263
55760
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55272,7 +55769,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55272
55769
  showWeek: boolean;
55273
55770
  transition: string;
55274
55771
  reverseTransition: string;
55772
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
55773
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55275
55774
  header: string;
55775
+ headerDateFormat: string;
55276
55776
  }> & Omit<{
55277
55777
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
55278
55778
  tile: boolean;
@@ -55282,6 +55782,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55282
55782
  title: string;
55283
55783
  hideHeader: boolean;
55284
55784
  hideTitle: boolean;
55785
+ controlVariant: "docked" | "modal";
55786
+ noMonthPicker: boolean;
55285
55787
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55286
55788
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55287
55789
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55294,7 +55796,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55294
55796
  showWeek: boolean;
55295
55797
  transition: string;
55296
55798
  reverseTransition: string;
55799
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
55800
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55297
55801
  header: string;
55802
+ headerDateFormat: string;
55298
55803
  theme?: string | undefined;
55299
55804
  class?: any;
55300
55805
  border?: string | number | boolean | undefined;
@@ -55313,6 +55818,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55313
55818
  active?: string | string[] | undefined;
55314
55819
  controlHeight?: string | number | undefined;
55315
55820
  text?: string | undefined;
55821
+ monthText?: string | undefined;
55822
+ yearText?: string | undefined;
55316
55823
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
55317
55824
  month?: string | number | undefined;
55318
55825
  firstDayOfWeek?: string | number | undefined;
@@ -55324,10 +55831,11 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55324
55831
  max?: unknown;
55325
55832
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
55326
55833
  headerColor?: string | undefined;
55834
+ landscapeHeaderWidth?: string | number | undefined;
55327
55835
  "onUpdate:month"?: ((date: any) => any) | undefined;
55328
55836
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
55329
55837
  "onUpdate:year"?: ((date: any) => any) | undefined;
55330
- } & 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">;
55838
+ } & 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">;
55331
55839
  $attrs: {
55332
55840
  [x: string]: unknown;
55333
55841
  };
@@ -55391,6 +55899,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55391
55899
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
55392
55900
  [key: string]: any;
55393
55901
  }>[]) | undefined;
55902
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
55903
+ [key: string]: any;
55904
+ }>[]) | undefined;
55394
55905
  }>;
55395
55906
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
55396
55907
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -55406,6 +55917,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55406
55917
  title: string;
55407
55918
  hideHeader: boolean;
55408
55919
  hideTitle: boolean;
55920
+ controlVariant: "docked" | "modal";
55921
+ noMonthPicker: boolean;
55409
55922
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55410
55923
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55411
55924
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55418,7 +55931,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55418
55931
  showWeek: boolean;
55419
55932
  transition: string;
55420
55933
  reverseTransition: string;
55934
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
55935
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55421
55936
  header: string;
55937
+ headerDateFormat: string;
55422
55938
  } & {
55423
55939
  theme?: string | undefined;
55424
55940
  class?: any;
@@ -55438,6 +55954,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55438
55954
  active?: string | string[] | undefined;
55439
55955
  controlHeight?: string | number | undefined;
55440
55956
  text?: string | undefined;
55957
+ monthText?: string | undefined;
55958
+ yearText?: string | undefined;
55441
55959
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
55442
55960
  month?: string | number | undefined;
55443
55961
  firstDayOfWeek?: string | number | undefined;
@@ -55449,6 +55967,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55449
55967
  max?: unknown;
55450
55968
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
55451
55969
  headerColor?: string | undefined;
55970
+ landscapeHeaderWidth?: string | number | undefined;
55452
55971
  } & {
55453
55972
  "onUpdate:month"?: ((date: any) => any) | undefined;
55454
55973
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -55458,7 +55977,7 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55458
55977
  "update:month": (date: any) => true;
55459
55978
  "update:year": (date: any) => true;
55460
55979
  "update:viewMode": (date: any) => true;
55461
- }, "$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, {
55980
+ }, "$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, {
55462
55981
  style: import('vue').StyleValue;
55463
55982
  rounded: string | number | boolean;
55464
55983
  tile: boolean;
@@ -55469,6 +55988,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55469
55988
  hideHeader: boolean;
55470
55989
  hideTitle: boolean;
55471
55990
  active: string | string[];
55991
+ controlVariant: "docked" | "modal";
55992
+ noMonthPicker: boolean;
55472
55993
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55473
55994
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55474
55995
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55483,7 +56004,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55483
56004
  showWeek: boolean;
55484
56005
  transition: string;
55485
56006
  reverseTransition: string;
56007
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
56008
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55486
56009
  header: string;
56010
+ headerDateFormat: string;
55487
56011
  }, {}, string, import('vue').SlotsType<Partial<{
55488
56012
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
55489
56013
  [key: string]: any;
@@ -55541,6 +56065,9 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55541
56065
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
55542
56066
  [key: string]: any;
55543
56067
  }>[];
56068
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
56069
+ [key: string]: any;
56070
+ }>[];
55544
56071
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
55545
56072
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
55546
56073
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -55572,6 +56099,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55572
56099
  hideHeader: boolean;
55573
56100
  hideTitle: boolean;
55574
56101
  active: string | string[];
56102
+ controlVariant: "docked" | "modal";
56103
+ noMonthPicker: boolean;
55575
56104
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55576
56105
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55577
56106
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55586,7 +56115,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55586
56115
  showWeek: boolean;
55587
56116
  transition: string;
55588
56117
  reverseTransition: string;
56118
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
56119
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55589
56120
  header: string;
56121
+ headerDateFormat: string;
55590
56122
  }> & Omit<{
55591
56123
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
55592
56124
  tile: boolean;
@@ -55596,6 +56128,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55596
56128
  title: string;
55597
56129
  hideHeader: boolean;
55598
56130
  hideTitle: boolean;
56131
+ controlVariant: "docked" | "modal";
56132
+ noMonthPicker: boolean;
55599
56133
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55600
56134
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
55601
56135
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -55608,7 +56142,10 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55608
56142
  showWeek: boolean;
55609
56143
  transition: string;
55610
56144
  reverseTransition: string;
56145
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
56146
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
55611
56147
  header: string;
56148
+ headerDateFormat: string;
55612
56149
  } & {
55613
56150
  theme?: string | undefined;
55614
56151
  class?: any;
@@ -55628,6 +56165,8 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55628
56165
  active?: string | string[] | undefined;
55629
56166
  controlHeight?: string | number | undefined;
55630
56167
  text?: string | undefined;
56168
+ monthText?: string | undefined;
56169
+ yearText?: string | undefined;
55631
56170
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
55632
56171
  month?: string | number | undefined;
55633
56172
  firstDayOfWeek?: string | number | undefined;
@@ -55639,11 +56178,12 @@ export declare function mountCombinedMode(props?: Record<string, unknown>): impo
55639
56178
  max?: unknown;
55640
56179
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
55641
56180
  headerColor?: string | undefined;
56181
+ landscapeHeaderWidth?: string | number | undefined;
55642
56182
  } & {
55643
56183
  "onUpdate:month"?: ((date: any) => any) | undefined;
55644
56184
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
55645
56185
  "onUpdate:year"?: ((date: any) => any) | undefined;
55646
- }, "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<{
56186
+ }, "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<{
55647
56187
  modelValue?: Date | Date[] | null | undefined;
55648
56188
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
55649
56189
  multiple?: false | "range" | undefined;
@@ -62206,6 +62746,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62206
62746
  hideHeader: boolean;
62207
62747
  hideTitle: boolean;
62208
62748
  active: string | string[];
62749
+ controlVariant: "docked" | "modal";
62750
+ noMonthPicker: boolean;
62209
62751
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62210
62752
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62211
62753
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62220,7 +62762,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62220
62762
  showWeek: boolean;
62221
62763
  transition: string;
62222
62764
  reverseTransition: string;
62765
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
62766
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62223
62767
  header: string;
62768
+ headerDateFormat: string;
62224
62769
  }> & Omit<{
62225
62770
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
62226
62771
  tile: boolean;
@@ -62230,6 +62775,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62230
62775
  title: string;
62231
62776
  hideHeader: boolean;
62232
62777
  hideTitle: boolean;
62778
+ controlVariant: "docked" | "modal";
62779
+ noMonthPicker: boolean;
62233
62780
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62234
62781
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62235
62782
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62242,7 +62789,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62242
62789
  showWeek: boolean;
62243
62790
  transition: string;
62244
62791
  reverseTransition: string;
62792
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
62793
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62245
62794
  header: string;
62795
+ headerDateFormat: string;
62246
62796
  theme?: string | undefined;
62247
62797
  class?: any;
62248
62798
  border?: string | number | boolean | undefined;
@@ -62261,6 +62811,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62261
62811
  active?: string | string[] | undefined;
62262
62812
  controlHeight?: string | number | undefined;
62263
62813
  text?: string | undefined;
62814
+ monthText?: string | undefined;
62815
+ yearText?: string | undefined;
62264
62816
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
62265
62817
  month?: string | number | undefined;
62266
62818
  firstDayOfWeek?: string | number | undefined;
@@ -62272,10 +62824,11 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62272
62824
  max?: unknown;
62273
62825
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
62274
62826
  headerColor?: string | undefined;
62827
+ landscapeHeaderWidth?: string | number | undefined;
62275
62828
  "onUpdate:month"?: ((date: any) => any) | undefined;
62276
62829
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
62277
62830
  "onUpdate:year"?: ((date: any) => any) | undefined;
62278
- } & 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">;
62831
+ } & 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">;
62279
62832
  $attrs: {
62280
62833
  [x: string]: unknown;
62281
62834
  };
@@ -62339,6 +62892,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62339
62892
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
62340
62893
  [key: string]: any;
62341
62894
  }>[]) | undefined;
62895
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
62896
+ [key: string]: any;
62897
+ }>[]) | undefined;
62342
62898
  }>;
62343
62899
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
62344
62900
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -62354,6 +62910,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62354
62910
  title: string;
62355
62911
  hideHeader: boolean;
62356
62912
  hideTitle: boolean;
62913
+ controlVariant: "docked" | "modal";
62914
+ noMonthPicker: boolean;
62357
62915
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62358
62916
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62359
62917
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62366,7 +62924,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62366
62924
  showWeek: boolean;
62367
62925
  transition: string;
62368
62926
  reverseTransition: string;
62927
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
62928
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62369
62929
  header: string;
62930
+ headerDateFormat: string;
62370
62931
  } & {
62371
62932
  theme?: string | undefined;
62372
62933
  class?: any;
@@ -62386,6 +62947,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62386
62947
  active?: string | string[] | undefined;
62387
62948
  controlHeight?: string | number | undefined;
62388
62949
  text?: string | undefined;
62950
+ monthText?: string | undefined;
62951
+ yearText?: string | undefined;
62389
62952
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
62390
62953
  month?: string | number | undefined;
62391
62954
  firstDayOfWeek?: string | number | undefined;
@@ -62397,6 +62960,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62397
62960
  max?: unknown;
62398
62961
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
62399
62962
  headerColor?: string | undefined;
62963
+ landscapeHeaderWidth?: string | number | undefined;
62400
62964
  } & {
62401
62965
  "onUpdate:month"?: ((date: any) => any) | undefined;
62402
62966
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -62406,7 +62970,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62406
62970
  "update:month": (date: any) => true;
62407
62971
  "update:year": (date: any) => true;
62408
62972
  "update:viewMode": (date: any) => true;
62409
- }, "$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, {
62973
+ }, "$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, {
62410
62974
  style: import('vue').StyleValue;
62411
62975
  rounded: string | number | boolean;
62412
62976
  tile: boolean;
@@ -62417,6 +62981,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62417
62981
  hideHeader: boolean;
62418
62982
  hideTitle: boolean;
62419
62983
  active: string | string[];
62984
+ controlVariant: "docked" | "modal";
62985
+ noMonthPicker: boolean;
62420
62986
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62421
62987
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62422
62988
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62431,7 +62997,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62431
62997
  showWeek: boolean;
62432
62998
  transition: string;
62433
62999
  reverseTransition: string;
63000
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
63001
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62434
63002
  header: string;
63003
+ headerDateFormat: string;
62435
63004
  }, {}, string, import('vue').SlotsType<Partial<{
62436
63005
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
62437
63006
  [key: string]: any;
@@ -62489,6 +63058,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62489
63058
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
62490
63059
  [key: string]: any;
62491
63060
  }>[];
63061
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
63062
+ [key: string]: any;
63063
+ }>[];
62492
63064
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
62493
63065
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
62494
63066
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -62520,6 +63092,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62520
63092
  hideHeader: boolean;
62521
63093
  hideTitle: boolean;
62522
63094
  active: string | string[];
63095
+ controlVariant: "docked" | "modal";
63096
+ noMonthPicker: boolean;
62523
63097
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62524
63098
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62525
63099
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62534,7 +63108,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62534
63108
  showWeek: boolean;
62535
63109
  transition: string;
62536
63110
  reverseTransition: string;
63111
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
63112
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62537
63113
  header: string;
63114
+ headerDateFormat: string;
62538
63115
  }> & Omit<{
62539
63116
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
62540
63117
  tile: boolean;
@@ -62544,6 +63121,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62544
63121
  title: string;
62545
63122
  hideHeader: boolean;
62546
63123
  hideTitle: boolean;
63124
+ controlVariant: "docked" | "modal";
63125
+ noMonthPicker: boolean;
62547
63126
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62548
63127
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
62549
63128
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -62556,7 +63135,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62556
63135
  showWeek: boolean;
62557
63136
  transition: string;
62558
63137
  reverseTransition: string;
63138
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
63139
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
62559
63140
  header: string;
63141
+ headerDateFormat: string;
62560
63142
  } & {
62561
63143
  theme?: string | undefined;
62562
63144
  class?: any;
@@ -62576,6 +63158,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62576
63158
  active?: string | string[] | undefined;
62577
63159
  controlHeight?: string | number | undefined;
62578
63160
  text?: string | undefined;
63161
+ monthText?: string | undefined;
63162
+ yearText?: string | undefined;
62579
63163
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
62580
63164
  month?: string | number | undefined;
62581
63165
  firstDayOfWeek?: string | number | undefined;
@@ -62587,11 +63171,12 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
62587
63171
  max?: unknown;
62588
63172
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
62589
63173
  headerColor?: string | undefined;
63174
+ landscapeHeaderWidth?: string | number | undefined;
62590
63175
  } & {
62591
63176
  "onUpdate:month"?: ((date: any) => any) | undefined;
62592
63177
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
62593
63178
  "onUpdate:year"?: ((date: any) => any) | undefined;
62594
- }, "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<{
63179
+ }, "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<{
62595
63180
  modelValue?: Date | (Date | null)[] | null | undefined;
62596
63181
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
62597
63182
  multiple?: false | "range" | undefined;
@@ -64593,6 +65178,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64593
65178
  hideHeader: boolean;
64594
65179
  hideTitle: boolean;
64595
65180
  active: string | string[];
65181
+ controlVariant: "docked" | "modal";
65182
+ noMonthPicker: boolean;
64596
65183
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64597
65184
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64598
65185
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64607,7 +65194,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64607
65194
  showWeek: boolean;
64608
65195
  transition: string;
64609
65196
  reverseTransition: string;
65197
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65198
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64610
65199
  header: string;
65200
+ headerDateFormat: string;
64611
65201
  }> & Omit<{
64612
65202
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
64613
65203
  tile: boolean;
@@ -64617,6 +65207,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64617
65207
  title: string;
64618
65208
  hideHeader: boolean;
64619
65209
  hideTitle: boolean;
65210
+ controlVariant: "docked" | "modal";
65211
+ noMonthPicker: boolean;
64620
65212
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64621
65213
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64622
65214
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64629,7 +65221,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64629
65221
  showWeek: boolean;
64630
65222
  transition: string;
64631
65223
  reverseTransition: string;
65224
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65225
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64632
65226
  header: string;
65227
+ headerDateFormat: string;
64633
65228
  theme?: string | undefined;
64634
65229
  class?: any;
64635
65230
  border?: string | number | boolean | undefined;
@@ -64648,6 +65243,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64648
65243
  active?: string | string[] | undefined;
64649
65244
  controlHeight?: string | number | undefined;
64650
65245
  text?: string | undefined;
65246
+ monthText?: string | undefined;
65247
+ yearText?: string | undefined;
64651
65248
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
64652
65249
  month?: string | number | undefined;
64653
65250
  firstDayOfWeek?: string | number | undefined;
@@ -64659,10 +65256,11 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64659
65256
  max?: unknown;
64660
65257
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
64661
65258
  headerColor?: string | undefined;
65259
+ landscapeHeaderWidth?: string | number | undefined;
64662
65260
  "onUpdate:month"?: ((date: any) => any) | undefined;
64663
65261
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
64664
65262
  "onUpdate:year"?: ((date: any) => any) | undefined;
64665
- } & 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">;
65263
+ } & 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">;
64666
65264
  $attrs: {
64667
65265
  [x: string]: unknown;
64668
65266
  };
@@ -64726,6 +65324,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64726
65324
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
64727
65325
  [key: string]: any;
64728
65326
  }>[]) | undefined;
65327
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
65328
+ [key: string]: any;
65329
+ }>[]) | undefined;
64729
65330
  }>;
64730
65331
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
64731
65332
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -64741,6 +65342,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64741
65342
  title: string;
64742
65343
  hideHeader: boolean;
64743
65344
  hideTitle: boolean;
65345
+ controlVariant: "docked" | "modal";
65346
+ noMonthPicker: boolean;
64744
65347
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64745
65348
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64746
65349
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64753,7 +65356,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64753
65356
  showWeek: boolean;
64754
65357
  transition: string;
64755
65358
  reverseTransition: string;
65359
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65360
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64756
65361
  header: string;
65362
+ headerDateFormat: string;
64757
65363
  } & {
64758
65364
  theme?: string | undefined;
64759
65365
  class?: any;
@@ -64773,6 +65379,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64773
65379
  active?: string | string[] | undefined;
64774
65380
  controlHeight?: string | number | undefined;
64775
65381
  text?: string | undefined;
65382
+ monthText?: string | undefined;
65383
+ yearText?: string | undefined;
64776
65384
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
64777
65385
  month?: string | number | undefined;
64778
65386
  firstDayOfWeek?: string | number | undefined;
@@ -64784,6 +65392,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64784
65392
  max?: unknown;
64785
65393
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
64786
65394
  headerColor?: string | undefined;
65395
+ landscapeHeaderWidth?: string | number | undefined;
64787
65396
  } & {
64788
65397
  "onUpdate:month"?: ((date: any) => any) | undefined;
64789
65398
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -64793,7 +65402,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64793
65402
  "update:month": (date: any) => true;
64794
65403
  "update:year": (date: any) => true;
64795
65404
  "update:viewMode": (date: any) => true;
64796
- }, "$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, {
65405
+ }, "$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, {
64797
65406
  style: import('vue').StyleValue;
64798
65407
  rounded: string | number | boolean;
64799
65408
  tile: boolean;
@@ -64804,6 +65413,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64804
65413
  hideHeader: boolean;
64805
65414
  hideTitle: boolean;
64806
65415
  active: string | string[];
65416
+ controlVariant: "docked" | "modal";
65417
+ noMonthPicker: boolean;
64807
65418
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64808
65419
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64809
65420
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64818,7 +65429,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64818
65429
  showWeek: boolean;
64819
65430
  transition: string;
64820
65431
  reverseTransition: string;
65432
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65433
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64821
65434
  header: string;
65435
+ headerDateFormat: string;
64822
65436
  }, {}, string, import('vue').SlotsType<Partial<{
64823
65437
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
64824
65438
  [key: string]: any;
@@ -64876,6 +65490,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64876
65490
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
64877
65491
  [key: string]: any;
64878
65492
  }>[];
65493
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
65494
+ [key: string]: any;
65495
+ }>[];
64879
65496
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
64880
65497
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
64881
65498
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -64907,6 +65524,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64907
65524
  hideHeader: boolean;
64908
65525
  hideTitle: boolean;
64909
65526
  active: string | string[];
65527
+ controlVariant: "docked" | "modal";
65528
+ noMonthPicker: boolean;
64910
65529
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64911
65530
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64912
65531
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64921,7 +65540,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64921
65540
  showWeek: boolean;
64922
65541
  transition: string;
64923
65542
  reverseTransition: string;
65543
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65544
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64924
65545
  header: string;
65546
+ headerDateFormat: string;
64925
65547
  }> & Omit<{
64926
65548
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
64927
65549
  tile: boolean;
@@ -64931,6 +65553,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64931
65553
  title: string;
64932
65554
  hideHeader: boolean;
64933
65555
  hideTitle: boolean;
65556
+ controlVariant: "docked" | "modal";
65557
+ noMonthPicker: boolean;
64934
65558
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64935
65559
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
64936
65560
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -64943,7 +65567,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64943
65567
  showWeek: boolean;
64944
65568
  transition: string;
64945
65569
  reverseTransition: string;
65570
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
65571
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
64946
65572
  header: string;
65573
+ headerDateFormat: string;
64947
65574
  } & {
64948
65575
  theme?: string | undefined;
64949
65576
  class?: any;
@@ -64963,6 +65590,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64963
65590
  active?: string | string[] | undefined;
64964
65591
  controlHeight?: string | number | undefined;
64965
65592
  text?: string | undefined;
65593
+ monthText?: string | undefined;
65594
+ yearText?: string | undefined;
64966
65595
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
64967
65596
  month?: string | number | undefined;
64968
65597
  firstDayOfWeek?: string | number | undefined;
@@ -64974,11 +65603,12 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
64974
65603
  max?: unknown;
64975
65604
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
64976
65605
  headerColor?: string | undefined;
65606
+ landscapeHeaderWidth?: string | number | undefined;
64977
65607
  } & {
64978
65608
  "onUpdate:month"?: ((date: any) => any) | undefined;
64979
65609
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
64980
65610
  "onUpdate:year"?: ((date: any) => any) | undefined;
64981
- }, "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<{
65611
+ }, "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<{
64982
65612
  modelValue?: Date | Date[] | null | undefined;
64983
65613
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
64984
65614
  multiple?: false | "range" | undefined;
@@ -71486,6 +72116,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71486
72116
  hideHeader: boolean;
71487
72117
  hideTitle: boolean;
71488
72118
  active: string | string[];
72119
+ controlVariant: "docked" | "modal";
72120
+ noMonthPicker: boolean;
71489
72121
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71490
72122
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71491
72123
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71500,7 +72132,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71500
72132
  showWeek: boolean;
71501
72133
  transition: string;
71502
72134
  reverseTransition: string;
72135
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72136
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71503
72137
  header: string;
72138
+ headerDateFormat: string;
71504
72139
  }> & Omit<{
71505
72140
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
71506
72141
  tile: boolean;
@@ -71510,6 +72145,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71510
72145
  title: string;
71511
72146
  hideHeader: boolean;
71512
72147
  hideTitle: boolean;
72148
+ controlVariant: "docked" | "modal";
72149
+ noMonthPicker: boolean;
71513
72150
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71514
72151
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71515
72152
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71522,7 +72159,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71522
72159
  showWeek: boolean;
71523
72160
  transition: string;
71524
72161
  reverseTransition: string;
72162
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72163
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71525
72164
  header: string;
72165
+ headerDateFormat: string;
71526
72166
  theme?: string | undefined;
71527
72167
  class?: any;
71528
72168
  border?: string | number | boolean | undefined;
@@ -71541,6 +72181,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71541
72181
  active?: string | string[] | undefined;
71542
72182
  controlHeight?: string | number | undefined;
71543
72183
  text?: string | undefined;
72184
+ monthText?: string | undefined;
72185
+ yearText?: string | undefined;
71544
72186
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
71545
72187
  month?: string | number | undefined;
71546
72188
  firstDayOfWeek?: string | number | undefined;
@@ -71552,10 +72194,11 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71552
72194
  max?: unknown;
71553
72195
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
71554
72196
  headerColor?: string | undefined;
72197
+ landscapeHeaderWidth?: string | number | undefined;
71555
72198
  "onUpdate:month"?: ((date: any) => any) | undefined;
71556
72199
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
71557
72200
  "onUpdate:year"?: ((date: any) => any) | undefined;
71558
- } & 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">;
72201
+ } & 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">;
71559
72202
  $attrs: {
71560
72203
  [x: string]: unknown;
71561
72204
  };
@@ -71619,6 +72262,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71619
72262
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
71620
72263
  [key: string]: any;
71621
72264
  }>[]) | undefined;
72265
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
72266
+ [key: string]: any;
72267
+ }>[]) | undefined;
71622
72268
  }>;
71623
72269
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
71624
72270
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -71634,6 +72280,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71634
72280
  title: string;
71635
72281
  hideHeader: boolean;
71636
72282
  hideTitle: boolean;
72283
+ controlVariant: "docked" | "modal";
72284
+ noMonthPicker: boolean;
71637
72285
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71638
72286
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71639
72287
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71646,7 +72294,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71646
72294
  showWeek: boolean;
71647
72295
  transition: string;
71648
72296
  reverseTransition: string;
72297
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72298
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71649
72299
  header: string;
72300
+ headerDateFormat: string;
71650
72301
  } & {
71651
72302
  theme?: string | undefined;
71652
72303
  class?: any;
@@ -71666,6 +72317,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71666
72317
  active?: string | string[] | undefined;
71667
72318
  controlHeight?: string | number | undefined;
71668
72319
  text?: string | undefined;
72320
+ monthText?: string | undefined;
72321
+ yearText?: string | undefined;
71669
72322
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
71670
72323
  month?: string | number | undefined;
71671
72324
  firstDayOfWeek?: string | number | undefined;
@@ -71677,6 +72330,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71677
72330
  max?: unknown;
71678
72331
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
71679
72332
  headerColor?: string | undefined;
72333
+ landscapeHeaderWidth?: string | number | undefined;
71680
72334
  } & {
71681
72335
  "onUpdate:month"?: ((date: any) => any) | undefined;
71682
72336
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -71686,7 +72340,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71686
72340
  "update:month": (date: any) => true;
71687
72341
  "update:year": (date: any) => true;
71688
72342
  "update:viewMode": (date: any) => true;
71689
- }, "$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, {
72343
+ }, "$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, {
71690
72344
  style: import('vue').StyleValue;
71691
72345
  rounded: string | number | boolean;
71692
72346
  tile: boolean;
@@ -71697,6 +72351,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71697
72351
  hideHeader: boolean;
71698
72352
  hideTitle: boolean;
71699
72353
  active: string | string[];
72354
+ controlVariant: "docked" | "modal";
72355
+ noMonthPicker: boolean;
71700
72356
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71701
72357
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71702
72358
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71711,7 +72367,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71711
72367
  showWeek: boolean;
71712
72368
  transition: string;
71713
72369
  reverseTransition: string;
72370
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72371
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71714
72372
  header: string;
72373
+ headerDateFormat: string;
71715
72374
  }, {}, string, import('vue').SlotsType<Partial<{
71716
72375
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
71717
72376
  [key: string]: any;
@@ -71769,6 +72428,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71769
72428
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
71770
72429
  [key: string]: any;
71771
72430
  }>[];
72431
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
72432
+ [key: string]: any;
72433
+ }>[];
71772
72434
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
71773
72435
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
71774
72436
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -71800,6 +72462,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71800
72462
  hideHeader: boolean;
71801
72463
  hideTitle: boolean;
71802
72464
  active: string | string[];
72465
+ controlVariant: "docked" | "modal";
72466
+ noMonthPicker: boolean;
71803
72467
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71804
72468
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71805
72469
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71814,7 +72478,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71814
72478
  showWeek: boolean;
71815
72479
  transition: string;
71816
72480
  reverseTransition: string;
72481
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72482
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71817
72483
  header: string;
72484
+ headerDateFormat: string;
71818
72485
  }> & Omit<{
71819
72486
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
71820
72487
  tile: boolean;
@@ -71824,6 +72491,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71824
72491
  title: string;
71825
72492
  hideHeader: boolean;
71826
72493
  hideTitle: boolean;
72494
+ controlVariant: "docked" | "modal";
72495
+ noMonthPicker: boolean;
71827
72496
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71828
72497
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
71829
72498
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -71836,7 +72505,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71836
72505
  showWeek: boolean;
71837
72506
  transition: string;
71838
72507
  reverseTransition: string;
72508
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
72509
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
71839
72510
  header: string;
72511
+ headerDateFormat: string;
71840
72512
  } & {
71841
72513
  theme?: string | undefined;
71842
72514
  class?: any;
@@ -71856,6 +72528,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71856
72528
  active?: string | string[] | undefined;
71857
72529
  controlHeight?: string | number | undefined;
71858
72530
  text?: string | undefined;
72531
+ monthText?: string | undefined;
72532
+ yearText?: string | undefined;
71859
72533
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
71860
72534
  month?: string | number | undefined;
71861
72535
  firstDayOfWeek?: string | number | undefined;
@@ -71867,11 +72541,12 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
71867
72541
  max?: unknown;
71868
72542
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
71869
72543
  headerColor?: string | undefined;
72544
+ landscapeHeaderWidth?: string | number | undefined;
71870
72545
  } & {
71871
72546
  "onUpdate:month"?: ((date: any) => any) | undefined;
71872
72547
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
71873
72548
  "onUpdate:year"?: ((date: any) => any) | undefined;
71874
- }, "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<{
72549
+ }, "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<{
71875
72550
  modelValue?: Date | (Date | null)[] | null | undefined;
71876
72551
  "onUpdate:modelValue"?: ((value: Date | (Date | null)[] | null) => void) | undefined;
71877
72552
  multiple?: false | "range" | undefined;
@@ -73873,6 +74548,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73873
74548
  hideHeader: boolean;
73874
74549
  hideTitle: boolean;
73875
74550
  active: string | string[];
74551
+ controlVariant: "docked" | "modal";
74552
+ noMonthPicker: boolean;
73876
74553
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
73877
74554
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
73878
74555
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -73887,7 +74564,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73887
74564
  showWeek: boolean;
73888
74565
  transition: string;
73889
74566
  reverseTransition: string;
74567
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74568
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
73890
74569
  header: string;
74570
+ headerDateFormat: string;
73891
74571
  }> & Omit<{
73892
74572
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
73893
74573
  tile: boolean;
@@ -73897,6 +74577,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73897
74577
  title: string;
73898
74578
  hideHeader: boolean;
73899
74579
  hideTitle: boolean;
74580
+ controlVariant: "docked" | "modal";
74581
+ noMonthPicker: boolean;
73900
74582
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
73901
74583
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
73902
74584
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -73909,7 +74591,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73909
74591
  showWeek: boolean;
73910
74592
  transition: string;
73911
74593
  reverseTransition: string;
74594
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74595
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
73912
74596
  header: string;
74597
+ headerDateFormat: string;
73913
74598
  theme?: string | undefined;
73914
74599
  class?: any;
73915
74600
  border?: string | number | boolean | undefined;
@@ -73928,6 +74613,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73928
74613
  active?: string | string[] | undefined;
73929
74614
  controlHeight?: string | number | undefined;
73930
74615
  text?: string | undefined;
74616
+ monthText?: string | undefined;
74617
+ yearText?: string | undefined;
73931
74618
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
73932
74619
  month?: string | number | undefined;
73933
74620
  firstDayOfWeek?: string | number | undefined;
@@ -73939,10 +74626,11 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
73939
74626
  max?: unknown;
73940
74627
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
73941
74628
  headerColor?: string | undefined;
74629
+ landscapeHeaderWidth?: string | number | undefined;
73942
74630
  "onUpdate:month"?: ((date: any) => any) | undefined;
73943
74631
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
73944
74632
  "onUpdate:year"?: ((date: any) => any) | undefined;
73945
- } & 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">;
74633
+ } & 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">;
73946
74634
  $attrs: {
73947
74635
  [x: string]: unknown;
73948
74636
  };
@@ -74006,6 +74694,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74006
74694
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
74007
74695
  [key: string]: any;
74008
74696
  }>[]) | undefined;
74697
+ controls?: ((arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
74698
+ [key: string]: any;
74699
+ }>[]) | undefined;
74009
74700
  }>;
74010
74701
  $root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
74011
74702
  $parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
@@ -74021,6 +74712,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74021
74712
  title: string;
74022
74713
  hideHeader: boolean;
74023
74714
  hideTitle: boolean;
74715
+ controlVariant: "docked" | "modal";
74716
+ noMonthPicker: boolean;
74024
74717
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74025
74718
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74026
74719
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -74033,7 +74726,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74033
74726
  showWeek: boolean;
74034
74727
  transition: string;
74035
74728
  reverseTransition: string;
74729
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74730
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
74036
74731
  header: string;
74732
+ headerDateFormat: string;
74037
74733
  } & {
74038
74734
  theme?: string | undefined;
74039
74735
  class?: any;
@@ -74053,6 +74749,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74053
74749
  active?: string | string[] | undefined;
74054
74750
  controlHeight?: string | number | undefined;
74055
74751
  text?: string | undefined;
74752
+ monthText?: string | undefined;
74753
+ yearText?: string | undefined;
74056
74754
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
74057
74755
  month?: string | number | undefined;
74058
74756
  firstDayOfWeek?: string | number | undefined;
@@ -74064,6 +74762,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74064
74762
  max?: unknown;
74065
74763
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
74066
74764
  headerColor?: string | undefined;
74765
+ landscapeHeaderWidth?: string | number | undefined;
74067
74766
  } & {
74068
74767
  "onUpdate:month"?: ((date: any) => any) | undefined;
74069
74768
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
@@ -74073,7 +74772,7 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74073
74772
  "update:month": (date: any) => true;
74074
74773
  "update:year": (date: any) => true;
74075
74774
  "update:viewMode": (date: any) => true;
74076
- }, "$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, {
74775
+ }, "$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, {
74077
74776
  style: import('vue').StyleValue;
74078
74777
  rounded: string | number | boolean;
74079
74778
  tile: boolean;
@@ -74084,6 +74783,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74084
74783
  hideHeader: boolean;
74085
74784
  hideTitle: boolean;
74086
74785
  active: string | string[];
74786
+ controlVariant: "docked" | "modal";
74787
+ noMonthPicker: boolean;
74087
74788
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74088
74789
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74089
74790
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -74098,7 +74799,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74098
74799
  showWeek: boolean;
74099
74800
  transition: string;
74100
74801
  reverseTransition: string;
74802
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74803
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
74101
74804
  header: string;
74805
+ headerDateFormat: string;
74102
74806
  }, {}, string, import('vue').SlotsType<Partial<{
74103
74807
  actions: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
74104
74808
  [key: string]: any;
@@ -74156,6 +74860,9 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74156
74860
  }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
74157
74861
  [key: string]: any;
74158
74862
  }>[];
74863
+ controls: (arg: import('vuetify/lib/components/VDatePicker/VDatePickerControls.mjs').VDatePickerControlsDefaultSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
74864
+ [key: string]: any;
74865
+ }>[];
74159
74866
  }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
74160
74867
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
74161
74868
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -74187,6 +74894,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74187
74894
  hideHeader: boolean;
74188
74895
  hideTitle: boolean;
74189
74896
  active: string | string[];
74897
+ controlVariant: "docked" | "modal";
74898
+ noMonthPicker: boolean;
74190
74899
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74191
74900
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74192
74901
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -74201,7 +74910,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74201
74910
  showWeek: boolean;
74202
74911
  transition: string;
74203
74912
  reverseTransition: string;
74913
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74914
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
74204
74915
  header: string;
74916
+ headerDateFormat: string;
74205
74917
  }> & Omit<{
74206
74918
  style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
74207
74919
  tile: boolean;
@@ -74211,6 +74923,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74211
74923
  title: string;
74212
74924
  hideHeader: boolean;
74213
74925
  hideTitle: boolean;
74926
+ controlVariant: "docked" | "modal";
74927
+ noMonthPicker: boolean;
74214
74928
  nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74215
74929
  prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
74216
74930
  modeIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
@@ -74223,7 +74937,10 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74223
74937
  showWeek: boolean;
74224
74938
  transition: string;
74225
74939
  reverseTransition: string;
74940
+ events: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEvents | null;
74941
+ eventColor: import('vuetify/lib/components/VDatePicker/VDatePickerMonth.mjs').DatePickerEventColors;
74226
74942
  header: string;
74943
+ headerDateFormat: string;
74227
74944
  } & {
74228
74945
  theme?: string | undefined;
74229
74946
  class?: any;
@@ -74243,6 +74960,8 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74243
74960
  active?: string | string[] | undefined;
74244
74961
  controlHeight?: string | number | undefined;
74245
74962
  text?: string | undefined;
74963
+ monthText?: string | undefined;
74964
+ yearText?: string | undefined;
74246
74965
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
74247
74966
  month?: string | number | undefined;
74248
74967
  firstDayOfWeek?: string | number | undefined;
@@ -74254,11 +74973,12 @@ export declare function mountTextInputMode(props?: Record<string, unknown>): imp
74254
74973
  max?: unknown;
74255
74974
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
74256
74975
  headerColor?: string | undefined;
74976
+ landscapeHeaderWidth?: string | number | undefined;
74257
74977
  } & {
74258
74978
  "onUpdate:month"?: ((date: any) => any) | undefined;
74259
74979
  "onUpdate:viewMode"?: ((date: any) => any) | undefined;
74260
74980
  "onUpdate:year"?: ((date: any) => any) | undefined;
74261
- }, "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<{
74981
+ }, "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<{
74262
74982
  modelValue?: Date | Date[] | null | undefined;
74263
74983
  "onUpdate:modelValue"?: ((value: Date | Date[] | null) => void) | undefined;
74264
74984
  multiple?: false | "range" | undefined;