@vuetify/nightly 3.8.0-beta.0-dev.2025-03-24 → 3.8.0-beta.0-dev.2025-03-26
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 +83 -3
- package/dist/json/attributes.json +1534 -1522
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +3219 -3169
- package/dist/vuetify-labs.cjs +101 -28
- package/dist/vuetify-labs.css +3682 -3682
- package/dist/vuetify-labs.d.ts +124 -81
- package/dist/vuetify-labs.esm.js +101 -28
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +101 -28
- 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 +5460 -5460
- package/dist/vuetify.d.ts +82 -79
- 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 +47 -47
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +70 -3
- package/lib/labs/VDateInput/VDateInput.js +78 -19
- 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: {
|
@@ -65368,42 +65371,39 @@ declare module 'vue' {
|
|
65368
65371
|
}
|
65369
65372
|
export interface GlobalComponents {
|
65370
65373
|
VApp: VApp
|
65374
|
+
VAlert: VAlert
|
65375
|
+
VAlertTitle: VAlertTitle
|
65376
|
+
VAutocomplete: VAutocomplete
|
65371
65377
|
VAvatar: VAvatar
|
65378
|
+
VBadge: VBadge
|
65379
|
+
VBottomNavigation: VBottomNavigation
|
65372
65380
|
VAppBar: VAppBar
|
65373
65381
|
VAppBarNavIcon: VAppBarNavIcon
|
65374
65382
|
VAppBarTitle: VAppBarTitle
|
65375
|
-
VAlert: VAlert
|
65376
|
-
VAlertTitle: VAlertTitle
|
65377
|
-
VBottomNavigation: VBottomNavigation
|
65378
65383
|
VBanner: VBanner
|
65379
65384
|
VBannerActions: VBannerActions
|
65380
65385
|
VBannerText: VBannerText
|
65381
|
-
VBadge: VBadge
|
65382
|
-
VAutocomplete: VAutocomplete
|
65383
|
-
VBottomSheet: VBottomSheet
|
65384
65386
|
VBreadcrumbs: VBreadcrumbs
|
65385
65387
|
VBreadcrumbsItem: VBreadcrumbsItem
|
65386
65388
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
65389
|
+
VBtnToggle: VBtnToggle
|
65390
|
+
VBtn: VBtn
|
65387
65391
|
VCarousel: VCarousel
|
65388
65392
|
VCarouselItem: VCarouselItem
|
65389
|
-
|
65390
|
-
VBtnToggle: VBtnToggle
|
65393
|
+
VBottomSheet: VBottomSheet
|
65391
65394
|
VBtnGroup: VBtnGroup
|
65395
|
+
VChip: VChip
|
65396
|
+
VChipGroup: VChipGroup
|
65397
|
+
VCheckbox: VCheckbox
|
65398
|
+
VCheckboxBtn: VCheckboxBtn
|
65399
|
+
VCode: VCode
|
65392
65400
|
VCard: VCard
|
65393
65401
|
VCardActions: VCardActions
|
65394
65402
|
VCardItem: VCardItem
|
65395
65403
|
VCardSubtitle: VCardSubtitle
|
65396
65404
|
VCardText: VCardText
|
65397
65405
|
VCardTitle: VCardTitle
|
65398
|
-
VChip: VChip
|
65399
|
-
VCheckbox: VCheckbox
|
65400
|
-
VCheckboxBtn: VCheckboxBtn
|
65401
|
-
VCode: VCode
|
65402
|
-
VChipGroup: VChipGroup
|
65403
|
-
VColorPicker: VColorPicker
|
65404
|
-
VCombobox: VCombobox
|
65405
65406
|
VCounter: VCounter
|
65406
|
-
VDialog: VDialog
|
65407
65407
|
VDatePicker: VDatePicker
|
65408
65408
|
VDatePickerControls: VDatePickerControls
|
65409
65409
|
VDatePickerHeader: VDatePickerHeader
|
@@ -65417,28 +65417,31 @@ declare module 'vue' {
|
|
65417
65417
|
VDataTableRow: VDataTableRow
|
65418
65418
|
VDataTableVirtual: VDataTableVirtual
|
65419
65419
|
VDataTableServer: VDataTableServer
|
65420
|
+
VColorPicker: VColorPicker
|
65421
|
+
VCombobox: VCombobox
|
65420
65422
|
VEmptyState: VEmptyState
|
65423
|
+
VDialog: VDialog
|
65421
65424
|
VExpansionPanels: VExpansionPanels
|
65422
65425
|
VExpansionPanel: VExpansionPanel
|
65423
65426
|
VExpansionPanelText: VExpansionPanelText
|
65424
65427
|
VExpansionPanelTitle: VExpansionPanelTitle
|
65425
65428
|
VDivider: VDivider
|
65426
|
-
VFooter: VFooter
|
65427
65429
|
VFab: VFab
|
65428
65430
|
VFileInput: VFileInput
|
65429
65431
|
VField: VField
|
65430
65432
|
VFieldLabel: VFieldLabel
|
65433
|
+
VFooter: VFooter
|
65434
|
+
VImg: VImg
|
65431
65435
|
VInfiniteScroll: VInfiniteScroll
|
65436
|
+
VKbd: VKbd
|
65437
|
+
VInput: VInput
|
65432
65438
|
VIcon: VIcon
|
65433
65439
|
VComponentIcon: VComponentIcon
|
65434
65440
|
VSvgIcon: VSvgIcon
|
65435
65441
|
VLigatureIcon: VLigatureIcon
|
65436
65442
|
VClassIcon: VClassIcon
|
65437
|
-
VKbd: VKbd
|
65438
|
-
VImg: VImg
|
65439
65443
|
VItemGroup: VItemGroup
|
65440
65444
|
VItem: VItem
|
65441
|
-
VInput: VInput
|
65442
65445
|
VLabel: VLabel
|
65443
65446
|
VMenu: VMenu
|
65444
65447
|
VList: VList
|
@@ -65450,43 +65453,43 @@ declare module 'vue' {
|
|
65450
65453
|
VListItemSubtitle: VListItemSubtitle
|
65451
65454
|
VListItemTitle: VListItemTitle
|
65452
65455
|
VListSubheader: VListSubheader
|
65453
|
-
VNavigationDrawer: VNavigationDrawer
|
65454
65456
|
VMain: VMain
|
65455
|
-
|
65457
|
+
VOtpInput: VOtpInput
|
65456
65458
|
VMessages: VMessages
|
65457
|
-
|
65459
|
+
VNavigationDrawer: VNavigationDrawer
|
65458
65460
|
VPagination: VPagination
|
65461
|
+
VOverlay: VOverlay
|
65462
|
+
VProgressCircular: VProgressCircular
|
65463
|
+
VNumberInput: VNumberInput
|
65459
65464
|
VRadioGroup: VRadioGroup
|
65460
|
-
|
65465
|
+
VSelectionControl: VSelectionControl
|
65461
65466
|
VProgressLinear: VProgressLinear
|
65462
|
-
VSelect: VSelect
|
65463
|
-
VProgressCircular: VProgressCircular
|
65464
65467
|
VRating: VRating
|
65465
|
-
VSelectionControl: VSelectionControl
|
65466
65468
|
VSelectionControlGroup: VSelectionControlGroup
|
65467
|
-
|
65468
|
-
VSlider: VSlider
|
65469
|
+
VSelect: VSelect
|
65469
65470
|
VSkeletonLoader: VSkeletonLoader
|
65471
|
+
VSheet: VSheet
|
65470
65472
|
VSnackbar: VSnackbar
|
65473
|
+
VSlideGroup: VSlideGroup
|
65474
|
+
VSlideGroupItem: VSlideGroupItem
|
65475
|
+
VSlider: VSlider
|
65471
65476
|
VStepper: VStepper
|
65472
65477
|
VStepperActions: VStepperActions
|
65473
65478
|
VStepperHeader: VStepperHeader
|
65474
65479
|
VStepperItem: VStepperItem
|
65475
65480
|
VStepperWindow: VStepperWindow
|
65476
65481
|
VStepperWindowItem: VStepperWindowItem
|
65477
|
-
VSlideGroup: VSlideGroup
|
65478
|
-
VSlideGroupItem: VSlideGroupItem
|
65479
65482
|
VTab: VTab
|
65480
65483
|
VTabs: VTabs
|
65481
65484
|
VTabsWindow: VTabsWindow
|
65482
65485
|
VTabsWindowItem: VTabsWindowItem
|
65483
65486
|
VSystemBar: VSystemBar
|
65484
|
-
VTextarea: VTextarea
|
65485
|
-
VTimeline: VTimeline
|
65486
|
-
VTimelineItem: VTimelineItem
|
65487
65487
|
VSwitch: VSwitch
|
65488
65488
|
VTable: VTable
|
65489
65489
|
VTextField: VTextField
|
65490
|
+
VTextarea: VTextarea
|
65491
|
+
VTimeline: VTimeline
|
65492
|
+
VTimelineItem: VTimelineItem
|
65490
65493
|
VTooltip: VTooltip
|
65491
65494
|
VToolbar: VToolbar
|
65492
65495
|
VToolbarTitle: VToolbarTitle
|
@@ -65501,10 +65504,10 @@ declare module 'vue' {
|
|
65501
65504
|
VCol: VCol
|
65502
65505
|
VRow: VRow
|
65503
65506
|
VSpacer: VSpacer
|
65504
|
-
VLayout: VLayout
|
65505
|
-
VLayoutItem: VLayoutItem
|
65506
65507
|
VHover: VHover
|
65507
65508
|
VLazy: VLazy
|
65509
|
+
VLayout: VLayout
|
65510
|
+
VLayoutItem: VLayoutItem
|
65508
65511
|
VLocaleProvider: VLocaleProvider
|
65509
65512
|
VNoSsr: VNoSsr
|
65510
65513
|
VParallax: VParallax
|
@@ -65512,8 +65515,8 @@ declare module 'vue' {
|
|
65512
65515
|
VRangeSlider: VRangeSlider
|
65513
65516
|
VResponsive: VResponsive
|
65514
65517
|
VSnackbarQueue: VSnackbarQueue
|
65515
|
-
VSpeedDial: VSpeedDial
|
65516
65518
|
VSparkline: VSparkline
|
65519
|
+
VSpeedDial: VSpeedDial
|
65517
65520
|
VThemeProvider: VThemeProvider
|
65518
65521
|
VValidation: VValidation
|
65519
65522
|
VVirtualScroll: VVirtualScroll
|
@@ -65533,25 +65536,25 @@ declare module 'vue' {
|
|
65533
65536
|
VExpandTransition: VExpandTransition
|
65534
65537
|
VExpandXTransition: VExpandXTransition
|
65535
65538
|
VDialogTransition: VDialogTransition
|
65539
|
+
VTimePicker: VTimePicker
|
65540
|
+
VTimePickerClock: VTimePickerClock
|
65541
|
+
VTimePickerControls: VTimePickerControls
|
65542
|
+
VPicker: VPicker
|
65543
|
+
VPickerTitle: VPickerTitle
|
65536
65544
|
VCalendar: VCalendar
|
65537
65545
|
VCalendarDay: VCalendarDay
|
65538
65546
|
VCalendarHeader: VCalendarHeader
|
65539
65547
|
VCalendarInterval: VCalendarInterval
|
65540
65548
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
65541
65549
|
VCalendarMonthDay: VCalendarMonthDay
|
65542
|
-
VFileUpload: VFileUpload
|
65543
|
-
VFileUploadItem: VFileUploadItem
|
65544
|
-
VPicker: VPicker
|
65545
|
-
VPickerTitle: VPickerTitle
|
65546
|
-
VStepperVertical: VStepperVertical
|
65547
|
-
VStepperVerticalItem: VStepperVerticalItem
|
65548
|
-
VStepperVerticalActions: VStepperVerticalActions
|
65549
|
-
VTimePicker: VTimePicker
|
65550
|
-
VTimePickerClock: VTimePickerClock
|
65551
|
-
VTimePickerControls: VTimePickerControls
|
65552
65550
|
VTreeview: VTreeview
|
65553
65551
|
VTreeviewItem: VTreeviewItem
|
65554
65552
|
VTreeviewGroup: VTreeviewGroup
|
65553
|
+
VStepperVertical: VStepperVertical
|
65554
|
+
VStepperVerticalItem: VStepperVerticalItem
|
65555
|
+
VStepperVerticalActions: VStepperVerticalActions
|
65556
|
+
VFileUpload: VFileUpload
|
65557
|
+
VFileUploadItem: VFileUploadItem
|
65555
65558
|
VDateInput: VDateInput
|
65556
65559
|
VPullToRefresh: VPullToRefresh
|
65557
65560
|
}
|
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-26
|
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-26";
|
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-26";
|
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 };
|