@vuetify/nightly 3.8.9-dev.2025-06-11 → 3.8.9-dev.2025-06-13

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 (75) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/dist/json/attributes.json +3441 -3169
  3. package/dist/json/importMap-labs.json +40 -36
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +74 -1
  6. package/dist/json/web-types.json +6884 -5821
  7. package/dist/vuetify-labs.cjs +357 -47
  8. package/dist/vuetify-labs.css +5881 -5870
  9. package/dist/vuetify-labs.d.ts +8448 -1672
  10. package/dist/vuetify-labs.esm.js +357 -47
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +357 -47
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +111 -47
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5075 -5064
  17. package/dist/vuetify.d.ts +1499 -1302
  18. package/dist/vuetify.esm.js +111 -47
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +111 -47
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1063 -1057
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +21 -7
  26. package/lib/components/VCombobox/VCombobox.d.ts +21 -7
  27. package/lib/components/VDatePicker/VDatePicker.d.ts +70 -5
  28. package/lib/components/VDatePicker/VDatePicker.js +10 -4
  29. package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
  30. package/lib/components/VKbd/VKbd.css +13 -2
  31. package/lib/components/VKbd/VKbd.d.ts +221 -0
  32. package/lib/components/VKbd/VKbd.js +55 -0
  33. package/lib/components/VKbd/VKbd.js.map +1 -0
  34. package/lib/components/VKbd/VKbd.sass +2 -1
  35. package/lib/components/VKbd/_variables.scss +12 -1
  36. package/lib/components/VKbd/index.d.ts +1 -95
  37. package/lib/components/VKbd/index.js +1 -4
  38. package/lib/components/VKbd/index.js.map +1 -1
  39. package/lib/components/VMenu/VMenu.d.ts +13 -0
  40. package/lib/components/VMenu/VMenu.js +2 -1
  41. package/lib/components/VMenu/VMenu.js.map +1 -1
  42. package/lib/components/VNumberInput/VNumberInput.d.ts +11 -0
  43. package/lib/components/VNumberInput/VNumberInput.js +37 -29
  44. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  45. package/lib/components/VSelect/VSelect.d.ts +33 -11
  46. package/lib/components/VSpeedDial/VSpeedDial.d.ts +13 -0
  47. package/lib/composables/locale.d.ts +5 -1
  48. package/lib/composables/locale.js.map +1 -1
  49. package/lib/composables/mask.d.ts +38 -0
  50. package/lib/composables/mask.js +183 -0
  51. package/lib/composables/mask.js.map +1 -0
  52. package/lib/composables/theme.js +3 -3
  53. package/lib/composables/theme.js.map +1 -1
  54. package/lib/entry-bundler.d.ts +1 -0
  55. package/lib/entry-bundler.js +1 -1
  56. package/lib/framework.d.ts +67 -63
  57. package/lib/framework.js +1 -1
  58. package/lib/labs/VMaskInput/VMaskInput.d.ts +6993 -0
  59. package/lib/labs/VMaskInput/VMaskInput.js +67 -0
  60. package/lib/labs/VMaskInput/VMaskInput.js.map +1 -0
  61. package/lib/labs/VMaskInput/index.d.ts +1 -0
  62. package/lib/labs/VMaskInput/index.js +2 -0
  63. package/lib/labs/VMaskInput/index.js.map +1 -0
  64. package/lib/labs/components.d.ts +1 -0
  65. package/lib/labs/components.js +1 -0
  66. package/lib/labs/components.js.map +1 -1
  67. package/lib/labs/entry-bundler.d.ts +1 -0
  68. package/lib/locale/adapters/vue-i18n.js +6 -1
  69. package/lib/locale/adapters/vue-i18n.js.map +1 -1
  70. package/lib/locale/adapters/vuetify.js +7 -1
  71. package/lib/locale/adapters/vuetify.js.map +1 -1
  72. package/lib/util/helpers.d.ts +2 -1
  73. package/lib/util/helpers.js +12 -7
  74. package/lib/util/helpers.js.map +1 -1
  75. package/package.json +1 -1
@@ -1,11 +1,12 @@
1
1
  import * as vue from 'vue';
2
- import { Ref, ComponentPublicInstance, DeepReadonly, FunctionalComponent, ComponentPropsOptions, ExtractPropTypes, PropType, CSSProperties, EffectScope, nextTick, VNodeProps, App } from 'vue';
2
+ import { ShallowRef, Ref, ComponentPublicInstance, DeepReadonly, FunctionalComponent, ComponentPropsOptions, ExtractPropTypes, PropType, CSSProperties, EffectScope, nextTick, VNodeProps, App } from 'vue';
3
3
  import * as _vue_reactivity from '@vue/reactivity';
4
4
 
5
5
  interface LocaleMessages {
6
6
  [key: string]: LocaleMessages | string;
7
7
  }
