@vuetify/nightly 3.9.3-dev.2025-08-01 → 3.9.3-dev.2025-08-05

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 (72) hide show
  1. package/CHANGELOG.md +8 -3
  2. package/dist/json/attributes.json +3131 -3115
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +176 -176
  5. package/dist/json/tags.json +4 -0
  6. package/dist/json/web-types.json +5775 -5635
  7. package/dist/vuetify-labs.cjs +63 -21
  8. package/dist/vuetify-labs.css +4060 -4060
  9. package/dist/vuetify-labs.d.ts +156 -76
  10. package/dist/vuetify-labs.esm.js +63 -21
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +63 -21
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +63 -21
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3717 -3717
  17. package/dist/vuetify.d.ts +128 -76
  18. package/dist/vuetify.esm.js +63 -21
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +63 -21
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +298 -292
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataIterator/VDataIterator.d.ts +3 -2
  26. package/lib/components/VDataIterator/VDataIterator.js +2 -1
  27. package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
  28. package/lib/components/VDataTable/VDataTable.d.ts +6 -4
  29. package/lib/components/VDataTable/VDataTable.js +1 -1
  30. package/lib/components/VDataTable/VDataTable.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTableRows.d.ts +14 -11
  32. package/lib/components/VDataTable/VDataTableRows.js +9 -0
  33. package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
  34. package/lib/components/VDataTable/VDataTableServer.d.ts +4 -2
  35. package/lib/components/VDataTable/VDataTableServer.js +1 -1
  36. package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
  37. package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -2
  38. package/lib/components/VDataTable/VDataTableVirtual.js +1 -1
  39. package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
  40. package/lib/components/VDataTable/composables/group.d.ts +13 -5
  41. package/lib/components/VDataTable/composables/group.js +11 -5
  42. package/lib/components/VDataTable/composables/group.js.map +1 -1
  43. package/lib/components/VDataTable/composables/paginate.d.ts +3 -3
  44. package/lib/components/VDataTable/composables/paginate.js.map +1 -1
  45. package/lib/components/VDataTable/types.d.ts +7 -1
  46. package/lib/components/VDataTable/types.js.map +1 -1
  47. package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
  48. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
  49. package/lib/components/VSkeletonLoader/VSkeletonLoader.js +6 -4
  50. package/lib/components/VSkeletonLoader/VSkeletonLoader.js.map +1 -1
  51. package/lib/components/VWindow/VWindow.js +2 -2
  52. package/lib/components/VWindow/VWindow.js.map +1 -1
  53. package/lib/composables/calendar.d.ts +12 -0
  54. package/lib/composables/calendar.js +5 -1
  55. package/lib/composables/calendar.js.map +1 -1
  56. package/lib/composables/date/DateAdapter.d.ts +1 -1
  57. package/lib/composables/date/DateAdapter.js.map +1 -1
  58. package/lib/composables/date/adapters/string.d.ts +1 -1
  59. package/lib/composables/date/adapters/string.js +2 -2
  60. package/lib/composables/date/adapters/string.js.map +1 -1
  61. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  62. package/lib/composables/date/adapters/vuetify.js +25 -5
  63. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  64. package/lib/composables/date/date.d.ts +1 -1
  65. package/lib/entry-bundler.d.ts +1 -1
  66. package/lib/entry-bundler.js +1 -1
  67. package/lib/framework.d.ts +61 -61
  68. package/lib/framework.js +1 -1
  69. package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
  70. package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
  71. package/lib/labs/entry-bundler.d.ts +1 -1
  72. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -39,7 +39,7 @@ interface DateAdapter<T = unknown> {
39
39
  getDiff(date: T, comparing: T | string, unit?: string): number;
40
40
  getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
41
41
  getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
42
- getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
42
+ getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number;
43
43
  getMonth(date: T): number;
44
44
  setMonth(date: T, month: number): T;
45
45
  getDate(date: T): number;
@@ -878,7 +878,15 @@ interface Group<T = any> {
878
878
  id: string;
879
879
  key: string;
880
880
  value: any;
881
- items: readonly (T | Group<T>)[];
881
+ items: readonly (T | Group<T> | GroupSummary<T>)[];
882
+ }
883
+ interface GroupSummary<T = any> {
884
+ type: 'group-summary';
885
+ depth: number;
886
+ id: string;
887
+ key: string;
888
+ value: any;
889
+ items: readonly (T | Group<T> | GroupSummary<T>)[];
882
890
  }
883
891
  declare function provideGroupBy(options: {
884
892
  groupBy: Ref<readonly SortItem[]>;
@@ -889,7 +897,7 @@ declare function provideGroupBy(options: {
889
897
  toggleGroup: (group: Group) => void;
890
898
  opened: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
891
899
  groupBy: Ref<readonly SortItem[], readonly SortItem[]>;
892
- extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>)[]) => T[];
900
+ extractRows: <T extends GroupableItem>(items: readonly (T | Group<T> | GroupSummary<T>)[]) => T[];
893
901
  isGroupOpen: (group: Group) => boolean;
894
902
  };
895
903
 
@@ -995,6 +1003,12 @@ type GroupHeaderSlot = {
995
1003
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
996
1004
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
997
1005
  };
1006
+ type GroupSummarySlot = {
1007
+ index: number;
1008
+ item: GroupSummary;
1009
+ columns: InternalDataTableHeader[];
1010
+ toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
1011
+ };
998
1012
  type ItemSlotBase<T> = {
999
1013
  index: number;
1000
1014
  item: T;
@@ -37790,7 +37804,8 @@ type VDataIteratorSlotProps<T> = {
37790
37804
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
37791
37805
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
37792
37806
  items: readonly DataIteratorItem<T>[];
37793
- groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
37807
+ itemsCount: number;
37808
+ groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>> | GroupSummary<DataIteratorItem<T>>)[];
37794
37809
  };
37795
37810
  type VDataIteratorSlots<T> = {
37796
37811
  default: VDataIteratorSlotProps<T>;
@@ -38811,6 +38826,7 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
38811
38826
  };
38812
38827
  loading: never;
38813
38828
  'group-header': GroupHeaderSlot;
38829
+ 'group-summary': GroupSummarySlot;
38814
38830
  'no-data': never;
38815
38831
  'expanded-row': ItemSlot$1<T>;
38816
38832
  };
@@ -38829,7 +38845,7 @@ declare const VDataTableRows: {
38829
38845
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38830
38846
  cellProps?: CellProps<any> | undefined;
38831
38847
  rowProps?: RowProps<any> | undefined;
38832
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `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">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
38848
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-summary" | "v-slot:group-header" | "v-slot:expanded-row">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
38833
38849
  mobile: boolean | null;
38834
38850
  noDataText: string;
38835
38851
  loadingText: string;
@@ -38868,6 +38884,7 @@ declare const VDataTableRows: {
38868
38884
  }) => vue.VNode[];
38869
38885
  loading: () => vue.VNode[];
38870
38886
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38887
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38871
38888
  'no-data': () => vue.VNode[];
38872
38889
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38873
38890
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
@@ -38918,7 +38935,7 @@ declare const VDataTableRows: {
38918
38935
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38919
38936
  cellProps?: CellProps<any> | undefined;
38920
38937
  rowProps?: RowProps<any> | undefined;
38921
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `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">, string, {
38938
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-summary" | "v-slot:group-header" | "v-slot:expanded-row">, string, {
38922
38939
  mobile: boolean | null;
38923
38940
  noDataText: string;
38924
38941
  loadingText: string;
@@ -38957,10 +38974,11 @@ declare const VDataTableRows: {
38957
38974
  }) => vue.VNode[];
38958
38975
  loading: () => vue.VNode[];
38959
38976
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38977
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38960
38978
  'no-data': () => vue.VNode[];
38961
38979
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38962
38980
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
38963
- items?: readonly (DataTableItem<T> | Group<T>)[];
38981
+ items?: readonly (DataTableItem<T> | Group<T> | GroupSummary<T>)[];
38964
38982
  }, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
