@vuetify/nightly 3.8.8-master.2025-06-06 → 3.8.8-master.2025-06-08

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 (61) hide show
  1. package/CHANGELOG.md +14 -3
  2. package/dist/json/attributes.json +2080 -2080
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +160 -160
  5. package/dist/json/web-types.json +3925 -3925
  6. package/dist/vuetify-labs.cjs +117 -59
  7. package/dist/vuetify-labs.css +3446 -3446
  8. package/dist/vuetify-labs.d.ts +65 -59
  9. package/dist/vuetify-labs.esm.js +117 -59
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +117 -59
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +104 -40
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3061 -3061
  16. package/dist/vuetify.d.ts +60 -59
  17. package/dist/vuetify.esm.js +104 -40
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +104 -40
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +147 -140
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VDataTable/VDataTableColumn.js +1 -0
  25. package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
  26. package/lib/components/VDataTable/VDataTableFooter.js +3 -1
  27. package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
  28. package/lib/components/VDataTable/VDataTableHeaders.js +8 -1
  29. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  30. package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
  31. package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
  32. package/lib/components/VFileInput/VFileInput.js +8 -3
  33. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  34. package/lib/components/VNumberInput/VNumberInput.d.ts +5 -0
  35. package/lib/components/VNumberInput/VNumberInput.js +7 -11
  36. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  37. package/lib/components/VOtpInput/VOtpInput.js +5 -2
  38. package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
  39. package/lib/components/VSlider/VSliderThumb.js +1 -1
  40. package/lib/components/VSlider/VSliderThumb.js.map +1 -1
  41. package/lib/components/VTextField/VTextField.js +5 -4
  42. package/lib/components/VTextField/VTextField.js.map +1 -1
  43. package/lib/composables/date/date.d.ts +1 -4
  44. package/lib/composables/date/date.js +13 -14
  45. package/lib/composables/date/date.js.map +1 -1
  46. package/lib/composables/fileDrop.d.ts +4 -0
  47. package/lib/composables/fileDrop.js +50 -0
  48. package/lib/composables/fileDrop.js.map +1 -0
  49. package/lib/entry-bundler.d.ts +0 -3
  50. package/lib/entry-bundler.js +1 -1
  51. package/lib/framework.d.ts +55 -59
  52. package/lib/framework.js +1 -1
  53. package/lib/labs/VColorInput/VColorInput.js +3 -8
  54. package/lib/labs/VColorInput/VColorInput.js.map +1 -1
  55. package/lib/labs/VDateInput/VDateInput.d.ts +5 -0
  56. package/lib/labs/VDateInput/VDateInput.js +7 -10
  57. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  58. package/lib/labs/VFileUpload/VFileUpload.js +7 -3
  59. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  60. package/lib/labs/entry-bundler.d.ts +0 -3
  61. package/package.json +1 -1
