@vuetify/nightly 3.8.0-beta.0-dev.2025-03-24 → 3.8.0-beta.0-dev.2025-03-25
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 +39 -3
- package/dist/json/attributes.json +3258 -3254
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +162 -162
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +6130 -6099
- package/dist/vuetify-labs.cjs +63 -25
- package/dist/vuetify-labs.css +3530 -3530
- package/dist/vuetify-labs.d.ts +112 -88
- package/dist/vuetify-labs.esm.js +63 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +63 -25
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +25 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +6104 -6104
- package/dist/vuetify.d.ts +89 -86
- package/dist/vuetify.esm.js +25 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +25 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableRow.d.ts +9 -6
- package/lib/components/VDataTable/VDataTableRow.js +18 -3
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableServer.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -4
- package/lib/components/VDatePicker/VDatePicker.js +1 -1
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VIcon/VIcon.js +2 -2
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/composables/calendar.js +1 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +54 -54
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +35 -3
- package/lib/labs/VDateInput/VDateInput.js +38 -15
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -23044,20 +23044,12 @@ declare const VDataTableHeaders: {
|
|
23044
23044
|
}>>;
|
23045
23045
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
23046
23046
|
|
23047
|
-
type
|
23048
|
-
|
23049
|
-
item: Group;
|
23050
|
-
count: number;
|
23051
|
-
props: Record<string, unknown>;
|
23052
|
-
};
|
23053
|
-
'data-table-select': {
|
23054
|
-
props: Record<string, unknown>;
|
23055
|
-
};
|
23047
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
23048
|
+
props: Record<string, unknown>;
|
23056
23049
|
};
|
23057
|
-
|
23058
23050
|
type VDataTableRowSlots<T> = {
|
23059
|
-
'item.data-table-select':
|
23060
|
-
'item.data-table-expand':
|
23051
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
23052
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
23061
23053
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
23062
23054
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
23063
23055
|
} & {
|
@@ -23078,8 +23070,8 @@ declare const VDataTableRow: {
|
|
23078
23070
|
}, true, {}, vue.SlotsType<Partial<{
|
23079
23071
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
23080
23072
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23081
|
-
'item.data-table-select': (arg:
|
23082
|
-
'item.data-table-expand': (arg:
|
23073
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23074
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23083
23075
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23084
23076
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23085
23077
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
@@ -23116,8 +23108,8 @@ declare const VDataTableRow: {
|
|
23116
23108
|
}, {}, string, vue.SlotsType<Partial<{
|
23117
23109
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
23118
23110
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23119
|
-
'item.data-table-select': (arg:
|
23120
|
-
'item.data-table-expand': (arg:
|
23111
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23112
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23121
23113
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23122
23114
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23123
23115
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
@@ -23150,6 +23142,17 @@ declare const VDataTableRow: {
|
|
23150
23142
|
}>>;
|
23151
23143
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
23152
23144
|
|
23145
|
+
type VDataTableGroupHeaderRowSlots = {
|
23146
|
+
'data-table-group': {
|
23147
|
+
item: Group;
|
23148
|
+
count: number;
|
23149
|
+
props: Record<string, unknown>;
|
23150
|
+
};
|
23151
|
+
'data-table-select': {
|
23152
|
+
props: Record<string, unknown>;
|
23153
|
+
};
|
23154
|
+
};
|
23155
|
+
|
23153
23156
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
23154
23157
|
item: ItemSlot$1<T> & {
|
23155
23158
|
props: Record<string, any>;
|
@@ -23186,8 +23189,8 @@ declare const VDataTableRows: {
|
|
23186
23189
|
'data-table-select': (arg: {
|
23187
23190
|
props: Record<string, unknown>;
|
23188
23191
|
}) => vue.VNode[];
|
23189
|
-
'item.data-table-select': (arg:
|
23190
|
-
'item.data-table-expand': (arg:
|
23192
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23193
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23191
23194
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23192
23195
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23193
23196
|
item: (arg: {
|
@@ -23259,8 +23262,8 @@ declare const VDataTableRows: {
|
|
23259
23262
|
'data-table-select': (arg: {
|
23260
23263
|
props: Record<string, unknown>;
|
23261
23264
|
}) => vue.VNode[];
|
23262
|
-
'item.data-table-select': (arg:
|
23263
|
-
'item.data-table-expand': (arg:
|
23265
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23266
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23264
23267
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23265
23268
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23266
23269
|
item: (arg: {
|
@@ -23505,8 +23508,8 @@ declare const VDataTable: {
|
|
23505
23508
|
'data-table-select': (arg: {
|
23506
23509
|
props: Record<string, unknown>;
|
23507
23510
|
}) => vue.VNode[];
|
23508
|
-
'item.data-table-select': (arg:
|
23509
|
-
'item.data-table-expand': (arg:
|
23511
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23512
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23510
23513
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23511
23514
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23512
23515
|
item: (arg: {
|
@@ -23806,8 +23809,8 @@ declare const VDataTable: {
|
|
23806
23809
|
'data-table-select': (arg: {
|
23807
23810
|
props: Record<string, unknown>;
|
23808
23811
|
}) => vue.VNode[];
|
23809
|
-
'item.data-table-select': (arg:
|
23810
|
-
'item.data-table-expand': (arg:
|
23812
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23813
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23811
23814
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23812
23815
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23813
23816
|
item: (arg: {
|
@@ -24597,8 +24600,8 @@ declare const VDataTableVirtual: {
|
|
24597
24600
|
'data-table-select': (arg: {
|
24598
24601
|
props: Record<string, unknown>;
|
24599
24602
|
}) => vue.VNode[];
|
24600
|
-
'item.data-table-select': (arg:
|
24601
|
-
'item.data-table-expand': (arg:
|
24603
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24604
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24602
24605
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24603
24606
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24604
24607
|
item: (arg: {
|
@@ -24920,8 +24923,8 @@ declare const VDataTableVirtual: {
|
|
24920
24923
|
'data-table-select': (arg: {
|
24921
24924
|
props: Record<string, unknown>;
|
24922
24925
|
}) => vue.VNode[];
|
24923
|
-
'item.data-table-select': (arg:
|
24924
|
-
'item.data-table-expand': (arg:
|
24926
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24927
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24925
24928
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24926
24929
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24927
24930
|
item: (arg: {
|
@@ -25371,8 +25374,8 @@ declare const VDataTableServer: {
|
|
25371
25374
|
'data-table-select': (arg: {
|
25372
25375
|
props: Record<string, unknown>;
|
25373
25376
|
}) => vue.VNode[];
|
25374
|
-
'item.data-table-select': (arg:
|
25375
|
-
'item.data-table-expand': (arg:
|
25377
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25378
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25376
25379
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25377
25380
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25378
25381
|
item: (arg: {
|
@@ -25743,8 +25746,8 @@ declare const VDataTableServer: {
|
|
25743
25746
|
'data-table-select': (arg: {
|
25744
25747
|
props: Record<string, unknown>;
|
25745
25748
|
}) => vue.VNode[];
|
25746
|
-
'item.data-table-select': (arg:
|
25747
|
-
'item.data-table-expand': (arg:
|
25749
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25750
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25748
25751
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25749
25752
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25750
25753
|
item: (arg: {
|
@@ -65367,80 +65370,78 @@ declare module 'vue' {
|
|
65367
65370
|
$children?: VNodeChild
|
65368
65371
|
}
|
65369
65372
|
export interface GlobalComponents {
|
65370
|
-
|
65371
|
-
|
65373
|
+
VAlert: VAlert
|
65374
|
+
VAlertTitle: VAlertTitle
|
65372
65375
|
VAppBar: VAppBar
|
65373
65376
|
VAppBarNavIcon: VAppBarNavIcon
|
65374
65377
|
VAppBarTitle: VAppBarTitle
|
65375
|
-
|
65376
|
-
|
65378
|
+
VAutocomplete: VAutocomplete
|
65379
|
+
VApp: VApp
|
65380
|
+
VAvatar: VAvatar
|
65381
|
+
VBottomSheet: VBottomSheet
|
65377
65382
|
VBottomNavigation: VBottomNavigation
|
65383
|
+
VBadge: VBadge
|
65384
|
+
VBtnGroup: VBtnGroup
|
65378
65385
|
VBanner: VBanner
|
65379
65386
|
VBannerActions: VBannerActions
|
65380
65387
|
VBannerText: VBannerText
|
65381
|
-
|
65382
|
-
|
65383
|
-
|
65388
|
+
VBtn: VBtn
|
65389
|
+
VCarousel: VCarousel
|
65390
|
+
VCarouselItem: VCarouselItem
|
65384
65391
|
VBreadcrumbs: VBreadcrumbs
|
65385
65392
|
VBreadcrumbsItem: VBreadcrumbsItem
|
65386
65393
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
65387
|
-
VCarousel: VCarousel
|
65388
|
-
VCarouselItem: VCarouselItem
|
65389
|
-
VBtn: VBtn
|
65390
65394
|
VBtnToggle: VBtnToggle
|
65391
|
-
|
65395
|
+
VCheckbox: VCheckbox
|
65396
|
+
VCheckboxBtn: VCheckboxBtn
|
65397
|
+
VCode: VCode
|
65392
65398
|
VCard: VCard
|
65393
65399
|
VCardActions: VCardActions
|
65394
65400
|
VCardItem: VCardItem
|
65395
65401
|
VCardSubtitle: VCardSubtitle
|
65396
65402
|
VCardText: VCardText
|
65397
65403
|
VCardTitle: VCardTitle
|
65398
|
-
|
65399
|
-
VCheckbox: VCheckbox
|
65400
|
-
VCheckboxBtn: VCheckboxBtn
|
65401
|
-
VCode: VCode
|
65404
|
+
VDialog: VDialog
|
65402
65405
|
VChipGroup: VChipGroup
|
65403
|
-
VColorPicker: VColorPicker
|
65404
65406
|
VCombobox: VCombobox
|
65405
|
-
|
65406
|
-
|
65407
|
+
VChip: VChip
|
65408
|
+
VColorPicker: VColorPicker
|
65409
|
+
VDivider: VDivider
|
65407
65410
|
VDatePicker: VDatePicker
|
65408
65411
|
VDatePickerControls: VDatePickerControls
|
65409
65412
|
VDatePickerHeader: VDatePickerHeader
|
65410
65413
|
VDatePickerMonth: VDatePickerMonth
|
65411
65414
|
VDatePickerMonths: VDatePickerMonths
|
65412
65415
|
VDatePickerYears: VDatePickerYears
|
65413
|
-
VDataTable: VDataTable
|
65414
|
-
VDataTableHeaders: VDataTableHeaders
|
65415
|
-
VDataTableFooter: VDataTableFooter
|
65416
|
-
VDataTableRows: VDataTableRows
|
65417
|
-
VDataTableRow: VDataTableRow
|
65418
|
-
VDataTableVirtual: VDataTableVirtual
|
65419
|
-
VDataTableServer: VDataTableServer
|
65420
65416
|
VEmptyState: VEmptyState
|
65417
|
+
VCounter: VCounter
|
65418
|
+
VFab: VFab
|
65419
|
+
VFooter: VFooter
|
65421
65420
|
VExpansionPanels: VExpansionPanels
|
65422
65421
|
VExpansionPanel: VExpansionPanel
|
65423
65422
|
VExpansionPanelText: VExpansionPanelText
|
65424
65423
|
VExpansionPanelTitle: VExpansionPanelTitle
|
65425
|
-
VDivider: VDivider
|
65426
|
-
VFooter: VFooter
|
65427
|
-
VFab: VFab
|
65428
|
-
VFileInput: VFileInput
|
65429
|
-
VField: VField
|
65430
|
-
VFieldLabel: VFieldLabel
|
65431
|
-
VInfiniteScroll: VInfiniteScroll
|
65432
65424
|
VIcon: VIcon
|
65433
65425
|
VComponentIcon: VComponentIcon
|
65434
65426
|
VSvgIcon: VSvgIcon
|
65435
65427
|
VLigatureIcon: VLigatureIcon
|
65436
65428
|
VClassIcon: VClassIcon
|
65437
|
-
|
65429
|
+
VField: VField
|
65430
|
+
VFieldLabel: VFieldLabel
|
65431
|
+
VFileInput: VFileInput
|
65438
65432
|
VImg: VImg
|
65433
|
+
VInput: VInput
|
65434
|
+
VInfiniteScroll: VInfiniteScroll
|
65439
65435
|
VItemGroup: VItemGroup
|
65440
65436
|
VItem: VItem
|
65441
|
-
|
65442
|
-
|
65443
|
-
|
65437
|
+
VDataTable: VDataTable
|
65438
|
+
VDataTableHeaders: VDataTableHeaders
|
65439
|
+
VDataTableFooter: VDataTableFooter
|
65440
|
+
VDataTableRows: VDataTableRows
|
65441
|
+
VDataTableRow: VDataTableRow
|
65442
|
+
VDataTableVirtual: VDataTableVirtual
|
65443
|
+
VDataTableServer: VDataTableServer
|
65444
|
+
VKbd: VKbd
|
65444
65445
|
VList: VList
|
65445
65446
|
VListGroup: VListGroup
|
65446
65447
|
VListImg: VListImg
|
@@ -65450,24 +65451,26 @@ declare module 'vue' {
|
|
65450
65451
|
VListItemSubtitle: VListItemSubtitle
|
65451
65452
|
VListItemTitle: VListItemTitle
|
65452
65453
|
VListSubheader: VListSubheader
|
65454
|
+
VLabel: VLabel
|
65455
|
+
VMenu: VMenu
|
65456
|
+
VNumberInput: VNumberInput
|
65457
|
+
VMessages: VMessages
|
65453
65458
|
VNavigationDrawer: VNavigationDrawer
|
65454
65459
|
VMain: VMain
|
65460
|
+
VOtpInput: VOtpInput
|
65455
65461
|
VOverlay: VOverlay
|
65456
|
-
|
65457
|
-
VNumberInput: VNumberInput
|
65458
|
-
VPagination: VPagination
|
65462
|
+
VProgressCircular: VProgressCircular
|
65459
65463
|
VRadioGroup: VRadioGroup
|
65460
|
-
VOtpInput: VOtpInput
|
65461
65464
|
VProgressLinear: VProgressLinear
|
65462
|
-
|
65463
|
-
VProgressCircular: VProgressCircular
|
65465
|
+
VPagination: VPagination
|
65464
65466
|
VRating: VRating
|
65467
|
+
VSelect: VSelect
|
65465
65468
|
VSelectionControl: VSelectionControl
|
65469
|
+
VSkeletonLoader: VSkeletonLoader
|
65466
65470
|
VSelectionControlGroup: VSelectionControlGroup
|
65467
65471
|
VSheet: VSheet
|
65468
|
-
VSlider: VSlider
|
65469
|
-
VSkeletonLoader: VSkeletonLoader
|
65470
65472
|
VSnackbar: VSnackbar
|
65473
|
+
VSlider: VSlider
|
65471
65474
|
VStepper: VStepper
|
65472
65475
|
VStepperActions: VStepperActions
|
65473
65476
|
VStepperHeader: VStepperHeader
|
@@ -65476,17 +65479,17 @@ declare module 'vue' {
|
|
65476
65479
|
VStepperWindowItem: VStepperWindowItem
|
65477
65480
|
VSlideGroup: VSlideGroup
|
65478
65481
|
VSlideGroupItem: VSlideGroupItem
|
65482
|
+
VSystemBar: VSystemBar
|
65483
|
+
VSwitch: VSwitch
|
65484
|
+
VTable: VTable
|
65479
65485
|
VTab: VTab
|
65480
65486
|
VTabs: VTabs
|
65481
65487
|
VTabsWindow: VTabsWindow
|
65482
65488
|
VTabsWindowItem: VTabsWindowItem
|
65483
|
-
|
65489
|
+
VTextField: VTextField
|
65484
65490
|
VTextarea: VTextarea
|
65485
65491
|
VTimeline: VTimeline
|
65486
65492
|
VTimelineItem: VTimelineItem
|
65487
|
-
VSwitch: VSwitch
|
65488
|
-
VTable: VTable
|
65489
|
-
VTextField: VTextField
|
65490
65493
|
VTooltip: VTooltip
|
65491
65494
|
VToolbar: VToolbar
|
65492
65495
|
VToolbarTitle: VToolbarTitle
|
@@ -65501,19 +65504,19 @@ declare module 'vue' {
|
|
65501
65504
|
VCol: VCol
|
65502
65505
|
VRow: VRow
|
65503
65506
|
VSpacer: VSpacer
|
65507
|
+
VHover: VHover
|
65504
65508
|
VLayout: VLayout
|
65505
65509
|
VLayoutItem: VLayoutItem
|
65506
|
-
VHover: VHover
|
65507
65510
|
VLazy: VLazy
|
65508
65511
|
VLocaleProvider: VLocaleProvider
|
65509
65512
|
VNoSsr: VNoSsr
|
65510
|
-
VParallax: VParallax
|
65511
65513
|
VRadio: VRadio
|
65512
|
-
|
65514
|
+
VParallax: VParallax
|
65513
65515
|
VResponsive: VResponsive
|
65514
65516
|
VSnackbarQueue: VSnackbarQueue
|
65515
|
-
VSpeedDial: VSpeedDial
|
65516
65517
|
VSparkline: VSparkline
|
65518
|
+
VRangeSlider: VRangeSlider
|
65519
|
+
VSpeedDial: VSpeedDial
|
65517
65520
|
VThemeProvider: VThemeProvider
|
65518
65521
|
VValidation: VValidation
|
65519
65522
|
VVirtualScroll: VVirtualScroll
|
@@ -65539,8 +65542,6 @@ declare module 'vue' {
|
|
65539
65542
|
VCalendarInterval: VCalendarInterval
|
65540
65543
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
65541
65544
|
VCalendarMonthDay: VCalendarMonthDay
|
65542
|
-
VFileUpload: VFileUpload
|
65543
|
-
VFileUploadItem: VFileUploadItem
|
65544
65545
|
VPicker: VPicker
|
65545
65546
|
VPickerTitle: VPickerTitle
|
65546
65547
|
VStepperVertical: VStepperVertical
|
@@ -65549,6 +65550,8 @@ declare module 'vue' {
|
|
65549
65550
|
VTimePicker: VTimePicker
|
65550
65551
|
VTimePickerClock: VTimePickerClock
|
65551
65552
|
VTimePickerControls: VTimePickerControls
|
65553
|
+
VFileUpload: VFileUpload
|
65554
|
+
VFileUploadItem: VFileUploadItem
|
65552
65555
|
VTreeview: VTreeview
|
65553
65556
|
VTreeviewItem: VTreeviewItem
|
65554
65557
|
VTreeviewGroup: VTreeviewGroup
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.0-beta.0-dev.2025-03-
|
2
|
+
* Vuetify v3.8.0-beta.0-dev.2025-03-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -158,7 +158,7 @@ function has(obj, key) {
|
|
158
158
|
function pick(obj, paths) {
|
159
159
|
const found = {};
|
160
160
|
for (const key of paths) {
|
161
|
-
if (Object.
|
161
|
+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
162
162
|
found[key] = obj[key];
|
163
163
|
}
|
164
164
|
}
|
@@ -4947,7 +4947,7 @@ const VIcon = genericComponent()({
|
|
4947
4947
|
const slotIcon = ref();
|
4948
4948
|
const {
|
4949
4949
|
themeClasses
|
4950
|
-
} =
|
4950
|
+
} = useTheme();
|
4951
4951
|
const {
|
4952
4952
|
iconData
|
4953
4953
|
} = useIcon(computed(() => slotIcon.value || props.icon));
|
@@ -20832,22 +20832,37 @@ const VDataTableRow = genericComponent()({
|
|
20832
20832
|
"width": !mobile.value ? column.width : undefined
|
20833
20833
|
}, cellProps, columnCellProps), {
|
20834
20834
|
default: () => {
|
20835
|
-
if (slots[slotName] && !mobile.value) return slots[slotName]?.(slotProps);
|
20836
20835
|
if (column.key === 'data-table-select') {
|
20837
|
-
return slots['item.data-table-select']?.(
|
20836
|
+
return slots['item.data-table-select']?.({
|
20837
|
+
...slotProps,
|
20838
|
+
props: {
|
20839
|
+
disabled: !item.selectable,
|
20840
|
+
modelValue: isSelected([item]),
|
20841
|
+
onClick: withModifiers(() => toggleSelect(item), ['stop'])
|
20842
|
+
}
|
20843
|
+
}) ?? createVNode(VCheckboxBtn, {
|
20838
20844
|
"disabled": !item.selectable,
|
20839
20845
|
"modelValue": isSelected([item]),
|
20840
20846
|
"onClick": withModifiers(event => toggleSelect(item, props.index, event), ['stop'])
|
20841
20847
|
}, null);
|
20842
20848
|
}
|
20843
20849
|
if (column.key === 'data-table-expand') {
|
20844
|
-
return slots['item.data-table-expand']?.(
|
20850
|
+
return slots['item.data-table-expand']?.({
|
20851
|
+
...slotProps,
|
20852
|
+
props: {
|
20853
|
+
icon: isExpanded(item) ? '$collapse' : '$expand',
|
20854
|
+
size: 'small',
|
20855
|
+
variant: 'text',
|
20856
|
+
onClick: withModifiers(() => toggleExpand(item), ['stop'])
|
20857
|
+
}
|
20858
|
+
}) ?? createVNode(VBtn, {
|
20845
20859
|
"icon": isExpanded(item) ? '$collapse' : '$expand',
|
20846
20860
|
"size": "small",
|
20847
20861
|
"variant": "text",
|
20848
20862
|
"onClick": withModifiers(() => toggleExpand(item), ['stop'])
|
20849
20863
|
}, null);
|
20850
20864
|
}
|
20865
|
+
if (slots[slotName] && !mobile.value) return slots[slotName](slotProps);
|
20851
20866
|
const displayValue = toDisplayString(slotProps.value);
|
20852
20867
|
return !mobile.value ? displayValue : createVNode(Fragment, null, [createVNode("div", {
|
20853
20868
|
"class": "v-data-table__td-title"
|
@@ -22190,7 +22205,7 @@ const makeCalendarProps = propsFactory({
|
|
22190
22205
|
}, 'calendar');
|
22191
22206
|
function useCalendar(props) {
|
22192
22207
|
const adapter = useDate();
|
22193
|
-
const model = useProxiedModel(props, 'modelValue', [], v => wrapInArray(v));
|
22208
|
+
const model = useProxiedModel(props, 'modelValue', [], v => wrapInArray(v).map(i => adapter.date(i)));
|
22194
22209
|
const displayValue = computed(() => {
|
22195
22210
|
if (props.displayValue) return adapter.date(props.displayValue);
|
22196
22211
|
if (model.value.length > 0) return adapter.date(model.value[0]);
|
@@ -22703,7 +22718,7 @@ const VDatePicker = genericComponent()({
|
|
22703
22718
|
const {
|
22704
22719
|
rtlClasses
|
22705
22720
|
} = useRtl();
|
22706
|
-
const model = useProxiedModel(props, 'modelValue', undefined, v => wrapInArray(v), v => props.multiple ? v : v[0]);
|
22721
|
+
const model = useProxiedModel(props, 'modelValue', undefined, v => wrapInArray(v).map(i => adapter.date(i)), v => props.multiple ? v : v[0]);
|
22707
22722
|
const viewMode = useProxiedModel(props, 'viewMode');
|
22708
22723
|
// const inputMode = useProxiedModel(props, 'inputMode')
|
22709
22724
|
|
@@ -29175,7 +29190,7 @@ function createVuetify$1() {
|
|
29175
29190
|
};
|
29176
29191
|
});
|
29177
29192
|
}
|
29178
|
-
const version$1 = "3.8.0-beta.0-dev.2025-03-
|
29193
|
+
const version$1 = "3.8.0-beta.0-dev.2025-03-25";
|
29179
29194
|
createVuetify$1.version = version$1;
|
29180
29195
|
|
29181
29196
|
// Vue's inject() can only be used in setup
|
@@ -29200,7 +29215,7 @@ const createVuetify = function () {
|
|
29200
29215
|
...options
|
29201
29216
|
});
|
29202
29217
|
};
|
29203
|
-
const version = "3.8.0-beta.0-dev.2025-03-
|
29218
|
+
const version = "3.8.0-beta.0-dev.2025-03-25";
|
29204
29219
|
createVuetify.version = version;
|
29205
29220
|
|
29206
29221
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|