@vuetify/nightly 3.7.7-master.2025-01-24 → 3.7.7-master.2025-01-25
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 +14 -3
- package/dist/json/attributes.json +3342 -3342
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +170 -170
- package/dist/json/web-types.json +6045 -6045
- package/dist/vuetify-labs.css +3678 -3678
- package/dist/vuetify-labs.esm.js +26 -19
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +26 -19
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4854 -4854
- package/dist/vuetify.d.ts +57 -57
- package/dist/vuetify.esm.js +26 -19
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +26 -19
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +29 -29
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +1 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +2 -2
- package/lib/components/VDataTable/VDataTable.sass +2 -2
- package/lib/components/VDataTable/composables/group.mjs +1 -1
- package/lib/components/VDataTable/composables/group.mjs.map +1 -1
- package/lib/components/VDataTable/composables/paginate.mjs +2 -0
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VField/VField.css +1 -1
- package/lib/components/VField/VField.mjs +6 -5
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/VField.sass +1 -1
- package/lib/components/VInput/VInput.mjs +4 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMessages/VMessages.mjs +1 -3
- package/lib/components/VMessages/VMessages.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/composables/calendar.mjs +4 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/router.mjs +2 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -67105,46 +67105,47 @@ declare module 'vue' {
|
|
67105
67105
|
$children?: VNodeChild
|
67106
67106
|
}
|
67107
67107
|
export interface GlobalComponents {
|
67108
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67109
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
67110
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67111
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67112
67108
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67113
67109
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67114
67110
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67111
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
67112
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67113
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67114
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67115
67115
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67116
67116
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67117
67117
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67118
67118
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67119
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67120
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67121
67119
|
VBadge: typeof import('vuetify/components')['VBadge']
|
67122
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67123
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67124
|
-
VCard: typeof import('vuetify/components')['VCard']
|
67125
|
-
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67126
|
-
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67127
|
-
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67128
|
-
VCardText: typeof import('vuetify/components')['VCardText']
|
67129
|
-
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67130
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67131
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67132
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67133
67120
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67134
67121
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67135
67122
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67136
67123
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67124
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67125
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67126
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67127
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67128
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67137
67129
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67138
67130
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67131
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67132
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67139
67133
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67134
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67140
67135
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67141
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67142
67136
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67143
67137
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67144
67138
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67145
67139
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67146
67140
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67147
67141
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67142
|
+
VCard: typeof import('vuetify/components')['VCard']
|
67143
|
+
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67144
|
+
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67145
|
+
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67146
|
+
VCardText: typeof import('vuetify/components')['VCardText']
|
67147
|
+
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67148
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67148
67149
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67149
67150
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67150
67151
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67152,35 +67153,29 @@ declare module 'vue' {
|
|
67152
67153
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67153
67154
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67154
67155
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67155
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
67156
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67157
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67158
|
-
VField: typeof import('vuetify/components')['VField']
|
67159
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67160
67156
|
VCode: typeof import('vuetify/components')['VCode']
|
67157
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67161
67158
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67162
67159
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67163
67160
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67164
67161
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67165
|
-
|
67162
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67163
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
67164
|
+
VField: typeof import('vuetify/components')['VField']
|
67165
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67166
67166
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67167
|
-
VChip: typeof import('vuetify/components')['VChip']
|
67168
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67169
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67170
67167
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67171
67168
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67172
67169
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67173
67170
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67174
67171
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67175
|
-
|
67172
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67173
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67176
67174
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67175
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67177
67176
|
VLabel: typeof import('vuetify/components')['VLabel']
|
67178
|
-
VImg: typeof import('vuetify/components')['VImg']
|
67179
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67180
67177
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67181
67178
|
VItem: typeof import('vuetify/components')['VItem']
|
67182
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67183
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67184
67179
|
VList: typeof import('vuetify/components')['VList']
|
67185
67180
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67186
67181
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67190,68 +67185,73 @@ declare module 'vue' {
|
|
67190
67185
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67191
67186
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67192
67187
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67193
|
-
|
67188
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67189
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67190
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67194
67191
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67195
|
-
|
67196
|
-
|
67197
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67192
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67193
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67198
67194
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67199
67195
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67196
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67197
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67198
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67199
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67200
67200
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67201
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67201
67202
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67203
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67202
67204
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67203
67205
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67204
|
-
|
67205
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67206
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67206
67207
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67207
67208
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67209
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67210
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67211
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67208
67212
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67209
67213
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67210
67214
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67211
67215
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67212
67216
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67213
67217
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67214
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67215
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67216
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67217
67218
|
VTab: typeof import('vuetify/components')['VTab']
|
67218
67219
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67219
67220
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67220
67221
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67222
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67223
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67221
67224
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67222
67225
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67223
|
-
|
67224
|
-
|
67226
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67227
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67225
67228
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67226
67229
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67227
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67228
67230
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67229
67231
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67230
67232
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67231
|
-
|
67232
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67233
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67233
67234
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67234
67235
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67235
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67236
67236
|
VForm: typeof import('vuetify/components')['VForm']
|
67237
|
+
VHover: typeof import('vuetify/components')['VHover']
|
67237
67238
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67238
67239
|
VCol: typeof import('vuetify/components')['VCol']
|
67239
67240
|
VRow: typeof import('vuetify/components')['VRow']
|
67240
67241
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67241
|
-
|
67242
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67242
67243
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67243
67244
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67244
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67245
67245
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67246
67246
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67247
67247
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67248
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
67249
67248
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67249
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67250
67250
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67251
67251
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67252
67252
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67253
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67254
67253
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67254
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67255
67255
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67256
67256
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67257
67257
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -67275,22 +67275,22 @@ declare module 'vue' {
|
|
67275
67275
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67276
67276
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67277
67277
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67278
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67279
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67278
67280
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67279
67281
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67280
67282
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67281
67283
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67282
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67283
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67284
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67285
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67286
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67287
67284
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67288
67285
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67289
67286
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67290
67287
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67291
67288
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67289
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67290
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67291
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67292
67292
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67293
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67294
67293
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67294
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67295
67295
|
}
|
67296
67296
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.7-master.2025-01-
|
2
|
+
* Vuetify v3.7.7-master.2025-01-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -5448,10 +5448,10 @@ function useBackButton(router, cb) {
|
|
5448
5448
|
let popped = false;
|
5449
5449
|
let removeBefore;
|
5450
5450
|
let removeAfter;
|
5451
|
-
if (IN_BROWSER) {
|
5451
|
+
if (IN_BROWSER && router?.beforeEach) {
|
5452
5452
|
nextTick(() => {
|
5453
5453
|
window.addEventListener('popstate', onPopstate);
|
5454
|
-
removeBefore = router
|
5454
|
+
removeBefore = router.beforeEach((to, from, next) => {
|
5455
5455
|
if (!inTransition) {
|
5456
5456
|
setTimeout(() => popped ? cb(next) : next());
|
5457
5457
|
} else {
|
@@ -6746,9 +6746,7 @@ const VMessages = genericComponent()({
|
|
6746
6746
|
"transition": props.transition,
|
6747
6747
|
"tag": "div",
|
6748
6748
|
"class": ['v-messages', textColorClasses.value, props.class],
|
6749
|
-
"style": [textColorStyles.value, props.style]
|
6750
|
-
"role": "alert",
|
6751
|
-
"aria-live": "polite"
|
6749
|
+
"style": [textColorStyles.value, props.style]
|
6752
6750
|
}, {
|
6753
6751
|
default: () => [props.active && messages.value.map((message, i) => createVNode("div", {
|
6754
6752
|
"class": "v-messages__message",
|
@@ -7217,9 +7215,11 @@ const VInput = genericComponent()({
|
|
7217
7215
|
"key": "append-icon",
|
7218
7216
|
"name": "append"
|
7219
7217
|
}, null), slots.append?.(slotProps.value)]), hasDetails && createVNode("div", {
|
7220
|
-
"class": "v-input__details"
|
7221
|
-
}, [createVNode(VMessages, {
|
7222
7218
|
"id": messagesId.value,
|
7219
|
+
"class": "v-input__details",
|
7220
|
+
"role": "alert",
|
7221
|
+
"aria-live": "polite"
|
7222
|
+
}, [createVNode(VMessages, {
|
7223
7223
|
"active": hasMessages,
|
7224
7224
|
"messages": messages.value
|
7225
7225
|
}, {
|
@@ -11565,7 +11565,7 @@ const VMenu = genericComponent()({
|
|
11565
11565
|
const activatorProps = computed(() => mergeProps({
|
11566
11566
|
'aria-haspopup': 'menu',
|
11567
11567
|
'aria-expanded': String(isActive.value),
|
11568
|
-
'aria-
|
11568
|
+
'aria-controls': id.value,
|
11569
11569
|
onKeydown: onActivatorKeydown
|
11570
11570
|
}, props.activatorProps));
|
11571
11571
|
useRender(() => {
|
@@ -11755,7 +11755,8 @@ const VField = genericComponent()({
|
|
11755
11755
|
rtlClasses
|
11756
11756
|
} = useRtl();
|
11757
11757
|
const isActive = computed(() => props.dirty || props.active);
|
11758
|
-
const hasLabel = computed(() =>
|
11758
|
+
const hasLabel = computed(() => !!(props.label || slots.label));
|
11759
|
+
const hasFloatingLabel = computed(() => !props.singleLine && hasLabel.value);
|
11759
11760
|
const uid = getUid();
|
11760
11761
|
const id = computed(() => props.id || `input-${uid}`);
|
11761
11762
|
const messagesId = computed(() => `${id.value}-messages`);
|
@@ -11774,7 +11775,7 @@ const VField = genericComponent()({
|
|
11774
11775
|
return props.error || props.disabled ? undefined : isActive.value && isFocused.value ? props.color : props.baseColor;
|
11775
11776
|
}));
|
11776
11777
|
watch(isActive, val => {
|
11777
|
-
if (
|
11778
|
+
if (hasFloatingLabel.value) {
|
11778
11779
|
const el = labelRef.value.$el;
|
11779
11780
|
const targetEl = floatingLabelRef.value.$el;
|
11780
11781
|
requestAnimationFrame(() => {
|
@@ -11870,7 +11871,7 @@ const VField = genericComponent()({
|
|
11870
11871
|
}, null), slots['prepend-inner']?.(slotProps.value)]), createVNode("div", {
|
11871
11872
|
"class": "v-field__field",
|
11872
11873
|
"data-no-activator": ""
|
11873
|
-
}, [['filled', 'solo', 'solo-inverted', 'solo-filled'].includes(props.variant) &&
|
11874
|
+
}, [['filled', 'solo', 'solo-inverted', 'solo-filled'].includes(props.variant) && hasFloatingLabel.value && createVNode(VFieldLabel, {
|
11874
11875
|
"key": "floating-label",
|
11875
11876
|
"ref": floatingLabelRef,
|
11876
11877
|
"class": [textColorClasses.value],
|
@@ -11934,7 +11935,7 @@ const VField = genericComponent()({
|
|
11934
11935
|
"style": textColorStyles.value
|
11935
11936
|
}, [isOutlined && createVNode(Fragment, null, [createVNode("div", {
|
11936
11937
|
"class": "v-field__outline__start"
|
11937
|
-
}, null),
|
11938
|
+
}, null), hasFloatingLabel.value && createVNode("div", {
|
11938
11939
|
"class": "v-field__outline__notch"
|
11939
11940
|
}, [createVNode(VFieldLabel, {
|
11940
11941
|
"ref": floatingLabelRef,
|
@@ -11944,7 +11945,7 @@ const VField = genericComponent()({
|
|
11944
11945
|
default: () => [label()]
|
11945
11946
|
})]), createVNode("div", {
|
11946
11947
|
"class": "v-field__outline__end"
|
11947
|
-
}, null)]), isPlainOrUnderlined.value &&
|
11948
|
+
}, null)]), isPlainOrUnderlined.value && hasFloatingLabel.value && createVNode(VFieldLabel, {
|
11948
11949
|
"ref": floatingLabelRef,
|
11949
11950
|
"floating": true,
|
11950
11951
|
"for": id.value
|
@@ -12767,7 +12768,7 @@ const VSelect = genericComponent()({
|
|
12767
12768
|
// html select hotkeys
|
12768
12769
|
const KEYBOARD_LOOKUP_THRESHOLD = 1000; // milliseconds
|
12769
12770
|
|
12770
|
-
if (
|
12771
|
+
if (!checkPrintable(e)) return;
|
12771
12772
|
const now = performance.now();
|
12772
12773
|
if (now - keyboardLookupLastTime > KEYBOARD_LOOKUP_THRESHOLD) {
|
12773
12774
|
keyboardLookupPrefix = '';
|
@@ -14157,6 +14158,7 @@ const VBreadcrumbsDivider = genericComponent()({
|
|
14157
14158
|
slots
|
14158
14159
|
} = _ref;
|
14159
14160
|
useRender(() => createVNode("li", {
|
14161
|
+
"aria-hidden": "true",
|
14160
14162
|
"class": ['v-breadcrumbs-divider', props.class],
|
14161
14163
|
"style": props.style
|
14162
14164
|
}, [slots?.default?.() ?? props.divider]));
|
@@ -18515,7 +18517,7 @@ function provideGroupBy(options) {
|
|
18515
18517
|
arr.push(item);
|
18516
18518
|
}
|
18517
18519
|
}
|
18518
|
-
return arr;
|
18520
|
+
return [...new Set(arr)];
|
18519
18521
|
}
|
18520
18522
|
return dive({
|
18521
18523
|
type: 'group',
|
@@ -18741,6 +18743,8 @@ function usePaginatedItems(options) {
|
|
18741
18743
|
});
|
18742
18744
|
watch(paginatedItems, val => {
|
18743
18745
|
vm.emit('update:currentItems', val);
|
18746
|
+
}, {
|
18747
|
+
immediate: true
|
18744
18748
|
});
|
18745
18749
|
return {
|
18746
18750
|
paginatedItems
|
@@ -21818,12 +21822,15 @@ function useCalendar(props) {
|
|
21818
21822
|
const date = adapter.setYear(adapter.startOfMonth(adapter.date()), adapter.getYear(year.value));
|
21819
21823
|
return adapter.setMonth(date, value);
|
21820
21824
|
}, v => adapter.getMonth(v));
|
21825
|
+
const defaultFirstDayOfWeek = computed(() => {
|
21826
|
+
return props.firstDayOfWeek ?? props.weekdays[0];
|
21827
|
+
});
|
21821
21828
|
const weekDays = computed(() => {
|
21822
21829
|
const firstDayOfWeek = Number(props.firstDayOfWeek ?? 0);
|
21823
21830
|
return props.weekdays.map(day => (day + firstDayOfWeek) % 7);
|
21824
21831
|
});
|
21825
21832
|
const weeksInMonth = computed(() => {
|
21826
|
-
const weeks = adapter.getWeekArray(month.value,
|
21833
|
+
const weeks = adapter.getWeekArray(month.value, defaultFirstDayOfWeek.value);
|
21827
21834
|
const days = weeks.flat();
|
21828
21835
|
|
21829
21836
|
// Make sure there's always 6 weeks in month (6 * 7 days)
|
@@ -28309,7 +28316,7 @@ function createVuetify$1() {
|
|
28309
28316
|
goTo
|
28310
28317
|
};
|
28311
28318
|
}
|
28312
|
-
const version$1 = "3.7.7-master.2025-01-
|
28319
|
+
const version$1 = "3.7.7-master.2025-01-25";
|
28313
28320
|
createVuetify$1.version = version$1;
|
28314
28321
|
|
28315
28322
|
// Vue's inject() can only be used in setup
|
@@ -28334,7 +28341,7 @@ const createVuetify = function () {
|
|
28334
28341
|
...options
|
28335
28342
|
});
|
28336
28343
|
};
|
28337
|
-
const version = "3.7.7-master.2025-01-
|
28344
|
+
const version = "3.7.7-master.2025-01-25";
|
28338
28345
|
createVuetify.version = version;
|
28339
28346
|
|
28340
28347
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|