@vuetify/nightly 3.7.4-master.2024-11-15 → 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 +2164 -2164
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +178 -178
- package/dist/json/web-types.json +4432 -4432
- package/dist/vuetify-labs.css +2753 -2749
- package/dist/vuetify-labs.d.ts +3 -7
- package/dist/vuetify-labs.esm.js +15 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +15 -12
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +982 -978
- package/dist/vuetify.d.ts +64 -68
- 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 +61 -61
- package/lib/labs/VDateInput/VDateInput.mjs +1 -1
- package/lib/labs/VDateInput/VDateInput.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;
|
@@ -67103,39 +67099,38 @@ declare module 'vue' {
|
|
67103
67099
|
$children?: VNodeChild
|
67104
67100
|
}
|
67105
67101
|
export interface GlobalComponents {
|
67106
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67107
67102
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67108
67103
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67109
67104
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67110
67105
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67111
67106
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67107
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67112
67108
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67113
67109
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67114
67110
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67115
67111
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67116
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67117
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67118
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67119
67112
|
VBadge: typeof import('vuetify/components')['VBadge']
|
67113
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67120
67114
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67121
67115
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67122
67116
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67117
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67123
67118
|
VBtn: typeof import('vuetify/components')['VBtn']
|
67124
|
-
|
67125
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67126
|
-
VChip: typeof import('vuetify/components')['VChip']
|
67127
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67119
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67128
67120
|
VCard: typeof import('vuetify/components')['VCard']
|
67129
67121
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67130
67122
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67131
67123
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67132
67124
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67133
67125
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67126
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67127
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67128
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67129
|
+
VChip: typeof import('vuetify/components')['VChip']
|
67134
67130
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67135
67131
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67132
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67136
67133
|
VCode: typeof import('vuetify/components')['VCode']
|
67137
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67138
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67139
67134
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67140
67135
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67141
67136
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67143,38 +67138,39 @@ declare module 'vue' {
|
|
67143
67138
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67144
67139
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67145
67140
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67141
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
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']
|
67146
67146
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67147
67147
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67148
67148
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67149
67149
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67150
67150
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67151
67151
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67152
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67153
67152
|
VDialog: typeof import('vuetify/components')['VDialog']
|
67154
67153
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67155
|
-
VFab: typeof import('vuetify/components')['VFab']
|
67156
67154
|
VField: typeof import('vuetify/components')['VField']
|
67157
67155
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67156
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67157
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67158
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67159
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67160
|
+
VFab: typeof import('vuetify/components')['VFab']
|
67158
67161
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67159
67162
|
VFooter: typeof import('vuetify/components')['VFooter']
|
67160
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']
|
67161
67169
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67162
67170
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67163
67171
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67164
67172
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67165
67173
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67166
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67167
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67168
|
-
VItem: typeof import('vuetify/components')['VItem']
|
67169
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67170
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67171
|
-
VMain: typeof import('vuetify/components')['VMain']
|
67172
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67173
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67174
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
67175
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67176
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67177
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67178
67174
|
VList: typeof import('vuetify/components')['VList']
|
67179
67175
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67180
67176
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67184,48 +67180,50 @@ declare module 'vue' {
|
|
67184
67180
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67185
67181
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67186
67182
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67187
|
-
|
67188
|
-
|
67183
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67184
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67185
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67186
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67189
67187
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67188
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67189
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67190
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67191
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67190
67192
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67191
|
-
VRating: typeof import('vuetify/components')['VRating']
|
67192
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67193
67193
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67194
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67195
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67196
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67194
67197
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67198
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67199
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67195
67200
|
VSheet: typeof import('vuetify/components')['VSheet']
|
67201
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67196
67202
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67197
67203
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67198
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67199
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67200
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67201
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67202
|
-
VTable: typeof import('vuetify/components')['VTable']
|
67203
67204
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67204
67205
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67205
67206
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67206
67207
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67207
67208
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67208
67209
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67210
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67211
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67209
67212
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67210
67213
|
VTab: typeof import('vuetify/components')['VTab']
|
67211
67214
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67212
67215
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67213
67216
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67214
|
-
|
67215
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67216
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67217
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67218
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67217
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67219
67218
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67220
67219
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67220
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67221
67221
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67222
67222
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67223
|
-
|
67224
|
-
|
67225
|
-
|
67226
|
-
|
67227
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67228
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67223
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67224
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67225
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
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']
|
@@ -67235,18 +67233,19 @@ declare module 'vue' {
|
|
67235
67233
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67236
67234
|
VForm: typeof import('vuetify/components')['VForm']
|
67237
67235
|
VHover: typeof import('vuetify/components')['VHover']
|
67236
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
67237
|
+
VLayout: typeof import('vuetify/components')['VLayout']
|
67238
|
+
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67238
67239
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67239
67240
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67240
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
67241
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67242
67241
|
VRadio: typeof import('vuetify/components')['VRadio']
|
67242
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
67243
67243
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67244
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67245
67244
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67245
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67246
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67246
67247
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67247
67248
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67248
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67249
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
67250
67249
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67251
67250
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
67252
67251
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -67263,10 +67262,7 @@ declare module 'vue' {
|
|
67263
67262
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67264
67263
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67265
67264
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67266
|
-
|
67267
|
-
VLayout: typeof import('vuetify/components')['VLayout']
|
67268
|
-
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67269
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
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,18 +67271,18 @@ 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']
|
67278
|
-
|
67279
|
-
|
67280
|
-
|
67274
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67275
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67276
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67281
67277
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
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
|
-
|
67288
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67289
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67281
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67282
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67283
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67290
67284
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67285
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67286
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67291
67287
|
}
|
67292
67288
|
}
|
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 };
|