38965
38983
  mobile: {
38966
38984
  type: PropType<boolean | null>;
@@ -38990,7 +39008,7 @@ declare const VDataTableRows: {
38990
39008
  };
38991
39009
  hideNoData: BooleanConstructor;
38992
39010
  items: {
38993
- type: PropType<readonly (DataTableItem | Group)[]>;
39011
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
38994
39012
  default: () => never[];
38995
39013
  };
38996
39014
  noDataText: {
@@ -39028,7 +39046,7 @@ declare const VDataTableRows: {
39028
39046
  };
39029
39047
  hideNoData: BooleanConstructor;
39030
39048
  items: {
39031
- type: PropType<readonly (DataTableItem | Group)[]>;
39049
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
39032
39050
  default: () => never[];
39033
39051
  };
39034
39052
  noDataText: {
@@ -39059,7 +39077,7 @@ type VDataTableSlotProps<T> = {
39059
39077
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
39060
39078
  items: readonly T[];
39061
39079
  internalItems: readonly DataTableItem[];
39062
- groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
39080
+ groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>> | GroupSummary<DataTableItem<T>>)[];
39063
39081
  columns: InternalDataTableHeader[];
39064
39082
  headers: InternalDataTableHeader[][];
39065
39083
  };
@@ -39162,7 +39180,7 @@ declare const VDataTable: {
39162
39180
  'update:groupBy': (value: any) => true;
39163
39181
  'update:expanded': (value: any) => true;
39164
39182
  'update:currentItems': (value: any) => true;
39165
- }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
39183
+ }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
39166
39184
  page: string | number;
39167
39185
  expanded: readonly string[];
39168
39186
  style: vue.StyleValue;
@@ -39245,6 +39263,7 @@ declare const VDataTable: {
39245
39263
  }) => vue.VNode[];
