@vuetify/nightly 3.9.2-master.2025-07-22 → 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 +24 -3
  2. package/dist/json/attributes.json +3644 -3644
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +148 -148
  5. package/dist/json/web-types.json +6340 -6351
  6. package/dist/vuetify-labs.cjs +17 -11
  7. package/dist/vuetify-labs.css +5188 -5180
  8. package/dist/vuetify-labs.d.ts +63 -69
  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 +3960 -3953
  16. package/dist/vuetify.d.ts +63 -69
  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 +54 -54
  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
package/dist/vuetify.d.ts CHANGED
@@ -24665,7 +24665,7 @@ declare const VWindow: {
24665
24665
  }>>;
24666
24666
  type VWindow = InstanceType<typeof VWindow>;
24667
24667
 
24668
- type VCarouselSlots = VWindowSlots & {
24668
+ type VCarouselSlots = Omit<VWindowSlots, 'additional'> & {
24669
24669
  item: {
24670
24670
  props: Record<string, any>;
24671
24671
  item: {
@@ -24704,7 +24704,7 @@ declare const VCarousel: {
24704
24704
  verticalDelimiters?: boolean | "left" | "right" | undefined;
24705
24705
  } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
24706
24706
  'update:modelValue': (value: any) => true;
24707
- }, "$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, {
24707
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
24708
24708
  reverse: boolean;
24709
24709
  interval: string | number;
24710
24710
  height: string | number;
@@ -24727,10 +24727,7 @@ declare const VCarousel: {
24727
24727
  default: (arg: {
24728
24728
  group: GroupProvide;
24729
24729
  }) => vue.VNode[];
24730
- additional: (arg: {
24731
- group: GroupProvide;
24732
- }) => vue.VNode[];
24733
- prev: (arg: {
24730
+ next: (arg: {
24734
24731
  props: {
24735
24732
  icon: IconValue;
24736
24733
  class: string;
@@ -24738,7 +24735,7 @@ declare const VCarousel: {
24738
24735
  'aria-label': string;
24739
24736
  };
24740
24737
  }) => vue.VNode[];
24741
- next: (arg: {
24738
+ prev: (arg: {
24742
24739
  props: {
24743
24740
  icon: IconValue;
24744
24741
  class: string;
@@ -24838,7 +24835,7 @@ declare const VCarousel: {
24838
24835
  verticalDelimiters?: boolean | "left" | "right" | undefined;
24839
24836
  } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
24840
24837
  'update:modelValue': (value: any) => true;
24841
- }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:additional" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, string, {
24838
+ }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:next" | "v-slot:prev" | "v-slot:item">, string, {
24842
24839
  reverse: boolean;
24843
24840
  interval: string | number;
24844
24841
  height: string | number;
@@ -24861,10 +24858,7 @@ declare const VCarousel: {
24861
24858
  default: (arg: {
24862
24859
  group: GroupProvide;
24863
24860
  }) => vue.VNode[];
24864
- additional: (arg: {
24865
- group: GroupProvide;
24866
- }) => vue.VNode[];
24867
- prev: (arg: {
24861
+ next: (arg: {
24868
24862
  props: {
24869
24863
  icon: IconValue;
24870
24864
  class: string;
@@ -24872,7 +24866,7 @@ declare const VCarousel: {
24872
24866
  'aria-label': string;
24873
24867
  };
24874
24868
  }) => vue.VNode[];
24875
- next: (arg: {
24869
+ prev: (arg: {
24876
24870
  props: {
24877
24871
  icon: IconValue;
24878
24872
  class: string;
@@ -90446,6 +90440,7 @@ declare const VTreeview: {
90446
90440
  type: PropType<IconValue>;
90447
90441
  default: string;
90448
90442
  };
90443
+ fluid: BooleanConstructor;
90449
90444
  hideActions: BooleanConstructor;
90450
90445
  loadingIcon: {
90451
90446
  type: StringConstructor;
@@ -90464,7 +90459,6 @@ declare const VTreeview: {
90464
90459
  default: string;
90465
90460
  };
90466
90461
  noFilter: BooleanConstructor;
90467
- fluid: BooleanConstructor;
90468
90462
  openAll: BooleanConstructor;
90469
90463
  indentLines: PropType<boolean | IndentLinesVariant>;
90470
90464
  search: StringConstructor;
@@ -90591,6 +90585,7 @@ declare const VTreeview: {
90591
90585
  type: PropType<IconValue>;
90592
90586
  default: string;
90593
90587
  };
90588
+ fluid: BooleanConstructor;
90594
90589
  hideActions: BooleanConstructor;
90595
90590
  loadingIcon: {
90596
90591
  type: StringConstructor;
@@ -90609,7 +90604,6 @@ declare const VTreeview: {
90609
90604
  default: string;
90610
90605
  };
90611
90606
  noFilter: BooleanConstructor;
90612
- fluid: BooleanConstructor;
90613
90607
  openAll: BooleanConstructor;
90614
90608
  indentLines: PropType<boolean | IndentLinesVariant>;
90615
90609
  search: StringConstructor;
@@ -95362,42 +95356,40 @@ declare module 'vue' {
95362
95356
  $children?: VNodeChild
95363
95357
  }
95364
95358
  export interface GlobalComponents {
95365
- VAutocomplete: VAutocomplete
95359
+ VApp: VApp
95366
95360
  VAlert: VAlert
95367
95361
  VAlertTitle: VAlertTitle
95368
- VApp: VApp
95369
95362
  VAppBar: VAppBar
95370
95363
  VAppBarNavIcon: VAppBarNavIcon
95371
95364
  VAppBarTitle: VAppBarTitle
95365
+ VAutocomplete: VAutocomplete
95366
+ VAvatar: VAvatar
95372
95367
  VBadge: VBadge
95373
95368
  VBanner: VBanner
95374
95369
  VBannerActions: VBannerActions
95375
95370
  VBannerText: VBannerText
95376
- VAvatar: VAvatar
95377
95371
  VBottomNavigation: VBottomNavigation
95378
- VBtnGroup: VBtnGroup
95379
- VBtn: VBtn
95380
- VBottomSheet: VBottomSheet
95381
- VBtnToggle: VBtnToggle
95382
95372
  VBreadcrumbs: VBreadcrumbs
95383
95373
  VBreadcrumbsItem: VBreadcrumbsItem
95384
95374
  VBreadcrumbsDivider: VBreadcrumbsDivider
95375
+ VBottomSheet: VBottomSheet
95376
+ VBtn: VBtn
95377
+ VBtnGroup: VBtnGroup
95385
95378
  VCard: VCard
95386
95379
  VCardActions: VCardActions
95387
95380
  VCardItem: VCardItem
95388
95381
  VCardSubtitle: VCardSubtitle
95389
95382
  VCardText: VCardText
95390
95383
  VCardTitle: VCardTitle
95391
- VCarousel: VCarousel
95392
- VCarouselItem: VCarouselItem
95393
- VCheckbox: VCheckbox
95394
- VCheckboxBtn: VCheckboxBtn
95395
- VColorPicker: VColorPicker
95396
95384
  VChip: VChip
95397
- VCounter: VCounter
95398
95385
  VCode: VCode
95399
95386
  VChipGroup: VChipGroup
95400
- VCombobox: VCombobox
95387
+ VCounter: VCounter
95388
+ VCheckbox: VCheckbox
95389
+ VCheckboxBtn: VCheckboxBtn
95390
+ VBtnToggle: VBtnToggle
95391
+ VCarousel: VCarousel
95392
+ VCarouselItem: VCarouselItem
95401
95393
  VDataTable: VDataTable
95402
95394
  VDataTableHeaders: VDataTableHeaders
95403
95395
  VDataTableFooter: VDataTableFooter
@@ -95405,35 +95397,36 @@ declare module 'vue' {
95405
95397
  VDataTableRow: VDataTableRow
95406
95398
  VDataTableVirtual: VDataTableVirtual
95407
95399
  VDataTableServer: VDataTableServer
95400
+ VDialog: VDialog
95408
95401
  VDatePicker: VDatePicker
95409
95402
  VDatePickerControls: VDatePickerControls
95410
95403
  VDatePickerHeader: VDatePickerHeader
95411
95404
  VDatePickerMonth: VDatePickerMonth
95412
95405
  VDatePickerMonths: VDatePickerMonths
95413
95406
  VDatePickerYears: VDatePickerYears
95414
- VDialog: VDialog
95415
95407
  VDivider: VDivider
95416
- VFab: VFab
95417
95408
  VEmptyState: VEmptyState
95418
- VFileInput: VFileInput
95419
- VField: VField
95420
- VFieldLabel: VFieldLabel
95421
95409
  VExpansionPanels: VExpansionPanels
95422
95410
  VExpansionPanel: VExpansionPanel
95423
95411
  VExpansionPanelText: VExpansionPanelText
95424
95412
  VExpansionPanelTitle: VExpansionPanelTitle
95413
+ VField: VField
95414
+ VFieldLabel: VFieldLabel
95415
+ VFileInput: VFileInput
95416
+ VFab: VFab
95425
95417
  VFooter: VFooter
95426
95418
  VIcon: VIcon
95427
95419
  VComponentIcon: VComponentIcon
95428
95420
  VSvgIcon: VSvgIcon
95429
95421
  VLigatureIcon: VLigatureIcon
95430
95422
  VClassIcon: VClassIcon
95423
+ VInfiniteScroll: VInfiniteScroll
95424
+ VImg: VImg
95431
95425
  VInput: VInput
95432
- VItemGroup: VItemGroup
95433
- VItem: VItem
95434
95426
  VKbd: VKbd
95435
- VImg: VImg
95436
95427
  VLabel: VLabel
95428
+ VItemGroup: VItemGroup
95429
+ VItem: VItem
95437
95430
  VList: VList
95438
95431
  VListGroup: VListGroup
95439
95432
  VListImg: VListImg
@@ -95443,58 +95436,59 @@ declare module 'vue' {
95443
95436
  VListItemSubtitle: VListItemSubtitle
95444
95437
  VListItemTitle: VListItemTitle
95445
95438
  VListSubheader: VListSubheader
95446
- VInfiniteScroll: VInfiniteScroll
95447
- VMain: VMain
95448
95439
  VMenu: VMenu
95449
- VOtpInput: VOtpInput
95450
- VMessages: VMessages
95451
- VNumberInput: VNumberInput
95440
+ VMain: VMain
95452
95441
  VNavigationDrawer: VNavigationDrawer
95442
+ VOverlay: VOverlay
95453
95443
  VPagination: VPagination
95444
+ VNumberInput: VNumberInput
95454
95445
  VProgressCircular: VProgressCircular
95455
- VOverlay: VOverlay
95446
+ VMessages: VMessages
95456
95447
  VProgressLinear: VProgressLinear
95457
95448
  VRadioGroup: VRadioGroup
95458
95449
  VRating: VRating
95450
+ VSelectionControlGroup: VSelectionControlGroup
95459
95451
  VSelect: VSelect
95460
- VSelectionControl: VSelectionControl
95452
+ VSheet: VSheet
95461
95453
  VSkeletonLoader: VSkeletonLoader
95462
- VSelectionControlGroup: VSelectionControlGroup
95463
- VSlider: VSlider
95454
+ VSelectionControl: VSelectionControl
95464
95455
  VSlideGroup: VSlideGroup
95465
95456
  VSlideGroupItem: VSlideGroupItem
95466
95457
  VSnackbar: VSnackbar
95467
- VSheet: VSheet
95458
+ VSlider: VSlider
95459
+ VSystemBar: VSystemBar
95468
95460
  VStepper: VStepper
95469
95461
  VStepperActions: VStepperActions
95470
95462
  VStepperHeader: VStepperHeader
95471
95463
  VStepperItem: VStepperItem
95472
95464
  VStepperWindow: VStepperWindow
95473
95465
  VStepperWindowItem: VStepperWindowItem
95474
- VSwitch: VSwitch
95475
- VSystemBar: VSystemBar
95476
- VTextField: VTextField
95477
- VTextarea: VTextarea
95478
- VTimeline: VTimeline
95479
- VTimelineItem: VTimelineItem
95480
- VTimePicker: VTimePicker
95481
- VTimePickerClock: VTimePickerClock
95482
- VTimePickerControls: VTimePickerControls
95483
- VTable: VTable
95484
95466
  VTab: VTab
95485
95467
  VTabs: VTabs
95486
95468
  VTabsWindow: VTabsWindow
95487
95469
  VTabsWindowItem: VTabsWindowItem
95470
+ VTable: VTable
95471
+ VTextarea: VTextarea
95472
+ VTextField: VTextField
95473
+ VTimePicker: VTimePicker
95474
+ VTimePickerClock: VTimePickerClock
95475
+ VTimePickerControls: VTimePickerControls
95476
+ VSwitch: VSwitch
95477
+ VTimeline: VTimeline
95478
+ VTimelineItem: VTimelineItem
95488
95479
  VToolbar: VToolbar
95489
95480
  VToolbarTitle: VToolbarTitle
95490
95481
  VToolbarItems: VToolbarItems
95491
- VTooltip: VTooltip
95492
95482
  VTreeview: VTreeview
95493
95483
  VTreeviewItem: VTreeviewItem
95494
95484
  VTreeviewGroup: VTreeviewGroup
95485
+ VColorPicker: VColorPicker
95486
+ VTooltip: VTooltip
95495
95487
  VWindow: VWindow
95496
95488
  VWindowItem: VWindowItem
95489
+ VCombobox: VCombobox
95497
95490
  VConfirmEdit: VConfirmEdit
95491
+ VOtpInput: VOtpInput
95498
95492
  VDataIterator: VDataIterator
95499
95493
  VDefaultsProvider: VDefaultsProvider
95500
95494
  VForm: VForm
@@ -95505,18 +95499,18 @@ declare module 'vue' {
95505
95499
  VSpacer: VSpacer
95506
95500
  VLayout: VLayout
95507
95501
  VLayoutItem: VLayoutItem
95508
- VLazy: VLazy
95509
95502
  VLocaleProvider: VLocaleProvider
95503
+ VLazy: VLazy
95510
95504
  VNoSsr: VNoSsr
95511
95505
  VParallax: VParallax
95512
- VRangeSlider: VRangeSlider
95513
95506
  VRadio: VRadio
95514
95507
  VResponsive: VResponsive
95515
- VSparkline: VSparkline
95508
+ VRangeSlider: VRangeSlider
95516
95509
  VSnackbarQueue: VSnackbarQueue
95517
95510
  VSpeedDial: VSpeedDial
95518
- VValidation: VValidation
95511
+ VSparkline: VSparkline
95519
95512
  VThemeProvider: VThemeProvider
95513
+ VValidation: VValidation
95520
95514
  VVirtualScroll: VVirtualScroll
95521
95515
  VFabTransition: VFabTransition
95522
95516
  VDialogBottomTransition: VDialogBottomTransition
@@ -95540,19 +95534,19 @@ declare module 'vue' {
95540
95534
  VCalendarInterval: VCalendarInterval
95541
95535
  VCalendarIntervalEvent: VCalendarIntervalEvent
95542
95536
  VCalendarMonthDay: VCalendarMonthDay
95537
+ VColorInput: VColorInput
95538
+ VFileUpload: VFileUpload
95539
+ VFileUploadItem: VFileUploadItem
95540
+ VPicker: VPicker
95541
+ VPickerTitle: VPickerTitle
95542
+ VIconBtn: VIconBtn
95543
95543
  VStepperVertical: VStepperVertical
95544
95544
  VStepperVerticalItem: VStepperVerticalItem
95545
95545
  VStepperVerticalActions: VStepperVerticalActions
95546
- VColorInput: VColorInput
95547
- VIconBtn: VIconBtn
95546
+ VMaskInput: VMaskInput
95548
95547
  VHotkey: VHotkey
95549
- VPicker: VPicker
95550
- VPickerTitle: VPickerTitle
95551
95548
  VDateInput: VDateInput
95552
- VMaskInput: VMaskInput
95553
95549
  VPullToRefresh: VPullToRefresh
95554
- VFileUpload: VFileUpload
95555
- VFileUploadItem: VFileUploadItem
95556
95550
  }
95557
95551
  export interface GlobalDirectives {
95558
95552
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-22
2
+ * Vuetify v3.9.2-master.2025-07-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5554,7 +5554,8 @@ const VProgressLinear = genericComponent()({
5554
5554
  'v-progress-linear--reverse': isReversed.value,
5555
5555
  'v-progress-linear--rounded': props.rounded,
5556
5556
  'v-progress-linear--rounded-bar': props.roundedBar,
5557
- 'v-progress-linear--striped': props.striped
5557
+ 'v-progress-linear--striped': props.striped,
5558
+ 'v-progress-linear--clickable': props.clickable
5558
5559
  }, roundedClasses.value, themeClasses.value, rtlClasses.value, props.class]),
5559
5560
  "style": normalizeStyle([{
5560
5561
  bottom: props.location === 'bottom' ? 0 : undefined,
@@ -12639,7 +12640,7 @@ const VTextField = genericComponent()({
12639
12640
  if (!isFocused.value) focus();
12640
12641
  nextTick(() => {
12641
12642
  if (inputRef.value !== document.activeElement) {
12642
- nextTick(() => inputRef.value?.focus());
12643
+ inputRef.value?.focus();
12643
12644
  }
12644
12645
  });
12645
12646
  }
@@ -12742,7 +12743,7 @@ const VTextField = genericComponent()({
12742
12743
  "placeholder": props.placeholder,
12743
12744
  "size": 1,
12744
12745
  "type": props.type,
12745
- "onFocus": onFocus,
12746
+ "onFocus": focus,
12746
12747
  "onBlur": blur
12747
12748
  }, slotProps, inputAttrs), null), [[Intersect, {
12748
12749
  handler: onIntersect
@@ -17799,7 +17800,13 @@ function getWeekArray(date, locale, firstDayOfWeek) {
17799
17800
  return weeks;
17800
17801
  }
17801
17802
  function startOfWeek(date, locale, firstDayOfWeek) {
17802
- const day = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17803
+ let day = (firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0) % 7;
17804
+
17805
+ // prevent infinite loop
17806
+ if (![0, 1, 2, 3, 4, 5, 6].includes(day)) {
17807
+ consoleWarn('Invalid firstDayOfWeek, expected discrete number in range [0-6]');
17808
+ day = 0;
17809
+ }
17803
17810
  const d = new Date(date);
17804
17811
  while (d.getDay() !== day) {
17805
17812
  d.setDate(d.getDate() - 1);
@@ -21417,7 +21424,6 @@ const VDataTableHeaders = genericComponent()({
21417
21424
  "appendIcon": appendIcon.value,
21418
21425
  "onClick:append": () => selectAll(!allSelected.value)
21419
21426
  }, {
21420
- ...slots,
21421
21427
  chip: props => createVNode(VChip, {
21422
21428
  "onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
21423
21429
  "onMousedown": e => {
@@ -30537,6 +30543,7 @@ const VTreeviewItem = genericComponent()({
30537
30543
  // Types
30538
30544
 
30539
30545
  const makeVTreeviewChildrenProps = propsFactory({
30546
+ fluid: Boolean,
30540
30547
  disabled: Boolean,
30541
30548
  loadChildren: Function,
30542
30549
  loadingIcon: {
@@ -30618,7 +30625,7 @@ const VTreeviewChildren = genericComponent()({
30618
30625
  depth,
30619
30626
  isLast,
30620
30627
  isLastGroup: props.isLastGroup,
30621
- leafLinks: !props.hideActions,
30628
+ leafLinks: !props.hideActions && !props.fluid,
30622
30629
  separateRoots: props.separateRoots,
30623
30630
  parentIndentLines: props.parentIndentLines,
30624
30631
  variant: props.indentLinesVariant
@@ -30735,7 +30742,6 @@ function flatten(items) {
30735
30742
  return flat;
30736
30743
  }
30737
30744
  const makeVTreeviewProps = propsFactory({
30738
- fluid: Boolean,
30739
30745
  openAll: Boolean,
30740
30746
  indentLines: [Boolean, String],
30741
30747
  search: String,
@@ -31384,7 +31390,7 @@ function createVuetify$1() {
31384
31390
  };
31385
31391
  });
31386
31392
  }
31387
- const version$1 = "3.9.2-master.2025-07-22";
31393
+ const version$1 = "3.9.2-master.2025-07-23";
31388
31394
  createVuetify$1.version = version$1;
31389
31395
 
31390
31396
  // Vue's inject() can only be used in setup
@@ -31409,7 +31415,7 @@ const createVuetify = function () {
31409
31415
  ...options
31410
31416
  });
31411
31417
  };
31412
- const version = "3.9.2-master.2025-07-22";
31418
+ const version = "3.9.2-master.2025-07-23";
31413
31419
  createVuetify.version = version;
31414
31420
 
31415
31421
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useRtl, useTheme, version };