@vuetify/nightly 3.11.4-dev.2025-12-21 → 3.11.4-dev.2025-12-22
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 +25 -3
- package/dist/json/attributes.json +1109 -1109
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +196 -196
- package/dist/json/web-types.json +2247 -2247
- package/dist/vuetify-labs.cjs +40 -15
- package/dist/vuetify-labs.css +4805 -4809
- package/dist/vuetify-labs.d.ts +83 -70
- package/dist/vuetify-labs.esm.js +40 -15
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +40 -15
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +35 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3454 -3458
- package/dist/vuetify.d.ts +83 -70
- package/dist/vuetify.esm.js +35 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.js +1 -1
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.js +5 -2
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +1 -0
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerYears.js +7 -3
- package/lib/components/VDatePicker/VDatePickerYears.js.map +1 -1
- package/lib/components/VGrid/VContainer.css +34 -0
- package/lib/components/VGrid/VContainer.js +1 -1
- package/lib/components/VGrid/VContainer.js.map +1 -1
- package/lib/components/VGrid/VContainer.sass +15 -0
- package/lib/components/VGrid/VGrid.css +0 -39
- package/lib/components/VGrid/VGrid.sass +0 -15
- package/lib/components/VGrid/VSpacer.css +3 -0
- package/lib/components/VGrid/VSpacer.js +1 -1
- package/lib/components/VGrid/VSpacer.js.map +1 -1
- package/lib/components/VGrid/VSpacer.sass +5 -0
- package/lib/components/VList/VListItem.d.ts +3 -0
- package/lib/components/VNumberInput/VNumberInput.js +1 -1
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +2 -2
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.d.ts +9 -0
- package/lib/composables/nested/nested.d.ts +3 -0
- package/lib/composables/nested/nested.js +17 -0
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -70
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.js +5 -4
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/styles/settings/_variables.scss +11 -0
- package/lib/styles/utilities/_display.sass +2 -1
- package/lib/styles/utilities/_elevation.scss +2 -1
- package/lib/styles/utilities/_pointer-events.sass +2 -1
- package/lib/styles/utilities/_screenreaders.sass +2 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -998,6 +998,7 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
|
998
998
|
interface DataTableItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
|
|
999
999
|
key: any;
|
|
1000
1000
|
index: number;
|
|
1001
|
+
virtualIndex?: number;
|
|
1001
1002
|
columns: {
|
|
1002
1003
|
[key: string]: any;
|
|
1003
1004
|
};
|
|
@@ -7088,6 +7089,7 @@ declare const VListItem: {
|
|
|
7088
7089
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7089
7090
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7090
7091
|
unregister: (id: unknown) => void;
|
|
7092
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7091
7093
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7092
7094
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7093
7095
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -7242,6 +7244,7 @@ declare const VListItem: {
|
|
|
7242
7244
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7243
7245
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7244
7246
|
unregister: (id: unknown) => void;
|
|
7247
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7245
7248
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7246
7249
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7247
7250
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -7375,6 +7378,7 @@ declare const VListItem: {
|
|
|
7375
7378
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7376
7379
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7377
7380
|
unregister: (id: unknown) => void;
|
|
7381
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7378
7382
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7379
7383
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7380
7384
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -109902,6 +109906,7 @@ declare const VTreeviewItem: {
|
|
|
109902
109906
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
109903
109907
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
109904
109908
|
unregister: (id: unknown) => void;
|
|
109909
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
109905
109910
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
109906
109911
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
109907
109912
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110089,6 +110094,7 @@ declare const VTreeviewItem: {
|
|
|
110089
110094
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110090
110095
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110091
110096
|
unregister: (id: unknown) => void;
|
|
110097
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110092
110098
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110093
110099
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110094
110100
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110126,6 +110132,7 @@ declare const VTreeviewItem: {
|
|
|
110126
110132
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110127
110133
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110128
110134
|
unregister: (id: unknown) => void;
|
|
110135
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110129
110136
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110130
110137
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110131
110138
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110512,6 +110519,7 @@ declare const VTreeviewItem: {
|
|
|
110512
110519
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110513
110520
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110514
110521
|
unregister: (id: unknown) => void;
|
|
110522
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110515
110523
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110516
110524
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110517
110525
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110699,6 +110707,7 @@ declare const VTreeviewItem: {
|
|
|
110699
110707
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110700
110708
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110701
110709
|
unregister: (id: unknown) => void;
|
|
110710
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110702
110711
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110703
110712
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110704
110713
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110736,6 +110745,7 @@ declare const VTreeviewItem: {
|
|
|
110736
110745
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110737
110746
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110738
110747
|
unregister: (id: unknown) => void;
|
|
110748
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110739
110749
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110740
110750
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110741
110751
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111092,6 +111102,7 @@ declare const VTreeviewItem: {
|
|
|
111092
111102
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111093
111103
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111094
111104
|
unregister: (id: unknown) => void;
|
|
111105
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111095
111106
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111096
111107
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111097
111108
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111279,6 +111290,7 @@ declare const VTreeviewItem: {
|
|
|
111279
111290
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111280
111291
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111281
111292
|
unregister: (id: unknown) => void;
|
|
111293
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111282
111294
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111283
111295
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111284
111296
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111316,6 +111328,7 @@ declare const VTreeviewItem: {
|
|
|
111316
111328
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111317
111329
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111318
111330
|
unregister: (id: unknown) => void;
|
|
111331
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111319
111332
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111320
111333
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111321
111334
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -114740,81 +114753,82 @@ declare module 'vue' {
|
|
|
114740
114753
|
$children?: VNodeChild
|
|
114741
114754
|
}
|
|
114742
114755
|
export interface GlobalComponents {
|
|
114756
|
+
VAlert: VAlert
|
|
114757
|
+
VAlertTitle: VAlertTitle
|
|
114758
|
+
VApp: VApp
|
|
114743
114759
|
VAppBar: VAppBar
|
|
114744
114760
|
VAppBarNavIcon: VAppBarNavIcon
|
|
114745
114761
|
VAppBarTitle: VAppBarTitle
|
|
114746
|
-
VApp: VApp
|
|
114747
|
-
VAlert: VAlert
|
|
114748
|
-
VAlertTitle: VAlertTitle
|
|
114749
|
-
VBadge: VBadge
|
|
114750
|
-
VAutocomplete: VAutocomplete
|
|
114751
114762
|
VAvatar: VAvatar
|
|
114763
|
+
VAutocomplete: VAutocomplete
|
|
114752
114764
|
VBottomSheet: VBottomSheet
|
|
114753
114765
|
VBanner: VBanner
|
|
114754
114766
|
VBannerActions: VBannerActions
|
|
114755
114767
|
VBannerText: VBannerText
|
|
114756
|
-
VBreadcrumbs: VBreadcrumbs
|
|
114757
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
114758
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
114759
114768
|
VBtn: VBtn
|
|
114760
|
-
|
|
114761
|
-
VBottomNavigation: VBottomNavigation
|
|
114769
|
+
VBadge: VBadge
|
|
114762
114770
|
VCard: VCard
|
|
114763
114771
|
VCardActions: VCardActions
|
|
114764
114772
|
VCardItem: VCardItem
|
|
114765
114773
|
VCardSubtitle: VCardSubtitle
|
|
114766
114774
|
VCardText: VCardText
|
|
114767
114775
|
VCardTitle: VCardTitle
|
|
114768
|
-
|
|
114769
|
-
|
|
114776
|
+
VBtnGroup: VBtnGroup
|
|
114777
|
+
VBottomNavigation: VBottomNavigation
|
|
114778
|
+
VBreadcrumbs: VBreadcrumbs
|
|
114779
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
114780
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
114770
114781
|
VBtnToggle: VBtnToggle
|
|
114771
|
-
|
|
114772
|
-
|
|
114773
|
-
VCarousel: VCarousel
|
|
114774
|
-
VCarouselItem: VCarouselItem
|
|
114775
|
-
VColorPicker: VColorPicker
|
|
114782
|
+
VChip: VChip
|
|
114783
|
+
VCalendar: VCalendar
|
|
114776
114784
|
VCode: VCode
|
|
114777
114785
|
VChipGroup: VChipGroup
|
|
114778
|
-
|
|
114786
|
+
VCarousel: VCarousel
|
|
114787
|
+
VCarouselItem: VCarouselItem
|
|
114779
114788
|
VCounter: VCounter
|
|
114780
|
-
|
|
114781
|
-
|
|
114782
|
-
|
|
114783
|
-
|
|
114784
|
-
VDataTableRows: VDataTableRows
|
|
114785
|
-
VDataTableRow: VDataTableRow
|
|
114786
|
-
VDataTableVirtual: VDataTableVirtual
|
|
114787
|
-
VDataTableServer: VDataTableServer
|
|
114788
|
-
VDialog: VDialog
|
|
114789
|
+
VCombobox: VCombobox
|
|
114790
|
+
VColorPicker: VColorPicker
|
|
114791
|
+
VCheckbox: VCheckbox
|
|
114792
|
+
VCheckboxBtn: VCheckboxBtn
|
|
114789
114793
|
VDatePicker: VDatePicker
|
|
114790
114794
|
VDatePickerControls: VDatePickerControls
|
|
114791
114795
|
VDatePickerHeader: VDatePickerHeader
|
|
114792
114796
|
VDatePickerMonth: VDatePickerMonth
|
|
114793
114797
|
VDatePickerMonths: VDatePickerMonths
|
|
114794
114798
|
VDatePickerYears: VDatePickerYears
|
|
114795
|
-
VDivider: VDivider
|
|
114796
|
-
VFab: VFab
|
|
114797
114799
|
VExpansionPanels: VExpansionPanels
|
|
114798
114800
|
VExpansionPanel: VExpansionPanel
|
|
114799
114801
|
VExpansionPanelText: VExpansionPanelText
|
|
114800
114802
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
114803
|
+
VDivider: VDivider
|
|
114804
|
+
VDataTable: VDataTable
|
|
114805
|
+
VDataTableHeaders: VDataTableHeaders
|
|
114806
|
+
VDataTableFooter: VDataTableFooter
|
|
114807
|
+
VDataTableRows: VDataTableRows
|
|
114808
|
+
VDataTableRow: VDataTableRow
|
|
114809
|
+
VDataTableVirtual: VDataTableVirtual
|
|
114810
|
+
VDataTableServer: VDataTableServer
|
|
114811
|
+
VDialog: VDialog
|
|
114812
|
+
VFab: VFab
|
|
114813
|
+
VEmptyState: VEmptyState
|
|
114814
|
+
VFileInput: VFileInput
|
|
114815
|
+
VFooter: VFooter
|
|
114801
114816
|
VField: VField
|
|
114802
114817
|
VFieldLabel: VFieldLabel
|
|
114803
|
-
VFooter: VFooter
|
|
114804
|
-
VFileInput: VFileInput
|
|
114805
|
-
VInfiniteScroll: VInfiniteScroll
|
|
114806
114818
|
VHotkey: VHotkey
|
|
114807
|
-
VImg: VImg
|
|
114808
|
-
VKbd: VKbd
|
|
114809
|
-
VInput: VInput
|
|
114810
|
-
VLabel: VLabel
|
|
114811
114819
|
VIcon: VIcon
|
|
114812
114820
|
VComponentIcon: VComponentIcon
|
|
114813
114821
|
VSvgIcon: VSvgIcon
|
|
114814
114822
|
VLigatureIcon: VLigatureIcon
|
|
114815
114823
|
VClassIcon: VClassIcon
|
|
114824
|
+
VImg: VImg
|
|
114825
|
+
VInfiniteScroll: VInfiniteScroll
|
|
114826
|
+
VLabel: VLabel
|
|
114816
114827
|
VItemGroup: VItemGroup
|
|
114817
114828
|
VItem: VItem
|
|
114829
|
+
VInput: VInput
|
|
114830
|
+
VKbd: VKbd
|
|
114831
|
+
VMain: VMain
|
|
114818
114832
|
VList: VList
|
|
114819
114833
|
VListGroup: VListGroup
|
|
114820
114834
|
VListImg: VListImg
|
|
@@ -114824,80 +114838,79 @@ declare module 'vue' {
|
|
|
114824
114838
|
VListItemSubtitle: VListItemSubtitle
|
|
114825
114839
|
VListItemTitle: VListItemTitle
|
|
114826
114840
|
VListSubheader: VListSubheader
|
|
114827
|
-
VNavigationDrawer: VNavigationDrawer
|
|
114828
|
-
VOtpInput: VOtpInput
|
|
114829
114841
|
VNumberInput: VNumberInput
|
|
114830
|
-
VMain: VMain
|
|
114831
114842
|
VMessages: VMessages
|
|
114832
114843
|
VMenu: VMenu
|
|
114833
|
-
|
|
114834
|
-
VProgressCircular: VProgressCircular
|
|
114844
|
+
VOtpInput: VOtpInput
|
|
114835
114845
|
VPagination: VPagination
|
|
114836
114846
|
VRadioGroup: VRadioGroup
|
|
114847
|
+
VProgressCircular: VProgressCircular
|
|
114848
|
+
VOverlay: VOverlay
|
|
114849
|
+
VNavigationDrawer: VNavigationDrawer
|
|
114850
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
114851
|
+
VSelect: VSelect
|
|
114837
114852
|
VProgressLinear: VProgressLinear
|
|
114838
114853
|
VSelectionControl: VSelectionControl
|
|
114839
114854
|
VRating: VRating
|
|
114840
|
-
|
|
114841
|
-
VSlider: VSlider
|
|
114842
|
-
VSelectionControlGroup: VSelectionControlGroup
|
|
114843
|
-
VSheet: VSheet
|
|
114855
|
+
VSkeletonLoader: VSkeletonLoader
|
|
114844
114856
|
VSlideGroup: VSlideGroup
|
|
114845
114857
|
VSlideGroupItem: VSlideGroupItem
|
|
114858
|
+
VSheet: VSheet
|
|
114846
114859
|
VSnackbar: VSnackbar
|
|
114860
|
+
VSlider: VSlider
|
|
114847
114861
|
VStepper: VStepper
|
|
114848
114862
|
VStepperActions: VStepperActions
|
|
114849
114863
|
VStepperHeader: VStepperHeader
|
|
114850
114864
|
VStepperItem: VStepperItem
|
|
114851
114865
|
VStepperWindow: VStepperWindow
|
|
114852
114866
|
VStepperWindowItem: VStepperWindowItem
|
|
114853
|
-
VSwitch: VSwitch
|
|
114854
114867
|
VSystemBar: VSystemBar
|
|
114855
|
-
VTable: VTable
|
|
114856
|
-
VTextarea: VTextarea
|
|
114857
|
-
VTimeline: VTimeline
|
|
114858
|
-
VTimelineItem: VTimelineItem
|
|
114859
114868
|
VTab: VTab
|
|
114860
114869
|
VTabs: VTabs
|
|
114861
114870
|
VTabsWindow: VTabsWindow
|
|
114862
114871
|
VTabsWindowItem: VTabsWindowItem
|
|
114863
|
-
|
|
114864
|
-
|
|
114865
|
-
|
|
114866
|
-
VToolbarItems: VToolbarItems
|
|
114872
|
+
VSwitch: VSwitch
|
|
114873
|
+
VTable: VTable
|
|
114874
|
+
VTextarea: VTextarea
|
|
114867
114875
|
VTimePicker: VTimePicker
|
|
114868
114876
|
VTimePickerClock: VTimePickerClock
|
|
114869
114877
|
VTimePickerControls: VTimePickerControls
|
|
114870
|
-
|
|
114878
|
+
VToolbar: VToolbar
|
|
114879
|
+
VToolbarTitle: VToolbarTitle
|
|
114880
|
+
VToolbarItems: VToolbarItems
|
|
114881
|
+
VTextField: VTextField
|
|
114882
|
+
VTimeline: VTimeline
|
|
114883
|
+
VTimelineItem: VTimelineItem
|
|
114884
|
+
VWindow: VWindow
|
|
114885
|
+
VWindowItem: VWindowItem
|
|
114871
114886
|
VTreeview: VTreeview
|
|
114872
114887
|
VTreeviewItem: VTreeviewItem
|
|
114873
114888
|
VTreeviewGroup: VTreeviewGroup
|
|
114874
|
-
|
|
114875
|
-
VWindowItem: VWindowItem
|
|
114876
|
-
VSkeletonLoader: VSkeletonLoader
|
|
114877
|
-
VConfirmEdit: VConfirmEdit
|
|
114889
|
+
VTooltip: VTooltip
|
|
114878
114890
|
VDataIterator: VDataIterator
|
|
114891
|
+
VConfirmEdit: VConfirmEdit
|
|
114879
114892
|
VDefaultsProvider: VDefaultsProvider
|
|
114893
|
+
VHover: VHover
|
|
114880
114894
|
VForm: VForm
|
|
114881
114895
|
VContainer: VContainer
|
|
114882
114896
|
VCol: VCol
|
|
114883
114897
|
VRow: VRow
|
|
114884
114898
|
VSpacer: VSpacer
|
|
114885
|
-
|
|
114899
|
+
VLazy: VLazy
|
|
114886
114900
|
VLayout: VLayout
|
|
114887
114901
|
VLayoutItem: VLayoutItem
|
|
114888
|
-
VLazy: VLazy
|
|
114889
114902
|
VLocaleProvider: VLocaleProvider
|
|
114890
114903
|
VNoSsr: VNoSsr
|
|
114891
114904
|
VParallax: VParallax
|
|
114892
|
-
VRangeSlider: VRangeSlider
|
|
114893
114905
|
VRadio: VRadio
|
|
114906
|
+
VRangeSlider: VRangeSlider
|
|
114894
114907
|
VResponsive: VResponsive
|
|
114895
114908
|
VSnackbarQueue: VSnackbarQueue
|
|
114896
114909
|
VSparkline: VSparkline
|
|
114897
114910
|
VSpeedDial: VSpeedDial
|
|
114898
114911
|
VThemeProvider: VThemeProvider
|
|
114899
|
-
VVirtualScroll: VVirtualScroll
|
|
114900
114912
|
VValidation: VValidation
|
|
114913
|
+
VVirtualScroll: VVirtualScroll
|
|
114901
114914
|
VFabTransition: VFabTransition
|
|
114902
114915
|
VDialogBottomTransition: VDialogBottomTransition
|
|
114903
114916
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -114914,21 +114927,21 @@ declare module 'vue' {
|
|
|
114914
114927
|
VExpandTransition: VExpandTransition
|
|
114915
114928
|
VExpandXTransition: VExpandXTransition
|
|
114916
114929
|
VDialogTransition: VDialogTransition
|
|
114917
|
-
|
|
114918
|
-
VVideoControls: VVideoControls
|
|
114919
|
-
VVideoVolume: VVideoVolume
|
|
114930
|
+
VColorInput: VColorInput
|
|
114920
114931
|
VStepperVertical: VStepperVertical
|
|
114921
114932
|
VStepperVerticalItem: VStepperVerticalItem
|
|
114922
114933
|
VStepperVerticalActions: VStepperVerticalActions
|
|
114923
|
-
VColorInput: VColorInput
|
|
114924
|
-
VIconBtn: VIconBtn
|
|
114925
|
-
VFileUpload: VFileUpload
|
|
114926
|
-
VFileUploadItem: VFileUploadItem
|
|
114927
114934
|
VPie: VPie
|
|
114928
114935
|
VPieSegment: VPieSegment
|
|
114929
114936
|
VPieTooltip: VPieTooltip
|
|
114937
|
+
VIconBtn: VIconBtn
|
|
114938
|
+
VVideo: VVideo
|
|
114939
|
+
VVideoControls: VVideoControls
|
|
114940
|
+
VVideoVolume: VVideoVolume
|
|
114930
114941
|
VPicker: VPicker
|
|
114931
114942
|
VPickerTitle: VPickerTitle
|
|
114943
|
+
VFileUpload: VFileUpload
|
|
114944
|
+
VFileUploadItem: VFileUploadItem
|
|
114932
114945
|
VDateInput: VDateInput
|
|
114933
114946
|
VMaskInput: VMaskInput
|
|
114934
114947
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.4-dev.2025-12-
|
|
2
|
+
* Vuetify v3.11.4-dev.2025-12-22
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -9822,6 +9822,7 @@ const emptyNested = {
|
|
|
9822
9822
|
itemsRegistration: ref('render'),
|
|
9823
9823
|
register: () => null,
|
|
9824
9824
|
unregister: () => null,
|
|
9825
|
+
updateDisabled: () => null,
|
|
9825
9826
|
children: ref(new Map()),
|
|
9826
9827
|
parents: ref(new Map()),
|
|
9827
9828
|
disabled: ref(new Set()),
|
|
@@ -10017,6 +10018,19 @@ const useNested = (props, _ref) => {
|
|
|
10017
10018
|
parents.value.delete(id);
|
|
10018
10019
|
itemsUpdatePropagation();
|
|
10019
10020
|
},
|
|
10021
|
+
updateDisabled: (id, isDisabled) => {
|
|
10022
|
+
if (isDisabled) {
|
|
10023
|
+
disabled.value.add(id);
|
|
10024
|
+
} else {
|
|
10025
|
+
disabled.value.delete(id);
|
|
10026
|
+
}
|
|
10027
|
+
// classic selection requires refresh to re-evaluate on/off/indeterminate but
|
|
10028
|
+
// currently it is only run for selection interactions, so it will set new disabled
|
|
10029
|
+
// to "off" and the visual state becomes out of sync
|
|
10030
|
+
// -- selected.value = new Map(selected.value)
|
|
10031
|
+
// it is not clear if the framework should un-select when disabled changed to true
|
|
10032
|
+
// more discussion is needed
|
|
10033
|
+
},
|
|
10020
10034
|
open: (id, value, event) => {
|
|
10021
10035
|
vm.emit('click:open', {
|
|
10022
10036
|
id,
|
|
@@ -10149,6 +10163,9 @@ const useNestedItem = (id, isDisabled, isGroup) => {
|
|
|
10149
10163
|
parent.root.register(val, parent.id.value, toValue(isDisabled), isGroup);
|
|
10150
10164
|
});
|
|
10151
10165
|
});
|
|
10166
|
+
watch(() => toValue(isDisabled), val => {
|
|
10167
|
+
parent.root.updateDisabled(computedId.value, val);
|
|
10168
|
+
});
|
|
10152
10169
|
isGroup && provide(VNestedSymbol, item);
|
|
10153
10170
|
return item;
|
|
10154
10171
|
};
|
|
@@ -25996,7 +26013,7 @@ const VDataTableRows = genericComponent()({
|
|
|
25996
26013
|
return slots['group-summary']?.(slotProps) ?? '';
|
|
25997
26014
|
}
|
|
25998
26015
|
const slotProps = {
|
|
25999
|
-
index,
|
|
26016
|
+
index: item.virtualIndex ?? index,
|
|
26000
26017
|
item: item.raw,
|
|
26001
26018
|
internalItem: item,
|
|
26002
26019
|
columns: columns.value,
|
|
@@ -26471,7 +26488,10 @@ const VDataTableVirtual = genericComponent()({
|
|
|
26471
26488
|
calculateVisibleItems,
|
|
26472
26489
|
scrollToIndex
|
|
26473
26490
|
} = useVirtual(props, flatItems);
|
|
26474
|
-
const displayItems = computed(() => computedItems.value.map(item =>
|
|
26491
|
+
const displayItems = computed(() => computedItems.value.map(item => ({
|
|
26492
|
+
...item.raw,
|
|
26493
|
+
virtualIndex: item.index
|
|
26494
|
+
})));
|
|
26475
26495
|
useOptions({
|
|
26476
26496
|
sortBy,
|
|
26477
26497
|
page: shallowRef(1),
|
|
@@ -26564,7 +26584,7 @@ const VDataTableVirtual = genericComponent()({
|
|
|
26564
26584
|
}) ?? createVNode(VDataTableRow, mergeProps(itemSlotProps.props, {
|
|
26565
26585
|
"ref": itemRef,
|
|
26566
26586
|
"key": itemSlotProps.internalItem.index,
|
|
26567
|
-
"index": itemSlotProps.
|
|
26587
|
+
"index": itemSlotProps.index
|
|
26568
26588
|
}), slots);
|
|
26569
26589
|
}
|
|
26570
26590
|
})
|
|
@@ -27865,6 +27885,7 @@ const VDatePickerYears = genericComponent()({
|
|
|
27865
27885
|
} = _ref;
|
|
27866
27886
|
const adapter = useDate();
|
|
27867
27887
|
const model = useProxiedModel(props, 'modelValue');
|
|
27888
|
+
const hasFocusedItem = shallowRef(false);
|
|
27868
27889
|
const years = computed(() => {
|
|
27869
27890
|
const year = adapter.getYear(adapter.date());
|
|
27870
27891
|
let min = year - 100;
|
|
@@ -27892,7 +27913,6 @@ const VDatePickerYears = genericComponent()({
|
|
|
27892
27913
|
});
|
|
27893
27914
|
const yearRef = templateRef();
|
|
27894
27915
|
function focusSelectedYear() {
|
|
27895
|
-
yearRef.el?.focus();
|
|
27896
27916
|
yearRef.el?.scrollIntoView({
|
|
27897
27917
|
block: 'center'
|
|
27898
27918
|
});
|
|
@@ -27912,7 +27932,11 @@ const VDatePickerYears = genericComponent()({
|
|
|
27912
27932
|
height: convertToUnit(props.height)
|
|
27913
27933
|
}
|
|
27914
27934
|
}, [createElementVNode("div", {
|
|
27915
|
-
"class": "v-date-picker-years__content"
|
|
27935
|
+
"class": "v-date-picker-years__content",
|
|
27936
|
+
"onFocus": () => yearRef.el?.focus(),
|
|
27937
|
+
"onFocusin": () => hasFocusedItem.value = true,
|
|
27938
|
+
"onFocusout": () => hasFocusedItem.value = false,
|
|
27939
|
+
"tabindex": hasFocusedItem.value ? -1 : 0
|
|
27916
27940
|
}, [years.value.map((year, i) => {
|
|
27917
27941
|
const btnProps = {
|
|
27918
27942
|
ref: model.value === year.value ? yearRef : undefined,
|
|
@@ -31287,7 +31311,7 @@ const VNumberInput = genericComponent()({
|
|
|
31287
31311
|
"focused": isFocused.value,
|
|
31288
31312
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
31289
31313
|
"validationValue": model.value,
|
|
31290
|
-
"error": isOutOfRange.value || undefined,
|
|
31314
|
+
"error": props.error || isOutOfRange.value || undefined,
|
|
31291
31315
|
"onBeforeinput": onBeforeinput,
|
|
31292
31316
|
"onFocus": onFocus,
|
|
31293
31317
|
"onBlur": onBlur,
|
|
@@ -36082,7 +36106,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
36082
36106
|
default: () => [createVNode(VCheckboxBtn, {
|
|
36083
36107
|
"key": item.value,
|
|
36084
36108
|
"modelValue": slotProps.isSelected,
|
|
36085
|
-
"disabled": props.disabled,
|
|
36109
|
+
"disabled": props.disabled || itemProps.disabled,
|
|
36086
36110
|
"loading": loading,
|
|
36087
36111
|
"color": props.selectedColor,
|
|
36088
36112
|
"density": props.density,
|
|
@@ -36145,7 +36169,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
36145
36169
|
hideActions: props.hideActions,
|
|
36146
36170
|
indentLines: indentLines.node,
|
|
36147
36171
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
36148
|
-
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
36172
|
+
onClick: props.disabled || itemProps.disabled ? undefined : isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
36149
36173
|
};
|
|
36150
36174
|
return renderSlot(slots.header, {
|
|
36151
36175
|
props: listItemProps,
|
|
@@ -36873,7 +36897,7 @@ function createVuetify$1() {
|
|
|
36873
36897
|
};
|
|
36874
36898
|
});
|
|
36875
36899
|
}
|
|
36876
|
-
const version$1 = "3.11.4-dev.2025-12-
|
|
36900
|
+
const version$1 = "3.11.4-dev.2025-12-22";
|
|
36877
36901
|
createVuetify$1.version = version$1;
|
|
36878
36902
|
|
|
36879
36903
|
// Vue's inject() can only be used in setup
|
|
@@ -36898,7 +36922,7 @@ const createVuetify = function () {
|
|
|
36898
36922
|
...options
|
|
36899
36923
|
});
|
|
36900
36924
|
};
|
|
36901
|
-
const version = "3.11.4-dev.2025-12-
|
|
36925
|
+
const version = "3.11.4-dev.2025-12-22";
|
|
36902
36926
|
createVuetify.version = version;
|
|
36903
36927
|
|
|
36904
36928
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|