39246
39264
  loading: () => vue.VNode[];
39247
39265
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39266
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39248
39267
  'no-data': () => vue.VNode[];
39249
39268
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39250
39269
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -39483,7 +39502,7 @@ declare const VDataTable: {
39483
39502
  'update:groupBy': (value: any) => true;
39484
39503
  'update:expanded': (value: any) => true;
39485
39504
  'update:currentItems': (value: any) => true;
39486
- }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
39505
+ }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
39487
39506
  page: string | number;
39488
39507
  expanded: readonly string[];
39489
39508
  style: vue.StyleValue;
@@ -39566,6 +39585,7 @@ declare const VDataTable: {
39566
39585
  }) => vue.VNode[];
39567
39586
  loading: () => vue.VNode[];
39568
39587
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39588
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39569
39589
  'no-data': () => vue.VNode[];
39570
39590
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39571
39591
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40303,7 +40323,7 @@ declare const VDataTableVirtual: {
40303
40323
  'update:options': (value: any) => true;
40304
40324
  'update:groupBy': (value: any) => true;
40305
40325
  'update:expanded': (value: any) => true;
40306
- }, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
40326
+ }, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
40307
40327
  expanded: readonly string[];
40308
40328
  style: vue.StyleValue;
40309
40329
  mobile: boolean | null;
@@ -40372,6 +40392,7 @@ declare const VDataTableVirtual: {
40372
40392
  }) => vue.VNode[];
40373
40393
  loading: () => vue.VNode[];
40374
40394
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40395
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40375
40396
  'no-data': () => vue.VNode[];
40376
40397
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40377
40398
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40556,7 +40577,7 @@ declare const VDataTableVirtual: {
40556
40577
  'update:options': (value: any) => true;
40557
40578
  'update:groupBy': (value: any) => true;
40558
40579
  'update:expanded': (value: any) => true;
40559
- }, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
40580
+ }, "headers" | "$children" | "v-slots" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
40560
40581
  expanded: readonly string[];
40561
40582
  style: vue.StyleValue;
40562
40583
  mobile: boolean | null;
@@ -40625,6 +40646,7 @@ declare const VDataTableVirtual: {
40625
40646
  }) => vue.VNode[];
40626
40647
  loading: () => vue.VNode[];
40627
40648
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40649
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40628
40650
  'no-data': () => vue.VNode[];
40629
40651
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40630
40652
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41001,7 +41023,7 @@ declare const VDataTableServer: {
41001
41023
  'update:options': (options: any) => true;
41002
41024
  'update:expanded': (options: any) => true;
41003
41025
  'update:groupBy': (value: any) => true;
41004
- }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
41026
+ }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
41005
41027
  page: string | number;
41006
41028
  expanded: readonly string[];
41007
41029
  style: vue.StyleValue;
@@ -41082,6 +41104,7 @@ declare const VDataTableServer: {
41082
41104
  }) => vue.VNode[];
41083
41105
  loading: () => vue.VNode[];
41084
41106
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41107
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41085
41108
  'no-data': () => vue.VNode[];
41086
41109
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41087
41110
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41307,7 +41330,7 @@ declare const VDataTableServer: {
41307
41330
  'update:options': (options: any) => true;
41308
41331
  'update:expanded': (options: any) => true;
41309
41332
  'update:groupBy': (value: any) => true;
41310
- }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
41333
+ }, "headers" | "$children" | "v-slots" | "v-slot:default" | "modelValue" | "cellProps" | "items" | "itemValue" | "itemSelectable" | "rowProps" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "v-slot:no-data" | "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-summary" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, {
41311
41334
  page: string | number;
41312
41335
  expanded: readonly string[];
41313
41336
  style: vue.StyleValue;
@@ -41388,6 +41411,7 @@ declare const VDataTableServer: {
41388
41411
  }) => vue.VNode[];
41389
41412
  loading: () => vue.VNode[];
41390
41413
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41414
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41391
41415
  'no-data': () => vue.VNode[];
41392
41416
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41393
41417
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41937,6 +41961,7 @@ declare const VDatePickerMonth: {
41937
41961
  year?: string | number | undefined;
41938
41962
  modelValue?: unknown[] | undefined;
41939
41963
  firstDayOfWeek?: string | number | undefined;
41964
+ firstDayOfYear?: string | number | undefined;
41940
41965
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41941
41966
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41942
41967
  } & {
@@ -41984,6 +42009,7 @@ declare const VDatePickerMonth: {
41984
42009
  weekdays: CalendarWeekdays[];
41985
42010
  weeksInMonth: "static" | "dynamic";
41986
42011
  firstDayOfWeek: string | number;
42012
+ firstDayOfYear: string | number;
41987
42013
  hideWeekdays: boolean;
41988
42014
  showWeek: boolean;
41989
42015
  }, true, {}, vue.SlotsType<Partial<{
@@ -42019,6 +42045,7 @@ declare const VDatePickerMonth: {
42019
42045
  year?: string | number | undefined;
42020
42046
  modelValue?: unknown[] | undefined;
42021
42047
  firstDayOfWeek?: string | number | undefined;
42048
+ firstDayOfYear?: string | number | undefined;
42022
42049
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42023
42050
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42024
42051
  } & {
@@ -42062,6 +42089,7 @@ declare const VDatePickerMonth: {
42062
42089
  weekdays: CalendarWeekdays[];
42063
42090
  weeksInMonth: "static" | "dynamic";
42064
42091
  firstDayOfWeek: string | number;
42092
+ firstDayOfYear: string | number;
42065
42093
  hideWeekdays: boolean;
42066
42094
  showWeek: boolean;
42067
42095
  }>;
@@ -42086,6 +42114,7 @@ declare const VDatePickerMonth: {
42086
42114
  year?: string | number | undefined;
42087
42115
  modelValue?: unknown[] | undefined;
42088
42116
  firstDayOfWeek?: string | number | undefined;
42117
+ firstDayOfYear?: string | number | undefined;
42089
42118
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42090
42119
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42091
42120
  } & {
@@ -42133,6 +42162,7 @@ declare const VDatePickerMonth: {
42133
42162
  weekdays: CalendarWeekdays[];
42134
42163
  weeksInMonth: "static" | "dynamic";
42135
42164
  firstDayOfWeek: string | number;
42165
+ firstDayOfYear: string | number;
42136
42166
  hideWeekdays: boolean;
42137
42167
  showWeek: boolean;
42138
42168
  }, {}, string, vue.SlotsType<Partial<{
@@ -42166,6 +42196,10 @@ declare const VDatePickerMonth: {
42166
42196
  type: (StringConstructor | NumberConstructor)[];
42167
42197
  default: undefined;
42168
42198
  };
42199
+ firstDayOfYear: {
42200
+ type: (StringConstructor | NumberConstructor)[];
42201
+ default: undefined;
42202
+ };
42169
42203
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42170
42204
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42171
42205
  color: StringConstructor;
@@ -42203,6 +42237,10 @@ declare const VDatePickerMonth: {
42203
42237
  type: (StringConstructor | NumberConstructor)[];
42204
42238
  default: undefined;
42205
42239
  };
42240
+ firstDayOfYear: {
42241
+ type: (StringConstructor | NumberConstructor)[];
42242
+ default: undefined;
42243
+ };
42206
42244
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42207
42245
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42208
42246
  color: StringConstructor;
@@ -42762,6 +42800,7 @@ declare const VDatePicker: {
42762
42800
  controlHeight?: string | number | undefined;
42763
42801
  headerColor?: string | undefined;
42764
42802
  firstDayOfWeek?: string | number | undefined;
42803
+ firstDayOfYear?: string | number | undefined;
42765
42804
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42766
42805
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42767
42806
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42798,6 +42837,7 @@ declare const VDatePicker: {
42798
42837
  weekdays: CalendarWeekdays[];
42799
42838
  weeksInMonth: "static" | "dynamic";
42800
42839
  firstDayOfWeek: string | number;
42840
+ firstDayOfYear: string | number;
42801
42841
  hideWeekdays: boolean;
42802
42842
  showWeek: boolean;
42803
42843
  }, true, {}, vue.SlotsType<Partial<{
@@ -42895,6 +42935,7 @@ declare const VDatePicker: {
42895
42935
  controlHeight?: string | number | undefined;
42896
42936
  headerColor?: string | undefined;
42897
42937
  firstDayOfWeek?: string | number | undefined;
42938
+ firstDayOfYear?: string | number | undefined;
42898
42939
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42899
42940
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42900
42941
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42926,6 +42967,7 @@ declare const VDatePicker: {
42926
42967
  weekdays: CalendarWeekdays[];
42927
42968
  weeksInMonth: "static" | "dynamic";
42928
42969
  firstDayOfWeek: string | number;
42970
+ firstDayOfYear: string | number;
42929
42971
  hideWeekdays: boolean;
42930
42972
  showWeek: boolean;
42931
42973
  }>;
@@ -42979,6 +43021,7 @@ declare const VDatePicker: {
42979
43021
  controlHeight?: string | number | undefined;
42980
43022
  headerColor?: string | undefined;
42981
43023
  firstDayOfWeek?: string | number | undefined;
43024
+ firstDayOfYear?: string | number | undefined;
42982
43025
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42983
43026
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42984
43027
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43015,6 +43058,7 @@ declare const VDatePicker: {
43015
43058
  weekdays: CalendarWeekdays[];
43016
43059
  weeksInMonth: "static" | "dynamic";
43017
43060
  firstDayOfWeek: string | number;
43061
+ firstDayOfYear: string | number;
43018
43062
  hideWeekdays: boolean;
43019
43063
  showWeek: boolean;
43020
43064
  }, {}, string, vue.SlotsType<Partial<{
@@ -43131,6 +43175,10 @@ declare const VDatePicker: {
43131
43175
  type: (StringConstructor | NumberConstructor)[];
43132
43176
  default: undefined;
43133
43177
  };
43178
+ firstDayOfYear: {
43179
+ type: (StringConstructor | NumberConstructor)[];
43180
+ default: undefined;
43181
+ };
43134
43182
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43135
43183
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43136
43184
  hideWeekdays: BooleanConstructor;
@@ -43240,6 +43288,10 @@ declare const VDatePicker: {
43240
43288
  type: (StringConstructor | NumberConstructor)[];
43241
43289
  default: undefined;
43242
43290
  };
43291
+ firstDayOfYear: {
43292
+ type: (StringConstructor | NumberConstructor)[];
43293
+ default: undefined;
43294
+ };
43243
43295
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43244
43296
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43245
43297
  hideWeekdays: BooleanConstructor;
@@ -96182,7 +96234,7 @@ declare const createVuetify: {
96182
96234
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
96183
96235
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
96184
96236
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
96185
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
96237
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
96186
96238
  getMonth: (date: unknown) => number;
96187
96239
  setMonth: (date: unknown, month: number) => unknown;
96188
96240
  getDate: (date: unknown) => number;
@@ -96238,48 +96290,42 @@ declare module 'vue' {
96238
96290
  $children?: VNodeChild
96239
96291
  }
96240
96292
  export interface GlobalComponents {
96293
+ VApp: VApp
96241
96294
  VAppBar: VAppBar
96242
96295
  VAppBarNavIcon: VAppBarNavIcon
96243
96296
  VAppBarTitle: VAppBarTitle
96244
- VApp: VApp
96245
96297
  VAvatar: VAvatar
96246
- VAutocomplete: VAutocomplete
96247
- VBadge: VBadge
96248
96298
  VAlert: VAlert
96249
96299
  VAlertTitle: VAlertTitle
96300
+ VAutocomplete: VAutocomplete
96301
+ VBreadcrumbs: VBreadcrumbs
96302
+ VBreadcrumbsItem: VBreadcrumbsItem
96303
+ VBreadcrumbsDivider: VBreadcrumbsDivider
96250
96304
  VBanner: VBanner
96251
96305
  VBannerActions: VBannerActions
96252
96306
  VBannerText: VBannerText
96253
96307
  VBottomNavigation: VBottomNavigation
96254
96308
  VBtn: VBtn
96255
- VBreadcrumbs: VBreadcrumbs
96256
- VBreadcrumbsItem: VBreadcrumbsItem
96257
- VBreadcrumbsDivider: VBreadcrumbsDivider
96258
96309
  VBottomSheet: VBottomSheet
96310
+ VBadge: VBadge
96259
96311
  VBtnGroup: VBtnGroup
96260
- VCarousel: VCarousel
96261
- VCarouselItem: VCarouselItem
96262
- VBtnToggle: VBtnToggle
96263
- VChip: VChip
96264
- VCheckbox: VCheckbox
96265
- VCheckboxBtn: VCheckboxBtn
96266
- VCombobox: VCombobox
96267
96312
  VCard: VCard
96268
96313
  VCardActions: VCardActions
96269
96314
  VCardItem: VCardItem
96270
96315
  VCardSubtitle: VCardSubtitle
96271
96316
  VCardText: VCardText
96272
96317
  VCardTitle: VCardTitle
96318
+ VCarousel: VCarousel
96319
+ VCarouselItem: VCarouselItem
96320
+ VBtnToggle: VBtnToggle
96321
+ VChipGroup: VChipGroup
96273
96322
  VCode: VCode
96274
- VColorPicker: VColorPicker
96323
+ VCombobox: VCombobox
96324
+ VCheckbox: VCheckbox
96325
+ VCheckboxBtn: VCheckboxBtn
96275
96326
  VCounter: VCounter
96276
- VChipGroup: VChipGroup
96277
- VDatePicker: VDatePicker
96278
- VDatePickerControls: VDatePickerControls
96279
- VDatePickerHeader: VDatePickerHeader
96280
- VDatePickerMonth: VDatePickerMonth
96281
- VDatePickerMonths: VDatePickerMonths
96282
- VDatePickerYears: VDatePickerYears
96327
+ VColorPicker: VColorPicker
96328
+ VChip: VChip
96283
96329
  VDataTable: VDataTable
96284
96330
  VDataTableHeaders: VDataTableHeaders
96285
96331
  VDataTableFooter: VDataTableFooter
@@ -96287,29 +96333,35 @@ declare module 'vue' {
96287
96333
  VDataTableRow: VDataTableRow
96288
96334
  VDataTableVirtual: VDataTableVirtual
96289
96335
  VDataTableServer: VDataTableServer
96336
+ VDatePicker: VDatePicker
96337
+ VDatePickerControls: VDatePickerControls
96338
+ VDatePickerHeader: VDatePickerHeader
96339
+ VDatePickerMonth: VDatePickerMonth
96340
+ VDatePickerMonths: VDatePickerMonths
96341
+ VDatePickerYears: VDatePickerYears
96342
+ VDialog: VDialog
96290
96343
  VDivider: VDivider
96344
+ VFileInput: VFileInput
96345
+ VFab: VFab
96346
+ VEmptyState: VEmptyState
96347
+ VField: VField
96348
+ VFieldLabel: VFieldLabel
96349
+ VFooter: VFooter
96350
+ VImg: VImg
96291
96351
  VExpansionPanels: VExpansionPanels
96292
96352
  VExpansionPanel: VExpansionPanel
96293
96353
  VExpansionPanelText: VExpansionPanelText
96294
96354
  VExpansionPanelTitle: VExpansionPanelTitle
96295
- VFab: VFab
96296
- VDialog: VDialog
96297
- VEmptyState: VEmptyState
96298
- VFooter: VFooter
96299
96355
  VIcon: VIcon
96300
96356
  VComponentIcon: VComponentIcon
96301
96357
  VSvgIcon: VSvgIcon
96302
96358
  VLigatureIcon: VLigatureIcon
96303
96359
  VClassIcon: VClassIcon
96304
- VFileInput: VFileInput
96305
- VField: VField
96306
- VFieldLabel: VFieldLabel
96307
- VInfiniteScroll: VInfiniteScroll
96308
- VImg: VImg
96309
96360
  VInput: VInput
96361
+ VKbd: VKbd
96310
96362
  VItemGroup: VItemGroup
96311
96363
  VItem: VItem
96312
- VKbd: VKbd
96364
+ VInfiniteScroll: VInfiniteScroll
96313
96365
  VList: VList
96314
96366
  VListGroup: VListGroup
96315
96367
  VListImg: VListImg
@@ -96319,25 +96371,27 @@ declare module 'vue' {
96319
96371
  VListItemSubtitle: VListItemSubtitle
96320
96372
  VListItemTitle: VListItemTitle
96321
96373
  VListSubheader: VListSubheader
96322
- VLabel: VLabel
96374
+ VMenu: VMenu
96375
+ VMain: VMain
96323
96376
  VMessages: VMessages
96377
+ VNavigationDrawer: VNavigationDrawer
96324
96378
  VOtpInput: VOtpInput
96325
- VMain: VMain
96326
- VMenu: VMenu
96379
+ VNumberInput: VNumberInput
96327
96380
  VOverlay: VOverlay
96328
96381
  VPagination: VPagination
96329
- VNumberInput: VNumberInput
96330
- VProgressCircular: VProgressCircular
96331
96382
  VProgressLinear: VProgressLinear
96332
- VRadioGroup: VRadioGroup
96333
96383
  VRating: VRating
96334
- VSelectionControlGroup: VSelectionControlGroup
96335
- VSelectionControl: VSelectionControl
96336
- VSkeletonLoader: VSkeletonLoader
96384
+ VProgressCircular: VProgressCircular
96385
+ VRadioGroup: VRadioGroup
96337
96386
  VSelect: VSelect
96338
96387
  VSheet: VSheet
96388
+ VSelectionControl: VSelectionControl
96389
+ VSelectionControlGroup: VSelectionControlGroup
96339
96390
  VSlideGroup: VSlideGroup
96340
96391
  VSlideGroupItem: VSlideGroupItem
96392
+ VSlider: VSlider
96393
+ VSkeletonLoader: VSkeletonLoader
96394
+ VSwitch: VSwitch
96341
96395
  VStepper: VStepper
96342
96396
  VStepperActions: VStepperActions
96343
96397
  VStepperHeader: VStepperHeader
@@ -96345,54 +96399,53 @@ declare module 'vue' {
96345
96399
  VStepperWindow: VStepperWindow
96346
96400
  VStepperWindowItem: VStepperWindowItem
96347
96401
  VSnackbar: VSnackbar
96348
- VSlider: VSlider
96349
96402
  VSystemBar: VSystemBar
96350
96403
  VTab: VTab
96351
96404
  VTabs: VTabs
96352
96405
  VTabsWindow: VTabsWindow
96353
96406
  VTabsWindowItem: VTabsWindowItem
96354
- VSwitch: VSwitch
96355
96407
  VTextField: VTextField
96356
- VTable: VTable
96357
96408
  VTextarea: VTextarea
96358
96409
  VToolbar: VToolbar
96359
96410
  VToolbarTitle: VToolbarTitle
96360
96411
  VToolbarItems: VToolbarItems
96361
96412
  VTimeline: VTimeline
96362
96413
  VTimelineItem: VTimelineItem
96414
+ VTimePicker: VTimePicker
96415
+ VTimePickerClock: VTimePickerClock
96416
+ VTimePickerControls: VTimePickerControls
96417
+ VTable: VTable
96363
96418
  VTooltip: VTooltip
96364
96419
  VTreeview: VTreeview
96365
96420
  VTreeviewItem: VTreeviewItem
96366
96421
  VTreeviewGroup: VTreeviewGroup
96367
96422
  VWindow: VWindow
96368
96423
  VWindowItem: VWindowItem
96369
- VTimePicker: VTimePicker
96370
- VTimePickerClock: VTimePickerClock
96371
- VTimePickerControls: VTimePickerControls
96372
- VDataIterator: VDataIterator
96424
+ VLabel: VLabel
96373
96425
  VConfirmEdit: VConfirmEdit
96374
96426
  VDefaultsProvider: VDefaultsProvider
96375
- VHover: VHover
96376
- VForm: VForm
96427
+ VDataIterator: VDataIterator
96377
96428
  VContainer: VContainer
96378
96429
  VCol: VCol
96379
96430
  VRow: VRow
96380
96431
  VSpacer: VSpacer
96432
+ VForm: VForm
96433
+ VHover: VHover
96434
+ VLocaleProvider: VLocaleProvider
96381
96435
  VLazy: VLazy
96382
96436
  VLayout: VLayout
96383
96437
  VLayoutItem: VLayoutItem
96384
- VLocaleProvider: VLocaleProvider
96385
96438
  VNoSsr: VNoSsr
96386
- VRadio: VRadio
96387
96439
  VParallax: VParallax
96440
+ VRadio: VRadio
96388
96441
  VRangeSlider: VRangeSlider
96389
96442
  VResponsive: VResponsive
96390
96443
  VSnackbarQueue: VSnackbarQueue
96391
96444
  VSparkline: VSparkline
96392
96445
  VSpeedDial: VSpeedDial
96393
96446
  VThemeProvider: VThemeProvider
96394
- VVirtualScroll: VVirtualScroll
96395
96447
  VValidation: VValidation
96448
+ VVirtualScroll: VVirtualScroll
96396
96449
  VFabTransition: VFabTransition
96397
96450
  VDialogBottomTransition: VDialogBottomTransition
96398
96451
  VDialogTopTransition: VDialogTopTransition
@@ -96409,32 +96462,31 @@ declare module 'vue' {
96409
96462
  VExpandTransition: VExpandTransition
96410
96463
  VExpandXTransition: VExpandXTransition
96411
96464
  VDialogTransition: VDialogTransition
96412
- VNavigationDrawer: VNavigationDrawer
96413
96465
  VCalendar: VCalendar
96414
96466
  VCalendarDay: VCalendarDay
96415
96467
  VCalendarHeader: VCalendarHeader
96416
96468
  VCalendarInterval: VCalendarInterval
96417
96469
  VCalendarIntervalEvent: VCalendarIntervalEvent
96418
96470
  VCalendarMonthDay: VCalendarMonthDay
96419
- VColorInput: VColorInput
96420
- VIconBtn: VIconBtn
96421
96471
  VFileUpload: VFileUpload
96422
96472
  VFileUploadItem: VFileUploadItem
96423
- VPicker: VPicker
96424
- VPickerTitle: VPickerTitle
96425
96473
  VPie: VPie
96426
96474
  VPieSegment: VPieSegment
96427
96475
  VPieTooltip: VPieTooltip
96476
+ VIconBtn: VIconBtn
96477
+ VColorInput: VColorInput
96478
+ VPicker: VPicker
96479
+ VPickerTitle: VPickerTitle
96480
+ VHotkey: VHotkey
96428
96481
  VStepperVertical: VStepperVertical
96429
96482
  VStepperVerticalItem: VStepperVerticalItem
96430
96483
  VStepperVerticalActions: VStepperVerticalActions
96431
- VHotkey: VHotkey
96432
96484
  VVideo: VVideo
96433
96485
  VVideoControls: VVideoControls
96434
96486
  VVideoVolume: VVideoVolume
96487
+ VMaskInput: VMaskInput
96435
96488
  VDateInput: VDateInput
96436
96489
  VPullToRefresh: VPullToRefresh
96437
- VMaskInput: VMaskInput
96438
96490
  }
96439
96491
  export interface GlobalDirectives {
96440
96492
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']