@vuetify/nightly 3.7.18-master.2025-03-19 → 3.7.18-master.2025-03-21
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 +12 -3
- package/dist/json/attributes.json +3439 -3439
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +182 -182
- package/dist/json/web-types.json +6109 -6109
- package/dist/vuetify-labs.css +3737 -3737
- package/dist/vuetify-labs.d.ts +35 -32
- package/dist/vuetify-labs.esm.js +21 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3782 -3782
- package/dist/vuetify.d.ts +98 -95
- package/dist/vuetify.esm.js +21 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.mjs +18 -3
- package/lib/components/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +91 -88
- package/lib/components/index.d.mts +35 -32
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +63 -63
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -24475,20 +24475,12 @@ declare const VDataTableHeaders: {
|
|
24475
24475
|
}>>;
|
24476
24476
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
24477
24477
|
|
24478
|
-
type
|
24479
|
-
|
24480
|
-
item: Group;
|
24481
|
-
count: number;
|
24482
|
-
props: Record<string, unknown>;
|
24483
|
-
};
|
24484
|
-
'data-table-select': {
|
24485
|
-
props: Record<string, unknown>;
|
24486
|
-
};
|
24478
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
24479
|
+
props: Record<string, unknown>;
|
24487
24480
|
};
|
24488
|
-
|
24489
24481
|
type VDataTableRowSlots<T> = {
|
24490
|
-
'item.data-table-select':
|
24491
|
-
'item.data-table-expand':
|
24482
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
24483
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
24492
24484
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
24493
24485
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
24494
24486
|
} & {
|
@@ -24517,8 +24509,8 @@ declare const VDataTableRow: {
|
|
24517
24509
|
}, true, {}, vue.SlotsType<Partial<{
|
24518
24510
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
24519
24511
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24520
|
-
'item.data-table-select': (arg:
|
24521
|
-
'item.data-table-expand': (arg:
|
24512
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24513
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24522
24514
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24523
24515
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24524
24516
|
}>>, {
|
@@ -24555,8 +24547,8 @@ declare const VDataTableRow: {
|
|
24555
24547
|
}, {}, string, vue.SlotsType<Partial<{
|
24556
24548
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
24557
24549
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24558
|
-
'item.data-table-select': (arg:
|
24559
|
-
'item.data-table-expand': (arg:
|
24550
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24551
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24560
24552
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24561
24553
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24562
24554
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
@@ -24589,6 +24581,17 @@ declare const VDataTableRow: {
|
|
24589
24581
|
}>>;
|
24590
24582
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
24591
24583
|
|
24584
|
+
type VDataTableGroupHeaderRowSlots = {
|
24585
|
+
'data-table-group': {
|
24586
|
+
item: Group;
|
24587
|
+
count: number;
|
24588
|
+
props: Record<string, unknown>;
|
24589
|
+
};
|
24590
|
+
'data-table-select': {
|
24591
|
+
props: Record<string, unknown>;
|
24592
|
+
};
|
24593
|
+
};
|
24594
|
+
|
24592
24595
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
24593
24596
|
item: ItemSlot$1<T> & {
|
24594
24597
|
props: Record<string, any>;
|
@@ -24635,8 +24638,8 @@ declare const VDataTableRows: {
|
|
24635
24638
|
'data-table-select': (arg: {
|
24636
24639
|
props: Record<string, unknown>;
|
24637
24640
|
}) => vue.VNode[];
|
24638
|
-
'item.data-table-select': (arg:
|
24639
|
-
'item.data-table-expand': (arg:
|
24641
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24642
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24640
24643
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24641
24644
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24642
24645
|
item: (arg: {
|
@@ -24708,8 +24711,8 @@ declare const VDataTableRows: {
|
|
24708
24711
|
'data-table-select': (arg: {
|
24709
24712
|
props: Record<string, unknown>;
|
24710
24713
|
}) => vue.VNode[];
|
24711
|
-
'item.data-table-select': (arg:
|
24712
|
-
'item.data-table-expand': (arg:
|
24714
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24715
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
24713
24716
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24714
24717
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24715
24718
|
item: (arg: {
|
@@ -25024,8 +25027,8 @@ declare const VDataTable: {
|
|
25024
25027
|
'data-table-select': (arg: {
|
25025
25028
|
props: Record<string, unknown>;
|
25026
25029
|
}) => vue.VNode[];
|
25027
|
-
'item.data-table-select': (arg:
|
25028
|
-
'item.data-table-expand': (arg:
|
25030
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25031
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25029
25032
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25030
25033
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25031
25034
|
item: (arg: {
|
@@ -25325,8 +25328,8 @@ declare const VDataTable: {
|
|
25325
25328
|
'data-table-select': (arg: {
|
25326
25329
|
props: Record<string, unknown>;
|
25327
25330
|
}) => vue.VNode[];
|
25328
|
-
'item.data-table-select': (arg:
|
25329
|
-
'item.data-table-expand': (arg:
|
25331
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25332
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25330
25333
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25331
25334
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25332
25335
|
item: (arg: {
|
@@ -26227,8 +26230,8 @@ declare const VDataTableVirtual: {
|
|
26227
26230
|
'data-table-select': (arg: {
|
26228
26231
|
props: Record<string, unknown>;
|
26229
26232
|
}) => vue.VNode[];
|
26230
|
-
'item.data-table-select': (arg:
|
26231
|
-
'item.data-table-expand': (arg:
|
26233
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
26234
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
26232
26235
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
26233
26236
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
26234
26237
|
item: (arg: {
|
@@ -26537,8 +26540,8 @@ declare const VDataTableVirtual: {
|
|
26537
26540
|
'data-table-select': (arg: {
|
26538
26541
|
props: Record<string, unknown>;
|
26539
26542
|
}) => vue.VNode[];
|
26540
|
-
'item.data-table-select': (arg:
|
26541
|
-
'item.data-table-expand': (arg:
|
26543
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
26544
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
26542
26545
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
26543
26546
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
26544
26547
|
item: (arg: {
|
@@ -27085,8 +27088,8 @@ declare const VDataTableServer: {
|
|
27085
27088
|
'data-table-select': (arg: {
|
27086
27089
|
props: Record<string, unknown>;
|
27087
27090
|
}) => vue.VNode[];
|
27088
|
-
'item.data-table-select': (arg:
|
27089
|
-
'item.data-table-expand': (arg:
|
27091
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
27092
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
27090
27093
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
27091
27094
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
27092
27095
|
item: (arg: {
|
@@ -27457,8 +27460,8 @@ declare const VDataTableServer: {
|
|
27457
27460
|
'data-table-select': (arg: {
|
27458
27461
|
props: Record<string, unknown>;
|
27459
27462
|
}) => vue.VNode[];
|
27460
|
-
'item.data-table-select': (arg:
|
27461
|
-
'item.data-table-expand': (arg:
|
27463
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
27464
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
27462
27465
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
27463
27466
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
27464
27467
|
item: (arg: {
|
@@ -67138,35 +67141,46 @@ declare module 'vue' {
|
|
67138
67141
|
}
|
67139
67142
|
export interface GlobalComponents {
|
67140
67143
|
VApp: typeof import('vuetify/components')['VApp']
|
67144
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67141
67145
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67142
67146
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67143
67147
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67144
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67145
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
67146
67148
|
VAlert: typeof import('vuetify/components')['VAlert']
|
67147
67149
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67148
|
-
|
67150
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
67151
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67152
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67153
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67154
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67155
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
67149
67156
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67150
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67151
67157
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67152
67158
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67153
67159
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67154
|
-
|
67155
|
-
|
67156
|
-
|
67157
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67158
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67159
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67160
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67161
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67160
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67161
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67162
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67162
67163
|
VCard: typeof import('vuetify/components')['VCard']
|
67163
67164
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67164
67165
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67165
67166
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67166
67167
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67167
67168
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67168
|
-
|
67169
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67170
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67171
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67172
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67169
67173
|
VChip: typeof import('vuetify/components')['VChip']
|
67174
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67175
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67176
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67177
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67178
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67179
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67180
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67181
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67182
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67183
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67170
67184
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67171
67185
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67172
67186
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67174,42 +67188,28 @@ declare module 'vue' {
|
|
67174
67188
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67175
67189
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67176
67190
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67177
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67178
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67179
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67180
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67181
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67182
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67183
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67184
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67185
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67186
67191
|
VCode: typeof import('vuetify/components')['VCode']
|
67192
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67187
67193
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67188
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67189
67194
|
VDialog: typeof import('vuetify/components')['VDialog']
|
67190
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67191
67195
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67192
67196
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67193
67197
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67194
67198
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67195
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67196
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67197
67199
|
VFab: typeof import('vuetify/components')['VFab']
|
67198
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67199
67200
|
VField: typeof import('vuetify/components')['VField']
|
67200
67201
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67202
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67203
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67204
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67201
67205
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67202
67206
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67203
67207
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67204
67208
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67205
67209
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
67206
|
-
|
67207
|
-
VInput: typeof import('vuetify/components')['VInput']
|
67208
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
67209
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
67210
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67210
67211
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67211
67212
|
VItem: typeof import('vuetify/components')['VItem']
|
67212
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67213
67213
|
VList: typeof import('vuetify/components')['VList']
|
67214
67214
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67215
67215
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67219,41 +67219,45 @@ declare module 'vue' {
|
|
67219
67219
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67220
67220
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67221
67221
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67222
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67223
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67224
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
67225
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67222
67226
|
VMain: typeof import('vuetify/components')['VMain']
|
67223
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
67224
67227
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67225
|
-
|
67226
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
67227
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67228
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
67228
67229
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67229
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67230
67230
|
VPagination: typeof import('vuetify/components')['VPagination']
|
67231
|
-
|
67231
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67232
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67233
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67232
67234
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67233
|
-
|
67234
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67235
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
67236
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67237
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67238
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
67235
|
+
VRating: typeof import('vuetify/components')['VRating']
|
67239
67236
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67237
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67240
67238
|
VSelect: typeof import('vuetify/components')['VSelect']
|
67241
|
-
|
67239
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67240
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
67242
67241
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67243
67242
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67244
67243
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67245
67244
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67246
67245
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67247
67246
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67248
|
-
|
67247
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67249
67248
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67250
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67251
67249
|
VTab: typeof import('vuetify/components')['VTab']
|
67252
67250
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67253
67251
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67254
67252
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67255
|
-
|
67253
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67254
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67255
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67256
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67256
67257
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67258
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
67259
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67260
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67257
67261
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67258
67262
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67259
67263
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
@@ -67261,29 +67265,29 @@ declare module 'vue' {
|
|
67261
67265
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67262
67266
|
VWindow: typeof import('vuetify/components')['VWindow']
|
67263
67267
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
67264
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67265
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67266
67268
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
67267
67269
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67268
|
-
|
67270
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67271
|
+
VForm: typeof import('vuetify/components')['VForm']
|
67269
67272
|
VContainer: typeof import('vuetify/components')['VContainer']
|
67270
67273
|
VCol: typeof import('vuetify/components')['VCol']
|
67271
67274
|
VRow: typeof import('vuetify/components')['VRow']
|
67272
67275
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
67276
|
+
VHover: typeof import('vuetify/components')['VHover']
|
67273
67277
|
VLayout: typeof import('vuetify/components')['VLayout']
|
67274
67278
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
67275
67279
|
VLazy: typeof import('vuetify/components')['VLazy']
|
67276
|
-
VForm: typeof import('vuetify/components')['VForm']
|
67277
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67278
67280
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
67281
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
67279
67282
|
VParallax: typeof import('vuetify/components')['VParallax']
|
67280
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
67281
67283
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67282
67284
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67283
|
-
|
67285
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
67286
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67284
67287
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67285
|
-
|
67288
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67286
67289
|
VValidation: typeof import('vuetify/components')['VValidation']
|
67290
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
67287
67291
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
67288
67292
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
67289
67293
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -67300,21 +67304,19 @@ declare module 'vue' {
|
|
67300
67304
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
67301
67305
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
67302
67306
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
67303
|
-
|
67307
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67308
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67304
67309
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67305
67310
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67306
67311
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67307
67312
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67308
67313
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67309
67314
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67310
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67311
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67312
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67313
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67314
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67315
67315
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67316
67316
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67317
67317
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67318
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67319
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67318
67320
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67319
67321
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67320
67322
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
@@ -67322,7 +67324,8 @@ declare module 'vue' {
|
|
67322
67324
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67323
67325
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67324
67326
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67325
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67326
67327
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67328
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67329
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67327
67330
|
}
|
67328
67331
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.18-master.2025-03-
|
2
|
+
* Vuetify v3.7.18-master.2025-03-21
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -20576,22 +20576,37 @@ const VDataTableRow = genericComponent()({
|
|
20576
20576
|
"width": !mobile.value ? column.width : undefined
|
20577
20577
|
}, cellProps, columnCellProps), {
|
20578
20578
|
default: () => {
|
20579
|
-
if (slots[slotName] && !mobile.value) return slots[slotName]?.(slotProps);
|
20580
20579
|
if (column.key === 'data-table-select') {
|
20581
|
-
return slots['item.data-table-select']?.(
|
20580
|
+
return slots['item.data-table-select']?.({
|
20581
|
+
...slotProps,
|
20582
|
+
props: {
|
20583
|
+
disabled: !item.selectable,
|
20584
|
+
modelValue: isSelected([item]),
|
20585
|
+
onClick: withModifiers(() => toggleSelect(item), ['stop'])
|
20586
|
+
}
|
20587
|
+
}) ?? createVNode(VCheckboxBtn, {
|
20582
20588
|
"disabled": !item.selectable,
|
20583
20589
|
"modelValue": isSelected([item]),
|
20584
20590
|
"onClick": withModifiers(() => toggleSelect(item), ['stop'])
|
20585
20591
|
}, null);
|
20586
20592
|
}
|
20587
20593
|
if (column.key === 'data-table-expand') {
|
20588
|
-
return slots['item.data-table-expand']?.(
|
20594
|
+
return slots['item.data-table-expand']?.({
|
20595
|
+
...slotProps,
|
20596
|
+
props: {
|
20597
|
+
icon: isExpanded(item) ? '$collapse' : '$expand',
|
20598
|
+
size: 'small',
|
20599
|
+
variant: 'text',
|
20600
|
+
onClick: withModifiers(() => toggleExpand(item), ['stop'])
|
20601
|
+
}
|
20602
|
+
}) ?? createVNode(VBtn, {
|
20589
20603
|
"icon": isExpanded(item) ? '$collapse' : '$expand',
|
20590
20604
|
"size": "small",
|
20591
20605
|
"variant": "text",
|
20592
20606
|
"onClick": withModifiers(() => toggleExpand(item), ['stop'])
|
20593
20607
|
}, null);
|
20594
20608
|
}
|
20609
|
+
if (slots[slotName] && !mobile.value) return slots[slotName](slotProps);
|
20595
20610
|
const displayValue = toDisplayString(slotProps.value);
|
20596
20611
|
return !mobile.value ? displayValue : createVNode(Fragment, null, [createVNode("div", {
|
20597
20612
|
"class": "v-data-table__td-title"
|
@@ -28452,7 +28467,7 @@ function createVuetify$1() {
|
|
28452
28467
|
goTo
|
28453
28468
|
};
|
28454
28469
|
}
|
28455
|
-
const version$1 = "3.7.18-master.2025-03-
|
28470
|
+
const version$1 = "3.7.18-master.2025-03-21";
|
28456
28471
|
createVuetify$1.version = version$1;
|
28457
28472
|
|
28458
28473
|
// Vue's inject() can only be used in setup
|
@@ -28477,7 +28492,7 @@ const createVuetify = function () {
|
|
28477
28492
|
...options
|
28478
28493
|
});
|
28479
28494
|
};
|
28480
|
-
const version = "3.7.18-master.2025-03-
|
28495
|
+
const version = "3.7.18-master.2025-03-21";
|
28481
28496
|
createVuetify.version = version;
|
28482
28497
|
|
28483
28498
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|