@@ -86,7 +86,6 @@ declare function useRtl(): {
86
86
 
87
87
  interface DateInstance extends DateModule.InternalAdapter {
88
88
  locale?: any;
89
- createDateRange: (start: unknown, stop?: unknown) => unknown[];
90
89
  }
91
90
  /** Supports module augmentation to specify date adapter types */
92
91
  declare namespace DateModule {
@@ -51326,6 +51325,7 @@ declare const VNumberInput: {
51326
51325
  "v-slot:increment"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
51327
51326
  "v-slot:decrement"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
51328
51327
  } & {
51328
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
51329
51329
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
51330
51330
  }, Omit<Omit<{
51331
51331
  $: vue.ComponentInternalInstance;
@@ -53266,6 +53266,7 @@ declare const VNumberInput: {
53266
53266
  } | {};
53267
53267
  }) | {};
53268
53268
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
53269
+ 'update:focused': (val: boolean) => true;
53269
53270
  'update:modelValue': (val: number) => true;
53270
53271
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
53271
53272
  flat: boolean;
@@ -53462,6 +53463,7 @@ declare const VNumberInput: {
53462
53463
  "v-slot:increment"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
53463
53464
  "v-slot:decrement"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
53464
53465
  } & {
53466
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
53465
53467
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
53466
53468
  }, Omit<Omit<{
53467
53469
  $: vue.ComponentInternalInstance;
@@ -55575,6 +55577,7 @@ declare const VNumberInput: {
55575
55577
  "v-slot:increment"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
55576
55578
  "v-slot:decrement"?: false | ((arg: ControlSlot$1) => vue.VNodeChild) | undefined;
55577
55579
  } & {
55580
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
55578
55581
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
55579
55582
  }, Omit<Omit<{
55580
55583
  $: vue.ComponentInternalInstance;
@@ -57515,6 +57518,7 @@ declare const VNumberInput: {
57515
57518
  } | {};
57516
57519
  }) | {};
57517
57520
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
57521
+ 'update:focused': (val: boolean) => true;
57518
57522
  'update:modelValue': (val: number) => true;
57519
57523
  }, string, {
57520
57524
  flat: boolean;
@@ -89439,6 +89443,7 @@ declare const VDateInput: {
89439
89443
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
89440
89444
  } & {
89441
89445
  onCancel?: (() => any) | undefined;
89446
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
89442
89447
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
89443
89448
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
89444
89449
  onSave?: ((value: string) => any) | undefined;
@@ -91383,6 +91388,7 @@ declare const VDateInput: {
91383
91388
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
91384
91389
  save: (value: string) => true;
91385
91390
  cancel: () => true;
91391
+ 'update:focused': (val: boolean) => true;
91386
91392
  'update:modelValue': (val: string) => true;
91387
91393
  'update:menu': (val: boolean) => true;
91388
91394
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
@@ -91638,6 +91644,7 @@ declare const VDateInput: {
91638
91644
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
91639
91645
  } & {
91640
91646
  onCancel?: (() => any) | undefined;
91647
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
91641
91648
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
91642
91649
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
91643
91650
  onSave?: ((value: string) => any) | undefined;
@@ -93811,6 +93818,7 @@ declare const VDateInput: {
93811
93818
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
93812
93819
  } & {
93813
93820
  onCancel?: (() => any) | undefined;
93821
+ "onUpdate:focused"?: ((val: boolean) => any) | undefined;
93814
93822
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
93815
93823
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
93816
93824
  onSave?: ((value: string) => any) | undefined;
@@ -95755,6 +95763,7 @@ declare const VDateInput: {
95755
95763
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
95756
95764
  save: (value: string) => true;
95757
95765
  cancel: () => true;
95766
+ 'update:focused': (val: boolean) => true;
95758
95767
  'update:modelValue': (val: string) => true;
95759
95768
  'update:menu': (val: boolean) => true;
95760
95769
  }, string, {
@@ -101701,7 +101710,6 @@ declare const createVuetify: (options?: VuetifyOptions) => {
101701
101710
  options: InternalDateOptions;
101702
101711
  instance: {
101703
101712
  locale?: any;
101704
- createDateRange: (start: unknown, stop?: unknown) => unknown[];
101705
101713
  date: (value?: any) => unknown;
101706
101714
  format: (date: unknown, formatString: string) => string;
101707
101715
  toJsDate: (value: unknown) => Date;
@@ -101745,8 +101753,6 @@ declare const createVuetify: (options?: VuetifyOptions) => {
101745
101753
  setHours: (date: unknown, hours: number) => unknown;
101746
101754
  getMinutes: (date: unknown) => number;
101747
101755
  setMinutes: (date: unknown, minutes: number) => unknown;
101748
- } & {
101749
- createDateRange(start: unknown, stop?: unknown): unknown[];
101750
101756
  };
101751
101757
  };
101752
101758
  goTo: GoToInstance;
@@ -101793,37 +101799,36 @@ declare module 'vue' {
101793
101799
  VAppBar: VAppBar
101794
101800
  VAppBarNavIcon: VAppBarNavIcon
101795
101801
  VAppBarTitle: VAppBarTitle
101802
+ VAutocomplete: VAutocomplete
101796
101803
  VAlert: VAlert
101797
101804
  VAlertTitle: VAlertTitle
101798
- VAutocomplete: VAutocomplete
101799
101805
  VAvatar: VAvatar
101800
- VBadge: VBadge
101801
101806
  VBanner: VBanner
101802
101807
  VBannerActions: VBannerActions
101803
101808
  VBannerText: VBannerText
101804
101809
  VBottomSheet: VBottomSheet
101805
- VBottomNavigation: VBottomNavigation
101810
+ VBadge: VBadge
101806
101811
  VBreadcrumbs: VBreadcrumbs
101807
101812
  VBreadcrumbsItem: VBreadcrumbsItem
101808
101813
  VBreadcrumbsDivider: VBreadcrumbsDivider
101814
+ VBottomNavigation: VBottomNavigation
101815
+ VBtnGroup: VBtnGroup
101816
+ VBtnToggle: VBtnToggle
101817
+ VCarousel: VCarousel
101818
+ VCarouselItem: VCarouselItem
101809
101819
  VBtn: VBtn
101820
+ VChipGroup: VChipGroup
101821
+ VChip: VChip
101822
+ VCheckbox: VCheckbox
101823
+ VCheckboxBtn: VCheckboxBtn
101810
101824
  VCard: VCard
101811
101825
  VCardActions: VCardActions
101812
101826
  VCardItem: VCardItem
101813
101827
  VCardSubtitle: VCardSubtitle
101814
101828
  VCardText: VCardText
101815
101829
  VCardTitle: VCardTitle
101816
- VCarousel: VCarousel
101817
- VCarouselItem: VCarouselItem
101818
- VChipGroup: VChipGroup
101819
101830
  VCode: VCode
101820
- VBtnToggle: VBtnToggle
101821
- VCheckbox: VCheckbox
101822
- VCheckboxBtn: VCheckboxBtn
101823
- VCombobox: VCombobox
101824
- VCounter: VCounter
101825
101831
  VColorPicker: VColorPicker
101826
- VBtnGroup: VBtnGroup
101827
101832
  VDataTable: VDataTable
101828
101833
  VDataTableHeaders: VDataTableHeaders
101829
101834
  VDataTableFooter: VDataTableFooter
@@ -101831,37 +101836,38 @@ declare module 'vue' {
101831
101836
  VDataTableRow: VDataTableRow
101832
101837
  VDataTableVirtual: VDataTableVirtual
101833
101838
  VDataTableServer: VDataTableServer
101834
- VChip: VChip
101835
- VEmptyState: VEmptyState
101839
+ VCombobox: VCombobox
101836
101840
  VDatePicker: VDatePicker
101837
101841
  VDatePickerControls: VDatePickerControls
101838
101842
  VDatePickerHeader: VDatePickerHeader
101839
101843
  VDatePickerMonth: VDatePickerMonth
101840
101844
  VDatePickerMonths: VDatePickerMonths
101841
101845
  VDatePickerYears: VDatePickerYears
101846
+ VCounter: VCounter
101847
+ VDialog: VDialog
101848
+ VEmptyState: VEmptyState
101842
101849
  VDivider: VDivider
101843
- VFab: VFab
101844
101850
  VExpansionPanels: VExpansionPanels
101845
101851
  VExpansionPanel: VExpansionPanel
101846
101852
  VExpansionPanelText: VExpansionPanelText
101847
101853
  VExpansionPanelTitle: VExpansionPanelTitle
101848
- VDialog: VDialog
101849
- VField: VField
101850
- VFieldLabel: VFieldLabel
101854
+ VFab: VFab
101851
101855
  VFileInput: VFileInput
101852
101856
  VFooter: VFooter
101853
- VInput: VInput
101857
+ VField: VField
101858
+ VFieldLabel: VFieldLabel
101854
101859
  VIcon: VIcon
101855
101860
  VComponentIcon: VComponentIcon
101856
101861
  VSvgIcon: VSvgIcon
101857
101862
  VLigatureIcon: VLigatureIcon
101858
101863
  VClassIcon: VClassIcon
101864
+ VImg: VImg
101865
+ VInput: VInput
101859
101866
  VInfiniteScroll: VInfiniteScroll
101867
+ VKbd: VKbd
101860
101868
  VItemGroup: VItemGroup
101861
101869
  VItem: VItem
101862
- VImg: VImg
101863
101870
  VLabel: VLabel
101864
- VKbd: VKbd
101865
101871
  VList: VList
101866
101872
  VListGroup: VListGroup
101867
101873
  VListImg: VListImg
@@ -101872,70 +101878,68 @@ declare module 'vue' {
101872
101878
  VListItemTitle: VListItemTitle
101873
101879
  VListSubheader: VListSubheader
101874
101880
  VMain: VMain
101875
- VNavigationDrawer: VNavigationDrawer
101876
- VMenu: VMenu
101877
101881
  VMessages: VMessages
101878
- VOtpInput: VOtpInput
101882
+ VMenu: VMenu
101879
101883
  VNumberInput: VNumberInput
101880
- VPagination: VPagination
101884
+ VNavigationDrawer: VNavigationDrawer
101885
+ VOtpInput: VOtpInput
101881
101886
  VProgressLinear: VProgressLinear
101882
101887
  VOverlay: VOverlay
101888
+ VPagination: VPagination
101889
+ VSelect: VSelect
101883
101890
  VProgressCircular: VProgressCircular
101884
101891
  VRadioGroup: VRadioGroup
101885
101892
  VRating: VRating
101886
- VSelectionControl: VSelectionControl
101887
- VSheet: VSheet
101888
- VSelect: VSelect
101889
- VSkeletonLoader: VSkeletonLoader
101890
101893
  VSelectionControlGroup: VSelectionControlGroup
101891
101894
  VSlideGroup: VSlideGroup
101892
101895
  VSlideGroupItem: VSlideGroupItem
101896
+ VSheet: VSheet
101897
+ VSelectionControl: VSelectionControl
101898
+ VSkeletonLoader: VSkeletonLoader
101893
101899
  VSlider: VSlider
101894
- VTextField: VTextField
101900
+ VSnackbar: VSnackbar
101895
101901
  VStepper: VStepper
101896
101902
  VStepperActions: VStepperActions
101897
101903
  VStepperHeader: VStepperHeader
101898
101904
  VStepperItem: VStepperItem
101899
101905
  VStepperWindow: VStepperWindow
101900
101906
  VStepperWindowItem: VStepperWindowItem
101907
+ VSwitch: VSwitch
101908
+ VTable: VTable
101901
101909
  VSystemBar: VSystemBar
101902
- VSnackbar: VSnackbar
101910
+ VTextarea: VTextarea
101911
+ VTextField: VTextField
101903
101912
  VTab: VTab
101904
101913
  VTabs: VTabs
101905
101914
  VTabsWindow: VTabsWindow
101906
101915
  VTabsWindowItem: VTabsWindowItem
101907
- VTextarea: VTextarea
101908
- VTable: VTable
101909
- VWindow: VWindow
101910
- VWindowItem: VWindowItem
101916
+ VTimeline: VTimeline
101917
+ VTimelineItem: VTimelineItem
101918
+ VTooltip: VTooltip
101911
101919
  VToolbar: VToolbar
101912
101920
  VToolbarTitle: VToolbarTitle
101913
101921
  VToolbarItems: VToolbarItems
101914
- VTooltip: VTooltip
101915
- VSwitch: VSwitch
101922
+ VWindow: VWindow
101923
+ VWindowItem: VWindowItem
101916
101924
  VConfirmEdit: VConfirmEdit
101917
- VDataIterator: VDataIterator
101918
101925
  VDefaultsProvider: VDefaultsProvider
101919
- VContainer: VContainer
101920
- VCol: VCol
101921
- VRow: VRow
101922
- VSpacer: VSpacer
101923
- VHover: VHover
101924
101926
  VForm: VForm
101925
- VLazy: VLazy
101927
+ VDataIterator: VDataIterator
101928
+ VHover: VHover
101926
101929
  VLayout: VLayout
101927
101930
  VLayoutItem: VLayoutItem
101928
101931
  VLocaleProvider: VLocaleProvider
101932
+ VLazy: VLazy
101929
101933
  VNoSsr: VNoSsr
101930
101934
  VParallax: VParallax
101935
+ VRadio: VRadio
101931
101936
  VRangeSlider: VRangeSlider
101932
101937
  VResponsive: VResponsive
101933
- VRadio: VRadio
101934
- VSparkline: VSparkline
101935
101938
  VSpeedDial: VSpeedDial
101939
+ VSparkline: VSparkline
101936
101940
  VThemeProvider: VThemeProvider
101937
- VValidation: VValidation
101938
101941
  VVirtualScroll: VVirtualScroll
101942
+ VValidation: VValidation
101939
101943
  VFabTransition: VFabTransition
101940
101944
  VDialogBottomTransition: VDialogBottomTransition
101941
101945
  VDialogTopTransition: VDialogTopTransition
@@ -101952,8 +101956,10 @@ declare module 'vue' {
101952
101956
  VExpandTransition: VExpandTransition
101953
101957
  VExpandXTransition: VExpandXTransition
101954
101958
  VDialogTransition: VDialogTransition
101955
- VTimeline: VTimeline
101956
- VTimelineItem: VTimelineItem
101959
+ VContainer: VContainer
101960
+ VCol: VCol
101961
+ VRow: VRow
101962
+ VSpacer: VSpacer
101957
101963
  VSnackbarQueue: VSnackbarQueue
101958
101964
  VCalendar: VCalendar
101959
101965
  VCalendarDay: VCalendarDay
@@ -101961,22 +101967,22 @@ declare module 'vue' {
101961
101967
  VCalendarInterval: VCalendarInterval
101962
101968
  VCalendarIntervalEvent: VCalendarIntervalEvent
101963
101969
  VCalendarMonthDay: VCalendarMonthDay
101964
- VPicker: VPicker
101965
- VPickerTitle: VPickerTitle
101970
+ VFileUpload: VFileUpload
101971
+ VFileUploadItem: VFileUploadItem
101966
101972
  VIconBtn: VIconBtn
101973
+ VColorInput: VColorInput
101967
101974
  VStepperVertical: VStepperVertical
101968
101975
  VStepperVerticalItem: VStepperVerticalItem
101969
101976
  VStepperVerticalActions: VStepperVerticalActions
101977
+ VPicker: VPicker
101978
+ VPickerTitle: VPickerTitle
101970
101979
  VTreeview: VTreeview
101971
101980
  VTreeviewItem: VTreeviewItem
101972
101981
  VTreeviewGroup: VTreeviewGroup
101973
- VColorInput: VColorInput
101974
- VFileUpload: VFileUpload
101975
- VFileUploadItem: VFileUploadItem
101976
101982
  VTimePicker: VTimePicker
101977
101983
  VTimePickerClock: VTimePickerClock
101978
101984
  VTimePickerControls: VTimePickerControls
101979
- VPullToRefresh: VPullToRefresh
101980
101985
  VDateInput: VDateInput
101986
+ VPullToRefresh: VPullToRefresh
101981
101987
  }
101982
101988
  }