vuetify 3.8.4 → 3.8.5

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/dist/_component-variables-labs.sass +1 -0
  2. package/dist/json/attributes.json +3194 -2850
  3. package/dist/json/importMap-labs.json +28 -24
  4. package/dist/json/importMap.json +158 -158
  5. package/dist/json/tags.json +91 -0
  6. package/dist/json/web-types.json +6341 -5124
  7. package/dist/vuetify-labs.cjs +277 -18
  8. package/dist/vuetify-labs.css +3763 -3735
  9. package/dist/vuetify-labs.d.ts +1380 -300
  10. package/dist/vuetify-labs.esm.js +277 -18
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +277 -18
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +5 -9
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2976 -2951
  17. package/dist/vuetify.d.ts +67 -64
  18. package/dist/vuetify.esm.js +5 -9
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +5 -9
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +5 -5
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js +0 -5
  26. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  27. package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
  28. package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
  29. package/lib/components/VBtn/VBtn.css +25 -0
  30. package/lib/components/VBtn/VBtn.sass +9 -0
  31. package/lib/components/VBtn/_variables.scss +1 -0
  32. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
  33. package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
  34. package/lib/composables/dateFormat.d.ts +24 -0
  35. package/lib/composables/dateFormat.js +112 -0
  36. package/lib/composables/dateFormat.js.map +1 -0
  37. package/lib/entry-bundler.js +1 -1
  38. package/lib/framework.d.ts +67 -64
  39. package/lib/framework.js +1 -1
  40. package/lib/iconsets/mdi.js +2 -1
  41. package/lib/iconsets/mdi.js.map +1 -1
  42. package/lib/labs/VColorInput/VColorInput.css +4 -0
  43. package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
  44. package/lib/labs/VColorInput/VColorInput.js +129 -0
  45. package/lib/labs/VColorInput/VColorInput.js.map +1 -0
  46. package/lib/labs/VColorInput/VColorInput.sass +7 -0
  47. package/lib/labs/VColorInput/_variables.scss +2 -0
  48. package/lib/labs/VColorInput/index.d.ts +1 -0
  49. package/lib/labs/VColorInput/index.js +2 -0
  50. package/lib/labs/VColorInput/index.js.map +1 -0
  51. package/lib/labs/VDateInput/VDateInput.d.ts +46 -21
  52. package/lib/labs/VDateInput/VDateInput.js +43 -10
  53. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  54. package/lib/labs/components.d.ts +1 -0
  55. package/lib/labs/components.js +1 -0
  56. package/lib/labs/components.js.map +1 -1
  57. package/package.json +2 -3
package/dist/vuetify.d.ts CHANGED
@@ -2783,7 +2783,9 @@ type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {
2783
2783
  };
2784
2784
  };
2785
2785
  };
2786
- type SnackbarMessage = string | Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps>;
2786
+ type SnackbarMessage = string | (Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | 'style' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps> & {
2787
+ style?: any;
2788
+ });
2787
2789
  declare const VSnackbarQueue: {
2788
2790
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
2789
2791
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
@@ -85872,22 +85874,24 @@ declare module 'vue' {
85872
85874
  $children?: VNodeChild
85873
85875
  }
85874
85876
  export interface GlobalComponents {
85875
- VApp: VApp
85876
85877
  VAppBar: VAppBar
85877
85878
  VAppBarNavIcon: VAppBarNavIcon
85878
85879
  VAppBarTitle: VAppBarTitle
85879
- VBadge: VBadge
85880
85880
  VAlert: VAlert
85881
85881
  VAlertTitle: VAlertTitle
85882
+ VAutocomplete: VAutocomplete
85882
85883
  VAvatar: VAvatar
85884
+ VBadge: VBadge
85883
85885
  VBanner: VBanner
85884
85886
  VBannerActions: VBannerActions
85885
85887
  VBannerText: VBannerText
85886
- VBtn: VBtn
85887
85888
  VBottomNavigation: VBottomNavigation
85889
+ VBtn: VBtn
85890
+ VBtnToggle: VBtnToggle
85888
85891
  VBottomSheet: VBottomSheet
85889
- VCarousel: VCarousel
85890
- VCarouselItem: VCarouselItem
85892
+ VBreadcrumbs: VBreadcrumbs
85893
+ VBreadcrumbsItem: VBreadcrumbsItem
85894
+ VBreadcrumbsDivider: VBreadcrumbsDivider
85891
85895
  VBtnGroup: VBtnGroup
85892
85896
  VCard: VCard
85893
85897
  VCardActions: VCardActions
@@ -85895,16 +85899,15 @@ declare module 'vue' {
85895
85899
  VCardSubtitle: VCardSubtitle
85896
85900
  VCardText: VCardText
85897
85901
  VCardTitle: VCardTitle
85898
- VChip: VChip
85899
- VAutocomplete: VAutocomplete
85900
- VBtnToggle: VBtnToggle
85901
- VChipGroup: VChipGroup
85902
- VBreadcrumbs: VBreadcrumbs
85903
- VBreadcrumbsItem: VBreadcrumbsItem
85904
- VBreadcrumbsDivider: VBreadcrumbsDivider
85905
85902
  VCheckbox: VCheckbox
85906
85903
  VCheckboxBtn: VCheckboxBtn
85904
+ VChip: VChip
85905
+ VChipGroup: VChipGroup
85907
85906
  VCode: VCode
85907
+ VColorPicker: VColorPicker
85908
+ VCarousel: VCarousel
85909
+ VCarouselItem: VCarouselItem
85910
+ VCombobox: VCombobox
85908
85911
  VDataTable: VDataTable
85909
85912
  VDataTableHeaders: VDataTableHeaders
85910
85913
  VDataTableFooter: VDataTableFooter
@@ -85912,38 +85915,37 @@ declare module 'vue' {
85912
85915
  VDataTableRow: VDataTableRow
85913
85916
  VDataTableVirtual: VDataTableVirtual
85914
85917
  VDataTableServer: VDataTableServer
85915
- VColorPicker: VColorPicker
85918
+ VCounter: VCounter
85916
85919
  VDatePicker: VDatePicker
85917
85920
  VDatePickerControls: VDatePickerControls
85918
85921
  VDatePickerHeader: VDatePickerHeader
85919
85922
  VDatePickerMonth: VDatePickerMonth
85920
85923
  VDatePickerMonths: VDatePickerMonths
85921
85924
  VDatePickerYears: VDatePickerYears
85922
- VCombobox: VCombobox
85925
+ VDialog: VDialog
85923
85926
  VDivider: VDivider
85924
- VCounter: VCounter
85925
85927
  VEmptyState: VEmptyState
85926
85928
  VFab: VFab
85929
+ VField: VField
85930
+ VFieldLabel: VFieldLabel
85927
85931
  VFileInput: VFileInput
85932
+ VFooter: VFooter
85928
85933
  VExpansionPanels: VExpansionPanels
85929
85934
  VExpansionPanel: VExpansionPanel
85930
85935
  VExpansionPanelText: VExpansionPanelText
85931
85936
  VExpansionPanelTitle: VExpansionPanelTitle
85932
- VFooter: VFooter
85933
- VField: VField
85934
- VFieldLabel: VFieldLabel
85937
+ VImg: VImg
85935
85938
  VIcon: VIcon
85936
85939
  VComponentIcon: VComponentIcon
85937
85940
  VSvgIcon: VSvgIcon
85938
85941
  VLigatureIcon: VLigatureIcon
85939
85942
  VClassIcon: VClassIcon
85940
- VImg: VImg
85941
- VInfiniteScroll: VInfiniteScroll
85942
- VKbd: VKbd
85943
85943
  VInput: VInput
85944
- VLabel: VLabel
85945
85944
  VItemGroup: VItemGroup
85946
85945
  VItem: VItem
85946
+ VInfiniteScroll: VInfiniteScroll
85947
+ VKbd: VKbd
85948
+ VLabel: VLabel
85947
85949
  VList: VList
85948
85950
  VListGroup: VListGroup
85949
85951
  VListImg: VListImg
@@ -85953,70 +85955,69 @@ declare module 'vue' {
85953
85955
  VListItemSubtitle: VListItemSubtitle
85954
85956
  VListItemTitle: VListItemTitle
85955
85957
  VListSubheader: VListSubheader
85956
- VMain: VMain
85957
85958
  VMenu: VMenu
85958
- VNavigationDrawer: VNavigationDrawer
85959
+ VMain: VMain
85959
85960
  VMessages: VMessages
85960
- VNumberInput: VNumberInput
85961
- VOverlay: VOverlay
85962
- VDialog: VDialog
85963
- VOtpInput: VOtpInput
85964
85961
  VPagination: VPagination
85962
+ VOverlay: VOverlay
85965
85963
  VProgressCircular: VProgressCircular
85964
+ VNavigationDrawer: VNavigationDrawer
85965
+ VNumberInput: VNumberInput
85966
85966
  VProgressLinear: VProgressLinear
85967
+ VOtpInput: VOtpInput
85967
85968
  VRadioGroup: VRadioGroup
85968
85969
  VRating: VRating
85969
- VSelect: VSelect
85970
85970
  VSelectionControl: VSelectionControl
85971
85971
  VSelectionControlGroup: VSelectionControlGroup
85972
85972
  VSheet: VSheet
85973
85973
  VSkeletonLoader: VSkeletonLoader
85974
+ VSnackbar: VSnackbar
85975
+ VSelect: VSelect
85976
+ VSlider: VSlider
85977
+ VSystemBar: VSystemBar
85978
+ VTable: VTable
85974
85979
  VSlideGroup: VSlideGroup
85975
85980
  VSlideGroupItem: VSlideGroupItem
85976
- VSnackbar: VSnackbar
85977
- VSwitch: VSwitch
85981
+ VTab: VTab
85982
+ VTabs: VTabs
85983
+ VTabsWindow: VTabsWindow
85984
+ VTabsWindowItem: VTabsWindowItem
85978
85985
  VStepper: VStepper
85979
85986
  VStepperActions: VStepperActions
85980
85987
  VStepperHeader: VStepperHeader
85981
85988
  VStepperItem: VStepperItem
85982
85989
  VStepperWindow: VStepperWindow
85983
85990
  VStepperWindowItem: VStepperWindowItem
85984
- VTab: VTab
85985
- VTabs: VTabs
85986
- VTabsWindow: VTabsWindow
85987
- VTabsWindowItem: VTabsWindowItem
85988
- VTable: VTable
85989
- VTextarea: VTextarea
85990
- VTextField: VTextField
85991
- VSystemBar: VSystemBar
85992
- VTimeline: VTimeline
85993
- VTimelineItem: VTimelineItem
85991
+ VToolbar: VToolbar
85992
+ VToolbarTitle: VToolbarTitle
85993
+ VToolbarItems: VToolbarItems
85994
85994
  VTooltip: VTooltip
85995
- VWindow: VWindow
85996
- VWindowItem: VWindowItem
85997
- VSlider: VSlider
85995
+ VTextarea: VTextarea
85996
+ VApp: VApp
85998
85997
  VConfirmEdit: VConfirmEdit
85999
85998
  VDataIterator: VDataIterator
85999
+ VWindow: VWindow
86000
+ VWindowItem: VWindowItem
86000
86001
  VDefaultsProvider: VDefaultsProvider
86002
+ VContainer: VContainer
86003
+ VCol: VCol
86004
+ VRow: VRow
86005
+ VSpacer: VSpacer
86001
86006
  VForm: VForm
86002
86007
  VHover: VHover
86003
- VToolbar: VToolbar
86004
- VToolbarTitle: VToolbarTitle
86005
- VToolbarItems: VToolbarItems
86008
+ VLazy: VLazy
86006
86009
  VLayout: VLayout
86007
86010
  VLayoutItem: VLayoutItem
86008
- VLazy: VLazy
86009
86011
  VLocaleProvider: VLocaleProvider
86010
- VNoSsr: VNoSsr
86011
86012
  VParallax: VParallax
86012
86013
  VRadio: VRadio
86013
86014
  VRangeSlider: VRangeSlider
86014
- VResponsive: VResponsive
86015
+ VSwitch: VSwitch
86015
86016
  VSnackbarQueue: VSnackbarQueue
86017
+ VNoSsr: VNoSsr
86016
86018
  VSparkline: VSparkline
86017
86019
  VSpeedDial: VSpeedDial
86018
86020
  VThemeProvider: VThemeProvider
86019
- VValidation: VValidation
86020
86021
  VFabTransition: VFabTransition
86021
86022
  VDialogBottomTransition: VDialogBottomTransition
86022
86023
  VDialogTopTransition: VDialogTopTransition
@@ -86034,30 +86035,32 @@ declare module 'vue' {
86034
86035
  VExpandXTransition: VExpandXTransition
86035
86036
  VDialogTransition: VDialogTransition
86036
86037
  VVirtualScroll: VVirtualScroll
86037
- VContainer: VContainer
86038
- VCol: VCol
86039
- VRow: VRow
86040
- VSpacer: VSpacer
86041
- VPicker: VPicker
86042
- VPickerTitle: VPickerTitle
86038
+ VValidation: VValidation
86039
+ VTimeline: VTimeline
86040
+ VTimelineItem: VTimelineItem
86041
+ VTextField: VTextField
86042
+ VResponsive: VResponsive
86043
86043
  VCalendar: VCalendar
86044
86044
  VCalendarDay: VCalendarDay
86045
86045
  VCalendarHeader: VCalendarHeader
86046
86046
  VCalendarInterval: VCalendarInterval
86047
86047
  VCalendarIntervalEvent: VCalendarIntervalEvent
86048
86048
  VCalendarMonthDay: VCalendarMonthDay
86049
- VIconBtn: VIconBtn
86050
- VFileUpload: VFileUpload
86051
- VFileUploadItem: VFileUploadItem
86049
+ VColorInput: VColorInput
86052
86050
  VStepperVertical: VStepperVertical
86053
86051
  VStepperVerticalItem: VStepperVerticalItem
86054
86052
  VStepperVerticalActions: VStepperVerticalActions
86055
- VTimePicker: VTimePicker
86056
- VTimePickerClock: VTimePickerClock
86057
- VTimePickerControls: VTimePickerControls
86053
+ VPicker: VPicker
86054
+ VPickerTitle: VPickerTitle
86055
+ VIconBtn: VIconBtn
86056
+ VFileUpload: VFileUpload
86057
+ VFileUploadItem: VFileUploadItem
86058
86058
  VTreeview: VTreeview
86059
86059
  VTreeviewItem: VTreeviewItem
86060
86060
  VTreeviewGroup: VTreeviewGroup
86061
+ VTimePicker: VTimePicker
86062
+ VTimePickerClock: VTimePickerClock
86063
+ VTimePickerControls: VTimePickerControls
86061
86064
  VDateInput: VDateInput
86062
86065
  VPullToRefresh: VPullToRefresh
86063
86066
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.4
2
+ * Vuetify v3.8.5
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1769,7 +1769,8 @@ const aliases = {
1769
1769
  treeviewCollapse: 'mdi-menu-down',
1770
1770
  treeviewExpand: 'mdi-menu-right',
1771
1771
  eyeDropper: 'mdi-eyedropper',
1772
- upload: 'mdi-cloud-upload'
1772
+ upload: 'mdi-cloud-upload',
1773
+ color: 'mdi-palette'
1773
1774
  };
1774
1775
  const mdi = {
1775
1776
  // Not using mergeProps here, functional components merge props by default (?)
@@ -13780,11 +13781,6 @@ const VAutocomplete = genericComponent()({
13780
13781
  menu.value = true;
13781
13782
  }
13782
13783
  });
13783
- watch(model, value => {
13784
- if (!props.multiple && !hasSelectionSlot.value) {
13785
- search.value = value[0]?.title ?? '';
13786
- }
13787
- });
13788
13784
  useRender(() => {
13789
13785
  const hasList = !!(!props.hideNoData || displayItems.value.length || slots['prepend-item'] || slots['append-item'] || slots['no-data']);
13790
13786
  const isDirty = model.value.length > 0;
@@ -29238,7 +29234,7 @@ function createVuetify$1() {
29238
29234
  };
29239
29235
  });
29240
29236
  }
29241
- const version$1 = "3.8.4";
29237
+ const version$1 = "3.8.5";
29242
29238
  createVuetify$1.version = version$1;
29243
29239
 
29244
29240
  // Vue's inject() can only be used in setup
@@ -29263,7 +29259,7 @@ const createVuetify = function () {
29263
29259
  ...options
29264
29260
  });
29265
29261
  };
29266
- const version = "3.8.4";
29262
+ const version = "3.8.5";
29267
29263
  createVuetify.version = version;
29268
29264
 
29269
29265
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };