@vuetify/nightly 3.7.4-master.2024-11-14 → 3.7.4-master.2024-11-20
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/attributes.json +3484 -3484
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +6328 -6328
- package/dist/vuetify-labs.css +2980 -2976
- package/dist/vuetify-labs.d.ts +3 -7
- package/dist/vuetify-labs.esm.js +19 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1127 -1123
- package/dist/vuetify.d.ts +53 -57
- package/dist/vuetify.esm.js +14 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +14 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.css +4 -0
- package/lib/components/VBadge/VBadge.sass +4 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +9 -7
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +3 -7
- package/lib/components/VList/VListItem.mjs +3 -2
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/index.d.mts +3 -7
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/lib/labs/VDateInput/VDateInput.mjs +1 -1
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs +4 -2
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/locale/fr.mjs +1 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -23109,7 +23109,7 @@ type VConfirmEditSlots<T> = {
|
|
23109
23109
|
save: () => void;
|
23110
23110
|
cancel: () => void;
|
23111
23111
|
isPristine: boolean;
|
23112
|
-
get actions(): VNode;
|
23112
|
+
get actions(): (props?: {}) => VNode;
|
23113
23113
|
};
|
23114
23114
|
};
|
23115
23115
|
declare const VConfirmEdit: {
|
@@ -23144,9 +23144,7 @@ declare const VConfirmEdit: {
|
|
23144
23144
|
save: () => void;
|
23145
23145
|
cancel: () => void;
|
23146
23146
|
isPristine: boolean;
|
23147
|
-
readonly actions:
|
23148
|
-
[key: string]: any;
|
23149
|
-
}>;
|
23147
|
+
readonly actions: (props?: {}) => VNode;
|
23150
23148
|
}) => VNode[];
|
23151
23149
|
}>>, {
|
23152
23150
|
P: {};
|
@@ -23197,9 +23195,7 @@ declare const VConfirmEdit: {
|
|
23197
23195
|
save: () => void;
|
23198
23196
|
cancel: () => void;
|
23199
23197
|
isPristine: boolean;
|
23200
|
-
readonly actions:
|
23201
|
-
[key: string]: any;
|
23202
|
-
}>;
|
23198
|
+
readonly actions: (props?: {}) => VNode;
|
23203
23199
|
}) => VNode[];
|
23204
23200
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
23205
23201
|
modelValue?: T;
|
@@ -67106,34 +67102,35 @@ declare module 'vue' {
|
|
67106
67102
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67107
67103
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67108
67104
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67109
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67110
67105
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67111
67106
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67112
|
-
|
67113
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67107
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67114
67108
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67115
|
-
|
67116
|
-
|
67109
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
67110
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67111
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67112
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67113
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67117
67114
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67118
67115
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67119
67116
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67117
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67120
67118
|
VBtn: typeof import('vuetify/components')['VBtn']
|
67121
|
-
|
67122
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67123
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67124
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67119
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67125
67120
|
VCard: typeof import('vuetify/components')['VCard']
|
67126
67121
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67127
67122
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67128
67123
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67129
67124
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67130
67125
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67131
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67132
67126
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67133
67127
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67128
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67134
67129
|
VChip: typeof import('vuetify/components')['VChip']
|
67130
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67131
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67132
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67135
67133
|
VCode: typeof import('vuetify/components')['VCode']
|
67136
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67137
67134
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67138
67135
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67139
67136
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67142,40 +67139,38 @@ declare module 'vue' {
|
|
67142
67139
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67143
67140
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67144
67141
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67145
|
-
|
67146
|
-
|
67147
|
-
|
67142
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67143
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67144
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67145
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67148
67146
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67149
67147
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67150
67148
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67151
67149
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67152
67150
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67153
67151
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67154
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67155
67152
|
VDialog: typeof import('vuetify/components')['VDialog']
|
67156
67153
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67157
|
-
|
67158
|
-
|
67154
|
+
VField: typeof import('vuetify/components')['VField']
|
67155
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67159
67156
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67160
67157
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67161
67158
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67162
67159
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67160
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67163
67161
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67164
|
-
VField: typeof import('vuetify/components')['VField']
|
67165
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67166
67162
|
VFooter: typeof import('vuetify/components')['VFooter']
|
67167
67163
|
VImg: typeof import('vuetify/components')['VImg']
|
67164
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67165
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67166
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67167
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67168
|
+
VItem: typeof import('vuetify/components')['VItem']
|
67168
67169
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67169
67170
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67170
67171
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67171
67172
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67172
67173
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67173
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67174
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67175
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67176
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67177
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67178
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67179
67174
|
VList: typeof import('vuetify/components')['VList']
|
67180
67175
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67181
67176
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67185,47 +67180,50 @@ declare module 'vue' {
|
|
67185
67180
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67186
67181
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67187
67182
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67183
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67184
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67188
67185
|
VMain: typeof import('vuetify/components')['VMain']
|
67189
67186
|
VMenu: typeof import('vuetify/components')['VMenu']
|
67190
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67191
67187
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67192
67188
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67193
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
67194
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67195
67189
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67190
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67196
67191
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67197
67192
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67198
|
-
VRating: typeof import('vuetify/components')['VRating']
|
67199
67193
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67194
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67200
67195
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67196
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67197
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67201
67198
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67199
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67202
67200
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67201
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67203
67202
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67204
67203
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67205
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67206
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67207
67204
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67208
67205
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67209
67206
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67210
67207
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67211
67208
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67212
67209
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67210
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67211
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67213
67212
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67214
67213
|
VTab: typeof import('vuetify/components')['VTab']
|
67215
67214
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67216
67215
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67217
67216
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67218
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67219
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67220
67217
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67221
67218
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67222
67219
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67223
|
-
|
67220
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67221
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
67222
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67224
67223
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67225
67224
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67226
67225
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67227
|
-
|
67228
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67226
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67229
67227
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67230
67228
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67231
67229
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -67233,23 +67231,21 @@ declare module 'vue' {
|
|
67233
67231
|
VCol: typeof import('vuetify/components')['VCol']
|
67234
67232
|
VRow: typeof import('vuetify/components')['VRow']
|
67235
67233
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67234
|
+
VForm: typeof import('vuetify/components')['VForm']
|
67236
67235
|
VHover: typeof import('vuetify/components')['VHover']
|
67237
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
67238
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67239
67236
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67240
67237
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67241
67238
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67242
67239
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67243
|
-
VForm: typeof import('vuetify/components')['VForm']
|
67244
67240
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67245
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
67246
67241
|
VRadio: typeof import('vuetify/components')['VRadio']
|
67247
|
-
|
67242
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
67248
67243
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67249
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67250
67244
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67245
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67246
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67251
67247
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67252
|
-
|
67248
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
67253
67249
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67254
67250
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
67255
67251
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -67266,7 +67262,7 @@ declare module 'vue' {
|
|
67266
67262
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67267
67263
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67268
67264
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67269
|
-
|
67265
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67270
67266
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67271
67267
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67272
67268
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -67275,16 +67271,16 @@ declare module 'vue' {
|
|
67275
67271
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67276
67272
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67277
67273
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67274
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67275
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67276
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67278
67277
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67279
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67280
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67281
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67282
67278
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67283
67279
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67284
67280
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67285
|
-
|
67286
|
-
|
67287
|
-
|
67281
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67282
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67283
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67288
67284
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67289
67285
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67290
67286
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.4-master.2024-11-
|
2
|
+
* Vuetify v3.7.4-master.2024-11-20
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -9163,7 +9163,8 @@ const VListItem = genericComponent()({
|
|
9163
9163
|
const list = useList();
|
9164
9164
|
const isActive = computed(() => props.active !== false && (props.active || link.isActive?.value || (root.activatable.value ? isActivated.value : isSelected.value)));
|
9165
9165
|
const isLink = computed(() => props.link !== false && link.isLink.value);
|
9166
|
-
const
|
9166
|
+
const isSelectable = computed(() => !!list && (root.selectable.value || root.activatable.value || props.value != null));
|
9167
|
+
const isClickable = computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || isSelectable.value));
|
9167
9168
|
const roundedProps = computed(() => props.rounded || props.nav);
|
9168
9169
|
const color = computed(() => props.color ?? props.activeColor);
|
9169
9170
|
const variantProps = computed(() => ({
|
@@ -9254,7 +9255,7 @@ const VListItem = genericComponent()({
|
|
9254
9255
|
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, variantClasses.value, props.class],
|
9255
9256
|
"style": [colorStyles.value, dimensionStyles.value, props.style],
|
9256
9257
|
"tabindex": isClickable.value ? list ? -2 : 0 : undefined,
|
9257
|
-
"aria-selected": root.activatable.value ? isActivated.value : isSelected.value,
|
9258
|
+
"aria-selected": isSelectable.value ? root.activatable.value ? isActivated.value : root.selectable.value ? isSelected.value : isActive.value : undefined,
|
9258
9259
|
"onClick": onClick,
|
9259
9260
|
"onKeydown": isClickable.value && !isLink.value && onKeyDown
|
9260
9261
|
}, link.linkProps), {
|
@@ -18334,21 +18335,23 @@ const VConfirmEdit = genericComponent()({
|
|
18334
18335
|
internalModel.value = structuredClone(toRaw(model.value));
|
18335
18336
|
emit('cancel');
|
18336
18337
|
}
|
18337
|
-
|
18338
|
-
|
18339
|
-
const actions = createVNode(Fragment, null, [createVNode(VBtn, {
|
18338
|
+
function actions(actionsProps) {
|
18339
|
+
return createVNode(Fragment, null, [createVNode(VBtn, mergeProps({
|
18340
18340
|
"disabled": isPristine.value,
|
18341
18341
|
"variant": "text",
|
18342
18342
|
"color": props.color,
|
18343
18343
|
"onClick": cancel,
|
18344
18344
|
"text": t(props.cancelText)
|
18345
|
-
}, null), createVNode(VBtn, {
|
18345
|
+
}, actionsProps), null), createVNode(VBtn, mergeProps({
|
18346
18346
|
"disabled": isPristine.value,
|
18347
18347
|
"variant": "text",
|
18348
18348
|
"color": props.color,
|
18349
18349
|
"onClick": save,
|
18350
18350
|
"text": t(props.okText)
|
18351
|
-
}, null)]);
|
18351
|
+
}, actionsProps), null)]);
|
18352
|
+
}
|
18353
|
+
let actionsUsed = false;
|
18354
|
+
useRender(() => {
|
18352
18355
|
return createVNode(Fragment, null, [slots.default?.({
|
18353
18356
|
model: internalModel,
|
18354
18357
|
save,
|
@@ -18358,7 +18361,7 @@ const VConfirmEdit = genericComponent()({
|
|
18358
18361
|
actionsUsed = true;
|
18359
18362
|
return actions;
|
18360
18363
|
}
|
18361
|
-
}), !actionsUsed && actions]);
|
18364
|
+
}), !actionsUsed && actions()]);
|
18362
18365
|
});
|
18363
18366
|
return {
|
18364
18367
|
save,
|
@@ -28254,7 +28257,7 @@ function createVuetify$1() {
|
|
28254
28257
|
goTo
|
28255
28258
|
};
|
28256
28259
|
}
|
28257
|
-
const version$1 = "3.7.4-master.2024-11-
|
28260
|
+
const version$1 = "3.7.4-master.2024-11-20";
|
28258
28261
|
createVuetify$1.version = version$1;
|
28259
28262
|
|
28260
28263
|
// Vue's inject() can only be used in setup
|
@@ -28279,7 +28282,7 @@ const createVuetify = function () {
|
|
28279
28282
|
...options
|
28280
28283
|
});
|
28281
28284
|
};
|
28282
|
-
const version = "3.7.4-master.2024-11-
|
28285
|
+
const version = "3.7.4-master.2024-11-20";
|
28283
28286
|
createVuetify.version = version;
|
28284
28287
|
|
28285
28288
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|