@vuetify/nightly 3.7.1-master.2024-09-02 → 3.7.1-master.2024-09-03
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/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2480 -2477
- package/dist/vuetify-labs.esm.js +34 -31
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +34 -31
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2919 -2916
- package/dist/vuetify.d.ts +53 -53
- package/dist/vuetify.esm.js +34 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +34 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +267 -267
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.mjs +3 -5
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +3 -4
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VCard/VCard.mjs +3 -4
- package/lib/components/VCard/VCard.mjs.map +1 -1
- package/lib/components/VChip/VChip.mjs +2 -3
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.css +4 -1
- package/lib/components/VDialog/VDialog.mjs +1 -2
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.sass +2 -1
- package/lib/components/VList/VListItem.mjs +3 -4
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/composables/directiveComponent.mjs +1 -1
- package/lib/composables/directiveComponent.mjs.map +1 -1
- package/lib/composables/router.mjs +19 -9
- package/lib/composables/router.mjs.map +1 -1
- package/lib/directives/tooltip/index.mjs +1 -1
- package/lib/directives/tooltip/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +53 -53
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -67102,24 +67102,28 @@ declare module 'vue' {
|
|
67102
67102
|
$children?: VNodeChild
|
67103
67103
|
}
|
67104
67104
|
export interface GlobalComponents {
|
67105
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67106
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67107
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67108
67105
|
VApp: typeof import('vuetify/components')['VApp']
|
67106
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67107
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67109
67108
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67110
67109
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67111
|
-
|
67110
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67111
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67112
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67112
67113
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67113
67114
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67114
67115
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67115
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67116
67116
|
VBadge: typeof import('vuetify/components')['VBadge']
|
67117
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67118
67117
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67119
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67120
67118
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67121
67119
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67122
67120
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67121
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67122
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67123
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67124
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67125
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67126
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67123
67127
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67124
67128
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67125
67129
|
VCard: typeof import('vuetify/components')['VCard']
|
@@ -67128,25 +67132,12 @@ declare module 'vue' {
|
|
67128
67132
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67129
67133
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67130
67134
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67131
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67132
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67133
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67134
67135
|
VChip: typeof import('vuetify/components')['VChip']
|
67135
|
-
|
67136
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67137
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67136
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67138
67137
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67139
67138
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67140
|
-
|
67141
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67142
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
67143
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
67144
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67145
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67146
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67147
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67139
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67148
67140
|
VCounter: typeof import('vuetify/components')['VCounter']
|
67149
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
67150
67141
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67151
67142
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67152
67143
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -67154,24 +67145,35 @@ declare module 'vue' {
|
|
67154
67145
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67155
67146
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67156
67147
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67148
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67149
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67150
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
67151
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
67152
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67153
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67154
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67157
67155
|
VFab: typeof import('vuetify/components')['VFab']
|
67158
|
-
|
67159
|
-
|
67156
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67157
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
67160
67158
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67161
67159
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67162
67160
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67163
67161
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67164
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67165
67162
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67163
|
+
VField: typeof import('vuetify/components')['VField']
|
67164
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67166
67165
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67167
67166
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67168
67167
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67169
67168
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67170
67169
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67171
67170
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67171
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67172
|
+
VItem: typeof import('vuetify/components')['VItem']
|
67173
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67172
67174
|
VImg: typeof import('vuetify/components')['VImg']
|
67173
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67174
67175
|
VKbd: typeof import('vuetify/components')['VKbd']
|
67176
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67175
67177
|
VList: typeof import('vuetify/components')['VList']
|
67176
67178
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67177
67179
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67182,34 +67184,26 @@ declare module 'vue' {
|
|
67182
67184
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67183
67185
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67184
67186
|
VLabel: typeof import('vuetify/components')['VLabel']
|
67185
|
-
|
67186
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67187
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67188
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67187
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67189
67188
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67189
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67190
67190
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67191
|
-
|
67191
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67192
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67192
67193
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67193
67194
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67194
|
-
|
67195
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67195
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67196
67196
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67197
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67197
67198
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67198
|
-
VRating: typeof import('vuetify/components')['VRating']
|
67199
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67200
67199
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67200
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67201
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67202
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67203
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67201
67204
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67202
67205
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67203
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67204
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67205
67206
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67206
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67207
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67208
|
-
VTab: typeof import('vuetify/components')['VTab']
|
67209
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
67210
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67211
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67212
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67213
67207
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67214
67208
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67215
67209
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
@@ -67217,6 +67211,13 @@ declare module 'vue' {
|
|
67217
67211
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67218
67212
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67219
67213
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67214
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67215
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67216
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67217
|
+
VTab: typeof import('vuetify/components')['VTab']
|
67218
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
67219
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67220
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67220
67221
|
VTextField: typeof import('vuetify/components')['VTextField']
|
67221
67222
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67222
67223
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
@@ -67226,10 +67227,9 @@ declare module 'vue' {
|
|
67226
67227
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67227
67228
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67228
67229
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67229
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67230
67230
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67231
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67232
67231
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67232
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67233
67233
|
VForm: typeof import('vuetify/components')['VForm']
|
67234
67234
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67235
67235
|
VCol: typeof import('vuetify/components')['VCol']
|
@@ -67248,8 +67248,8 @@ declare module 'vue' {
|
|
67248
67248
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67249
67249
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67250
67250
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67251
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67252
67251
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67252
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67253
67253
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67254
67254
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
67255
67255
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -67266,21 +67266,21 @@ declare module 'vue' {
|
|
67266
67266
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67267
67267
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67268
67268
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67269
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67270
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67271
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67269
67272
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67270
67273
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67271
67274
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67272
67275
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67273
67276
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67274
67277
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67275
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67276
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67277
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67278
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67279
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67280
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67281
67278
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67282
67279
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67283
67280
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67281
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67282
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67283
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67284
67284
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67285
67285
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67286
67286
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.1-master.2024-09-
|
2
|
+
* Vuetify v3.7.1-master.2024-09-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -5389,10 +5389,14 @@ function useLink(props, attrs) {
|
|
5389
5389
|
return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click');
|
5390
5390
|
});
|
5391
5391
|
if (typeof RouterLink === 'string' || !('useLink' in RouterLink)) {
|
5392
|
+
const href = toRef(props, 'href');
|
5392
5393
|
return {
|
5393
5394
|
isLink,
|
5394
5395
|
isClickable,
|
5395
|
-
href
|
5396
|
+
href,
|
5397
|
+
linkProps: reactive({
|
5398
|
+
href
|
5399
|
+
})
|
5396
5400
|
};
|
5397
5401
|
}
|
5398
5402
|
// vue-router useLink `to` prop needs to be reactive and useLink will crash if undefined
|
@@ -5404,18 +5408,24 @@ function useLink(props, attrs) {
|
|
5404
5408
|
// Actual link needs to be undefined when to prop is not used
|
5405
5409
|
const link = computed(() => props.to ? routerLink : undefined);
|
5406
5410
|
const route = useRoute();
|
5411
|
+
const isActive = computed(() => {
|
5412
|
+
if (!link.value) return false;
|
5413
|
+
if (!props.exact) return link.value.isActive?.value ?? false;
|
5414
|
+
if (!route.value) return link.value.isExactActive?.value ?? false;
|
5415
|
+
return link.value.isExactActive?.value && deepEqual(link.value.route.value.query, route.value.query);
|
5416
|
+
});
|
5417
|
+
const href = computed(() => props.to ? link.value?.route.value.href : props.href);
|
5407
5418
|
return {
|
5408
5419
|
isLink,
|
5409
5420
|
isClickable,
|
5421
|
+
isActive,
|
5410
5422
|
route: link.value?.route,
|
5411
5423
|
navigate: link.value?.navigate,
|
5412
|
-
|
5413
|
-
|
5414
|
-
|
5415
|
-
|
5416
|
-
|
5417
|
-
}),
|
5418
|
-
href: computed(() => props.to ? link.value?.route.value.href : props.href)
|
5424
|
+
href,
|
5425
|
+
linkProps: reactive({
|
5426
|
+
href,
|
5427
|
+
'aria-current': computed(() => isActive.value ? 'page' : undefined)
|
5428
|
+
})
|
5419
5429
|
};
|
5420
5430
|
}
|
5421
5431
|
const makeRouterProps = propsFactory({
|
@@ -5890,7 +5900,7 @@ const VBtn = genericComponent()({
|
|
5890
5900
|
const hasPrepend = !!(props.prependIcon || slots.prepend);
|
5891
5901
|
const hasAppend = !!(props.appendIcon || slots.append);
|
5892
5902
|
const hasIcon = !!(props.icon && props.icon !== true);
|
5893
|
-
return withDirectives(createVNode(Tag, {
|
5903
|
+
return withDirectives(createVNode(Tag, mergeProps({
|
5894
5904
|
"type": Tag === 'a' ? undefined : 'button',
|
5895
5905
|
"class": ['v-btn', group?.selectedClass.value, {
|
5896
5906
|
'v-btn--active': isActive.value,
|
@@ -5907,11 +5917,10 @@ const VBtn = genericComponent()({
|
|
5907
5917
|
"style": [colorStyles.value, dimensionStyles.value, locationStyles.value, sizeStyles.value, props.style],
|
5908
5918
|
"aria-busy": props.loading ? true : undefined,
|
5909
5919
|
"disabled": isDisabled.value || undefined,
|
5910
|
-
"href": link.href.value,
|
5911
5920
|
"tabindex": props.loading || props.readonly ? -1 : undefined,
|
5912
5921
|
"onClick": onClick,
|
5913
5922
|
"value": valueAttr.value
|
5914
|
-
}, {
|
5923
|
+
}, link.linkProps), {
|
5915
5924
|
default: () => [genOverlays(true, 'v-btn'), !props.icon && hasPrepend && createVNode("span", {
|
5916
5925
|
"key": "prepend",
|
5917
5926
|
"class": "v-btn__prepend"
|
@@ -8174,7 +8183,7 @@ const VChip = genericComponent()({
|
|
8174
8183
|
const hasPrependMedia = !!(props.prependIcon || props.prependAvatar);
|
8175
8184
|
const hasPrepend = !!(hasPrependMedia || slots.prepend);
|
8176
8185
|
const hasColor = !group || group.isSelected.value;
|
8177
|
-
return isActive.value && withDirectives(createVNode(Tag, {
|
8186
|
+
return isActive.value && withDirectives(createVNode(Tag, mergeProps({
|
8178
8187
|
"class": ['v-chip', {
|
8179
8188
|
'v-chip--disabled': props.disabled,
|
8180
8189
|
'v-chip--label': props.label,
|
@@ -8185,11 +8194,10 @@ const VChip = genericComponent()({
|
|
8185
8194
|
"style": [hasColor ? colorStyles.value : undefined, props.style],
|
8186
8195
|
"disabled": props.disabled || undefined,
|
8187
8196
|
"draggable": props.draggable,
|
8188
|
-
"href": link.href.value,
|
8189
8197
|
"tabindex": isClickable.value ? 0 : undefined,
|
8190
8198
|
"onClick": onClick,
|
8191
8199
|
"onKeydown": isClickable.value && !isLink.value && onKeyDown
|
8192
|
-
}, {
|
8200
|
+
}, link.linkProps), {
|
8193
8201
|
default: () => [genOverlays(isClickable.value, 'v-chip'), hasFilter && createVNode(VExpandXTransition, {
|
8194
8202
|
"key": "filter"
|
8195
8203
|
}, {
|
@@ -9234,7 +9242,7 @@ const VListItem = genericComponent()({
|
|
9234
9242
|
if (props.activeColor) {
|
9235
9243
|
deprecate('active-color', ['color', 'base-color']);
|
9236
9244
|
}
|
9237
|
-
return withDirectives(createVNode(Tag, {
|
9245
|
+
return withDirectives(createVNode(Tag, mergeProps({
|
9238
9246
|
"class": ['v-list-item', {
|
9239
9247
|
'v-list-item--active': isActive.value,
|
9240
9248
|
'v-list-item--disabled': props.disabled,
|
@@ -9245,11 +9253,10 @@ const VListItem = genericComponent()({
|
|
9245
9253
|
[`${props.activeClass}`]: props.activeClass && isActive.value
|
9246
9254
|
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, variantClasses.value, props.class],
|
9247
9255
|
"style": [colorStyles.value, dimensionStyles.value, props.style],
|
9248
|
-
"href": link.href.value,
|
9249
9256
|
"tabindex": isClickable.value ? list ? -2 : 0 : undefined,
|
9250
9257
|
"onClick": onClick,
|
9251
9258
|
"onKeydown": isClickable.value && !isLink.value && onKeyDown
|
9252
|
-
}, {
|
9259
|
+
}, link.linkProps), {
|
9253
9260
|
default: () => [genOverlays(isClickable.value || isActive.value, 'v-list-item'), hasPrepend && createVNode("div", {
|
9254
9261
|
"key": "prepend",
|
9255
9262
|
"class": "v-list-item__prepend"
|
@@ -14005,8 +14012,7 @@ const VDialog = genericComponent()({
|
|
14005
14012
|
useRender(() => {
|
14006
14013
|
const overlayProps = VOverlay.filterProps(props);
|
14007
14014
|
const activatorProps = mergeProps({
|
14008
|
-
'aria-haspopup': 'dialog'
|
14009
|
-
'aria-expanded': String(isActive.value)
|
14015
|
+
'aria-haspopup': 'dialog'
|
14010
14016
|
}, props.activatorProps);
|
14011
14017
|
const contentProps = mergeProps({
|
14012
14018
|
tabindex: -1
|
@@ -14137,12 +14143,10 @@ const VBreadcrumbsItem = genericComponent()({
|
|
14137
14143
|
"style": [textColorStyles.value, props.style],
|
14138
14144
|
"aria-current": isActive.value ? 'page' : undefined
|
14139
14145
|
}, {
|
14140
|
-
default: () => [!link.isLink.value ? slots.default?.() ?? props.title : createVNode("a", {
|
14146
|
+
default: () => [!link.isLink.value ? slots.default?.() ?? props.title : createVNode("a", mergeProps({
|
14141
14147
|
"class": "v-breadcrumbs-item--link",
|
14142
|
-
"href": link.href.value,
|
14143
|
-
"aria-current": isActive.value ? 'page' : undefined,
|
14144
14148
|
"onClick": link.navigate
|
14145
|
-
}, [slots.default?.() ?? props.title])]
|
14149
|
+
}, link.linkProps), [slots.default?.() ?? props.title])]
|
14146
14150
|
});
|
14147
14151
|
});
|
14148
14152
|
return {};
|
@@ -14518,7 +14522,7 @@ const VCard = genericComponent()({
|
|
14518
14522
|
const hasImage = !!(slots.image || props.image);
|
14519
14523
|
const hasCardItem = hasHeader || hasPrepend || hasAppend;
|
14520
14524
|
const hasText = !!(slots.text || props.text != null);
|
14521
|
-
return withDirectives(createVNode(Tag, {
|
14525
|
+
return withDirectives(createVNode(Tag, mergeProps({
|
14522
14526
|
"class": ['v-card', {
|
14523
14527
|
'v-card--disabled': props.disabled,
|
14524
14528
|
'v-card--flat': props.flat,
|
@@ -14526,10 +14530,9 @@ const VCard = genericComponent()({
|
|
14526
14530
|
'v-card--link': isClickable.value
|
14527
14531
|
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, loaderClasses.value, positionClasses.value, roundedClasses.value, variantClasses.value, props.class],
|
14528
14532
|
"style": [colorStyles.value, dimensionStyles.value, locationStyles.value, props.style],
|
14529
|
-
"href": link.href.value,
|
14530
14533
|
"onClick": isClickable.value && link.navigate,
|
14531
14534
|
"tabindex": props.disabled ? -1 : undefined
|
14532
|
-
}, {
|
14535
|
+
}, link.linkProps), {
|
14533
14536
|
default: () => [hasImage && createVNode("div", {
|
14534
14537
|
"key": "image",
|
14535
14538
|
"class": "v-card__image"
|
@@ -28067,7 +28070,7 @@ function mountComponent(component, props) {
|
|
28067
28070
|
const value = isObject(binding.value) ? binding.value : {};
|
28068
28071
|
|
28069
28072
|
// Get the children from the props or directive value, or the element's children
|
28070
|
-
const children = () => text ?? el.
|
28073
|
+
const children = () => text ?? el.textContent;
|
28071
28074
|
|
28072
28075
|
// If vnode.ctx is the same as the instance, then we're bound to a plain element
|
28073
28076
|
// and need to find the nearest parent component instance to inherit provides from
|
@@ -28125,7 +28128,7 @@ function findComponentParent(vnode, root) {
|
|
28125
28128
|
const Tooltip = useDirectiveComponent(VTooltip, binding => {
|
28126
28129
|
return {
|
28127
28130
|
activator: 'parent',
|
28128
|
-
location: binding.arg?.replace('-', ' ')
|
28131
|
+
location: binding.arg?.replace('-', ' '),
|
28129
28132
|
text: typeof binding.value === 'boolean' ? undefined : binding.value
|
28130
28133
|
};
|
28131
28134
|
});
|
@@ -28231,7 +28234,7 @@ function createVuetify$1() {
|
|
28231
28234
|
goTo
|
28232
28235
|
};
|
28233
28236
|
}
|
28234
|
-
const version$1 = "3.7.1-master.2024-09-
|
28237
|
+
const version$1 = "3.7.1-master.2024-09-03";
|
28235
28238
|
createVuetify$1.version = version$1;
|
28236
28239
|
|
28237
28240
|
// Vue's inject() can only be used in setup
|
@@ -28256,7 +28259,7 @@ const createVuetify = function () {
|
|
28256
28259
|
...options
|
28257
28260
|
});
|
28258
28261
|
};
|
28259
|
-
const version = "3.7.1-master.2024-09-
|
28262
|
+
const version = "3.7.1-master.2024-09-03";
|
28260
28263
|
createVuetify.version = version;
|
28261
28264
|
|
28262
28265
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|