@vuetify/nightly 3.8.2-dev.2025-04-17 → 3.8.2-dev.2025-04-28

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.
package/dist/vuetify.d.ts CHANGED
@@ -20695,6 +20695,7 @@ type VBtn = InstanceType<typeof VBtn>;
20695
20695
  declare const VBtnGroup: {
20696
20696
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
20697
20697
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20698
+ direction: "horizontal" | "vertical";
20698
20699
  style: vue.StyleValue;
20699
20700
  tag: string | JSXComponent;
20700
20701
  density: Density;
@@ -20719,6 +20720,7 @@ declare const VBtnGroup: {
20719
20720
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20720
20721
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
20721
20722
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20723
+ direction: "horizontal" | "vertical";
20722
20724
  style: vue.StyleValue;
20723
20725
  tag: string | JSXComponent;
20724
20726
  density: Density;
@@ -20736,6 +20738,7 @@ declare const VBtnGroup: {
20736
20738
  Defaults: {};
20737
20739
  }, {
20738
20740
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20741
+ direction: "horizontal" | "vertical";
20739
20742
  style: vue.StyleValue;
20740
20743
  tag: string | JSXComponent;
20741
20744
  density: Density;
@@ -20760,6 +20763,7 @@ declare const VBtnGroup: {
20760
20763
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20761
20764
  }, {}, {}, {}, {}, {
20762
20765
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20766
+ direction: "horizontal" | "vertical";
20763
20767
  style: vue.StyleValue;
20764
20768
  tag: string | JSXComponent;
20765
20769
  density: Density;
@@ -20772,6 +20776,7 @@ declare const VBtnGroup: {
20772
20776
  __isSuspense?: never;
20773
20777
  } & vue.ComponentOptionsBase<{
20774
20778
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20779
+ direction: "horizontal" | "vertical";
20775
20780
  style: vue.StyleValue;
20776
20781
  tag: string | JSXComponent;
20777
20782
  density: Density;
@@ -20796,6 +20801,7 @@ declare const VBtnGroup: {
20796
20801
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
20797
20802
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
20798
20803
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20804
+ direction: "horizontal" | "vertical";
20799
20805
  style: vue.StyleValue;
20800
20806
  tag: string | JSXComponent;
20801
20807
  density: Density;
@@ -20807,13 +20813,13 @@ declare const VBtnGroup: {
20807
20813
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
20808
20814
  color: StringConstructor;
20809
20815
  variant: {
20810
- type: vue.PropType<Variant$2>;
20816
+ type: PropType<Variant$2>;
20811
20817
  default: string;
20812
20818
  validator: (v: any) => boolean;
20813
20819
  };
20814
20820
  theme: StringConstructor;
20815
20821
  tag: {
20816
- type: vue.PropType<string | JSXComponent>;
20822
+ type: PropType<string | JSXComponent>;
20817
20823
  default: string;
20818
20824
  };
20819
20825
  rounded: {
@@ -20826,28 +20832,32 @@ declare const VBtnGroup: {
20826
20832
  validator(v: any): boolean;
20827
20833
  };
20828
20834
  density: {
20829
- type: vue.PropType<Density>;
20835
+ type: PropType<Density>;
20830
20836
  default: string;
20831
20837
  validator: (v: any) => boolean;
20832
20838
  };
20833
- class: vue.PropType<ClassValue>;
20839
+ class: PropType<ClassValue>;
20834
20840
  style: {
20835
- type: vue.PropType<vue.StyleValue>;
20841
+ type: PropType<vue.StyleValue>;
20836
20842
  default: null;
20837
20843
  };
20838
20844
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
20839
20845
  baseColor: StringConstructor;
20840
20846
  divided: BooleanConstructor;
20847
+ direction: {
20848
+ type: PropType<"horizontal" | "vertical">;
20849
+ default: string;
20850
+ };
20841
20851
  }, vue.ExtractPropTypes<{
20842
20852
  color: StringConstructor;
20843
20853
  variant: {
20844
- type: vue.PropType<Variant$2>;
20854
+ type: PropType<Variant$2>;
20845
20855
  default: string;
20846
20856
  validator: (v: any) => boolean;
20847
20857
  };
20848
20858
  theme: StringConstructor;
20849
20859
  tag: {
20850
- type: vue.PropType<string | JSXComponent>;
20860
+ type: PropType<string | JSXComponent>;
20851
20861
  default: string;
20852
20862
  };
20853
20863
  rounded: {
@@ -20860,18 +20870,22 @@ declare const VBtnGroup: {
20860
20870
  validator(v: any): boolean;
20861
20871
  };
20862
20872
  density: {
20863
- type: vue.PropType<Density>;
20873
+ type: PropType<Density>;
20864
20874
  default: string;
20865
20875
  validator: (v: any) => boolean;
20866
20876
  };
20867
- class: vue.PropType<ClassValue>;
20877
+ class: PropType<ClassValue>;
20868
20878
  style: {
20869
- type: vue.PropType<vue.StyleValue>;
20879
+ type: PropType<vue.StyleValue>;
20870
20880
  default: null;
20871
20881
  };
20872
20882
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
20873
20883
  baseColor: StringConstructor;
20874
20884
  divided: BooleanConstructor;
20885
+ direction: {
20886
+ type: PropType<"horizontal" | "vertical">;
20887
+ default: string;
20888
+ };
20875
20889
  }>>;
20876
20890
  type VBtnGroup = InstanceType<typeof VBtnGroup>;
20877
20891
 
@@ -20884,6 +20898,7 @@ type VBtnToggleSlots = {
20884
20898
  declare const VBtnToggle: {
20885
20899
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
20886
20900
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20901
+ direction: "horizontal" | "vertical";
20887
20902
  style: vue.StyleValue;
20888
20903
  disabled: boolean;
20889
20904
  multiple: boolean;
@@ -20910,6 +20925,7 @@ declare const VBtnToggle: {
20910
20925
  'update:modelValue': (value: any) => true;
20911
20926
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
20912
20927
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20928
+ direction: "horizontal" | "vertical";
20913
20929
  style: vue.StyleValue;
20914
20930
  disabled: boolean;
20915
20931
  multiple: boolean;
@@ -20929,6 +20945,7 @@ declare const VBtnToggle: {
20929
20945
  Defaults: {};
20930
20946
  }, {
20931
20947
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20948
+ direction: "horizontal" | "vertical";
20932
20949
  style: vue.StyleValue;
20933
20950
  disabled: boolean;
20934
20951
  multiple: boolean;
@@ -20953,6 +20970,7 @@ declare const VBtnToggle: {
20953
20970
  select: (id: string, value: boolean) => void;
20954
20971
  }, {}, {}, {}, {
20955
20972
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20973
+ direction: "horizontal" | "vertical";
20956
20974
  style: vue.StyleValue;
20957
20975
  disabled: boolean;
20958
20976
  multiple: boolean;
@@ -20967,6 +20985,7 @@ declare const VBtnToggle: {
20967
20985
  __isSuspense?: never;
20968
20986
  } & vue.ComponentOptionsBase<{
20969
20987
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
20988
+ direction: "horizontal" | "vertical";
20970
20989
  style: vue.StyleValue;
20971
20990
  disabled: boolean;
20972
20991
  multiple: boolean;
@@ -20993,6 +21012,7 @@ declare const VBtnToggle: {
20993
21012
  'update:modelValue': (value: any) => true;
20994
21013
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
20995
21014
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
21015
+ direction: "horizontal" | "vertical";
20996
21016
  style: vue.StyleValue;
20997
21017
  disabled: boolean;
20998
21018
  multiple: boolean;
@@ -21049,6 +21069,10 @@ declare const VBtnToggle: {
21049
21069
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
21050
21070
  baseColor: StringConstructor;
21051
21071
  divided: BooleanConstructor;
21072
+ direction: {
21073
+ type: vue.PropType<"horizontal" | "vertical">;
21074
+ default: string;
21075
+ };
21052
21076
  }, vue.ExtractPropTypes<{
21053
21077
  modelValue: {
21054
21078
  type: null;
@@ -21092,6 +21116,10 @@ declare const VBtnToggle: {
21092
21116
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
21093
21117
  baseColor: StringConstructor;
21094
21118
  divided: BooleanConstructor;
21119
+ direction: {
21120
+ type: vue.PropType<"horizontal" | "vertical">;
21121
+ default: string;
21122
+ };
21095
21123
  }>>;
21096
21124
  type VBtnToggle = InstanceType<typeof VBtnToggle>;
21097
21125
 
@@ -82965,36 +82993,35 @@ declare module 'vue' {
82965
82993
  export interface GlobalComponents {
82966
82994
  VApp: VApp
82967
82995
  VAutocomplete: VAutocomplete
82968
- VAppBar: VAppBar
82969
- VAppBarNavIcon: VAppBarNavIcon
82970
- VAppBarTitle: VAppBarTitle
82971
82996
  VAlert: VAlert
82972
82997
  VAlertTitle: VAlertTitle
82973
- VAvatar: VAvatar
82974
82998
  VBadge: VBadge
82975
- VBottomNavigation: VBottomNavigation
82976
- VBottomSheet: VBottomSheet
82977
82999
  VBanner: VBanner
82978
83000
  VBannerActions: VBannerActions
82979
83001
  VBannerText: VBannerText
83002
+ VAvatar: VAvatar
82980
83003
  VBreadcrumbs: VBreadcrumbs
82981
83004
  VBreadcrumbsItem: VBreadcrumbsItem
82982
83005
  VBreadcrumbsDivider: VBreadcrumbsDivider
83006
+ VBottomNavigation: VBottomNavigation
83007
+ VBtn: VBtn
83008
+ VBtnToggle: VBtnToggle
83009
+ VBtnGroup: VBtnGroup
83010
+ VCarousel: VCarousel
83011
+ VCarouselItem: VCarouselItem
82983
83012
  VCard: VCard
82984
83013
  VCardActions: VCardActions
82985
83014
  VCardItem: VCardItem
82986
83015
  VCardSubtitle: VCardSubtitle
82987
83016
  VCardText: VCardText
82988
83017
  VCardTitle: VCardTitle
82989
- VBtnToggle: VBtnToggle
82990
- VCarousel: VCarousel
82991
- VCarouselItem: VCarouselItem
82992
83018
  VCheckbox: VCheckbox
82993
83019
  VCheckboxBtn: VCheckboxBtn
82994
- VBtn: VBtn
83020
+ VChipGroup: VChipGroup
82995
83021
  VChip: VChip
82996
83022
  VCode: VCode
82997
83023
  VColorPicker: VColorPicker
83024
+ VCombobox: VCombobox
82998
83025
  VCounter: VCounter
82999
83026
  VDataTable: VDataTable
83000
83027
  VDataTableHeaders: VDataTableHeaders
@@ -83003,36 +83030,33 @@ declare module 'vue' {
83003
83030
  VDataTableRow: VDataTableRow
83004
83031
  VDataTableVirtual: VDataTableVirtual
83005
83032
  VDataTableServer: VDataTableServer
83033
+ VDivider: VDivider
83006
83034
  VDatePicker: VDatePicker
83007
83035
  VDatePickerControls: VDatePickerControls
83008
83036
  VDatePickerHeader: VDatePickerHeader
83009
83037
  VDatePickerMonth: VDatePickerMonth
83010
83038
  VDatePickerMonths: VDatePickerMonths
83011
83039
  VDatePickerYears: VDatePickerYears
83012
- VChipGroup: VChipGroup
83013
- VDivider: VDivider
83014
- VExpansionPanels: VExpansionPanels
83015
- VExpansionPanel: VExpansionPanel
83016
- VExpansionPanelText: VExpansionPanelText
83017
- VExpansionPanelTitle: VExpansionPanelTitle
83018
- VEmptyState: VEmptyState
83040
+ VDialog: VDialog
83041
+ VFab: VFab
83019
83042
  VField: VField
83020
83043
  VFieldLabel: VFieldLabel
83021
83044
  VFileInput: VFileInput
83022
- VFab: VFab
83023
- VImg: VImg
83024
- VBtnGroup: VBtnGroup
83025
- VCombobox: VCombobox
83026
83045
  VIcon: VIcon
83027
83046
  VComponentIcon: VComponentIcon
83028
83047
  VSvgIcon: VSvgIcon
83029
83048
  VLigatureIcon: VLigatureIcon
83030
83049
  VClassIcon: VClassIcon
83031
- VFooter: VFooter
83050
+ VImg: VImg
83032
83051
  VInfiniteScroll: VInfiniteScroll
83033
83052
  VInput: VInput
83034
83053
  VKbd: VKbd
83054
+ VFooter: VFooter
83035
83055
  VLabel: VLabel
83056
+ VItemGroup: VItemGroup
83057
+ VItem: VItem
83058
+ VMain: VMain
83059
+ VMenu: VMenu
83036
83060
  VList: VList
83037
83061
  VListGroup: VListGroup
83038
83062
  VListImg: VListImg
@@ -83042,77 +83066,79 @@ declare module 'vue' {
83042
83066
  VListItemSubtitle: VListItemSubtitle
83043
83067
  VListItemTitle: VListItemTitle
83044
83068
  VListSubheader: VListSubheader
83045
- VMain: VMain
83046
83069
  VMessages: VMessages
83047
- VItemGroup: VItemGroup
83048
- VItem: VItem
83049
- VDialog: VDialog
83050
83070
  VNumberInput: VNumberInput
83051
- VNavigationDrawer: VNavigationDrawer
83052
- VMenu: VMenu
83053
83071
  VOverlay: VOverlay
83072
+ VNavigationDrawer: VNavigationDrawer
83054
83073
  VOtpInput: VOtpInput
83055
- VProgressLinear: VProgressLinear
83056
83074
  VPagination: VPagination
83075
+ VProgressCircular: VProgressCircular
83076
+ VProgressLinear: VProgressLinear
83057
83077
  VRadioGroup: VRadioGroup
83078
+ VSelectionControl: VSelectionControl
83058
83079
  VRating: VRating
83059
- VProgressCircular: VProgressCircular
83080
+ VSheet: VSheet
83060
83081
  VSelectionControlGroup: VSelectionControlGroup
83061
83082
  VSelect: VSelect
83062
- VSheet: VSheet
83063
- VSnackbar: VSnackbar
83064
- VSkeletonLoader: VSkeletonLoader
83065
- VSelectionControl: VSelectionControl
83066
83083
  VSlideGroup: VSlideGroup
83067
83084
  VSlideGroupItem: VSlideGroupItem
83068
- VSwitch: VSwitch
83069
83085
  VSlider: VSlider
83086
+ VSnackbar: VSnackbar
83087
+ VSkeletonLoader: VSkeletonLoader
83088
+ VTab: VTab
83089
+ VTabs: VTabs
83090
+ VTabsWindow: VTabsWindow
83091
+ VTabsWindowItem: VTabsWindowItem
83070
83092
  VStepper: VStepper
83071
83093
  VStepperActions: VStepperActions
83072
83094
  VStepperHeader: VStepperHeader
83073
83095
  VStepperItem: VStepperItem
83074
83096
  VStepperWindow: VStepperWindow
83075
83097
  VStepperWindowItem: VStepperWindowItem
83076
- VTab: VTab
83077
- VTabs: VTabs
83078
- VTabsWindow: VTabsWindow
83079
- VTabsWindowItem: VTabsWindowItem
83080
- VTable: VTable
83081
- VTextField: VTextField
83098
+ VSwitch: VSwitch
83082
83099
  VSystemBar: VSystemBar
83083
- VTooltip: VTooltip
83084
83100
  VTextarea: VTextarea
83101
+ VTable: VTable
83085
83102
  VTimeline: VTimeline
83086
83103
  VTimelineItem: VTimelineItem
83104
+ VTextField: VTextField
83087
83105
  VToolbar: VToolbar
83088
83106
  VToolbarTitle: VToolbarTitle
83089
83107
  VToolbarItems: VToolbarItems
83090
83108
  VWindow: VWindow
83091
83109
  VWindowItem: VWindowItem
83110
+ VTooltip: VTooltip
83111
+ VBottomSheet: VBottomSheet
83112
+ VConfirmEdit: VConfirmEdit
83092
83113
  VDataIterator: VDataIterator
83093
- VDefaultsProvider: VDefaultsProvider
83114
+ VExpansionPanels: VExpansionPanels
83115
+ VExpansionPanel: VExpansionPanel
83116
+ VExpansionPanelText: VExpansionPanelText
83117
+ VExpansionPanelTitle: VExpansionPanelTitle
83118
+ VEmptyState: VEmptyState
83094
83119
  VForm: VForm
83120
+ VAppBar: VAppBar
83121
+ VAppBarNavIcon: VAppBarNavIcon
83122
+ VAppBarTitle: VAppBarTitle
83095
83123
  VContainer: VContainer
83096
83124
  VCol: VCol
83097
83125
  VRow: VRow
83098
83126
  VSpacer: VSpacer
83099
- VHover: VHover
83127
+ VLazy: VLazy
83128
+ VLocaleProvider: VLocaleProvider
83100
83129
  VLayout: VLayout
83101
83130
  VLayoutItem: VLayoutItem
83102
- VLocaleProvider: VLocaleProvider
83103
- VLazy: VLazy
83104
83131
  VNoSsr: VNoSsr
83105
83132
  VParallax: VParallax
83106
83133
  VRadio: VRadio
83107
83134
  VRangeSlider: VRangeSlider
83108
- VSpeedDial: VSpeedDial
83109
- VSnackbarQueue: VSnackbarQueue
83110
83135
  VResponsive: VResponsive
83136
+ VSnackbarQueue: VSnackbarQueue
83111
83137
  VSparkline: VSparkline
83138
+ VSpeedDial: VSpeedDial
83139
+ VThemeProvider: VThemeProvider
83112
83140
  VValidation: VValidation
83113
83141
  VVirtualScroll: VVirtualScroll
83114
- VThemeProvider: VThemeProvider
83115
- VConfirmEdit: VConfirmEdit
83116
83142
  VFabTransition: VFabTransition
83117
83143
  VDialogBottomTransition: VDialogBottomTransition
83118
83144
  VDialogTopTransition: VDialogTopTransition
@@ -83129,6 +83155,8 @@ declare module 'vue' {
83129
83155
  VExpandTransition: VExpandTransition
83130
83156
  VExpandXTransition: VExpandXTransition
83131
83157
  VDialogTransition: VDialogTransition
83158
+ VHover: VHover
83159
+ VDefaultsProvider: VDefaultsProvider
83132
83160
  VCalendar: VCalendar
83133
83161
  VCalendarDay: VCalendarDay
83134
83162
  VCalendarHeader: VCalendarHeader
@@ -83137,18 +83165,18 @@ declare module 'vue' {
83137
83165
  VCalendarMonthDay: VCalendarMonthDay
83138
83166
  VFileUpload: VFileUpload
83139
83167
  VFileUploadItem: VFileUploadItem
83168
+ VIconBtn: VIconBtn
83169
+ VTreeview: VTreeview
83170
+ VTreeviewItem: VTreeviewItem
83171
+ VTreeviewGroup: VTreeviewGroup
83140
83172
  VPicker: VPicker
83141
83173
  VPickerTitle: VPickerTitle
83142
- VStepperVertical: VStepperVertical
83143
- VStepperVerticalItem: VStepperVerticalItem
83144
- VStepperVerticalActions: VStepperVerticalActions
83145
- VIconBtn: VIconBtn
83146
83174
  VTimePicker: VTimePicker
83147
83175
  VTimePickerClock: VTimePickerClock
83148
83176
  VTimePickerControls: VTimePickerControls
83149
- VTreeview: VTreeview
83150
- VTreeviewItem: VTreeviewItem
83151
- VTreeviewGroup: VTreeviewGroup
83177
+ VStepperVertical: VStepperVertical
83178
+ VStepperVerticalItem: VStepperVerticalItem
83179
+ VStepperVerticalActions: VStepperVerticalActions
83152
83180
  VDateInput: VDateInput
83153
83181
  VPullToRefresh: VPullToRefresh
83154
83182
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.2-dev.2025-04-17
2
+ * Vuetify v3.8.2-dev.2025-04-28
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -4666,9 +4666,15 @@ function useVariant(props) {
4666
4666
  };
4667
4667
  }
4668
4668
 
4669
+ // Types
4670
+
4669
4671
  const makeVBtnGroupProps = propsFactory({
4670
4672
  baseColor: String,
4671
4673
  divided: Boolean,
4674
+ direction: {
4675
+ type: String,
4676
+ default: 'horizontal'
4677
+ },
4672
4678
  ...makeBorderProps(),
4673
4679
  ...makeComponentProps(),
4674
4680
  ...makeDensityProps(),
@@ -4702,7 +4708,7 @@ const VBtnGroup = genericComponent()({
4702
4708
  } = useRounded(props);
4703
4709
  provideDefaults({
4704
4710
  VBtn: {
4705
- height: 'auto',
4711
+ height: props.direction === 'horizontal' ? 'auto' : null,
4706
4712
  baseColor: toRef(props, 'baseColor'),
4707
4713
  color: toRef(props, 'color'),
4708
4714
  density: toRef(props, 'density'),
@@ -4712,7 +4718,7 @@ const VBtnGroup = genericComponent()({
4712
4718
  });
4713
4719
  useRender(() => {
4714
4720
  return createVNode(props.tag, {
4715
- "class": ['v-btn-group', {
4721
+ "class": ['v-btn-group', `v-btn-group--${props.direction}`, {
4716
4722
  'v-btn-group--divided': props.divided
4717
4723
  }, themeClasses.value, borderClasses.value, densityClasses.value, elevationClasses.value, roundedClasses.value, props.class],
4718
4724
  "style": props.style
@@ -29248,7 +29254,7 @@ function createVuetify$1() {
29248
29254
  };
29249
29255
  });
29250
29256
  }
29251
- const version$1 = "3.8.2-dev.2025-04-17";
29257
+ const version$1 = "3.8.2-dev.2025-04-28";
29252
29258
  createVuetify$1.version = version$1;
29253
29259
 
29254
29260
  // Vue's inject() can only be used in setup
@@ -29273,7 +29279,7 @@ const createVuetify = function () {
29273
29279
  ...options
29274
29280
  });
29275
29281
  };
29276
- const version = "3.8.2-dev.2025-04-17";
29282
+ const version = "3.8.2-dev.2025-04-28";
29277
29283
  createVuetify.version = version;
29278
29284
 
29279
29285
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };