@vuetify/nightly 3.4.10-dev.2024-01-16 → 3.4.10-dev.2024-01-18

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 (53) hide show
  1. package/CHANGELOG.md +5 -2
  2. package/dist/json/attributes.json +12 -0
  3. package/dist/json/importMap-labs.json +8 -8
  4. package/dist/json/importMap.json +110 -110
  5. package/dist/json/tags.json +3 -0
  6. package/dist/json/web-types.json +103 -1
  7. package/dist/vuetify-labs.css +1363 -1360
  8. package/dist/vuetify-labs.d.ts +39 -2
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +631 -630
  14. package/dist/vuetify.d.ts +73 -36
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAlert/VAlert.css +2 -2
  23. package/lib/components/VAlert/_variables.scss +2 -2
  24. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  26. package/lib/components/VCombobox/VCombobox.css +1 -1
  27. package/lib/components/VCombobox/VCombobox.sass +1 -1
  28. package/lib/components/VDataTable/VDataTable.css +2 -1
  29. package/lib/components/VDataTable/VDataTable.sass +2 -1
  30. package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -2
  31. package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
  32. package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
  33. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  34. package/lib/components/VDataTable/index.d.mts +39 -2
  35. package/lib/components/VSlider/VSliderTrack.css +1 -1
  36. package/lib/components/VSlider/VSliderTrack.sass +1 -1
  37. package/lib/components/VSlider/_variables.scss +1 -0
  38. package/lib/components/VSystemBar/VSystemBar.css +2 -2
  39. package/lib/components/VSystemBar/_variables.scss +2 -2
  40. package/lib/components/VTimeline/VTimeline.css +1 -1
  41. package/lib/components/VTimeline/_variables.scss +1 -1
  42. package/lib/components/VToolbar/VToolbar.css +2 -2
  43. package/lib/components/VToolbar/_variables.scss +2 -2
  44. package/lib/components/index.d.mts +39 -2
  45. package/lib/composables/theme.mjs +2 -0
  46. package/lib/composables/theme.mjs.map +1 -1
  47. package/lib/entry-bundler.mjs +1 -1
  48. package/lib/framework.mjs +1 -1
  49. package/lib/index.d.mts +34 -34
  50. package/lib/labs/VCalendar/VCalendar.css +4 -2
  51. package/lib/labs/VCalendar/VCalendar.sass +4 -2
  52. package/lib/labs/VCalendar/_variables.scss +5 -0
  53. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -23142,6 +23142,7 @@ declare const VDataTable: {
23142
23142
  customKeyFilter?: FilterKeyFunctions | undefined;
23143
23143
  filterKeys?: FilterKeys | undefined;
23144
23144
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23145
+ headerProps?: Record<string, any> | undefined;
23145
23146
  } & {
23146
23147
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23147
23148
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23234,6 +23235,7 @@ declare const VDataTable: {
23234
23235
  customKeyFilter?: FilterKeyFunctions | undefined;
23235
23236
  filterKeys?: FilterKeys | undefined;
23236
23237
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23238
+ headerProps?: Record<string, any> | undefined;
23237
23239
  } & {
23238
23240
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23239
23241
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23491,6 +23493,7 @@ declare const VDataTable: {
23491
23493
  customKeyFilter?: FilterKeyFunctions | undefined;
23492
23494
  filterKeys?: FilterKeys | undefined;
23493
23495
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23496
+ headerProps?: Record<string, any> | undefined;
23494
23497
  } & {
23495
23498
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23496
23499
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23621,6 +23624,7 @@ declare const VDataTable: {
23621
23624
  customKeyFilter?: FilterKeyFunctions | undefined;
23622
23625
  filterKeys?: FilterKeys | undefined;
23623
23626
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
23627
+ headerProps?: Record<string, any> | undefined;
23624
23628
  } & {
23625
23629
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
23626
23630
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -23912,6 +23916,9 @@ declare const VDataTable: {
23912
23916
  type: vue.PropType<IconValue>;
23913
23917
  default: string;
23914
23918
  };
23919
+ headerProps: {
23920
+ type: vue.PropType<Record<string, any>>;
23921
+ };
23915
23922
  sortBy: {
23916
23923
  type: vue.PropType<readonly SortItem[]>;
23917
23924
  default: () => never[];
@@ -24086,6 +24093,9 @@ declare const VDataTable: {
24086
24093
  type: vue.PropType<IconValue>;
24087
24094
  default: string;
24088
24095
  };
24096
+ headerProps: {
24097
+ type: vue.PropType<Record<string, any>>;
24098
+ };
24089
24099
  sortBy: {
24090
24100
  type: vue.PropType<readonly SortItem[]>;
24091
24101
  default: () => never[];
@@ -24448,6 +24458,7 @@ declare const VDataTableFooter: {
24448
24458
 
24449
24459
  type VDataTableVirtualSlotProps<T> = Omit<VDataTableSlotProps<T>, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>;
24450
24460
  type VDataTableVirtualSlots<T> = VDataTableRowsSlots<T> & VDataTableHeadersSlots & {
24461
+ colgroup: VDataTableVirtualSlotProps<T>;
24451
24462
  top: VDataTableVirtualSlotProps<T>;
24452
24463
  headers: VDataTableHeadersSlots['headers'];
24453
24464
  bottom: VDataTableVirtualSlotProps<T>;
@@ -24518,6 +24529,7 @@ declare const VDataTableVirtual: {
24518
24529
  customKeyFilter?: FilterKeyFunctions | undefined;
24519
24530
  filterKeys?: FilterKeys | undefined;
24520
24531
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24532
+ headerProps?: Record<string, any> | undefined;
24521
24533
  } & {
24522
24534
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24523
24535
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24529,7 +24541,7 @@ declare const VDataTableVirtual: {
24529
24541
  'update:options': (value: any) => boolean;
24530
24542
  'update:groupBy': (value: any) => boolean;
24531
24543
  'update:expanded': (value: any) => boolean;
24532
- }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
24544
+ }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
24533
24545
  style: vue.StyleValue;
24534
24546
  expanded: readonly string[];
24535
24547
  tag: string;
@@ -24588,6 +24600,7 @@ declare const VDataTableVirtual: {
24588
24600
  customKeyFilter?: FilterKeyFunctions | undefined;
24589
24601
  filterKeys?: FilterKeys | undefined;
24590
24602
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24603
+ headerProps?: Record<string, any> | undefined;
24591
24604
  } & {
24592
24605
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24593
24606
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24713,6 +24726,9 @@ declare const VDataTableVirtual: {
24713
24726
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24714
24727
  [key: string]: any;
24715
24728
  }>[];
24729
+ colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24730
+ [key: string]: any;
24731
+ }>[];
24716
24732
  top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24717
24733
  [key: string]: any;
24718
24734
  }>[];
@@ -24791,6 +24807,7 @@ declare const VDataTableVirtual: {
24791
24807
  customKeyFilter?: FilterKeyFunctions | undefined;
24792
24808
  filterKeys?: FilterKeys | undefined;
24793
24809
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24810
+ headerProps?: Record<string, any> | undefined;
24794
24811
  } & {
24795
24812
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24796
24813
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24886,6 +24903,7 @@ declare const VDataTableVirtual: {
24886
24903
  customKeyFilter?: FilterKeyFunctions | undefined;
24887
24904
  filterKeys?: FilterKeys | undefined;
24888
24905
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
24906
+ headerProps?: Record<string, any> | undefined;
24889
24907
  } & {
24890
24908
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
24891
24909
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -24897,7 +24915,7 @@ declare const VDataTableVirtual: {
24897
24915
  'update:options': (value: any) => boolean;
24898
24916
  'update:groupBy': (value: any) => boolean;
24899
24917
  'update:expanded': (value: any) => boolean;
24900
- }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
24918
+ }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
24901
24919
  style: vue.StyleValue;
24902
24920
  expanded: readonly string[];
24903
24921
  tag: string;
@@ -25017,6 +25035,9 @@ declare const VDataTableVirtual: {
25017
25035
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
25018
25036
  [key: string]: any;
25019
25037
  }>[];
25038
+ colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
25039
+ [key: string]: any;
25040
+ }>[];
25020
25041
  top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
25021
25042
  [key: string]: any;
25022
25043
  }>[];
@@ -25093,6 +25114,9 @@ declare const VDataTableVirtual: {
25093
25114
  type: vue.PropType<IconValue>;
25094
25115
  default: string;
25095
25116
  };
25117
+ headerProps: {
25118
+ type: vue.PropType<Record<string, any>>;
25119
+ };
25096
25120
  sortBy: {
25097
25121
  type: vue.PropType<readonly SortItem[]>;
25098
25122
  default: () => never[];
@@ -25212,6 +25236,9 @@ declare const VDataTableVirtual: {
25212
25236
  type: vue.PropType<IconValue>;
25213
25237
  default: string;
25214
25238
  };
25239
+ headerProps: {
25240
+ type: vue.PropType<Record<string, any>>;
25241
+ };
25215
25242
  sortBy: {
25216
25243
  type: vue.PropType<readonly SortItem[]>;
25217
25244
  default: () => never[];
@@ -25359,6 +25386,7 @@ declare const VDataTableServer: {
25359
25386
  }[] | undefined;
25360
25387
  theme?: string | undefined;
25361
25388
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25389
+ headerProps?: Record<string, any> | undefined;
25362
25390
  } & {
25363
25391
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25364
25392
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25445,6 +25473,7 @@ declare const VDataTableServer: {
25445
25473
  }[] | undefined;
25446
25474
  theme?: string | undefined;
25447
25475
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25476
+ headerProps?: Record<string, any> | undefined;
25448
25477
  } & {
25449
25478
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25450
25479
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25695,6 +25724,7 @@ declare const VDataTableServer: {
25695
25724
  }[] | undefined;
25696
25725
  theme?: string | undefined;
25697
25726
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25727
+ headerProps?: Record<string, any> | undefined;
25698
25728
  } & {
25699
25729
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25700
25730
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -25818,6 +25848,7 @@ declare const VDataTableServer: {
25818
25848
  }[] | undefined;
25819
25849
  theme?: string | undefined;
25820
25850
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
25851
+ headerProps?: Record<string, any> | undefined;
25821
25852
  } & {
25822
25853
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
25823
25854
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -26097,6 +26128,9 @@ declare const VDataTableServer: {
26097
26128
  type: vue.PropType<IconValue>;
26098
26129
  default: string;
26099
26130
  };
26131
+ headerProps: {
26132
+ type: vue.PropType<Record<string, any>>;
26133
+ };
26100
26134
  sortBy: {
26101
26135
  type: vue.PropType<readonly SortItem[]>;
26102
26136
  default: () => never[];
@@ -26267,6 +26301,9 @@ declare const VDataTableServer: {
26267
26301
  type: vue.PropType<IconValue>;
26268
26302
  default: string;
26269
26303
  };
26304
+ headerProps: {
26305
+ type: vue.PropType<Record<string, any>>;
26306
+ };
26270
26307
  sortBy: {
26271
26308
  type: vue.PropType<readonly SortItem[]>;
26272
26309
  default: () => never[];
@@ -67103,77 +67140,76 @@ declare module '@vue/runtime-core' {
67103
67140
  }
67104
67141
 
67105
67142
  export interface GlobalComponents {
67143
+ VApp: typeof import('vuetify/components')['VApp']
67106
67144
  VAppBar: typeof import('vuetify/components')['VAppBar']
67107
67145
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67108
67146
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67109
67147
  VAlert: typeof import('vuetify/components')['VAlert']
67110
67148
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67111
- VApp: typeof import('vuetify/components')['VApp']
67112
- VBadge: typeof import('vuetify/components')['VBadge']
67149
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67113
67150
  VAvatar: typeof import('vuetify/components')['VAvatar']
67114
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67151
+ VBadge: typeof import('vuetify/components')['VBadge']
67115
67152
  VBanner: typeof import('vuetify/components')['VBanner']
67116
67153
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67117
67154
  VBannerText: typeof import('vuetify/components')['VBannerText']
67118
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67155
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67119
67156
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67120
- VBtn: typeof import('vuetify/components')['VBtn']
67121
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67122
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67123
67157
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67124
67158
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67125
67159
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67160
+ VBtn: typeof import('vuetify/components')['VBtn']
67161
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67162
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67126
67163
  VCard: typeof import('vuetify/components')['VCard']
67127
67164
  VCardActions: typeof import('vuetify/components')['VCardActions']
67128
67165
  VCardItem: typeof import('vuetify/components')['VCardItem']
67129
67166
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67130
67167
  VCardText: typeof import('vuetify/components')['VCardText']
67131
67168
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67132
- VCode: typeof import('vuetify/components')['VCode']
67169
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
67170
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67133
67171
  VCarousel: typeof import('vuetify/components')['VCarousel']
67134
67172
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67135
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
67173
+ VChip: typeof import('vuetify/components')['VChip']
67136
67174
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
67137
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
67138
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67175
+ VCode: typeof import('vuetify/components')['VCode']
67176
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
67139
67177
  VCombobox: typeof import('vuetify/components')['VCombobox']
67178
+ VDataTable: typeof import('vuetify/components')['VDataTable']
67179
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67180
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67181
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67182
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67183
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67140
67184
  VCounter: typeof import('vuetify/components')['VCounter']
67141
- VChip: typeof import('vuetify/components')['VChip']
67142
67185
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67143
67186
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67144
67187
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67145
67188
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67146
67189
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67147
67190
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67148
- VDataTable: typeof import('vuetify/components')['VDataTable']
67149
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67150
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67151
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67152
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67153
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67154
67191
  VDialog: typeof import('vuetify/components')['VDialog']
67155
67192
  VDivider: typeof import('vuetify/components')['VDivider']
67156
- VFooter: typeof import('vuetify/components')['VFooter']
67157
67193
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67158
67194
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67159
67195
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67160
67196
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67161
- VFileInput: typeof import('vuetify/components')['VFileInput']
67162
67197
  VField: typeof import('vuetify/components')['VField']
67163
67198
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67199
+ VFooter: typeof import('vuetify/components')['VFooter']
67200
+ VFileInput: typeof import('vuetify/components')['VFileInput']
67164
67201
  VIcon: typeof import('vuetify/components')['VIcon']
67165
67202
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67166
67203
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67167
67204
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67168
67205
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67169
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67170
67206
  VImg: typeof import('vuetify/components')['VImg']
67207
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67171
67208
  VInput: typeof import('vuetify/components')['VInput']
67172
67209
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
67173
67210
  VItem: typeof import('vuetify/components')['VItem']
67174
- VLabel: typeof import('vuetify/components')['VLabel']
67175
- VMain: typeof import('vuetify/components')['VMain']
67176
67211
  VKbd: typeof import('vuetify/components')['VKbd']
67212
+ VLabel: typeof import('vuetify/components')['VLabel']
67177
67213
  VList: typeof import('vuetify/components')['VList']
67178
67214
  VListGroup: typeof import('vuetify/components')['VListGroup']
67179
67215
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67183,24 +67219,26 @@ declare module '@vue/runtime-core' {
67183
67219
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67184
67220
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67185
67221
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67222
+ VMain: typeof import('vuetify/components')['VMain']
67186
67223
  VMenu: typeof import('vuetify/components')['VMenu']
67187
67224
  VMessages: typeof import('vuetify/components')['VMessages']
67188
67225
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67189
67226
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
67190
67227
  VOverlay: typeof import('vuetify/components')['VOverlay']
67191
67228
  VPagination: typeof import('vuetify/components')['VPagination']
67192
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67193
67229
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67230
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67194
67231
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67195
- VSelect: typeof import('vuetify/components')['VSelect']
67196
- VSheet: typeof import('vuetify/components')['VSheet']
67197
67232
  VRating: typeof import('vuetify/components')['VRating']
67233
+ VSelect: typeof import('vuetify/components')['VSelect']
67198
67234
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67199
67235
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67236
+ VSheet: typeof import('vuetify/components')['VSheet']
67237
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67200
67238
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67201
67239
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67202
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67203
67240
  VSlider: typeof import('vuetify/components')['VSlider']
67241
+ VSwitch: typeof import('vuetify/components')['VSwitch']
67204
67242
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
67205
67243
  VStepper: typeof import('vuetify/components')['VStepper']
67206
67244
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -67208,15 +67246,14 @@ declare module '@vue/runtime-core' {
67208
67246
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
67209
67247
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
67210
67248
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67249
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
67211
67250
  VTabs: typeof import('vuetify/components')['VTabs']
67212
67251
  VTab: typeof import('vuetify/components')['VTab']
67213
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
67214
- VSwitch: typeof import('vuetify/components')['VSwitch']
67215
- VTextField: typeof import('vuetify/components')['VTextField']
67252
+ VTable: typeof import('vuetify/components')['VTable']
67216
67253
  VTextarea: typeof import('vuetify/components')['VTextarea']
67254
+ VTextField: typeof import('vuetify/components')['VTextField']
67217
67255
  VTimeline: typeof import('vuetify/components')['VTimeline']
67218
67256
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67219
- VTable: typeof import('vuetify/components')['VTable']
67220
67257
  VToolbar: typeof import('vuetify/components')['VToolbar']
67221
67258
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67222
67259
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
@@ -67231,9 +67268,9 @@ declare module '@vue/runtime-core' {
67231
67268
  VRow: typeof import('vuetify/components')['VRow']
67232
67269
  VSpacer: typeof import('vuetify/components')['VSpacer']
67233
67270
  VHover: typeof import('vuetify/components')['VHover']
67234
- VLazy: typeof import('vuetify/components')['VLazy']
67235
67271
  VLayout: typeof import('vuetify/components')['VLayout']
67236
67272
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67273
+ VLazy: typeof import('vuetify/components')['VLazy']
67237
67274
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67238
67275
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
67239
67276
  VParallax: typeof import('vuetify/components')['VParallax']
@@ -67259,14 +67296,14 @@ declare module '@vue/runtime-core' {
67259
67296
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
67260
67297
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
67261
67298
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
67262
- VPicker: typeof import('vuetify/labs/components')['VPicker']
67263
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67264
67299
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
67265
67300
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
67266
67301
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
67267
67302
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
67268
67303
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
67269
67304
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
67305
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
67306
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67270
67307
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
67271
67308
  }
67272
67309
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.10-dev.2024-01-16
2
+ * Vuetify v3.4.10-dev.2024-01-18
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -2245,6 +2245,7 @@ function genDefaults() {
2245
2245
  background: '#FFFFFF',
2246
2246
  surface: '#FFFFFF',
2247
2247
  'surface-bright': '#FFFFFF',
2248
+ 'surface-light': '#EEEEEE',
2248
2249
  'surface-variant': '#424242',
2249
2250
  'on-surface-variant': '#EEEEEE',
2250
2251
  primary: '#1867C0',
@@ -2281,6 +2282,7 @@ function genDefaults() {
2281
2282
  background: '#121212',
2282
2283
  surface: '#212121',
2283
2284
  'surface-bright': '#ccbfd6',
2285
+ 'surface-light': '#424242',
2284
2286
  'surface-variant': '#a3a3a3',
2285
2287
  'on-surface-variant': '#424242',
2286
2288
  primary: '#2196F3',
@@ -18621,6 +18623,9 @@ const makeVDataTableHeadersProps = propsFactory({
18621
18623
  type: IconValue,
18622
18624
  default: '$sortDesc'
18623
18625
  },
18626
+ headerProps: {
18627
+ type: Object
18628
+ },
18624
18629
  ...makeLoaderProps()
18625
18630
  }, 'VDataTableHeaders');
18626
18631
  const VDataTableHeaders = genericComponent()({
@@ -18683,6 +18688,7 @@ const VDataTableHeaders = genericComponent()({
18683
18688
  y
18684
18689
  } = _ref2;
18685
18690
  const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand';
18691
+ const headerProps = mergeProps(props.headerProps ?? {}, column.headerProps ?? {});
18686
18692
  return createVNode(VDataTableColumn, mergeProps({
18687
18693
  "tag": "th",
18688
18694
  "align": column.align,
@@ -18703,7 +18709,7 @@ const VDataTableHeaders = genericComponent()({
18703
18709
  "fixed": column.fixed,
18704
18710
  "lastFixed": column.lastFixed,
18705
18711
  "noPadding": noPadding
18706
- }, column.headerProps), {
18712
+ }, headerProps), {
18707
18713
  default: () => {
18708
18714
  const columnSlotName = `header.${column.key}`;
18709
18715
  const columnSlotProps = {
@@ -19493,7 +19499,7 @@ const VDataTableVirtual = genericComponent()({
19493
19499
  "style": {
19494
19500
  height: convertToUnit(props.height)
19495
19501
  }
19496
- }, [createVNode("table", null, [createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
19502
+ }, [createVNode("table", null, [slots.colgroup?.(slotProps.value), createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
19497
19503
  "sticky": props.fixedHeader
19498
19504
  }), slots)]), createVNode("tbody", null, [createVNode("tr", {
19499
19505
  "ref": markerRef,
@@ -25491,7 +25497,7 @@ function createVuetify$1() {
25491
25497
  date
25492
25498
  };
25493
25499
  }
25494
- const version$1 = "3.4.10-dev.2024-01-16";
25500
+ const version$1 = "3.4.10-dev.2024-01-18";
25495
25501
  createVuetify$1.version = version$1;
25496
25502
 
25497
25503
  // Vue's inject() can only be used in setup
@@ -25516,7 +25522,7 @@ const createVuetify = function () {
25516
25522
  ...options
25517
25523
  });
25518
25524
  };
25519
- const version = "3.4.10-dev.2024-01-16";
25525
+ const version = "3.4.10-dev.2024-01-18";
25520
25526
  createVuetify.version = version;
25521
25527
 
25522
25528
  export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };