@vuetify/nightly 3.9.2-master.2025-07-18 → 3.9.2-master.2025-07-23

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 (53) hide show
  1. package/CHANGELOG.md +37 -3
  2. package/dist/json/attributes.json +3766 -3766
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +158 -158
  5. package/dist/json/web-types.json +6757 -6768
  6. package/dist/vuetify-labs.cjs +17 -11
  7. package/dist/vuetify-labs.css +4480 -4472
  8. package/dist/vuetify-labs.d.ts +62 -68
  9. package/dist/vuetify-labs.esm.js +17 -11
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +17 -11
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +16 -10
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +4014 -4007
  16. package/dist/vuetify.d.ts +62 -68
  17. package/dist/vuetify.esm.js +16 -10
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +16 -10
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +17 -16
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VCarousel/VCarousel.d.ts +7 -13
  25. package/lib/components/VCarousel/VCarousel.js.map +1 -1
  26. package/lib/components/VColorPicker/VColorPicker.css +1 -0
  27. package/lib/components/VColorPicker/VColorPicker.sass +1 -0
  28. package/lib/components/VDataTable/VDataTableHeaders.js +0 -1
  29. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  30. package/lib/components/VFileInput/VFileInput.css +3 -0
  31. package/lib/components/VFileInput/VFileInput.sass +3 -0
  32. package/lib/components/VProgressLinear/VProgressLinear.css +4 -1
  33. package/lib/components/VProgressLinear/VProgressLinear.js +2 -1
  34. package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
  35. package/lib/components/VProgressLinear/VProgressLinear.sass +5 -2
  36. package/lib/components/VTextField/VTextField.js +2 -2
  37. package/lib/components/VTextField/VTextField.js.map +1 -1
  38. package/lib/components/VTreeview/VTreeview.d.ts +7 -7
  39. package/lib/components/VTreeview/VTreeview.js +0 -1
  40. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  41. package/lib/components/VTreeview/VTreeviewChildren.d.ts +13 -0
  42. package/lib/components/VTreeview/VTreeviewChildren.js +2 -1
  43. package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
  44. package/lib/composables/date/adapters/vuetify.js +8 -2
  45. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  46. package/lib/entry-bundler.js +1 -1
  47. package/lib/framework.d.ts +53 -53
  48. package/lib/framework.js +1 -1
  49. package/lib/labs/VFileUpload/VFileUploadItem.js +1 -1
  50. package/lib/labs/VFileUpload/VFileUploadItem.js.map +1 -1
  51. package/lib/labs/VStepperVertical/VStepperVerticalItem.css +1 -0
  52. package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +1 -0
  53. package/package.json +1 -1
@@ -25006,7 +25006,7 @@ declare const VWindow: {
25006
25006
  }>>;
25007
25007
  type VWindow = InstanceType<typeof VWindow>;
25008
25008
 
25009
- type VCarouselSlots = VWindowSlots & {
25009
+ type VCarouselSlots = Omit<VWindowSlots, 'additional'> & {
25010
25010
  item: {
25011
25011
  props: Record<string, any>;
25012
25012
  item: {
@@ -25045,7 +25045,7 @@ declare const VCarousel: {
25045
25045
  verticalDelimiters?: boolean | "left" | "right" | undefined;
25046
25046
  } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
25047
25047
  'update:modelValue': (value: any) => true;
25048
- }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:additional" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
25048
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
25049
25049
  reverse: boolean;
25050
25050
  interval: string | number;
25051
25051
  height: string | number;
@@ -25068,10 +25068,7 @@ declare const VCarousel: {
25068
25068
  default: (arg: {
25069
25069
  group: GroupProvide;
25070
25070
  }) => vue.VNode[];
25071
- additional: (arg: {
25072
- group: GroupProvide;
25073
- }) => vue.VNode[];
25074
- prev: (arg: {
25071
+ next: (arg: {
25075
25072
  props: {
25076
25073
  icon: IconValue;
25077
25074
  class: string;
@@ -25079,7 +25076,7 @@ declare const VCarousel: {
25079
25076
  'aria-label': string;
25080
25077
  };
25081
25078
  }) => vue.VNode[];
25082
- next: (arg: {
25079
+ prev: (arg: {
25083
25080
  props: {
25084
25081
  icon: IconValue;
25085
25082
  class: string;
@@ -25179,7 +25176,7 @@ declare const VCarousel: {
25179
25176
  verticalDelimiters?: boolean | "left" | "right" | undefined;
25180
25177
  } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
25181
25178
  'update:modelValue': (value: any) => true;
25182
- }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:additional" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, string, {
25179
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, string, {
25183
25180
  reverse: boolean;
25184
25181
  interval: string | number;
25185
25182
  height: string | number;
@@ -25202,10 +25199,7 @@ declare const VCarousel: {
25202
25199
  default: (arg: {
25203
25200
  group: GroupProvide;
25204
25201
  }) => vue.VNode[];
25205
- additional: (arg: {
25206
- group: GroupProvide;
25207
- }) => vue.VNode[];
25208
- prev: (arg: {
25202
+ next: (arg: {
25209
25203
  props: {
25210
25204
  icon: IconValue;
25211
25205
  class: string;
@@ -25213,7 +25207,7 @@ declare const VCarousel: {
25213
25207
  'aria-label': string;
25214
25208
  };
25215
25209
  }) => vue.VNode[];
25216
- next: (arg: {
25210
+ prev: (arg: {
25217
25211
  props: {
25218
25212
  icon: IconValue;
25219
25213
  class: string;
@@ -91065,6 +91059,7 @@ declare const VTreeview: {
91065
91059
  type: PropType<IconValue>;
91066
91060
  default: string;
91067
91061
  };
91062
+ fluid: BooleanConstructor;
91068
91063
  hideActions: BooleanConstructor;
91069
91064
  loadingIcon: {
91070
91065
  type: StringConstructor;
@@ -91083,7 +91078,6 @@ declare const VTreeview: {
91083
91078
  default: string;
91084
91079
  };
91085
91080
  noFilter: BooleanConstructor;
91086
- fluid: BooleanConstructor;
91087
91081
  openAll: BooleanConstructor;
91088
91082
  indentLines: PropType<boolean | IndentLinesVariant>;
91089
91083
  search: StringConstructor;
@@ -91210,6 +91204,7 @@ declare const VTreeview: {
91210
91204
  type: PropType<IconValue>;
91211
91205
  default: string;
91212
91206
  };
91207
+ fluid: BooleanConstructor;
91213
91208
  hideActions: BooleanConstructor;
91214
91209
  loadingIcon: {
91215
91210
  type: StringConstructor;
@@ -91228,7 +91223,6 @@ declare const VTreeview: {
91228
91223
  default: string;
91229
91224
  };
91230
91225
  noFilter: BooleanConstructor;
91231
- fluid: BooleanConstructor;
91232
91226
  openAll: BooleanConstructor;
91233
91227
  indentLines: PropType<boolean | IndentLinesVariant>;
91234
91228
  search: StringConstructor;
@@ -116082,27 +116076,24 @@ declare module 'vue' {
116082
116076
  }
116083
116077
  export interface GlobalComponents {
116084
116078
  VApp: VApp
116085
- VAutocomplete: VAutocomplete
116086
- VAvatar: VAvatar
116087
116079
  VAlert: VAlert
116088
116080
  VAlertTitle: VAlertTitle
116089
116081
  VAppBar: VAppBar
116090
116082
  VAppBarNavIcon: VAppBarNavIcon
116091
116083
  VAppBarTitle: VAppBarTitle
116084
+ VAutocomplete: VAutocomplete
116085
+ VAvatar: VAvatar
116092
116086
  VBadge: VBadge
116093
116087
  VBanner: VBanner
116094
116088
  VBannerActions: VBannerActions
116095
116089
  VBannerText: VBannerText
116096
- VBottomSheet: VBottomSheet
116090
+ VBottomNavigation: VBottomNavigation
116097
116091
  VBreadcrumbs: VBreadcrumbs
116098
116092
  VBreadcrumbsItem: VBreadcrumbsItem
116099
116093
  VBreadcrumbsDivider: VBreadcrumbsDivider
116094
+ VBottomSheet: VBottomSheet
116100
116095
  VBtn: VBtn
116101
- VBottomNavigation: VBottomNavigation
116102
- VBtnToggle: VBtnToggle
116103
116096
  VBtnGroup: VBtnGroup
116104
- VCheckbox: VCheckbox
116105
- VCheckboxBtn: VCheckboxBtn
116106
116097
  VCard: VCard
116107
116098
  VCardActions: VCardActions
116108
116099
  VCardItem: VCardItem
@@ -116110,12 +116101,14 @@ declare module 'vue' {
116110
116101
  VCardText: VCardText
116111
116102
  VCardTitle: VCardTitle
116112
116103
  VChip: VChip
116104
+ VCode: VCode
116105
+ VChipGroup: VChipGroup
116106
+ VCounter: VCounter
116107
+ VCheckbox: VCheckbox
116108
+ VCheckboxBtn: VCheckboxBtn
116109
+ VBtnToggle: VBtnToggle
116113
116110
  VCarousel: VCarousel
116114
116111
  VCarouselItem: VCarouselItem
116115
- VColorPicker: VColorPicker
116116
- VCounter: VCounter
116117
- VCode: VCode
116118
- VCombobox: VCombobox
116119
116112
  VDataTable: VDataTable
116120
116113
  VDataTableHeaders: VDataTableHeaders
116121
116114
  VDataTableFooter: VDataTableFooter
@@ -116123,37 +116116,36 @@ declare module 'vue' {
116123
116116
  VDataTableRow: VDataTableRow
116124
116117
  VDataTableVirtual: VDataTableVirtual
116125
116118
  VDataTableServer: VDataTableServer
116119
+ VDialog: VDialog
116126
116120
  VDatePicker: VDatePicker
116127
116121
  VDatePickerControls: VDatePickerControls
116128
116122
  VDatePickerHeader: VDatePickerHeader
116129
116123
  VDatePickerMonth: VDatePickerMonth
116130
116124
  VDatePickerMonths: VDatePickerMonths
116131
116125
  VDatePickerYears: VDatePickerYears
116132
- VChipGroup: VChipGroup
116133
116126
  VDivider: VDivider
116134
- VField: VField
116135
- VFieldLabel: VFieldLabel
116127
+ VEmptyState: VEmptyState
116136
116128
  VExpansionPanels: VExpansionPanels
116137
116129
  VExpansionPanel: VExpansionPanel
116138
116130
  VExpansionPanelText: VExpansionPanelText
116139
116131
  VExpansionPanelTitle: VExpansionPanelTitle
116132
+ VField: VField
116133
+ VFieldLabel: VFieldLabel
116134
+ VFileInput: VFileInput
116140
116135
  VFab: VFab
116141
- VDialog: VDialog
116142
116136
  VFooter: VFooter
116143
- VFileInput: VFileInput
116144
116137
  VIcon: VIcon
116145
116138
  VComponentIcon: VComponentIcon
116146
116139
  VSvgIcon: VSvgIcon
116147
116140
  VLigatureIcon: VLigatureIcon
116148
116141
  VClassIcon: VClassIcon
116149
- VInput: VInput
116150
116142
  VInfiniteScroll: VInfiniteScroll
116151
116143
  VImg: VImg
116144
+ VInput: VInput
116152
116145
  VKbd: VKbd
116146
+ VLabel: VLabel
116153
116147
  VItemGroup: VItemGroup
116154
116148
  VItem: VItem
116155
- VLabel: VLabel
116156
- VNavigationDrawer: VNavigationDrawer
116157
116149
  VList: VList
116158
116150
  VListGroup: VListGroup
116159
116151
  VListImg: VListImg
@@ -116163,80 +116155,82 @@ declare module 'vue' {
116163
116155
  VListItemSubtitle: VListItemSubtitle
116164
116156
  VListItemTitle: VListItemTitle
116165
116157
  VListSubheader: VListSubheader
116166
- VMain: VMain
116167
116158
  VMenu: VMenu
116168
- VOtpInput: VOtpInput
116169
- VMessages: VMessages
116170
- VNumberInput: VNumberInput
116159
+ VMain: VMain
116160
+ VNavigationDrawer: VNavigationDrawer
116171
116161
  VOverlay: VOverlay
116172
116162
  VPagination: VPagination
116173
- VProgressLinear: VProgressLinear
116163
+ VNumberInput: VNumberInput
116174
116164
  VProgressCircular: VProgressCircular
116165
+ VMessages: VMessages
116166
+ VProgressLinear: VProgressLinear
116167
+ VRadioGroup: VRadioGroup
116175
116168
  VRating: VRating
116176
- VSelect: VSelect
116177
116169
  VSelectionControlGroup: VSelectionControlGroup
116170
+ VSelect: VSelect
116171
+ VSheet: VSheet
116172
+ VSkeletonLoader: VSkeletonLoader
116173
+ VSelectionControl: VSelectionControl
116178
116174
  VSlideGroup: VSlideGroup
116179
116175
  VSlideGroupItem: VSlideGroupItem
116180
- VSelectionControl: VSelectionControl
116181
- VSkeletonLoader: VSkeletonLoader
116182
- VSheet: VSheet
116183
- VSlider: VSlider
116184
116176
  VSnackbar: VSnackbar
116177
+ VSlider: VSlider
116178
+ VSystemBar: VSystemBar
116185
116179
  VStepper: VStepper
116186
116180
  VStepperActions: VStepperActions
116187
116181
  VStepperHeader: VStepperHeader
116188
116182
  VStepperItem: VStepperItem
116189
116183
  VStepperWindow: VStepperWindow
116190
116184
  VStepperWindowItem: VStepperWindowItem
116191
- VSwitch: VSwitch
116192
116185
  VTab: VTab
116193
116186
  VTabs: VTabs
116194
116187
  VTabsWindow: VTabsWindow
116195
116188
  VTabsWindowItem: VTabsWindowItem
116196
- VTextField: VTextField
116197
116189
  VTable: VTable
116198
- VSystemBar: VSystemBar
116199
116190
  VTextarea: VTextarea
116200
- VTimeline: VTimeline
116201
- VTimelineItem: VTimelineItem
116202
- VTooltip: VTooltip
116191
+ VTextField: VTextField
116203
116192
  VTimePicker: VTimePicker
116204
116193
  VTimePickerClock: VTimePickerClock
116205
116194
  VTimePickerControls: VTimePickerControls
116206
- VTreeview: VTreeview
116207
- VTreeviewItem: VTreeviewItem
116208
- VTreeviewGroup: VTreeviewGroup
116195
+ VSwitch: VSwitch
116196
+ VTimeline: VTimeline
116197
+ VTimelineItem: VTimelineItem
116209
116198
  VToolbar: VToolbar
116210
116199
  VToolbarTitle: VToolbarTitle
116211
116200
  VToolbarItems: VToolbarItems
116201
+ VTreeview: VTreeview
116202
+ VTreeviewItem: VTreeviewItem
116203
+ VTreeviewGroup: VTreeviewGroup
116204
+ VColorPicker: VColorPicker
116205
+ VTooltip: VTooltip
116212
116206
  VWindow: VWindow
116213
116207
  VWindowItem: VWindowItem
116214
- VDefaultsProvider: VDefaultsProvider
116208
+ VCombobox: VCombobox
116209
+ VConfirmEdit: VConfirmEdit
116210
+ VOtpInput: VOtpInput
116215
116211
  VDataIterator: VDataIterator
116212
+ VDefaultsProvider: VDefaultsProvider
116213
+ VForm: VForm
116214
+ VHover: VHover
116216
116215
  VContainer: VContainer
116217
116216
  VCol: VCol
116218
116217
  VRow: VRow
116219
116218
  VSpacer: VSpacer
116220
- VConfirmEdit: VConfirmEdit
116221
- VForm: VForm
116222
- VHover: VHover
116223
- VLazy: VLazy
116224
116219
  VLayout: VLayout
116225
116220
  VLayoutItem: VLayoutItem
116226
116221
  VLocaleProvider: VLocaleProvider
116222
+ VLazy: VLazy
116227
116223
  VNoSsr: VNoSsr
116228
- VRadioGroup: VRadioGroup
116229
- VEmptyState: VEmptyState
116230
116224
  VParallax: VParallax
116231
116225
  VRadio: VRadio
116232
- VRangeSlider: VRangeSlider
116233
116226
  VResponsive: VResponsive
116234
- VSparkline: VSparkline
116227
+ VRangeSlider: VRangeSlider
116235
116228
  VSnackbarQueue: VSnackbarQueue
116236
116229
  VSpeedDial: VSpeedDial
116230
+ VSparkline: VSparkline
116237
116231
  VThemeProvider: VThemeProvider
116238
- VVirtualScroll: VVirtualScroll
116239
116232
  VValidation: VValidation
116233
+ VVirtualScroll: VVirtualScroll
116240
116234
  VFabTransition: VFabTransition
116241
116235
  VDialogBottomTransition: VDialogBottomTransition
116242
116236
  VDialogTopTransition: VDialogTopTransition
@@ -116253,24 +116247,24 @@ declare module 'vue' {
116253
116247
  VExpandTransition: VExpandTransition
116254
116248
  VExpandXTransition: VExpandXTransition
116255
116249
  VDialogTransition: VDialogTransition
116256
- VFileUpload: VFileUpload
116257
- VFileUploadItem: VFileUploadItem
116258
116250
  VCalendar: VCalendar
116259
116251
  VCalendarDay: VCalendarDay
116260
116252
  VCalendarHeader: VCalendarHeader
116261
116253
  VCalendarInterval: VCalendarInterval
116262
116254
  VCalendarIntervalEvent: VCalendarIntervalEvent
116263
116255
  VCalendarMonthDay: VCalendarMonthDay
116256
+ VColorInput: VColorInput
116257
+ VFileUpload: VFileUpload
116258
+ VFileUploadItem: VFileUploadItem
116264
116259
  VPicker: VPicker
116265
116260
  VPickerTitle: VPickerTitle
116261
+ VIconBtn: VIconBtn
116266
116262
  VStepperVertical: VStepperVertical
116267
116263
  VStepperVerticalItem: VStepperVerticalItem
116268
116264
  VStepperVerticalActions: VStepperVerticalActions
116269
- VColorInput: VColorInput
116265
+ VMaskInput: VMaskInput
116270
116266
  VHotkey: VHotkey
116271
- VIconBtn: VIconBtn
116272
116267
  VDateInput: VDateInput
116273
- VMaskInput: VMaskInput
116274
116268
  VPullToRefresh: VPullToRefresh
116275
116269
  }
116276
116270
  export interface GlobalDirectives {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-18
2
+ * Vuetify v3.9.2-master.2025-07-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5276,7 +5276,8 @@ const VProgressLinear = genericComponent()({
5276
5276
  'v-progress-linear--reverse': isReversed.value,
5277
5277
  'v-progress-linear--rounded': props.rounded,
5278
5278
  'v-progress-linear--rounded-bar': props.roundedBar,
5279
- 'v-progress-linear--striped': props.striped
5279
+ 'v-progress-linear--striped': props.striped,
5280
+ 'v-progress-linear--clickable': props.clickable
5280
5281
  }, roundedClasses.value, themeClasses.value, rtlClasses.value, props.class]),
5281
5282
  "style": normalizeStyle([{
5282
5283
  bottom: props.location === 'bottom' ? 0 : undefined,
@@ -12361,7 +12362,7 @@ const VTextField = genericComponent()({
12361
12362
  if (!isFocused.value) focus();
12362
12363
  nextTick(() => {
12363
12364
  if (inputRef.value !== document.activeElement) {
12364
- nextTick(() => inputRef.value?.focus());
12365
+ inputRef.value?.focus();
12365
12366
  }
12366
12367
  });
12367
12368
  }
@@ -12464,7 +12465,7 @@ const VTextField = genericComponent()({
12464
12465
  "placeholder": props.placeholder,
12465
12466
  "size": 1,
12466
12467
  "type": props.type,
12467
- "onFocus": onFocus,
12468
+ "onFocus": focus,
12468
12469
  "onBlur": blur
12469
12470
  }, slotProps, inputAttrs), null), [[Intersect, {
12470
12471
  handler: onIntersect
@@ -17521,7 +17522,13 @@ function getWeekArray(date, locale, firstDayOfWeek) {
17521
17522
  return weeks;
17522
17523
  }
17523
17524
  function startOfWeek(date, locale, firstDayOfWeek) {
17524
- const day = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17525
+ let day = (firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0) % 7;
17526
+
17527
+ // prevent infinite loop
17528
+ if (![0, 1, 2, 3, 4, 5, 6].includes(day)) {
17529
+ consoleWarn('Invalid firstDayOfWeek, expected discrete number in range [0-6]');
17530
+ day = 0;
17531
+ }
17525
17532
  const d = new Date(date);
17526
17533
  while (d.getDay() !== day) {
17527
17534
  d.setDate(d.getDate() - 1);
@@ -21139,7 +21146,6 @@ const VDataTableHeaders = genericComponent()({
21139
21146
  "appendIcon": appendIcon.value,
21140
21147
  "onClick:append": () => selectAll(!allSelected.value)
21141
21148
  }, {
21142
- ...slots,
21143
21149
  chip: props => createVNode(VChip, {
21144
21150
  "onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
21145
21151
  "onMousedown": e => {
@@ -30259,6 +30265,7 @@ const VTreeviewItem = genericComponent()({
30259
30265
  // Types
30260
30266
 
30261
30267
  const makeVTreeviewChildrenProps = propsFactory({
30268
+ fluid: Boolean,
30262
30269
  disabled: Boolean,
30263
30270
  loadChildren: Function,
30264
30271
  loadingIcon: {
@@ -30340,7 +30347,7 @@ const VTreeviewChildren = genericComponent()({
30340
30347
  depth,
30341
30348
  isLast,
30342
30349
  isLastGroup: props.isLastGroup,
30343
- leafLinks: !props.hideActions,
30350
+ leafLinks: !props.hideActions && !props.fluid,
30344
30351
  separateRoots: props.separateRoots,
30345
30352
  parentIndentLines: props.parentIndentLines,
30346
30353
  variant: props.indentLinesVariant
@@ -30457,7 +30464,6 @@ function flatten(items) {
30457
30464
  return flat;
30458
30465
  }
30459
30466
  const makeVTreeviewProps = propsFactory({
30460
- fluid: Boolean,
30461
30467
  openAll: Boolean,
30462
30468
  indentLines: [Boolean, String],
30463
30469
  search: String,
@@ -31749,7 +31755,7 @@ const VFileUploadItem = genericComponent()({
31749
31755
  "style": props.style
31750
31756
  }), {
31751
31757
  ...slots,
31752
- title: () => props?.title ?? props.file?.name,
31758
+ title: slots.title ?? (() => props?.title ?? props.file?.name),
31753
31759
  prepend: slotProps => createElementVNode(Fragment, null, [!slots.prepend ? createVNode(VAvatar, {
31754
31760
  "icon": props.fileIcon,
31755
31761
  "image": preview.value,
@@ -33688,7 +33694,7 @@ function createVuetify$1() {
33688
33694
  };
33689
33695
  });
33690
33696
  }
33691
- const version$1 = "3.9.2-master.2025-07-18";
33697
+ const version$1 = "3.9.2-master.2025-07-23";
33692
33698
  createVuetify$1.version = version$1;
33693
33699
 
33694
33700
  // Vue's inject() can only be used in setup
@@ -33986,7 +33992,7 @@ var index = /*#__PURE__*/Object.freeze({
33986
33992
 
33987
33993
  /* eslint-disable local-rules/sort-imports */
33988
33994
 
33989
- const version = "3.9.2-master.2025-07-18";
33995
+ const version = "3.9.2-master.2025-07-23";
33990
33996
 
33991
33997
  /* eslint-disable local-rules/sort-imports */
33992
33998