@vuetify/nightly 3.7.6-dev.2024-12-18 → 3.7.6-dev.2025-01-06

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.
Files changed (41) hide show
  1. package/dist/json/attributes.json +3231 -3223
  2. package/dist/json/importMap-labs.json +16 -16
  3. package/dist/json/importMap.json +150 -150
  4. package/dist/json/tags.json +2 -0
  5. package/dist/json/web-types.json +5961 -5941
  6. package/dist/vuetify-labs.css +3903 -3903
  7. package/dist/vuetify-labs.d.ts +30 -0
  8. package/dist/vuetify-labs.esm.js +39 -18
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +39 -18
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +4335 -4335
  13. package/dist/vuetify.d.ts +82 -52
  14. package/dist/vuetify.esm.js +39 -18
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +39 -18
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +741 -736
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/blueprints/index.d.mts +2 -0
  22. package/lib/blueprints/md1.d.mts +2 -0
  23. package/lib/blueprints/md2.d.mts +2 -0
  24. package/lib/blueprints/md3.d.mts +2 -0
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs +2 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  27. package/lib/components/VCombobox/VCombobox.mjs +2 -1
  28. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  29. package/lib/components/VDataTable/index.d.mts +14 -0
  30. package/lib/components/VSelect/VSelect.mjs +2 -1
  31. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  32. package/lib/components/VVirtualScroll/index.d.mts +17 -1
  33. package/lib/components/index.d.mts +28 -0
  34. package/lib/composables/theme.mjs +18 -7
  35. package/lib/composables/theme.mjs.map +1 -1
  36. package/lib/composables/virtual.mjs +13 -6
  37. package/lib/composables/virtual.mjs.map +1 -1
  38. package/lib/entry-bundler.mjs +1 -1
  39. package/lib/framework.mjs +1 -1
  40. package/lib/index.d.mts +54 -52
  41. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -135,6 +135,8 @@ type ThemeOptions = false | {
135
135
  defaultTheme?: string;
136
136
  variations?: false | VariationsOptions;
137
137
  themes?: Record<string, ThemeDefinition>;
138
+ stylesheetId?: string;
139
+ scope?: string;
138
140
  };
139
141
  type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
