@vuetify/nightly 3.7.18-master.2025-03-19 → 3.7.18-master.2025-03-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/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +2998 -2998
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +156 -156
- package/dist/json/web-types.json +5843 -5843
- package/dist/vuetify-labs.css +2628 -2628
- 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 +4484 -4484
- package/dist/vuetify.d.ts +94 -91
- 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 +59 -59
- 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: {
|
@@ -67137,36 +67140,42 @@ declare module 'vue' {
|
|
67137
67140
|
$children?: VNodeChild
|
67138
67141
|
}
|
67139
67142
|
export interface GlobalComponents {
|
67140
|
-
VApp: typeof import('vuetify/components')['VApp']
|
67141
67143
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
67142
67144
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
67143
67145
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
67146
|
+
VApp: typeof import('vuetify/components')['VApp']
|
67144
67147
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
67145
67148
|
VBadge: typeof import('vuetify/components')['VBadge']
|
67146
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
67147
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67148
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67149
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67150
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
67151
67149
|
VBanner: typeof import('vuetify/components')['VBanner']
|
67152
67150
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
67153
67151
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
67152
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
67153
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
67154
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
67155
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
67156
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
67157
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
67154
67158
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
67155
67159
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
67156
67160
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
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']
|
67162
67161
|
VCard: typeof import('vuetify/components')['VCard']
|
67163
67162
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
67164
67163
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
67165
67164
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
67166
67165
|
VCardText: typeof import('vuetify/components')['VCardText']
|
67167
67166
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
67168
|
-
|
67167
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
67168
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67169
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67170
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
67169
67171
|
VChip: typeof import('vuetify/components')['VChip']
|
67172
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67173
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
67174
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
67175
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67176
|
+
VCode: typeof import('vuetify/components')['VCode']
|
67177
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
67178
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
67170
67179
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
67171
67180
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
67172
67181
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -67174,42 +67183,35 @@ declare module 'vue' {
|
|
67174
67183
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
67175
67184
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
67176
67185
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
67177
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
67178
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
67179
67186
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
67180
67187
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
67181
67188
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
67182
67189
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
67183
67190
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
67184
67191
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
67185
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
67186
|
-
VCode: typeof import('vuetify/components')['VCode']
|
67187
67192
|
VDivider: typeof import('vuetify/components')['VDivider']
|
67188
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
67189
67193
|
VDialog: typeof import('vuetify/components')['VDialog']
|
67190
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
67191
67194
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
67192
67195
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
67193
67196
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
67194
67197
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
67198
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67195
67199
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
67196
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
67197
67200
|
VFab: typeof import('vuetify/components')['VFab']
|
67198
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
67199
67201
|
VField: typeof import('vuetify/components')['VField']
|
67200
67202
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
67203
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
67201
67204
|
VIcon: typeof import('vuetify/components')['VIcon']
|
67202
67205
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
67203
67206
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
67204
67207
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
67205
67208
|
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']
|
67209
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
67210
67210
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
67211
67211
|
VItem: typeof import('vuetify/components')['VItem']
|
67212
|
-
|
67212
|
+
VImg: typeof import('vuetify/components')['VImg']
|
67213
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
67214
|
+
VInput: typeof import('vuetify/components')['VInput']
|
67213
67215
|
VList: typeof import('vuetify/components')['VList']
|
67214
67216
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
67215
67217
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -67219,71 +67221,73 @@ declare module 'vue' {
|
|
67219
67221
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
67220
67222
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
67221
67223
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
67222
|
-
|
67224
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
67223
67225
|
VMessages: typeof import('vuetify/components')['VMessages']
|
67224
67226
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
67227
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67228
|
+
VMain: typeof import('vuetify/components')['VMain']
|
67225
67229
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
67226
67230
|
VMenu: typeof import('vuetify/components')['VMenu']
|
67231
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
67232
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67227
67233
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
67228
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
67229
67234
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
67230
|
-
|
67235
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
67231
67236
|
VRating: typeof import('vuetify/components')['VRating']
|
67232
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
67233
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67234
67237
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
67235
67238
|
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']
|
67239
67239
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
67240
|
-
|
67241
|
-
|
67240
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
67241
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
67242
67242
|
VStepper: typeof import('vuetify/components')['VStepper']
|
67243
67243
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
67244
67244
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
67245
67245
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
67246
67246
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
67247
67247
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
67248
|
-
|
67249
|
-
|
67250
|
-
|
67248
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
67249
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
67250
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
67251
67251
|
VTab: typeof import('vuetify/components')['VTab']
|
67252
67252
|
VTabs: typeof import('vuetify/components')['VTabs']
|
67253
67253
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
67254
67254
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
67255
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
67256
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
67257
|
+
VTable: typeof import('vuetify/components')['VTable']
|
67255
67258
|
VTextField: typeof import('vuetify/components')['VTextField']
|
67256
67259
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
67257
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67258
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
67259
67260
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
67260
67261
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
67261
67262
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
67263
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
67264
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
67265
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
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']
|
67269
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
67267
67270
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
67268
|
-
|
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
67283
|
VRadio: typeof import('vuetify/components')['VRadio']
|
67281
67284
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
67282
67285
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
67286
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
67283
67287
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
67284
67288
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
67285
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
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,29 +67304,28 @@ 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
|
-
|
67304
|
-
|
67305
|
-
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67306
|
-
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67307
|
-
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67308
|
-
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67309
|
-
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67307
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67308
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67310
67309
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
67311
67310
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
67312
67311
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
67313
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
67314
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
67315
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67316
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67317
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67318
67312
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
67319
67313
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
67320
67314
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
67315
|
+
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
67316
|
+
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
67317
|
+
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
67318
|
+
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
67319
|
+
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
67320
|
+
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
67321
67321
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
67322
67322
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
67323
67323
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
67324
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
67325
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
67326
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
67324
67327
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
67325
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
67326
67328
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
67329
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
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-20
|
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-20";
|
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-20";
|
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 };
|