@vuetify/nightly 3.8.5-master.2025-05-20 → 3.8.6-master.2025-05-21

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 (57) hide show
  1. package/CHANGELOG.md +10 -15
  2. package/dist/json/attributes.json +3366 -3382
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +162 -162
  5. package/dist/json/tags.json +0 -4
  6. package/dist/json/web-types.json +6264 -6300
  7. package/dist/vuetify-labs.cjs +67 -31
  8. package/dist/vuetify-labs.css +4385 -4385
  9. package/dist/vuetify-labs.d.ts +63 -83
  10. package/dist/vuetify-labs.esm.js +67 -31
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +67 -31
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +67 -31
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +1780 -1780
  17. package/dist/vuetify.d.ts +63 -73
  18. package/dist/vuetify.esm.js +67 -31
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +67 -31
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +37 -34
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDatePicker/VDatePicker.d.ts +0 -10
  26. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +0 -10
  27. package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
  28. package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
  29. package/lib/components/VNavigationDrawer/touch.js +2 -4
  30. package/lib/components/VNavigationDrawer/touch.js.map +1 -1
  31. package/lib/components/VNumberInput/VNumberInput.js +18 -10
  32. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  33. package/lib/components/VProgressCircular/VProgressCircular.js +2 -2
  34. package/lib/components/VProgressCircular/VProgressCircular.js.map +1 -1
  35. package/lib/components/VSelect/VSelect.js +36 -7
  36. package/lib/components/VSelect/VSelect.js.map +1 -1
  37. package/lib/components/VSlider/slider.js +1 -1
  38. package/lib/components/VSlider/slider.js.map +1 -1
  39. package/lib/composables/calendar.d.ts +0 -5
  40. package/lib/composables/calendar.js +1 -2
  41. package/lib/composables/calendar.js.map +1 -1
  42. package/lib/composables/date/DateAdapter.d.ts +1 -1
  43. package/lib/composables/date/DateAdapter.js.map +1 -1
  44. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  45. package/lib/composables/date/adapters/vuetify.js +4 -4
  46. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  47. package/lib/composables/date/date.d.ts +1 -1
  48. package/lib/composables/goto.js +1 -1
  49. package/lib/composables/goto.js.map +1 -1
  50. package/lib/entry-bundler.d.ts +1 -1
  51. package/lib/entry-bundler.js +1 -1
  52. package/lib/framework.d.ts +63 -63
  53. package/lib/framework.js +1 -1
  54. package/lib/labs/VCalendar/VCalendar.d.ts +0 -10
  55. package/lib/labs/VDateInput/VDateInput.d.ts +0 -10
  56. package/lib/labs/entry-bundler.d.ts +1 -1
  57. package/package.json +5 -5
@@ -38,7 +38,7 @@ interface DateAdapter<T = unknown> {
38
38
  setYear(date: T, year: number): T;
39
39
  getDiff(date: T, comparing: T | string, unit?: string): number;
40
40
  getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
41
- getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
41
+ getWeekdays(firstDayOfWeek?: number | string): string[];
42
42
  getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
43
43
  getMonth(date: T): number;
44
44
  setMonth(date: T, month: number): T;
@@ -39647,7 +39647,6 @@ declare const VDatePicker: {
39647
39647
  headerColor?: string | undefined;
39648
39648
  firstDayOfWeek?: string | number | undefined;
39649
39649
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
39650
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
39651
39650
  } & {
39652
39651
  "onUpdate:month"?: ((date: any) => any) | undefined;
39653
39652
  "onUpdate:year"?: ((date: any) => any) | undefined;
@@ -39743,7 +39742,6 @@ declare const VDatePicker: {
39743
39742
  headerColor?: string | undefined;
39744
39743
  firstDayOfWeek?: string | number | undefined;
39745
39744
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
39746
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
39747
39745
  } & {
39748
39746
  "onUpdate:month"?: ((date: any) => any) | undefined;
39749
39747
  "onUpdate:year"?: ((date: any) => any) | undefined;
@@ -39823,7 +39821,6 @@ declare const VDatePicker: {
39823
39821
  headerColor?: string | undefined;
39824
39822
  firstDayOfWeek?: string | number | undefined;
39825
39823
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
39826
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
39827
39824
  } & {
39828
39825
  "onUpdate:month"?: ((date: any) => any) | undefined;
39829
39826
  "onUpdate:year"?: ((date: any) => any) | undefined;
@@ -39936,7 +39933,6 @@ declare const VDatePicker: {
39936
39933
  default: undefined;
39937
39934
  };
39938
39935
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
39939
- weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
39940
39936
  hideWeekdays: BooleanConstructor;
39941
39937
  multiple: vue.PropType<boolean | "range" | number | (string & {})>;
39942
39938
  showWeek: BooleanConstructor;
@@ -40042,7 +40038,6 @@ declare const VDatePicker: {
40042
40038
  default: undefined;
40043
40039
  };
40044
40040
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
40045
- weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
40046
40041
  hideWeekdays: BooleanConstructor;
40047
40042
  multiple: vue.PropType<boolean | "range" | number | (string & {})>;
40048
40043
  showWeek: BooleanConstructor;
@@ -40398,7 +40393,6 @@ declare const VDatePickerMonth: {
40398
40393
  modelValue?: unknown[] | undefined;
40399
40394
  firstDayOfWeek?: string | number | undefined;
40400
40395
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
40401
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
40402
40396
  } & {
40403
40397
  $children?: {} | vue.VNodeChild | {
40404
40398
  day?: ((arg: {
@@ -40478,7 +40472,6 @@ declare const VDatePickerMonth: {
40478
40472
  modelValue?: unknown[] | undefined;
40479
40473
  firstDayOfWeek?: string | number | undefined;
40480
40474
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
40481
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
40482
40475
  } & {
40483
40476
  $children?: {} | vue.VNodeChild | {
40484
40477
  day?: ((arg: {
@@ -40543,7 +40536,6 @@ declare const VDatePickerMonth: {
40543
40536
  modelValue?: unknown[] | undefined;
40544
40537
  firstDayOfWeek?: string | number | undefined;
40545
40538
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
40546
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
40547
40539
  } & {
40548
40540
  $children?: {} | vue.VNodeChild | {
40549
40541
  day?: ((arg: {
@@ -40621,7 +40613,6 @@ declare const VDatePickerMonth: {
40621
40613
  default: undefined;
40622
40614
  };
40623
40615
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
40624
- weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
40625
40616
  color: StringConstructor;
40626
40617
  hideWeekdays: BooleanConstructor;
40627
40618
  multiple: PropType<boolean | "range" | number | (string & {})>;
@@ -40658,7 +40649,6 @@ declare const VDatePickerMonth: {
40658
40649
  default: undefined;
40659
40650
  };
40660
40651
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
40661
- weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
40662
40652
  color: StringConstructor;
40663
40653
  hideWeekdays: BooleanConstructor;
40664
40654
  multiple: PropType<boolean | "range" | number | (string & {})>;
@@ -86623,7 +86613,6 @@ declare const VCalendar: {
86623
86613
  firstDayOfWeek?: string | number | undefined;
86624
86614
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
86625
86615
  displayValue?: unknown;
86626
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
86627
86616
  dayIndex?: number | undefined;
86628
86617
  } & {
86629
86618
  $children?: {} | vue.VNodeChild | {
@@ -86923,7 +86912,6 @@ declare const VCalendar: {
86923
86912
  firstDayOfWeek?: string | number | undefined;
86924
86913
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
86925
86914
  displayValue?: unknown;
86926
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
86927
86915
  dayIndex?: number | undefined;
86928
86916
  } & {
86929
86917
  $children?: {} | vue.VNodeChild | {
@@ -87159,7 +87147,6 @@ declare const VCalendar: {
87159
87147
  firstDayOfWeek?: string | number | undefined;
87160
87148
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
87161
87149
  displayValue?: unknown;
87162
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
87163
87150
  dayIndex?: number | undefined;
87164
87151
  } & {
87165
87152
  $children?: {} | vue.VNodeChild | {
@@ -87510,7 +87497,6 @@ declare const VCalendar: {
87510
87497
  type: (StringConstructor | NumberConstructor)[];
87511
87498
  default: undefined;
87512
87499
  };
87513
- weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
87514
87500
  hideHeader: BooleanConstructor;
87515
87501
  hideWeekNumber: BooleanConstructor;
87516
87502
  }, vue.ExtractPropTypes<{
@@ -87601,7 +87587,6 @@ declare const VCalendar: {
87601
87587
  type: (StringConstructor | NumberConstructor)[];
87602
87588
  default: undefined;
87603
87589
  };
87604
- weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
87605
87590
  hideHeader: BooleanConstructor;
87606
87591
  hideWeekNumber: BooleanConstructor;
87607
87592
  }>>;
@@ -89364,7 +89349,6 @@ declare const VDateInput: {
89364
89349
  modelModifiers?: Record<string, boolean> | undefined;
89365
89350
  firstDayOfWeek?: string | number | undefined;
89366
89351
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
89367
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
89368
89352
  inputFormat?: string | undefined;
89369
89353
  displayFormat?: string | Function | undefined;
89370
89354
  } & {
@@ -91562,7 +91546,6 @@ declare const VDateInput: {
91562
91546
  modelModifiers?: Record<string, boolean> | undefined;
91563
91547
  firstDayOfWeek?: string | number | undefined;
91564
91548
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
91565
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
91566
91549
  inputFormat?: string | undefined;
91567
91550
  displayFormat?: string | Function | undefined;
91568
91551
  } & {
@@ -93734,7 +93717,6 @@ declare const VDateInput: {
93734
93717
  modelModifiers?: Record<string, boolean> | undefined;
93735
93718
  firstDayOfWeek?: string | number | undefined;
93736
93719
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
93737
- weekdayFormat?: "long" | "short" | "narrow" | undefined;
93738
93720
  inputFormat?: string | undefined;
93739
93721
  displayFormat?: string | Function | undefined;
93740
93722
  } & {
@@ -95917,7 +95899,6 @@ declare const VDateInput: {
95917
95899
  default: undefined;
95918
95900
  };
95919
95901
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
95920
- weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
95921
95902
  hideWeekdays: BooleanConstructor;
95922
95903
  showWeek: BooleanConstructor;
95923
95904
  rounded: {
@@ -96150,7 +96131,6 @@ declare const VDateInput: {
96150
96131
  default: undefined;
96151
96132
  };
96152
96133
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
96153
- weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
96154
96134
  hideWeekdays: BooleanConstructor;
96155
96135
  showWeek: BooleanConstructor;
96156
96136
  rounded: {
@@ -101715,7 +101695,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
101715
101695
  setYear: (date: unknown, year: number) => unknown;
101716
101696
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
101717
101697
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
101718
- getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
101698
+ getWeekdays: (firstDayOfWeek?: number | string) => string[];
101719
101699
  getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
101720
101700
  getMonth: (date: unknown) => number;
101721
101701
  setMonth: (date: unknown, month: number) => unknown;
@@ -101769,77 +101749,74 @@ declare module 'vue' {
101769
101749
  $children?: VNodeChild
101770
101750
  }
101771
101751
  export interface GlobalComponents {
101772
- VAvatar: VAvatar
101752
+ VApp: VApp
101753
+ VAutocomplete: VAutocomplete
101773
101754
  VAlert: VAlert
101774
101755
  VAlertTitle: VAlertTitle
101775
- VBanner: VBanner
101776
- VBannerActions: VBannerActions
101777
- VBannerText: VBannerText
101756
+ VBadge: VBadge
101778
101757
  VAppBar: VAppBar
101779
101758
  VAppBarNavIcon: VAppBarNavIcon
101780
101759
  VAppBarTitle: VAppBarTitle
101781
- VApp: VApp
101782
- VAutocomplete: VAutocomplete
101783
- VBadge: VBadge
101760
+ VAvatar: VAvatar
101784
101761
  VBreadcrumbs: VBreadcrumbs
101785
101762
  VBreadcrumbsItem: VBreadcrumbsItem
101786
101763
  VBreadcrumbsDivider: VBreadcrumbsDivider
101787
- VBtnGroup: VBtnGroup
101788
- VBtn: VBtn
101789
101764
  VBottomNavigation: VBottomNavigation
101765
+ VBtn: VBtn
101766
+ VBanner: VBanner
101767
+ VBannerActions: VBannerActions
101768
+ VBannerText: VBannerText
101769
+ VBtnToggle: VBtnToggle
101790
101770
  VCarousel: VCarousel
101791
101771
  VCarouselItem: VCarouselItem
101772
+ VBottomSheet: VBottomSheet
101792
101773
  VCard: VCard
101793
101774
  VCardActions: VCardActions
101794
101775
  VCardItem: VCardItem
101795
101776
  VCardSubtitle: VCardSubtitle
101796
101777
  VCardText: VCardText
101797
101778
  VCardTitle: VCardTitle
101798
- VBtnToggle: VBtnToggle
101779
+ VChip: VChip
101799
101780
  VCheckbox: VCheckbox
101800
101781
  VCheckboxBtn: VCheckboxBtn
101801
- VBottomSheet: VBottomSheet
101802
- VChipGroup: VChipGroup
101803
- VColorPicker: VColorPicker
101782
+ VBtnGroup: VBtnGroup
101804
101783
  VCode: VCode
101805
101784
  VCombobox: VCombobox
101785
+ VCounter: VCounter
101786
+ VChipGroup: VChipGroup
101787
+ VColorPicker: VColorPicker
101788
+ VDialog: VDialog
101806
101789
  VDatePicker: VDatePicker
101807
101790
  VDatePickerControls: VDatePickerControls
101808
101791
  VDatePickerHeader: VDatePickerHeader
101809
101792
  VDatePickerMonth: VDatePickerMonth
101810
101793
  VDatePickerMonths: VDatePickerMonths
101811
101794
  VDatePickerYears: VDatePickerYears
101812
- VCounter: VCounter
101813
- VDataTable: VDataTable
101814
- VDataTableHeaders: VDataTableHeaders
101815
- VDataTableFooter: VDataTableFooter
101816
- VDataTableRows: VDataTableRows
101817
- VDataTableRow: VDataTableRow
101818
- VDataTableVirtual: VDataTableVirtual
101819
- VDataTableServer: VDataTableServer
101820
101795
  VDivider: VDivider
101796
+ VEmptyState: VEmptyState
101821
101797
  VExpansionPanels: VExpansionPanels
101822
101798
  VExpansionPanel: VExpansionPanel
101823
101799
  VExpansionPanelText: VExpansionPanelText
101824
101800
  VExpansionPanelTitle: VExpansionPanelTitle
101825
- VEmptyState: VEmptyState
101826
101801
  VField: VField
101827
101802
  VFieldLabel: VFieldLabel
101828
101803
  VFab: VFab
101829
- VFileInput: VFileInput
101830
101804
  VIcon: VIcon
101831
101805
  VComponentIcon: VComponentIcon
101832
101806
  VSvgIcon: VSvgIcon
101833
101807
  VLigatureIcon: VLigatureIcon
101834
101808
  VClassIcon: VClassIcon
101809
+ VFileInput: VFileInput
101835
101810
  VFooter: VFooter
101836
- VImg: VImg
101811
+ VInfiniteScroll: VInfiniteScroll
101812
+ VLabel: VLabel
101837
101813
  VInput: VInput
101838
- VMain: VMain
101839
- VKbd: VKbd
101840
101814
  VItemGroup: VItemGroup
101841
101815
  VItem: VItem
101842
- VInfiniteScroll: VInfiniteScroll
101816
+ VImg: VImg
101817
+ VKbd: VKbd
101818
+ VMessages: VMessages
101819
+ VMenu: VMenu
101843
101820
  VList: VList
101844
101821
  VListGroup: VListGroup
101845
101822
  VListImg: VListImg
@@ -101849,40 +101826,41 @@ declare module 'vue' {
101849
101826
  VListItemSubtitle: VListItemSubtitle
101850
101827
  VListItemTitle: VListItemTitle
101851
101828
  VListSubheader: VListSubheader
101852
- VLabel: VLabel
101853
- VMenu: VMenu
101854
- VNumberInput: VNumberInput
101855
- VMessages: VMessages
101856
101829
  VNavigationDrawer: VNavigationDrawer
101857
101830
  VOtpInput: VOtpInput
101831
+ VNumberInput: VNumberInput
101858
101832
  VOverlay: VOverlay
101859
- VPagination: VPagination
101833
+ VProgressCircular: VProgressCircular
101860
101834
  VRadioGroup: VRadioGroup
101861
- VRating: VRating
101862
- VSelectionControlGroup: VSelectionControlGroup
101863
- VSelectionControl: VSelectionControl
101864
101835
  VProgressLinear: VProgressLinear
101836
+ VPagination: VPagination
101837
+ VSelectionControlGroup: VSelectionControlGroup
101838
+ VRating: VRating
101865
101839
  VSelect: VSelect
101866
- VSheet: VSheet
101840
+ VSelectionControl: VSelectionControl
101841
+ VSkeletonLoader: VSkeletonLoader
101842
+ VMain: VMain
101867
101843
  VSlideGroup: VSlideGroup
101868
101844
  VSlideGroupItem: VSlideGroupItem
101869
- VSkeletonLoader: VSkeletonLoader
101870
- VSnackbar: VSnackbar
101871
- VSlider: VSlider
101872
101845
  VStepper: VStepper
101873
101846
  VStepperActions: VStepperActions
101874
101847
  VStepperHeader: VStepperHeader
101875
101848
  VStepperItem: VStepperItem
101876
101849
  VStepperWindow: VStepperWindow
101877
101850
  VStepperWindowItem: VStepperWindowItem
101878
- VSystemBar: VSystemBar
101851
+ VSlider: VSlider
101852
+ VSheet: VSheet
101879
101853
  VSwitch: VSwitch
101880
- VTextField: VTextField
101854
+ VSnackbar: VSnackbar
101881
101855
  VTab: VTab
101882
101856
  VTabs: VTabs
101883
101857
  VTabsWindow: VTabsWindow
101884
101858
  VTabsWindowItem: VTabsWindowItem
101859
+ VTextField: VTextField
101860
+ VSystemBar: VSystemBar
101885
101861
  VTable: VTable
101862
+ VTimeline: VTimeline
101863
+ VTimelineItem: VTimelineItem
101886
101864
  VToolbar: VToolbar
101887
101865
  VToolbarTitle: VToolbarTitle
101888
101866
  VToolbarItems: VToolbarItems
@@ -101890,28 +101868,28 @@ declare module 'vue' {
101890
101868
  VTextarea: VTextarea
101891
101869
  VWindow: VWindow
101892
101870
  VWindowItem: VWindowItem
101893
- VChip: VChip
101871
+ VConfirmEdit: VConfirmEdit
101894
101872
  VDataIterator: VDataIterator
101895
101873
  VDefaultsProvider: VDefaultsProvider
101896
- VForm: VForm
101897
101874
  VContainer: VContainer
101898
101875
  VCol: VCol
101899
101876
  VRow: VRow
101900
101877
  VSpacer: VSpacer
101901
- VHover: VHover
101878
+ VForm: VForm
101902
101879
  VLayout: VLayout
101903
101880
  VLayoutItem: VLayoutItem
101904
- VLazy: VLazy
101905
101881
  VLocaleProvider: VLocaleProvider
101882
+ VHover: VHover
101906
101883
  VNoSsr: VNoSsr
101907
- VRadio: VRadio
101908
101884
  VParallax: VParallax
101885
+ VRadio: VRadio
101909
101886
  VRangeSlider: VRangeSlider
101910
- VSnackbarQueue: VSnackbarQueue
101911
101887
  VResponsive: VResponsive
101888
+ VSnackbarQueue: VSnackbarQueue
101912
101889
  VSparkline: VSparkline
101913
101890
  VSpeedDial: VSpeedDial
101914
101891
  VThemeProvider: VThemeProvider
101892
+ VVirtualScroll: VVirtualScroll
101915
101893
  VFabTransition: VFabTransition
101916
101894
  VDialogBottomTransition: VDialogBottomTransition
101917
101895
  VDialogTopTransition: VDialogTopTransition
@@ -101928,15 +101906,15 @@ declare module 'vue' {
101928
101906
  VExpandTransition: VExpandTransition
101929
101907
  VExpandXTransition: VExpandXTransition
101930
101908
  VDialogTransition: VDialogTransition
101931
- VVirtualScroll: VVirtualScroll
101909
+ VDataTable: VDataTable
101910
+ VDataTableHeaders: VDataTableHeaders
101911
+ VDataTableFooter: VDataTableFooter
101912
+ VDataTableRows: VDataTableRows
101913
+ VDataTableRow: VDataTableRow
101914
+ VDataTableVirtual: VDataTableVirtual
101915
+ VDataTableServer: VDataTableServer
101932
101916
  VValidation: VValidation
101933
- VProgressCircular: VProgressCircular
101934
- VDialog: VDialog
101935
- VConfirmEdit: VConfirmEdit
101936
- VTimeline: VTimeline
101937
- VTimelineItem: VTimelineItem
101938
- VFileUpload: VFileUpload
101939
- VFileUploadItem: VFileUploadItem
101917
+ VLazy: VLazy
101940
101918
  VCalendar: VCalendar
101941
101919
  VCalendarDay: VCalendarDay
101942
101920
  VCalendarHeader: VCalendarHeader
@@ -101944,19 +101922,21 @@ declare module 'vue' {
101944
101922
  VCalendarIntervalEvent: VCalendarIntervalEvent
101945
101923
  VCalendarMonthDay: VCalendarMonthDay
101946
101924
  VColorInput: VColorInput
101947
- VStepperVertical: VStepperVertical
101948
- VStepperVerticalItem: VStepperVerticalItem
101949
- VStepperVerticalActions: VStepperVerticalActions
101950
101925
  VIconBtn: VIconBtn
101926
+ VPicker: VPicker
101927
+ VPickerTitle: VPickerTitle
101928
+ VFileUpload: VFileUpload
101929
+ VFileUploadItem: VFileUploadItem
101951
101930
  VTimePicker: VTimePicker
101952
101931
  VTimePickerClock: VTimePickerClock
101953
101932
  VTimePickerControls: VTimePickerControls
101933
+ VStepperVertical: VStepperVertical
101934
+ VStepperVerticalItem: VStepperVerticalItem
101935
+ VStepperVerticalActions: VStepperVerticalActions
101954
101936
  VTreeview: VTreeview
101955
101937
  VTreeviewItem: VTreeviewItem
101956
101938
  VTreeviewGroup: VTreeviewGroup
101957
- VPicker: VPicker
101958
- VPickerTitle: VPickerTitle
101959
- VPullToRefresh: VPullToRefresh
101960
101939
  VDateInput: VDateInput
101940
+ VPullToRefresh: VPullToRefresh
101961
101941
  }
101962
101942
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.5-master.2025-05-20
2
+ * Vuetify v3.8.6-master.2025-05-21
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -4855,7 +4855,7 @@ const VProgressCircular = genericComponent()({
4855
4855
  resizeRef,
4856
4856
  contentRect
4857
4857
  } = useResizeObserver();
4858
- const normalizedValue = toRef(() => Math.max(0, Math.min(100, parseFloat(props.modelValue))));
4858
+ const normalizedValue = toRef(() => clamp(parseFloat(props.modelValue), 0, 100));
4859
4859
  const width = toRef(() => Number(props.width));
4860
4860
  const size = toRef(() => {
4861
4861
  // Get size from element if size prop value is small, large etc
@@ -7462,7 +7462,7 @@ function clampTarget(container, value, rtl, horizontal) {
7462
7462
  min = 0;
7463
7463
  max = scrollHeight + -containerHeight;
7464
7464
  }
7465
- return Math.max(Math.min(value, max), min);
7465
+ return clamp(value, min, max);
7466
7466
  }
7467
7467
 
7468
7468
  function calculateUpdatedTarget(_ref) {
@@ -12739,6 +12739,7 @@ const VSelect = genericComponent()({
12739
12739
  const selectedValues = computed(() => model.value.map(selection => selection.value));
12740
12740
  const isFocused = shallowRef(false);
12741
12741
  let keyboardLookupPrefix = '';
12742
+ let keyboardLookupIndex = -1;
12742
12743
  let keyboardLookupLastTime;
12743
12744
  const displayItems = computed(() => {
12744
12745
  if (props.hideSelected) {
@@ -12806,18 +12807,46 @@ const VSelect = genericComponent()({
12806
12807
  const now = performance.now();
12807
12808
  if (now - keyboardLookupLastTime > KEYBOARD_LOOKUP_THRESHOLD) {
12808
12809
  keyboardLookupPrefix = '';
12810
+ keyboardLookupIndex = -1;
12809
12811
  }
12810
12812
  keyboardLookupPrefix += e.key.toLowerCase();
12811
12813
  keyboardLookupLastTime = now;
12812
- const item = items.value.find(item => item.title.toLowerCase().startsWith(keyboardLookupPrefix));
12813
- if (item !== undefined) {
12814
- if (!props.multiple) {
12815
- model.value = [item];
12814
+ const items = displayItems.value;
12815
+ function findItem() {
12816
+ let result = findItemBase();
12817
+ if (result) return result;
12818
+ if (keyboardLookupPrefix.at(-1) === keyboardLookupPrefix.at(-2)) {
12819
+ // No matches but we have a repeated letter, try the next item with that prefix
12820
+ keyboardLookupPrefix = keyboardLookupPrefix.slice(0, -1);
12821
+ result = findItemBase();
12822
+ if (result) return result;
12816
12823
  }
12817
- const index = displayItems.value.indexOf(item);
12818
- if (~index && IN_BROWSER) {
12819
- listRef.value?.focus(index);
12824
+
12825
+ // Still nothing, wrap around to the top
12826
+ keyboardLookupIndex = -1;
12827
+ result = findItemBase();
12828
+ if (result) return result;
12829
+
12830
+ // Still nothing, try just the new letter
12831
+ keyboardLookupPrefix = e.key.toLowerCase();
12832
+ return findItemBase();
12833
+ }
12834
+ function findItemBase() {
12835
+ for (let i = keyboardLookupIndex + 1; i < items.length; i++) {
12836
+ const _item = items[i];
12837
+ if (_item.title.toLowerCase().startsWith(keyboardLookupPrefix)) {
12838
+ return [_item, i];
12839
+ }
12820
12840
  }
12841
+ return undefined;
12842
+ }
12843
+ const result = findItem();
12844
+ if (!result) return;
12845
+ const [item, index] = result;
12846
+ keyboardLookupIndex = index;
12847
+ listRef.value?.focus(index);
12848
+ if (!props.multiple) {
12849
+ model.value = [item];
12821
12850
  }
12822
12851
  }
12823
12852
 
@@ -15861,7 +15890,7 @@ const useSlider = _ref => {
15861
15890
  const clickOffset = getPosition(e, position);
15862
15891
 
15863
15892
  // It is possible for left to be NaN, force to number
15864
- let clickPos = Math.min(Math.max((clickOffset - trackStart - startOffset.value) / trackLength, 0), 1) || 0;
15893
+ let clickPos = clamp((clickOffset - trackStart - startOffset.value) / trackLength) || 0;
15865
15894
  if (vertical ? indexFromEnd.value : indexFromEnd.value !== isRtl.value) clickPos = 1 - clickPos;
15866
15895
  return roundValue(min.value + clickPos * (max.value - min.value));
15867
15896
  }
@@ -17159,13 +17188,13 @@ function date(value) {
17159
17188
  return null;
17160
17189
  }
17161
17190
  const sundayJanuarySecond2000 = new Date(2000, 0, 2);
17162
- function getWeekdays(locale, firstDayOfWeek, weekdayFormat) {
17191
+ function getWeekdays(locale, firstDayOfWeek) {
17163
17192
  const daysFromSunday = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17164
17193
  return createRange(7).map(i => {
17165
17194
  const weekday = new Date(sundayJanuarySecond2000);
17166
17195
  weekday.setDate(sundayJanuarySecond2000.getDate() + daysFromSunday + i);
17167
17196
  return new Intl.DateTimeFormat(locale, {
17168
- weekday: weekdayFormat ?? 'narrow'
17197
+ weekday: 'narrow'
17169
17198
  }).format(weekday);
17170
17199
  });
17171
17200
  }
@@ -17629,9 +17658,9 @@ class VuetifyDateAdapter {
17629
17658
  getDiff(date, comparing, unit) {
17630
17659
  return getDiff(date, comparing, unit);
17631
17660
  }
17632
- getWeekdays(firstDayOfWeek, weekdayFormat) {
17661
+ getWeekdays(firstDayOfWeek) {
17633
17662
  const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
17634
- return getWeekdays(this.locale, firstDay, weekdayFormat);
17663
+ return getWeekdays(this.locale, firstDay);
17635
17664
  }
17636
17665
  getYear(date) {
17637
17666
  return getYear(date);
@@ -21933,8 +21962,7 @@ const makeCalendarProps = propsFactory({
21933
21962
  firstDayOfWeek: {
21934
21963
  type: [Number, String],
21935
21964
  default: undefined
21936
- },
21937
- weekdayFormat: String
21965
+ }
21938
21966
  }, 'calendar');
21939
21967
  function useCalendar(props) {
21940
21968
  const adapter = useDate();
@@ -22182,7 +22210,7 @@ const VDatePickerMonth = genericComponent()({
22182
22210
  "ref": daysRef,
22183
22211
  "key": daysInMonth.value[0].date?.toString(),
22184
22212
  "class": "v-date-picker-month__days"
22185
- }, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek, props.weekdayFormat).map(weekDay => createVNode("div", {
22213
+ }, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek).map(weekDay => createVNode("div", {
22186
22214
  "class": ['v-date-picker-month__day', 'v-date-picker-month__weekday']
22187
22215
  }, [weekDay])), daysInMonth.value.map((item, i) => {
22188
22216
  const slotProps = {
@@ -24300,7 +24328,7 @@ function useTouch(_ref) {
24300
24328
  function getProgress(pos) {
24301
24329
  let limit = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
24302
24330
  const progress = position.value === 'left' ? (pos - offset.value) / width.value : position.value === 'right' ? (document.documentElement.clientWidth - pos - offset.value) / width.value : position.value === 'top' ? (pos - offset.value) / width.value : position.value === 'bottom' ? (document.documentElement.clientHeight - pos - offset.value) / width.value : oops();
24303
- return limit ? Math.max(0, Math.min(1, progress)) : progress;
24331
+ return limit ? clamp(progress) : progress;
24304
24332
  }
24305
24333
  function onTouchstart(e) {
24306
24334
  if (touchless.value) return;
@@ -24785,6 +24813,9 @@ const VNumberInput = genericComponent()({
24785
24813
  const controlNodeDefaultHeight = toRef(() => controlVariant.value === 'stacked' ? 'auto' : '100%');
24786
24814
  const incrementSlotProps = {
24787
24815
  props: {
24816
+ style: {
24817
+ touchAction: 'none'
24818
+ },
24788
24819
  onClick: onControlClick,
24789
24820
  onPointerup: onControlMouseup,
24790
24821
  onPointerdown: onUpControlMousedown
@@ -24792,6 +24823,9 @@ const VNumberInput = genericComponent()({
24792
24823
  };
24793
24824
  const decrementSlotProps = {
24794
24825
  props: {
24826
+ style: {
24827
+ touchAction: 'none'
24828
+ },
24795
24829
  onClick: onControlClick,
24796
24830
  onPointerup: onControlMouseup,
24797
24831
  onPointerdown: onDownControlMousedown
@@ -24924,17 +24958,18 @@ const VNumberInput = genericComponent()({
24924
24958
  } = VTextField.filterProps(props);
24925
24959
  function incrementControlNode() {
24926
24960
  return !slots.increment ? createVNode(VBtn, {
24961
+ "aria-hidden": "true",
24962
+ "data-testid": "increment",
24927
24963
  "disabled": !canIncrease.value,
24928
24964
  "flat": true,
24929
- "key": "increment-btn",
24930
24965
  "height": controlNodeDefaultHeight.value,
24931
- "data-testid": "increment",
24932
- "aria-hidden": "true",
24933
24966
  "icon": incrementIcon.value,
24967
+ "key": "increment-btn",
24934
24968
  "onClick": onControlClick,
24935
- "onPointerup": onControlMouseup,
24936
24969
  "onPointerdown": onUpControlMousedown,
24970
+ "onPointerup": onControlMouseup,
24937
24971
  "size": controlNodeSize.value,
24972
+ "style": "touch-action: none",
24938
24973
  "tabindex": "-1"
24939
24974
  }, null) : createVNode(VDefaultsProvider, {
24940
24975
  "key": "increment-defaults",
@@ -24953,18 +24988,19 @@ const VNumberInput = genericComponent()({
24953
24988
  }
24954
24989
  function decrementControlNode() {
24955
24990
  return !slots.decrement ? createVNode(VBtn, {
24991
+ "aria-hidden": "true",
24992
+ "data-testid": "decrement",
24956
24993
  "disabled": !canDecrease.value,
24957
24994
  "flat": true,
24958
- "key": "decrement-btn",
24959
24995
  "height": controlNodeDefaultHeight.value,
24960
- "data-testid": "decrement",
24961
- "aria-hidden": "true",
24962
24996
  "icon": decrementIcon.value,
24963
- "size": controlNodeSize.value,
24964
- "tabindex": "-1",
24997
+ "key": "decrement-btn",
24965
24998
  "onClick": onControlClick,
24999
+ "onPointerdown": onDownControlMousedown,
24966
25000
  "onPointerup": onControlMouseup,
24967
- "onPointerdown": onDownControlMousedown
25001
+ "size": controlNodeSize.value,
25002
+ "style": "touch-action: none",
25003
+ "tabindex": "-1"
24968
25004
  }, null) : createVNode(VDefaultsProvider, {
24969
25005
  "key": "decrement-defaults",
24970
25006
  "defaults": {
@@ -31914,7 +31950,7 @@ function createVuetify$1() {
31914
31950
  };
31915
31951
  });
31916
31952
  }
31917
- const version$1 = "3.8.5-master.2025-05-20";
31953
+ const version$1 = "3.8.6-master.2025-05-21";
31918
31954
  createVuetify$1.version = version$1;
31919
31955
 
31920
31956
  // Vue's inject() can only be used in setup
@@ -32212,7 +32248,7 @@ var index = /*#__PURE__*/Object.freeze({
32212
32248
 
32213
32249
  /* eslint-disable local-rules/sort-imports */
32214
32250
 
32215
- const version = "3.8.5-master.2025-05-20";
32251
+ const version = "3.8.6-master.2025-05-21";
32216
32252
 
32217
32253
  /* eslint-disable local-rules/sort-imports */
32218
32254