140
142
  interface VariationsOptions {
@@ -22024,6 +22026,7 @@ declare const VDataTableVirtual: {
22024
22026
  filterMode: FilterMode;
22025
22027
  noFilter: boolean;
22026
22028
  itemHeight: string | number;
22029
+ itemKey: SelectItemKey;
22027
22030
  hideNoData: boolean;
22028
22031
  hover: boolean;
22029
22032
  multiSort: boolean;
@@ -22126,6 +22129,7 @@ declare const VDataTableVirtual: {
22126
22129
  filterMode: FilterMode;
22127
22130
  noFilter: boolean;
22128
22131
  itemHeight: string | number;
22132
+ itemKey: SelectItemKey;
22129
22133
  hideNoData: boolean;
22130
22134
  hover: boolean;
22131
22135
  multiSort: boolean;
@@ -22206,6 +22210,7 @@ declare const VDataTableVirtual: {
22206
22210
  filterMode: FilterMode;
22207
22211
  noFilter: boolean;
22208
22212
  itemHeight: string | number;
22213
+ itemKey: SelectItemKey;
22209
22214
  hideNoData: boolean;
22210
22215
  hover: boolean;
22211
22216
  multiSort: boolean;
@@ -22302,6 +22307,7 @@ declare const VDataTableVirtual: {
22302
22307
  filterMode: FilterMode;
22303
22308
  noFilter: boolean;
22304
22309
  itemHeight: string | number;
22310
+ itemKey: SelectItemKey;
22305
22311
  hideNoData: boolean;
22306
22312
  hover: boolean;
22307
22313
  multiSort: boolean;
@@ -22338,6 +22344,7 @@ declare const VDataTableVirtual: {
22338
22344
  filterMode: FilterMode;
22339
22345
  noFilter: boolean;
22340
22346
  itemHeight: string | number;
22347
+ itemKey: SelectItemKey;
22341
22348
  hideNoData: boolean;
22342
22349
  hover: boolean;
22343
22350
  multiSort: boolean;
@@ -22440,6 +22447,7 @@ declare const VDataTableVirtual: {
22440
22447
  filterMode: FilterMode;
22441
22448
  noFilter: boolean;
22442
22449
  itemHeight: string | number;
22450
+ itemKey: SelectItemKey;
22443
22451
  hideNoData: boolean;
22444
22452
  hover: boolean;
22445
22453
  multiSort: boolean;
@@ -22518,6 +22526,10 @@ declare const VDataTableVirtual: {
22518
22526
  type: (StringConstructor | NumberConstructor)[];
22519
22527
  default: null;
22520
22528
  };
22529
+ itemKey: {
22530
+ type: vue.PropType<SelectItemKey>;
22531
+ default: null;
22532
+ };
22521
22533
  height: (StringConstructor | NumberConstructor)[];
22522
22534
  groupBy: {
22523
22535
  type: vue.PropType<readonly SortItem[]>;
@@ -22630,6 +22642,10 @@ declare const VDataTableVirtual: {
22630
22642
  type: (StringConstructor | NumberConstructor)[];
22631
22643
  default: null;
22632
22644
  };
22645
+ itemKey: {
22646
+ type: vue.PropType<SelectItemKey>;
22647
+ default: null;
22648
+ };
22633
22649
  height: (StringConstructor | NumberConstructor)[];
22634
22650
  groupBy: {
22635
22651
  type: vue.PropType<readonly SortItem[]>;
@@ -55463,6 +55479,7 @@ declare const VVirtualScroll: {
55463
55479
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
55464
55480
  style: vue.StyleValue;
55465
55481
  itemHeight: string | number;
55482
+ itemKey: SelectItemKey;
55466
55483
  } & {
55467
55484
  height?: string | number | undefined;
55468
55485
  width?: string | number | undefined;
@@ -55477,6 +55494,7 @@ declare const VVirtualScroll: {
55477
55494
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "v-slot:default" | "items" | "renderless">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
55478
55495
  style: vue.StyleValue;
55479
55496
  itemHeight: string | number;
55497
+ itemKey: SelectItemKey;
55480
55498
  }, true, {}, vue.SlotsType<Partial<{
55481
55499
  default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
55482
55500
  itemRef: Ref<HTMLElement | undefined>;
@@ -55491,6 +55509,7 @@ declare const VVirtualScroll: {
55491
55509
  }, {
55492
55510
  style: vue.StyleValue;
55493
55511
  itemHeight: string | number;
55512
+ itemKey: SelectItemKey;
55494
55513
  } & {
55495
55514
  height?: string | number | undefined;
55496
55515
  width?: string | number | undefined;
@@ -55505,6 +55524,7 @@ declare const VVirtualScroll: {
55505
55524
  }, {}, {}, {}, {
55506
55525
  style: vue.StyleValue;
55507
55526
  itemHeight: string | number;
55527
+ itemKey: SelectItemKey;
55508
55528
  }>;
55509
55529
  __isFragment?: never;
55510
55530
  __isTeleport?: never;
@@ -55512,6 +55532,7 @@ declare const VVirtualScroll: {
55512
55532
  } & vue.ComponentOptionsBase<{
55513
55533
  style: vue.StyleValue;
55514
55534
  itemHeight: string | number;
55535
+ itemKey: SelectItemKey;
55515
55536
  } & {
55516
55537
  height?: string | number | undefined;
55517
55538
  width?: string | number | undefined;
@@ -55526,6 +55547,7 @@ declare const VVirtualScroll: {
55526
55547
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "v-slot:default" | "items" | "renderless">, string, {
55527
55548
  style: vue.StyleValue;
55528
55549
  itemHeight: string | number;
55550
+ itemKey: SelectItemKey;
55529
55551
  }, {}, string, vue.SlotsType<Partial<{
55530
55552
  default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
55531
55553
  itemRef: Ref<HTMLElement | undefined>;
@@ -55553,6 +55575,10 @@ declare const VVirtualScroll: {
55553
55575
  type: (StringConstructor | NumberConstructor)[];
55554
55576
  default: null;
55555
55577
  };
55578
+ itemKey: {
55579
+ type: PropType<SelectItemKey>;
55580
+ default: null;
55581
+ };
55556
55582
  items: {
55557
55583
  type: PropType<readonly unknown[]>;
55558
55584
  default: () => never[];
@@ -55574,6 +55600,10 @@ declare const VVirtualScroll: {
55574
55600
  type: (StringConstructor | NumberConstructor)[];
55575
55601
  default: null;
55576
55602
  };
55603
+ itemKey: {
55604
+ type: PropType<SelectItemKey>;
55605
+ default: null;
55606
+ };
55577
55607
  items: {
55578
55608
  type: PropType<readonly unknown[]>;
55579
55609
  default: () => never[];
@@ -57925,49 +57955,41 @@ declare module 'vue' {
57925
57955
  $children?: VNodeChild
57926
57956
  }
57927
57957
  export interface GlobalComponents {
57958
+ VAvatar: typeof import('vuetify/components')['VAvatar']
57959
+ VApp: typeof import('vuetify/components')['VApp']
57928
57960
  VAlert: typeof import('vuetify/components')['VAlert']
57929
57961
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
57930
57962
  VAppBar: typeof import('vuetify/components')['VAppBar']
57931
57963
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
57932
57964
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
57933
57965
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
57966
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
57967
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
57934
57968
  VBadge: typeof import('vuetify/components')['VBadge']
57935
- VApp: typeof import('vuetify/components')['VApp']
57936
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
57937
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
57938
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
57939
- VAvatar: typeof import('vuetify/components')['VAvatar']
57969
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
57940
57970
  VBanner: typeof import('vuetify/components')['VBanner']
57941
57971
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
57942
57972
  VBannerText: typeof import('vuetify/components')['VBannerText']
57943
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
57944
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
57945
- VBtn: typeof import('vuetify/components')['VBtn']
57973
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
57974
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
57975
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
57946
57976
  VCard: typeof import('vuetify/components')['VCard']
57947
57977
  VCardActions: typeof import('vuetify/components')['VCardActions']
57948
57978
  VCardItem: typeof import('vuetify/components')['VCardItem']
57949
57979
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
57950
57980
  VCardText: typeof import('vuetify/components')['VCardText']
57951
57981
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
57982
+ VBtn: typeof import('vuetify/components')['VBtn']
57952
57983
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
57984
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
57985
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
57986
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
57987
+ VCode: typeof import('vuetify/components')['VCode']
57953
57988
  VChip: typeof import('vuetify/components')['VChip']
57954
57989
  VCarousel: typeof import('vuetify/components')['VCarousel']
57955
57990
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
57956
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
57957
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
57958
- VCode: typeof import('vuetify/components')['VCode']
57959
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
57960
57991
  VCombobox: typeof import('vuetify/components')['VCombobox']
57961
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
57962
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
57963
- VDivider: typeof import('vuetify/components')['VDivider']
57964
- VCounter: typeof import('vuetify/components')['VCounter']
57965
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
57966
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
57967
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
57968
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
57969
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
57970
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
57992
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
57971
57993
  VDataTable: typeof import('vuetify/components')['VDataTable']
57972
57994
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
57973
57995
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -57975,20 +57997,29 @@ declare module 'vue' {
57975
57997
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
57976
57998
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
57977
57999
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
58000
+ VCounter: typeof import('vuetify/components')['VCounter']
58001
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
58002
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
58003
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
58004
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
58005
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
58006
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
57978
58007
  VDialog: typeof import('vuetify/components')['VDialog']
57979
- VFileInput: typeof import('vuetify/components')['VFileInput']
57980
- VFab: typeof import('vuetify/components')['VFab']
57981
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
58008
+ VDivider: typeof import('vuetify/components')['VDivider']
57982
58009
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
57983
58010
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
57984
58011
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
57985
58012
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
57986
- VFooter: typeof import('vuetify/components')['VFooter']
58013
+ VFab: typeof import('vuetify/components')['VFab']
58014
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
57987
58015
  VField: typeof import('vuetify/components')['VField']
57988
58016
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
57989
- VImg: typeof import('vuetify/components')['VImg']
58017
+ VFooter: typeof import('vuetify/components')['VFooter']
58018
+ VFileInput: typeof import('vuetify/components')['VFileInput']
57990
58019
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
57991
58020
  VInput: typeof import('vuetify/components')['VInput']
58021
+ VLabel: typeof import('vuetify/components')['VLabel']
58022
+ VImg: typeof import('vuetify/components')['VImg']
57992
58023
  VIcon: typeof import('vuetify/components')['VIcon']
57993
58024
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
57994
58025
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -57996,10 +58027,9 @@ declare module 'vue' {
57996
58027
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
57997
58028
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
57998
58029
  VItem: typeof import('vuetify/components')['VItem']
57999
- VMain: typeof import('vuetify/components')['VMain']
58000
- VLabel: typeof import('vuetify/components')['VLabel']
58001
58030
  VKbd: typeof import('vuetify/components')['VKbd']
58002
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
58031
+ VMain: typeof import('vuetify/components')['VMain']
58032
+ VMenu: typeof import('vuetify/components')['VMenu']
58003
58033
  VList: typeof import('vuetify/components')['VList']
58004
58034
  VListGroup: typeof import('vuetify/components')['VListGroup']
58005
58035
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -58009,23 +58039,22 @@ declare module 'vue' {
58009
58039
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
58010
58040
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
58011
58041
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
58042
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
58012
58043
  VMessages: typeof import('vuetify/components')['VMessages']
58013
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
58014
- VMenu: typeof import('vuetify/components')['VMenu']
58015
58044
  VOverlay: typeof import('vuetify/components')['VOverlay']
58045
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
58016
58046
  VPagination: typeof import('vuetify/components')['VPagination']
58017
58047
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
58018
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
58019
58048
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
58020
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
58021
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
58022
58049
  VRating: typeof import('vuetify/components')['VRating']
58023
- VSheet: typeof import('vuetify/components')['VSheet']
58050
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
58051
+ VSelect: typeof import('vuetify/components')['VSelect']
58024
58052
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
58025
58053
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
58026
- VSlider: typeof import('vuetify/components')['VSlider']
58027
- VSelect: typeof import('vuetify/components')['VSelect']
58054
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
58028
58055
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
58056
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
58057
+ VSlider: typeof import('vuetify/components')['VSlider']
58029
58058
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
58030
58059
  VSwitch: typeof import('vuetify/components')['VSwitch']
58031
58060
  VTable: typeof import('vuetify/components')['VTable']
@@ -58035,39 +58064,39 @@ declare module 'vue' {
58035
58064
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
58036
58065
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
58037
58066
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
58038
- VTextarea: typeof import('vuetify/components')['VTextarea']
58039
58067
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
58040
- VTextField: typeof import('vuetify/components')['VTextField']
58041
58068
  VTab: typeof import('vuetify/components')['VTab']
58042
58069
  VTabs: typeof import('vuetify/components')['VTabs']
58043
58070
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
58044
58071
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
58045
- VTooltip: typeof import('vuetify/components')['VTooltip']
58072
+ VSheet: typeof import('vuetify/components')['VSheet']
58073
+ VTextarea: typeof import('vuetify/components')['VTextarea']
58074
+ VTimeline: typeof import('vuetify/components')['VTimeline']
58075
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
58076
+ VTextField: typeof import('vuetify/components')['VTextField']
58077
+ VWindow: typeof import('vuetify/components')['VWindow']
58078
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
58046
58079
  VToolbar: typeof import('vuetify/components')['VToolbar']
58047
58080
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
58048
58081
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
58049
- VWindow: typeof import('vuetify/components')['VWindow']
58050
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
58051
- VTimeline: typeof import('vuetify/components')['VTimeline']
58052
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
58082
+ VTooltip: typeof import('vuetify/components')['VTooltip']
58053
58083
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
58054
58084
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
58055
58085
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
58056
58086
  VForm: typeof import('vuetify/components')['VForm']
58087
+ VHover: typeof import('vuetify/components')['VHover']
58057
58088
  VContainer: typeof import('vuetify/components')['VContainer']
58058
58089
  VCol: typeof import('vuetify/components')['VCol']
58059
58090
  VRow: typeof import('vuetify/components')['VRow']
58060
58091
  VSpacer: typeof import('vuetify/components')['VSpacer']
58061
58092
  VLayout: typeof import('vuetify/components')['VLayout']
58062
58093
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
58063
- VHover: typeof import('vuetify/components')['VHover']
58064
58094
  VLazy: typeof import('vuetify/components')['VLazy']
58065
58095
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
58066
58096
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
58067
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
58068
58097
  VParallax: typeof import('vuetify/components')['VParallax']
58098
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
58069
58099
  VRadio: typeof import('vuetify/components')['VRadio']
58070
- VResponsive: typeof import('vuetify/components')['VResponsive']
58071
58100
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
58072
58101
  VSparkline: typeof import('vuetify/components')['VSparkline']
58073
58102
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
@@ -58089,6 +58118,9 @@ declare module 'vue' {
58089
58118
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
58090
58119
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
58091
58120
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
58121
+ VResponsive: typeof import('vuetify/components')['VResponsive']
58122
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
58123
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
58092
58124
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
58093
58125
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
58094
58126
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -58096,19 +58128,17 @@ declare module 'vue' {
58096
58128
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
58097
58129
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
58098
58130
  VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
58099
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
58100
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
58101
58131
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
58102
58132
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
58103
58133
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
58134
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
58135
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
58104
58136
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
58105
58137
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
58106
58138
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
58107
58139
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
58108
58140
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
58109
58141
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
58110
- VPicker: typeof import('vuetify/labs/components')['VPicker']
58111
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
58112
58142
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
58113
58143
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
58114
58144
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.6-dev.2024-12-18
2
+ * Vuetify v3.7.6-dev.2025-01-06
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -2785,7 +2785,8 @@ function genDefaults$1() {
2785
2785
  'theme-on-code': '#CCCCCC'
2786
2786
  }
2787
2787
  }
2788
- }
2788
+ },
2789
+ stylesheetId: 'vuetify-theme-stylesheet'
2789
2790
  };
2790
2791
  }
2791
2792
  function parseThemeOptions() {
@@ -2842,6 +2843,19 @@ function createTheme(options) {
2842
2843
  return acc;
2843
2844
  });
2844
2845
  const current = computed(() => computedThemes.value[name.value]);
2846
+ function createCssClass(lines, selector, content) {
2847
+ lines.push(`${getScopedSelector(selector)} {\n`, ...content.map(line => ` ${line};\n`), '}\n');
2848
+ }
2849
+ function getScopedSelector(selector) {
2850
+ if (!parsedOptions.scope) {
2851
+ return selector;
2852
+ }
2853
+ const scopeSelector = `:where(${parsedOptions.scope})`;
2854
+ if (selector === ':root') {
2855
+ return scopeSelector;
2856
+ }
2857
+ return `${scopeSelector} ${selector}`;
2858
+ }
2845
2859
  const styles = computed(() => {
2846
2860
  const lines = [];
2847
2861
  if (current.value?.dark) {
@@ -2870,7 +2884,7 @@ function createTheme(options) {
2870
2884
  return {
2871
2885
  style: [{
2872
2886
  children: styles.value,
2873
- id: 'vuetify-theme-stylesheet',
2887
+ id: parsedOptions.stylesheetId,
2874
2888
  nonce: parsedOptions.cspNonce || false
2875
2889
  }]
2876
2890
  };
@@ -2895,7 +2909,7 @@ function createTheme(options) {
2895
2909
  }
2896
2910
  }
2897
2911
  } else {
2898
- let styleEl = IN_BROWSER ? document.getElementById('vuetify-theme-stylesheet') : null;
2912
+ let styleEl = IN_BROWSER ? document.getElementById(parsedOptions.stylesheetId) : null;
2899
2913
  if (IN_BROWSER) {
2900
2914
  watch(styles, updateStyles, {
2901
2915
  immediate: true
@@ -2907,7 +2921,7 @@ function createTheme(options) {
2907
2921
  if (typeof document !== 'undefined' && !styleEl) {
2908
2922
  const el = document.createElement('style');
2909
2923
  el.type = 'text/css';
2910
- el.id = 'vuetify-theme-stylesheet';
2924
+ el.id = parsedOptions.stylesheetId;
2911
2925
  if (parsedOptions.cspNonce) el.setAttribute('nonce', parsedOptions.cspNonce);
2912
2926
  styleEl = el;
2913
2927
  document.head.appendChild(styleEl);
@@ -2956,9 +2970,6 @@ function useTheme() {
2956
2970
  if (!theme) throw new Error('Could not find Vuetify theme injection');
2957
2971
  return theme;
2958
2972
  }
2959
- function createCssClass(lines, selector, content) {
2960
- lines.push(`${selector} {\n`, ...content.map(line => ` ${line};\n`), '}\n');
2961
- }
2962
2973
  function genCssVariables(theme) {
2963
2974
  const lightOverlay = theme.dark ? 2 : 1;
2964
2975
  const darkOverlay = theme.dark ? 1 : 2;
@@ -12196,6 +12207,10 @@ const makeVirtualProps = propsFactory({
12196
12207
  type: [Number, String],
12197
12208
  default: null
12198
12209
  },
12210
+ itemKey: {
12211
+ type: [String, Array, Function],
12212
+ default: null
12213
+ },
12199
12214
  height: [Number, String]
12200
12215
  }, 'virtual');
12201
12216
  function useVirtual(props, items) {
@@ -12374,11 +12389,14 @@ function useVirtual(props, items) {
12374
12389
  }
12375
12390
  }
12376
12391
  const computedItems = computed(() => {
12377
- return items.value.slice(first.value, last.value).map((item, index) => ({
12378
- raw: item,
12379
- index: index + first.value,
12380
- key: isObject(item) && 'value' in item ? item.value : index + first.value
12381
- }));
12392
+ return items.value.slice(first.value, last.value).map((item, index) => {
12393
+ const _index = index + first.value;
12394
+ return {
12395
+ raw: item,
12396
+ index: _index,
12397
+ key: getPropertyFromItem(item, props.itemKey, _index)
12398
+ };
12399
+ });
12382
12400
  });
12383
12401
  watch(items, () => {
12384
12402
  sizes = Array.from({
@@ -12896,7 +12914,8 @@ const VSelect = genericComponent()({
12896
12914
  }, null)), createVNode(VVirtualScroll, {
12897
12915
  "ref": vVirtualScrollRef,
12898
12916
  "renderless": true,
12899
- "items": displayItems.value
12917
+ "items": displayItems.value,
12918
+ "itemKey": "value"
12900
12919
  }, {
12901
12920
  default: _ref2 => {
12902
12921
  let {
@@ -13471,7 +13490,8 @@ const VAutocomplete = genericComponent()({
13471
13490
  }, null)), createVNode(VVirtualScroll, {
13472
13491
  "ref": vVirtualScrollRef,
13473
13492
  "renderless": true,
13474
- "items": displayItems.value
13493
+ "items": displayItems.value,
13494
+ "itemKey": "value"
13475
13495
  }, {
13476
13496
  default: _ref4 => {
13477
13497
  let {
@@ -17351,7 +17371,8 @@ const VCombobox = genericComponent()({
17351
17371
  }, null)), createVNode(VVirtualScroll, {
17352
17372
  "ref": vVirtualScrollRef,
17353
17373
  "renderless": true,
17354
- "items": displayItems.value
17374
+ "items": displayItems.value,
17375
+ "itemKey": "value"
17355
17376
  }, {
17356
17377
  default: _ref4 => {
17357
17378
  let {
@@ -28282,7 +28303,7 @@ function createVuetify$1() {
28282
28303
  goTo
28283
28304
  };
28284
28305
  }
28285
- const version$1 = "3.7.6-dev.2024-12-18";
28306
+ const version$1 = "3.7.6-dev.2025-01-06";
28286
28307
  createVuetify$1.version = version$1;
28287
28308
 
28288
28309
  // Vue's inject() can only be used in setup
@@ -28307,7 +28328,7 @@ const createVuetify = function () {
28307
28328
  ...options
28308
28329
  });
28309
28330
  };
28310
- const version = "3.7.6-dev.2024-12-18";
28331
+ const version = "3.7.6-dev.2025-01-06";
28311
28332
  createVuetify.version = version;
28312
28333
 
28313
28334
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };