@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.
- package/CHANGELOG.md +24 -3
- package/dist/json/attributes.json +3644 -3644
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +148 -148
- package/dist/json/web-types.json +6340 -6351
- package/dist/vuetify-labs.cjs +17 -11
- package/dist/vuetify-labs.css +5188 -5180
- package/dist/vuetify-labs.d.ts +63 -69
- package/dist/vuetify-labs.esm.js +17 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +17 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +16 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3960 -3953
- package/dist/vuetify.d.ts +63 -69
- package/dist/vuetify.esm.js +16 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +16 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -16
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/VCarousel.d.ts +7 -13
- package/lib/components/VCarousel/VCarousel.js.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.css +1 -0
- package/lib/components/VColorPicker/VColorPicker.sass +1 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +0 -1
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.css +3 -0
- package/lib/components/VFileInput/VFileInput.sass +3 -0
- package/lib/components/VProgressLinear/VProgressLinear.css +4 -1
- package/lib/components/VProgressLinear/VProgressLinear.js +2 -1
- package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +5 -2
- package/lib/components/VTextField/VTextField.js +2 -2
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +7 -7
- package/lib/components/VTreeview/VTreeview.js +0 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +13 -0
- package/lib/components/VTreeview/VTreeviewChildren.js +2 -1
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.js +8 -2
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +54 -54
- package/lib/framework.js +1 -1
- package/lib/labs/VFileUpload/VFileUploadItem.js +1 -1
- package/lib/labs/VFileUpload/VFileUploadItem.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.css +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +1 -0
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -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:
|
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
|
-
|
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
|
-
|
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:
|
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
|
-
|
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
|
-
|
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;
|
@@ -116081,42 +116075,40 @@ declare module 'vue' {
|
|
116081
116075
|
$children?: VNodeChild
|
116082
116076
|
}
|
116083
116077
|
export interface GlobalComponents {
|
116084
|
-
|
116078
|
+
VApp: VApp
|
116085
116079
|
VAlert: VAlert
|
116086
116080
|
VAlertTitle: VAlertTitle
|
116087
|
-
VApp: VApp
|
116088
116081
|
VAppBar: VAppBar
|
116089
116082
|
VAppBarNavIcon: VAppBarNavIcon
|
116090
116083
|
VAppBarTitle: VAppBarTitle
|
116084
|
+
VAutocomplete: VAutocomplete
|
116085
|
+
VAvatar: VAvatar
|
116091
116086
|
VBadge: VBadge
|
116092
116087
|
VBanner: VBanner
|
116093
116088
|
VBannerActions: VBannerActions
|
116094
116089
|
VBannerText: VBannerText
|
116095
|
-
VAvatar: VAvatar
|
116096
116090
|
VBottomNavigation: VBottomNavigation
|
116097
|
-
VBtnGroup: VBtnGroup
|
116098
|
-
VBtn: VBtn
|
116099
|
-
VBottomSheet: VBottomSheet
|
116100
|
-
VBtnToggle: VBtnToggle
|
116101
116091
|
VBreadcrumbs: VBreadcrumbs
|
116102
116092
|
VBreadcrumbsItem: VBreadcrumbsItem
|
116103
116093
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
116094
|
+
VBottomSheet: VBottomSheet
|
116095
|
+
VBtn: VBtn
|
116096
|
+
VBtnGroup: VBtnGroup
|
116104
116097
|
VCard: VCard
|
116105
116098
|
VCardActions: VCardActions
|
116106
116099
|
VCardItem: VCardItem
|
116107
116100
|
VCardSubtitle: VCardSubtitle
|
116108
116101
|
VCardText: VCardText
|
116109
116102
|
VCardTitle: VCardTitle
|
116110
|
-
VCarousel: VCarousel
|
116111
|
-
VCarouselItem: VCarouselItem
|
116112
|
-
VCheckbox: VCheckbox
|
116113
|
-
VCheckboxBtn: VCheckboxBtn
|
116114
|
-
VColorPicker: VColorPicker
|
116115
116103
|
VChip: VChip
|
116116
|
-
VCounter: VCounter
|
116117
116104
|
VCode: VCode
|
116118
116105
|
VChipGroup: VChipGroup
|
116119
|
-
|
116106
|
+
VCounter: VCounter
|
116107
|
+
VCheckbox: VCheckbox
|
116108
|
+
VCheckboxBtn: VCheckboxBtn
|
116109
|
+
VBtnToggle: VBtnToggle
|
116110
|
+
VCarousel: VCarousel
|
116111
|
+
VCarouselItem: VCarouselItem
|
116120
116112
|
VDataTable: VDataTable
|
116121
116113
|
VDataTableHeaders: VDataTableHeaders
|
116122
116114
|
VDataTableFooter: VDataTableFooter
|
@@ -116124,35 +116116,36 @@ declare module 'vue' {
|
|
116124
116116
|
VDataTableRow: VDataTableRow
|
116125
116117
|
VDataTableVirtual: VDataTableVirtual
|
116126
116118
|
VDataTableServer: VDataTableServer
|
116119
|
+
VDialog: VDialog
|
116127
116120
|
VDatePicker: VDatePicker
|
116128
116121
|
VDatePickerControls: VDatePickerControls
|
116129
116122
|
VDatePickerHeader: VDatePickerHeader
|
116130
116123
|
VDatePickerMonth: VDatePickerMonth
|
116131
116124
|
VDatePickerMonths: VDatePickerMonths
|
116132
116125
|
VDatePickerYears: VDatePickerYears
|
116133
|
-
VDialog: VDialog
|
116134
116126
|
VDivider: VDivider
|
116135
|
-
VFab: VFab
|
116136
116127
|
VEmptyState: VEmptyState
|
116137
|
-
VFileInput: VFileInput
|
116138
|
-
VField: VField
|
116139
|
-
VFieldLabel: VFieldLabel
|
116140
116128
|
VExpansionPanels: VExpansionPanels
|
116141
116129
|
VExpansionPanel: VExpansionPanel
|
116142
116130
|
VExpansionPanelText: VExpansionPanelText
|
116143
116131
|
VExpansionPanelTitle: VExpansionPanelTitle
|
116132
|
+
VField: VField
|
116133
|
+
VFieldLabel: VFieldLabel
|
116134
|
+
VFileInput: VFileInput
|
116135
|
+
VFab: VFab
|
116144
116136
|
VFooter: VFooter
|
116145
116137
|
VIcon: VIcon
|
116146
116138
|
VComponentIcon: VComponentIcon
|
116147
116139
|
VSvgIcon: VSvgIcon
|
116148
116140
|
VLigatureIcon: VLigatureIcon
|
116149
116141
|
VClassIcon: VClassIcon
|
116142
|
+
VInfiniteScroll: VInfiniteScroll
|
116143
|
+
VImg: VImg
|
116150
116144
|
VInput: VInput
|
116151
|
-
VItemGroup: VItemGroup
|
116152
|
-
VItem: VItem
|
116153
116145
|
VKbd: VKbd
|
116154
|
-
VImg: VImg
|
116155
116146
|
VLabel: VLabel
|
116147
|
+
VItemGroup: VItemGroup
|
116148
|
+
VItem: VItem
|
116156
116149
|
VList: VList
|
116157
116150
|
VListGroup: VListGroup
|
116158
116151
|
VListImg: VListImg
|
@@ -116162,58 +116155,59 @@ declare module 'vue' {
|
|
116162
116155
|
VListItemSubtitle: VListItemSubtitle
|
116163
116156
|
VListItemTitle: VListItemTitle
|
116164
116157
|
VListSubheader: VListSubheader
|
116165
|
-
VInfiniteScroll: VInfiniteScroll
|
116166
|
-
VMain: VMain
|
116167
116158
|
VMenu: VMenu
|
116168
|
-
|
116169
|
-
VMessages: VMessages
|
116170
|
-
VNumberInput: VNumberInput
|
116159
|
+
VMain: VMain
|
116171
116160
|
VNavigationDrawer: VNavigationDrawer
|
116161
|
+
VOverlay: VOverlay
|
116172
116162
|
VPagination: VPagination
|
116163
|
+
VNumberInput: VNumberInput
|
116173
116164
|
VProgressCircular: VProgressCircular
|
116174
|
-
|
116165
|
+
VMessages: VMessages
|
116175
116166
|
VProgressLinear: VProgressLinear
|
116176
116167
|
VRadioGroup: VRadioGroup
|
116177
116168
|
VRating: VRating
|
116169
|
+
VSelectionControlGroup: VSelectionControlGroup
|
116178
116170
|
VSelect: VSelect
|
116179
|
-
|
116171
|
+
VSheet: VSheet
|
116180
116172
|
VSkeletonLoader: VSkeletonLoader
|
116181
|
-
|
116182
|
-
VSlider: VSlider
|
116173
|
+
VSelectionControl: VSelectionControl
|
116183
116174
|
VSlideGroup: VSlideGroup
|
116184
116175
|
VSlideGroupItem: VSlideGroupItem
|
116185
116176
|
VSnackbar: VSnackbar
|
116186
|
-
|
116177
|
+
VSlider: VSlider
|
116178
|
+
VSystemBar: VSystemBar
|
116187
116179
|
VStepper: VStepper
|
116188
116180
|
VStepperActions: VStepperActions
|
116189
116181
|
VStepperHeader: VStepperHeader
|
116190
116182
|
VStepperItem: VStepperItem
|
116191
116183
|
VStepperWindow: VStepperWindow
|
116192
116184
|
VStepperWindowItem: VStepperWindowItem
|
116193
|
-
VSwitch: VSwitch
|
116194
|
-
VSystemBar: VSystemBar
|
116195
|
-
VTextField: VTextField
|
116196
|
-
VTextarea: VTextarea
|
116197
|
-
VTimeline: VTimeline
|
116198
|
-
VTimelineItem: VTimelineItem
|
116199
|
-
VTimePicker: VTimePicker
|
116200
|
-
VTimePickerClock: VTimePickerClock
|
116201
|
-
VTimePickerControls: VTimePickerControls
|
116202
|
-
VTable: VTable
|
116203
116185
|
VTab: VTab
|
116204
116186
|
VTabs: VTabs
|
116205
116187
|
VTabsWindow: VTabsWindow
|
116206
116188
|
VTabsWindowItem: VTabsWindowItem
|
116189
|
+
VTable: VTable
|
116190
|
+
VTextarea: VTextarea
|
116191
|
+
VTextField: VTextField
|
116192
|
+
VTimePicker: VTimePicker
|
116193
|
+
VTimePickerClock: VTimePickerClock
|
116194
|
+
VTimePickerControls: VTimePickerControls
|
116195
|
+
VSwitch: VSwitch
|
116196
|
+
VTimeline: VTimeline
|
116197
|
+
VTimelineItem: VTimelineItem
|
116207
116198
|
VToolbar: VToolbar
|
116208
116199
|
VToolbarTitle: VToolbarTitle
|
116209
116200
|
VToolbarItems: VToolbarItems
|
116210
|
-
VTooltip: VTooltip
|
116211
116201
|
VTreeview: VTreeview
|
116212
116202
|
VTreeviewItem: VTreeviewItem
|
116213
116203
|
VTreeviewGroup: VTreeviewGroup
|
116204
|
+
VColorPicker: VColorPicker
|
116205
|
+
VTooltip: VTooltip
|
116214
116206
|
VWindow: VWindow
|
116215
116207
|
VWindowItem: VWindowItem
|
116208
|
+
VCombobox: VCombobox
|
116216
116209
|
VConfirmEdit: VConfirmEdit
|
116210
|
+
VOtpInput: VOtpInput
|
116217
116211
|
VDataIterator: VDataIterator
|
116218
116212
|
VDefaultsProvider: VDefaultsProvider
|
116219
116213
|
VForm: VForm
|
@@ -116224,18 +116218,18 @@ declare module 'vue' {
|
|
116224
116218
|
VSpacer: VSpacer
|
116225
116219
|
VLayout: VLayout
|
116226
116220
|
VLayoutItem: VLayoutItem
|
116227
|
-
VLazy: VLazy
|
116228
116221
|
VLocaleProvider: VLocaleProvider
|
116222
|
+
VLazy: VLazy
|
116229
116223
|
VNoSsr: VNoSsr
|
116230
116224
|
VParallax: VParallax
|
116231
|
-
VRangeSlider: VRangeSlider
|
116232
116225
|
VRadio: VRadio
|
116233
116226
|
VResponsive: VResponsive
|
116234
|
-
|
116227
|
+
VRangeSlider: VRangeSlider
|
116235
116228
|
VSnackbarQueue: VSnackbarQueue
|
116236
116229
|
VSpeedDial: VSpeedDial
|
116237
|
-
|
116230
|
+
VSparkline: VSparkline
|
116238
116231
|
VThemeProvider: VThemeProvider
|
116232
|
+
VValidation: VValidation
|
116239
116233
|
VVirtualScroll: VVirtualScroll
|
116240
116234
|
VFabTransition: VFabTransition
|
116241
116235
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -116259,19 +116253,19 @@ declare module 'vue' {
|
|
116259
116253
|
VCalendarInterval: VCalendarInterval
|
116260
116254
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
116261
116255
|
VCalendarMonthDay: VCalendarMonthDay
|
116256
|
+
VColorInput: VColorInput
|
116257
|
+
VFileUpload: VFileUpload
|
116258
|
+
VFileUploadItem: VFileUploadItem
|
116259
|
+
VPicker: VPicker
|
116260
|
+
VPickerTitle: VPickerTitle
|
116261
|
+
VIconBtn: VIconBtn
|
116262
116262
|
VStepperVertical: VStepperVertical
|
116263
116263
|
VStepperVerticalItem: VStepperVerticalItem
|
116264
116264
|
VStepperVerticalActions: VStepperVerticalActions
|
116265
|
-
|
116266
|
-
VIconBtn: VIconBtn
|
116265
|
+
VMaskInput: VMaskInput
|
116267
116266
|
VHotkey: VHotkey
|
116268
|
-
VPicker: VPicker
|
116269
|
-
VPickerTitle: VPickerTitle
|
116270
116267
|
VDateInput: VDateInput
|
116271
|
-
VMaskInput: VMaskInput
|
116272
116268
|
VPullToRefresh: VPullToRefresh
|
116273
|
-
VFileUpload: VFileUpload
|
116274
|
-
VFileUploadItem: VFileUploadItem
|
116275
116269
|
}
|
116276
116270
|
export interface GlobalDirectives {
|
116277
116271
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.2-master.2025-07-
|
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
|
-
|
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":
|
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
|
-
|
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-
|
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-
|
33995
|
+
const version = "3.9.2-master.2025-07-23";
|
33990
33996
|
|
33991
33997
|
/* eslint-disable local-rules/sort-imports */
|
33992
33998
|
|