8
8
  interface LocaleOptions {
9
+ decimalSeparator?: string;
9
10
  messages?: LocaleMessages;
10
11
  locale?: string;
11
12
  fallback?: string;
@@ -13,6 +14,7 @@ interface LocaleOptions {
13
14
  }
14
15
  interface LocaleInstance {
15
16
  name: string;
17
+ decimalSeparator: ShallowRef<string>;
16
18
  messages: Ref<LocaleMessages>;
17
19
  current: Ref<string>;
18
20
  fallback: Ref<string>;
@@ -2449,6 +2451,7 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
2449
2451
  rtl: vue.Ref<Record<string, boolean>>;
2450
2452
  rtlClasses: vue.Ref<string>;
2451
2453
  name: string;
2454
+ decimalSeparator: vue.ShallowRef<string>;
2452
2455
  messages: vue.Ref<LocaleMessages>;
2453
2456
  current: vue.Ref<string>;
2454
2457
  fallback: vue.Ref<string>;
@@ -2550,42 +2553,40 @@ declare module 'vue' {
2550
2553
  $children?: VNodeChild
2551
2554
  }
2552
2555
  export interface GlobalComponents {
2553
- VAlert: typeof import('vuetify/components')['VAlert']
2554
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2555
- VApp: typeof import('vuetify/components')['VApp']
2556
2556
  VAppBar: typeof import('vuetify/components')['VAppBar']
2557
2557
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2558
2558
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2559
+ VApp: typeof import('vuetify/components')['VApp']
2560
+ VAlert: typeof import('vuetify/components')['VAlert']
2561
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2562
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2559
2563
  VBadge: typeof import('vuetify/components')['VBadge']
2564
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2560
2565
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2561
2566
  VBanner: typeof import('vuetify/components')['VBanner']
2562
2567
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2563
2568
  VBannerText: typeof import('vuetify/components')['VBannerText']
2564
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2565
2569
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2566
- VAvatar: typeof import('vuetify/components')['VAvatar']
2567
2570
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2568
2571
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2569
2572
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2570
2573
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2571
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2574
+ VBtn: typeof import('vuetify/components')['VBtn']
2575
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2576
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2572
2577
  VCard: typeof import('vuetify/components')['VCard']
2573
2578
  VCardActions: typeof import('vuetify/components')['VCardActions']
2574
2579
  VCardItem: typeof import('vuetify/components')['VCardItem']
2575
2580
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2576
2581
  VCardText: typeof import('vuetify/components')['VCardText']
2577
2582
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2578
- VBtn: typeof import('vuetify/components')['VBtn']
2579
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2580
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2581
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2583
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2582
2584
  VChip: typeof import('vuetify/components')['VChip']
2583
- VCode: typeof import('vuetify/components')['VCode']
2584
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2585
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2585
2586
  VCombobox: typeof import('vuetify/components')['VCombobox']
2586
- VCarousel: typeof import('vuetify/components')['VCarousel']
2587
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2588
- VDialog: typeof import('vuetify/components')['VDialog']
2587
+ VCode: typeof import('vuetify/components')['VCode']
2588
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2589
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2589
2590
  VCounter: typeof import('vuetify/components')['VCounter']
2590
2591
  VDataTable: typeof import('vuetify/components')['VDataTable']
2591
2592
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
@@ -2594,36 +2595,35 @@ declare module 'vue' {
2594
2595
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2595
2596
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2596
2597
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2598
+ VDialog: typeof import('vuetify/components')['VDialog']
2597
2599
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2598
2600
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2599
2601
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2600
2602
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2601
2603
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2602
2604
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2603
- VField: typeof import('vuetify/components')['VField']
2604
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2605
- VFileInput: typeof import('vuetify/components')['VFileInput']
2606
- VDivider: typeof import('vuetify/components')['VDivider']
2607
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2608
2605
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2609
2606
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2610
2607
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2611
2608
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2609
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2610
+ VDivider: typeof import('vuetify/components')['VDivider']
2612
2611
  VFab: typeof import('vuetify/components')['VFab']
2612
+ VField: typeof import('vuetify/components')['VField']
2613
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2614
+ VFileInput: typeof import('vuetify/components')['VFileInput']
2615
+ VFooter: typeof import('vuetify/components')['VFooter']
2616
+ VImg: typeof import('vuetify/components')['VImg']
2617
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
2618
+ VItem: typeof import('vuetify/components')['VItem']
2613
2619
  VIcon: typeof import('vuetify/components')['VIcon']
2614
2620
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2615
2621
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2616
2622
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2617
2623
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2618
- VFooter: typeof import('vuetify/components')['VFooter']
2619
2624
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2620
2625
  VInput: typeof import('vuetify/components')['VInput']
2621
- VLabel: typeof import('vuetify/components')['VLabel']
2622
2626
  VKbd: typeof import('vuetify/components')['VKbd']
2623
- VImg: typeof import('vuetify/components')['VImg']
2624
- VMenu: typeof import('vuetify/components')['VMenu']
2625
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
2626
- VItem: typeof import('vuetify/components')['VItem']
2627
2627
  VList: typeof import('vuetify/components')['VList']
2628
2628
  VListGroup: typeof import('vuetify/components')['VListGroup']
2629
2629
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2633,49 +2633,50 @@ declare module 'vue' {
2633
2633
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2634
2634
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2635
2635
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2636
+ VMessages: typeof import('vuetify/components')['VMessages']
2637
+ VMenu: typeof import('vuetify/components')['VMenu']
2638
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2636
2639
  VMain: typeof import('vuetify/components')['VMain']
2637
2640
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2638
- VMessages: typeof import('vuetify/components')['VMessages']
2639
- VPagination: typeof import('vuetify/components')['VPagination']
2640
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2641
2641
  VOverlay: typeof import('vuetify/components')['VOverlay']
2642
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2642
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2643
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2644
+ VPagination: typeof import('vuetify/components')['VPagination']
2645
+ VRating: typeof import('vuetify/components')['VRating']
2643
2646
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2644
2647
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2645
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2646
- VRating: typeof import('vuetify/components')['VRating']
2647
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2648
2648
  VSelect: typeof import('vuetify/components')['VSelect']
2649
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2650
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2649
+ VSheet: typeof import('vuetify/components')['VSheet']
2650
+ VSlider: typeof import('vuetify/components')['VSlider']
2651
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2651
2652
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2652
2653
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2653
- VSlider: typeof import('vuetify/components')['VSlider']
2654
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2655
- VSheet: typeof import('vuetify/components')['VSheet']
2656
2654
  VStepper: typeof import('vuetify/components')['VStepper']
2657
2655
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2658
2656
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2659
2657
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2660
2658
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2661
2659
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2660
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2662
2661
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
2662
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2663
2663
  VTable: typeof import('vuetify/components')['VTable']
2664
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2665
+ VTextField: typeof import('vuetify/components')['VTextField']
2666
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2664
2667
  VTab: typeof import('vuetify/components')['VTab']
2665
2668
  VTabs: typeof import('vuetify/components')['VTabs']
2666
2669
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2667
2670
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2668
- VSwitch: typeof import('vuetify/components')['VSwitch']
2669
- VTextarea: typeof import('vuetify/components')['VTextarea']
2670
- VTextField: typeof import('vuetify/components')['VTextField']
2671
- VToolbar: typeof import('vuetify/components')['VToolbar']
2672
- VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2673
- VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2674
2671
  VTooltip: typeof import('vuetify/components')['VTooltip']
2675
2672
  VTimeline: typeof import('vuetify/components')['VTimeline']
2676
2673
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2677
2674
  VWindow: typeof import('vuetify/components')['VWindow']
2678
2675
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2676
+ VToolbar: typeof import('vuetify/components')['VToolbar']
2677
+ VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2678
+ VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2679
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2679
2680
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2680
2681
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2681
2682
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
@@ -2685,21 +2686,23 @@ declare module 'vue' {
2685
2686
  VRow: typeof import('vuetify/components')['VRow']
2686
2687
  VSpacer: typeof import('vuetify/components')['VSpacer']
2687
2688
  VHover: typeof import('vuetify/components')['VHover']
2688
- VLazy: typeof import('vuetify/components')['VLazy']
2689
2689
  VLayout: typeof import('vuetify/components')['VLayout']
2690
2690
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2691
2691
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2692
+ VLazy: typeof import('vuetify/components')['VLazy']
2693
+ VLabel: typeof import('vuetify/components')['VLabel']
2692
2694
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2695
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2693
2696
  VParallax: typeof import('vuetify/components')['VParallax']
2694
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2695
2697
  VRadio: typeof import('vuetify/components')['VRadio']
2698
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2696
2699
  VResponsive: typeof import('vuetify/components')['VResponsive']
2697
- VSparkline: typeof import('vuetify/components')['VSparkline']
2698
2700
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2701
+ VSparkline: typeof import('vuetify/components')['VSparkline']
2699
2702
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2700
2703
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2701
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2702
2704
  VValidation: typeof import('vuetify/components')['VValidation']
2705
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2703
2706
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2704
2707
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2705
2708
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2716,29 +2719,30 @@ declare module 'vue' {
2716
2719
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2717
2720
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2718
2721
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2722
+ VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2723
+ VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2724
+ VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2725
+ VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2726
+ VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2727
+ VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2719
2728
  VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2729
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2730
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2720
2731
  VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2721
2732
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2722
2733
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2723
- VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2724
- VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2725
- VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2726
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2727
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2728
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2729
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2730
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2731
2734
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2732
2735
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2733
2736
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2737
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2738
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2739
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2734
2740
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2741
+ VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2735
2742
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2736
- VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2737
- VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2738
- VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2739
- VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2740
- VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2741
- VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2743
+ VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2744
+ VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2745
+ VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2742
2746
  }
2743
2747
  export interface GlobalDirectives {
2744
2748
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.8.9-dev.2025-06-11";
112
+ export const version = "3.8.9-dev.2025-06-13";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup