@vuetify/nightly 3.9.3-dev.2025-08-02 → 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 (68) hide show
  1. package/CHANGELOG.md +5 -3
  2. package/dist/json/attributes.json +3040 -3024
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +130 -130
  5. package/dist/json/tags.json +4 -0
  6. package/dist/json/web-types.json +5954 -5826
  7. package/dist/vuetify-labs.cjs +56 -17
  8. package/dist/vuetify-labs.css +3273 -3273
  9. package/dist/vuetify-labs.d.ts +145 -66
  10. package/dist/vuetify-labs.esm.js +56 -17
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +56 -17
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +56 -17
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4298 -4298
  17. package/dist/vuetify.d.ts +117 -66
  18. package/dist/vuetify.esm.js +56 -17
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +56 -17
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +285 -279
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataIterator/VDataIterator.d.ts +2 -2
  26. package/lib/components/VDataIterator/VDataIterator.js +1 -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/composables/calendar.d.ts +12 -0
  50. package/lib/composables/calendar.js +5 -1
  51. package/lib/composables/calendar.js.map +1 -1
  52. package/lib/composables/date/DateAdapter.d.ts +1 -1
  53. package/lib/composables/date/DateAdapter.js.map +1 -1
  54. package/lib/composables/date/adapters/string.d.ts +1 -1
  55. package/lib/composables/date/adapters/string.js +2 -2
  56. package/lib/composables/date/adapters/string.js.map +1 -1
  57. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  58. package/lib/composables/date/adapters/vuetify.js +25 -5
  59. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  60. package/lib/composables/date/date.d.ts +1 -1
  61. package/lib/entry-bundler.d.ts +1 -1
  62. package/lib/entry-bundler.js +1 -1
  63. package/lib/framework.d.ts +51 -51
  64. package/lib/framework.js +1 -1
  65. package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
  66. package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
  67. package/lib/labs/entry-bundler.d.ts +1 -1
  68. 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;
@@ -37791,7 +37805,7 @@ type VDataIteratorSlotProps<T> = {
37791
37805
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
37792
37806
  items: readonly DataIteratorItem<T>[];
37793
37807
  itemsCount: number;
37794
- groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
37808
+ groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>> | GroupSummary<DataIteratorItem<T>>)[];
37795
37809
  };
37796
37810
  type VDataIteratorSlots<T> = {
37797
37811
  default: VDataIteratorSlotProps<T>;
@@ -38812,6 +38826,7 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
38812
38826
  };
38813
38827
  loading: never;
38814
38828
  'group-header': GroupHeaderSlot;
38829
+ 'group-summary': GroupSummarySlot;
38815
38830
  'no-data': never;
38816
38831
  'expanded-row': ItemSlot$1<T>;
38817
38832
  };
@@ -38830,7 +38845,7 @@ declare const VDataTableRows: {
38830
38845
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38831
38846
  cellProps?: CellProps<any> | undefined;
38832
38847
  rowProps?: RowProps<any> | undefined;
38833
- }, {}, 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, {
38834
38849
  mobile: boolean | null;
38835
38850
  noDataText: string;
38836
38851
  loadingText: string;
@@ -38869,6 +38884,7 @@ declare const VDataTableRows: {
38869
38884
  }) => vue.VNode[];
38870
38885
  loading: () => vue.VNode[];
38871
38886
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38887
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38872
38888
  'no-data': () => vue.VNode[];
38873
38889
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38874
38890
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
@@ -38919,7 +38935,7 @@ declare const VDataTableRows: {
38919
38935
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38920
38936
  cellProps?: CellProps<any> | undefined;
38921
38937
  rowProps?: RowProps<any> | undefined;
38922
- }, {}, 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, {
38923
38939
  mobile: boolean | null;
38924
38940
  noDataText: string;
38925
38941
  loadingText: string;
@@ -38958,10 +38974,11 @@ declare const VDataTableRows: {
38958
38974
  }) => vue.VNode[];
38959
38975
  loading: () => vue.VNode[];
38960
38976
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38977
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38961
38978
  'no-data': () => vue.VNode[];
38962
38979
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38963
38980
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
38964
- items?: readonly (DataTableItem<T> | Group<T>)[];
38981
+ items?: readonly (DataTableItem<T> | Group<T> | GroupSummary<T>)[];
38965
38982
  }, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
38966
38983
  mobile: {
38967
38984
  type: PropType<boolean | null>;
@@ -38991,7 +39008,7 @@ declare const VDataTableRows: {
38991
39008
  };
38992
39009
  hideNoData: BooleanConstructor;
38993
39010
  items: {
38994
- type: PropType<readonly (DataTableItem | Group)[]>;
39011
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
38995
39012
  default: () => never[];
38996
39013
  };
38997
39014
  noDataText: {
@@ -39029,7 +39046,7 @@ declare const VDataTableRows: {
39029
39046
  };
39030
39047
  hideNoData: BooleanConstructor;
39031
39048
  items: {
39032
- type: PropType<readonly (DataTableItem | Group)[]>;
39049
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
39033
39050
  default: () => never[];
39034
39051
  };
39035
39052
  noDataText: {
@@ -39060,7 +39077,7 @@ type VDataTableSlotProps<T> = {
39060
39077
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
39061
39078
  items: readonly T[];
39062
39079
  internalItems: readonly DataTableItem[];
39063
- groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
39080
+ groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>> | GroupSummary<DataTableItem<T>>)[];
39064
39081
  columns: InternalDataTableHeader[];
39065
39082
  headers: InternalDataTableHeader[][];
39066
39083
  };
@@ -39163,7 +39180,7 @@ declare const VDataTable: {
39163
39180
  'update:groupBy': (value: any) => true;
39164
39181
  'update:expanded': (value: any) => true;
39165
39182
  'update:currentItems': (value: any) => true;
39166
- }, "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, {
39167
39184
  page: string | number;
39168
39185
  expanded: readonly string[];
39169
39186
  style: vue.StyleValue;
@@ -39246,6 +39263,7 @@ declare const VDataTable: {
39246
39263
  }) => vue.VNode[];
39247
39264
  loading: () => vue.VNode[];
39248
39265
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39266
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39249
39267
  'no-data': () => vue.VNode[];
39250
39268
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39251
39269
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -39484,7 +39502,7 @@ declare const VDataTable: {
39484
39502
  'update:groupBy': (value: any) => true;
39485
39503
  'update:expanded': (value: any) => true;
39486
39504
  'update:currentItems': (value: any) => true;
39487
- }, "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, {
39488
39506
  page: string | number;
39489
39507
  expanded: readonly string[];
39490
39508
  style: vue.StyleValue;
@@ -39567,6 +39585,7 @@ declare const VDataTable: {
39567
39585
  }) => vue.VNode[];
39568
39586
  loading: () => vue.VNode[];
39569
39587
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39588
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39570
39589
  'no-data': () => vue.VNode[];
39571
39590
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39572
39591
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40304,7 +40323,7 @@ declare const VDataTableVirtual: {
40304
40323
  'update:options': (value: any) => true;
40305
40324
  'update:groupBy': (value: any) => true;
40306
40325
  'update:expanded': (value: any) => true;
40307
- }, "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, {
40308
40327
  expanded: readonly string[];
40309
40328
  style: vue.StyleValue;
40310
40329
  mobile: boolean | null;
@@ -40373,6 +40392,7 @@ declare const VDataTableVirtual: {
40373
40392
  }) => vue.VNode[];
40374
40393
  loading: () => vue.VNode[];
40375
40394
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40395
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40376
40396
  'no-data': () => vue.VNode[];
40377
40397
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40378
40398
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40557,7 +40577,7 @@ declare const VDataTableVirtual: {
40557
40577
  'update:options': (value: any) => true;
40558
40578
  'update:groupBy': (value: any) => true;
40559
40579
  'update:expanded': (value: any) => true;
40560
- }, "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, {
40561
40581
  expanded: readonly string[];
40562
40582
  style: vue.StyleValue;
40563
40583
  mobile: boolean | null;
@@ -40626,6 +40646,7 @@ declare const VDataTableVirtual: {
40626
40646
  }) => vue.VNode[];
40627
40647
  loading: () => vue.VNode[];
40628
40648
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40649
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40629
40650
  'no-data': () => vue.VNode[];
40630
40651
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40631
40652
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41002,7 +41023,7 @@ declare const VDataTableServer: {
41002
41023
  'update:options': (options: any) => true;
41003
41024
  'update:expanded': (options: any) => true;
41004
41025
  'update:groupBy': (value: any) => true;
41005
- }, "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, {
41006
41027
  page: string | number;
41007
41028
  expanded: readonly string[];
41008
41029
  style: vue.StyleValue;
@@ -41083,6 +41104,7 @@ declare const VDataTableServer: {
41083
41104
  }) => vue.VNode[];
41084
41105
  loading: () => vue.VNode[];
41085
41106
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41107
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41086
41108
  'no-data': () => vue.VNode[];
41087
41109
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41088
41110
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41308,7 +41330,7 @@ declare const VDataTableServer: {
41308
41330
  'update:options': (options: any) => true;
41309
41331
  'update:expanded': (options: any) => true;
41310
41332
  'update:groupBy': (value: any) => true;
41311
- }, "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, {
41312
41334
  page: string | number;
41313
41335
  expanded: readonly string[];
41314
41336
  style: vue.StyleValue;
@@ -41389,6 +41411,7 @@ declare const VDataTableServer: {
41389
41411
  }) => vue.VNode[];
41390
41412
  loading: () => vue.VNode[];
41391
41413
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41414
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41392
41415
  'no-data': () => vue.VNode[];
41393
41416
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41394
41417
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41938,6 +41961,7 @@ declare const VDatePickerMonth: {
41938
41961
  year?: string | number | undefined;
41939
41962
  modelValue?: unknown[] | undefined;
41940
41963
  firstDayOfWeek?: string | number | undefined;
41964
+ firstDayOfYear?: string | number | undefined;
41941
41965
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41942
41966
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41943
41967
  } & {
@@ -41985,6 +42009,7 @@ declare const VDatePickerMonth: {
41985
42009
  weekdays: CalendarWeekdays[];
41986
42010
  weeksInMonth: "static" | "dynamic";
41987
42011
  firstDayOfWeek: string | number;
42012
+ firstDayOfYear: string | number;
41988
42013
  hideWeekdays: boolean;
41989
42014
  showWeek: boolean;
41990
42015
  }, true, {}, vue.SlotsType<Partial<{
@@ -42020,6 +42045,7 @@ declare const VDatePickerMonth: {
42020
42045
  year?: string | number | undefined;
42021
42046
  modelValue?: unknown[] | undefined;
42022
42047
  firstDayOfWeek?: string | number | undefined;
42048
+ firstDayOfYear?: string | number | undefined;
42023
42049
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42024
42050
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42025
42051
  } & {
@@ -42063,6 +42089,7 @@ declare const VDatePickerMonth: {
42063
42089
  weekdays: CalendarWeekdays[];
42064
42090
  weeksInMonth: "static" | "dynamic";
42065
42091
  firstDayOfWeek: string | number;
42092
+ firstDayOfYear: string | number;
42066
42093
  hideWeekdays: boolean;
42067
42094
  showWeek: boolean;
42068
42095
  }>;
@@ -42087,6 +42114,7 @@ declare const VDatePickerMonth: {
42087
42114
  year?: string | number | undefined;
42088
42115
  modelValue?: unknown[] | undefined;
42089
42116
  firstDayOfWeek?: string | number | undefined;
42117
+ firstDayOfYear?: string | number | undefined;
42090
42118
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42091
42119
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42092
42120
  } & {
@@ -42134,6 +42162,7 @@ declare const VDatePickerMonth: {
42134
42162
  weekdays: CalendarWeekdays[];
42135
42163
  weeksInMonth: "static" | "dynamic";
42136
42164
  firstDayOfWeek: string | number;
42165
+ firstDayOfYear: string | number;
42137
42166
  hideWeekdays: boolean;
42138
42167
  showWeek: boolean;
42139
42168
  }, {}, string, vue.SlotsType<Partial<{
@@ -42167,6 +42196,10 @@ declare const VDatePickerMonth: {
42167
42196
  type: (StringConstructor | NumberConstructor)[];
42168
42197
  default: undefined;
42169
42198
  };
42199
+ firstDayOfYear: {
42200
+ type: (StringConstructor | NumberConstructor)[];
42201
+ default: undefined;
42202
+ };
42170
42203
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42171
42204
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42172
42205
  color: StringConstructor;
@@ -42204,6 +42237,10 @@ declare const VDatePickerMonth: {
42204
42237
  type: (StringConstructor | NumberConstructor)[];
42205
42238
  default: undefined;
42206
42239
  };
42240
+ firstDayOfYear: {
42241
+ type: (StringConstructor | NumberConstructor)[];
42242
+ default: undefined;
42243
+ };
42207
42244
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42208
42245
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42209
42246
  color: StringConstructor;
@@ -42763,6 +42800,7 @@ declare const VDatePicker: {
42763
42800
  controlHeight?: string | number | undefined;
42764
42801
  headerColor?: string | undefined;
42765
42802
  firstDayOfWeek?: string | number | undefined;
42803
+ firstDayOfYear?: string | number | undefined;
42766
42804
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42767
42805
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42768
42806
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42799,6 +42837,7 @@ declare const VDatePicker: {
42799
42837
  weekdays: CalendarWeekdays[];
42800
42838
  weeksInMonth: "static" | "dynamic";
42801
42839
  firstDayOfWeek: string | number;
42840
+ firstDayOfYear: string | number;
42802
42841
  hideWeekdays: boolean;
42803
42842
  showWeek: boolean;
42804
42843
  }, true, {}, vue.SlotsType<Partial<{
@@ -42896,6 +42935,7 @@ declare const VDatePicker: {
42896
42935
  controlHeight?: string | number | undefined;
42897
42936
  headerColor?: string | undefined;
42898
42937
  firstDayOfWeek?: string | number | undefined;
42938
+ firstDayOfYear?: string | number | undefined;
42899
42939
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42900
42940
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42901
42941
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42927,6 +42967,7 @@ declare const VDatePicker: {
42927
42967
  weekdays: CalendarWeekdays[];
42928
42968
  weeksInMonth: "static" | "dynamic";
42929
42969
  firstDayOfWeek: string | number;
42970
+ firstDayOfYear: string | number;
42930
42971
  hideWeekdays: boolean;
42931
42972
  showWeek: boolean;
42932
42973
  }>;
@@ -42980,6 +43021,7 @@ declare const VDatePicker: {
42980
43021
  controlHeight?: string | number | undefined;
42981
43022
  headerColor?: string | undefined;
42982
43023
  firstDayOfWeek?: string | number | undefined;
43024
+ firstDayOfYear?: string | number | undefined;
42983
43025
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42984
43026
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42985
43027
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43016,6 +43058,7 @@ declare const VDatePicker: {
43016
43058
  weekdays: CalendarWeekdays[];
43017
43059
  weeksInMonth: "static" | "dynamic";
43018
43060
  firstDayOfWeek: string | number;
43061
+ firstDayOfYear: string | number;
43019
43062
  hideWeekdays: boolean;
43020
43063
  showWeek: boolean;
43021
43064
  }, {}, string, vue.SlotsType<Partial<{
@@ -43132,6 +43175,10 @@ declare const VDatePicker: {
43132
43175
  type: (StringConstructor | NumberConstructor)[];
43133
43176
  default: undefined;
43134
43177
  };
43178
+ firstDayOfYear: {
43179
+ type: (StringConstructor | NumberConstructor)[];
43180
+ default: undefined;
43181
+ };
43135
43182
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43136
43183
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43137
43184
  hideWeekdays: BooleanConstructor;
@@ -43241,6 +43288,10 @@ declare const VDatePicker: {
43241
43288
  type: (StringConstructor | NumberConstructor)[];
43242
43289
  default: undefined;
43243
43290
  };
43291
+ firstDayOfYear: {
43292
+ type: (StringConstructor | NumberConstructor)[];
43293
+ default: undefined;
43294
+ };
43244
43295
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43245
43296
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43246
43297
  hideWeekdays: BooleanConstructor;
@@ -96183,7 +96234,7 @@ declare const createVuetify: {
96183
96234
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
96184
96235
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
96185
96236
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
96186
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
96237
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
96187
96238
  getMonth: (date: unknown) => number;
96188
96239
  setMonth: (date: unknown, month: number) => unknown;
96189
96240
  getDate: (date: unknown) => number;
@@ -96243,37 +96294,38 @@ declare module 'vue' {
96243
96294
  VAppBar: VAppBar
96244
96295
  VAppBarNavIcon: VAppBarNavIcon
96245
96296
  VAppBarTitle: VAppBarTitle
96297
+ VAvatar: VAvatar
96246
96298
  VAlert: VAlert
96247
96299
  VAlertTitle: VAlertTitle
96248
- VBadge: VBadge
96249
- VAvatar: VAvatar
96250
- VBanner: VBanner
96251
- VBannerActions: VBannerActions
96252
- VBannerText: VBannerText
96253
- VBottomSheet: VBottomSheet
96300
+ VAutocomplete: VAutocomplete
96254
96301
  VBreadcrumbs: VBreadcrumbs
96255
96302
  VBreadcrumbsItem: VBreadcrumbsItem
96256
96303
  VBreadcrumbsDivider: VBreadcrumbsDivider
96304
+ VBanner: VBanner
96305
+ VBannerActions: VBannerActions
96306
+ VBannerText: VBannerText
96307
+ VBottomNavigation: VBottomNavigation
96257
96308
  VBtn: VBtn
96309
+ VBottomSheet: VBottomSheet
96310
+ VBadge: VBadge
96311
+ VBtnGroup: VBtnGroup
96258
96312
  VCard: VCard
96259
96313
  VCardActions: VCardActions
96260
96314
  VCardItem: VCardItem
96261
96315
  VCardSubtitle: VCardSubtitle
96262
96316
  VCardText: VCardText
96263
96317
  VCardTitle: VCardTitle
96264
- VBtnToggle: VBtnToggle
96265
- VChip: VChip
96266
- VBtnGroup: VBtnGroup
96267
- VCheckbox: VCheckbox
96268
- VCheckboxBtn: VCheckboxBtn
96269
- VCode: VCode
96270
- VBottomNavigation: VBottomNavigation
96271
- VColorPicker: VColorPicker
96272
- VChipGroup: VChipGroup
96273
96318
  VCarousel: VCarousel
96274
96319
  VCarouselItem: VCarouselItem
96320
+ VBtnToggle: VBtnToggle
96321
+ VChipGroup: VChipGroup
96322
+ VCode: VCode
96275
96323
  VCombobox: VCombobox
96324
+ VCheckbox: VCheckbox
96325
+ VCheckboxBtn: VCheckboxBtn
96276
96326
  VCounter: VCounter
96327
+ VColorPicker: VColorPicker
96328
+ VChip: VChip
96277
96329
  VDataTable: VDataTable
96278
96330
  VDataTableHeaders: VDataTableHeaders
96279
96331
  VDataTableFooter: VDataTableFooter
@@ -96287,29 +96339,29 @@ declare module 'vue' {
96287
96339
  VDatePickerMonth: VDatePickerMonth
96288
96340
  VDatePickerMonths: VDatePickerMonths
96289
96341
  VDatePickerYears: VDatePickerYears
96290
- VEmptyState: VEmptyState
96291
- VDivider: VDivider
96292
96342
  VDialog: VDialog
96293
- VExpansionPanels: VExpansionPanels
96294
- VExpansionPanel: VExpansionPanel
96295
- VExpansionPanelText: VExpansionPanelText
96296
- VExpansionPanelTitle: VExpansionPanelTitle
96297
- VFab: VFab
96343
+ VDivider: VDivider
96298
96344
  VFileInput: VFileInput
96345
+ VFab: VFab
96346
+ VEmptyState: VEmptyState
96299
96347
  VField: VField
96300
96348
  VFieldLabel: VFieldLabel
96301
- VInfiniteScroll: VInfiniteScroll
96302
96349
  VFooter: VFooter
96303
96350
  VImg: VImg
96351
+ VExpansionPanels: VExpansionPanels
96352
+ VExpansionPanel: VExpansionPanel
96353
+ VExpansionPanelText: VExpansionPanelText
96354
+ VExpansionPanelTitle: VExpansionPanelTitle
96304
96355
  VIcon: VIcon
96305
96356
  VComponentIcon: VComponentIcon
96306
96357
  VSvgIcon: VSvgIcon
96307
96358
  VLigatureIcon: VLigatureIcon
96308
96359
  VClassIcon: VClassIcon
96360
+ VInput: VInput
96309
96361
  VKbd: VKbd
96310
96362
  VItemGroup: VItemGroup
96311
96363
  VItem: VItem
96312
- VInput: VInput
96364
+ VInfiniteScroll: VInfiniteScroll
96313
96365
  VList: VList
96314
96366
  VListGroup: VListGroup
96315
96367
  VListImg: VListImg
@@ -96319,70 +96371,70 @@ declare module 'vue' {
96319
96371
  VListItemSubtitle: VListItemSubtitle
96320
96372
  VListItemTitle: VListItemTitle
96321
96373
  VListSubheader: VListSubheader
96322
- VLabel: VLabel
96323
- VMain: VMain
96324
96374
  VMenu: VMenu
96325
- VNavigationDrawer: VNavigationDrawer
96375
+ VMain: VMain
96326
96376
  VMessages: VMessages
96377
+ VNavigationDrawer: VNavigationDrawer
96378
+ VOtpInput: VOtpInput
96327
96379
  VNumberInput: VNumberInput
96328
96380
  VOverlay: VOverlay
96329
- VOtpInput: VOtpInput
96330
96381
  VPagination: VPagination
96331
96382
  VProgressLinear: VProgressLinear
96332
- VProgressCircular: VProgressCircular
96333
96383
  VRating: VRating
96384
+ VProgressCircular: VProgressCircular
96334
96385
  VRadioGroup: VRadioGroup
96335
- VSelectionControlGroup: VSelectionControlGroup
96336
- VSkeletonLoader: VSkeletonLoader
96337
- VSheet: VSheet
96338
96386
  VSelect: VSelect
96387
+ VSheet: VSheet
96388
+ VSelectionControl: VSelectionControl
96389
+ VSelectionControlGroup: VSelectionControlGroup
96339
96390
  VSlideGroup: VSlideGroup
96340
96391
  VSlideGroupItem: VSlideGroupItem
96341
96392
  VSlider: VSlider
96342
- VSelectionControl: VSelectionControl
96393
+ VSkeletonLoader: VSkeletonLoader
96343
96394
  VSwitch: VSwitch
96344
- VSystemBar: VSystemBar
96345
96395
  VStepper: VStepper
96346
96396
  VStepperActions: VStepperActions
96347
96397
  VStepperHeader: VStepperHeader
96348
96398
  VStepperItem: VStepperItem
96349
96399
  VStepperWindow: VStepperWindow
96350
96400
  VStepperWindowItem: VStepperWindowItem
96401
+ VSnackbar: VSnackbar
96402
+ VSystemBar: VSystemBar
96351
96403
  VTab: VTab
96352
96404
  VTabs: VTabs
96353
96405
  VTabsWindow: VTabsWindow
96354
96406
  VTabsWindowItem: VTabsWindowItem
96355
- VTable: VTable
96356
- VTextarea: VTextarea
96357
96407
  VTextField: VTextField
96408
+ VTextarea: VTextarea
96409
+ VToolbar: VToolbar
96410
+ VToolbarTitle: VToolbarTitle
96411
+ VToolbarItems: VToolbarItems
96358
96412
  VTimeline: VTimeline
96359
96413
  VTimelineItem: VTimelineItem
96360
96414
  VTimePicker: VTimePicker
96361
96415
  VTimePickerClock: VTimePickerClock
96362
96416
  VTimePickerControls: VTimePickerControls
96417
+ VTable: VTable
96363
96418
  VTooltip: VTooltip
96364
- VToolbar: VToolbar
96365
- VToolbarTitle: VToolbarTitle
96366
- VToolbarItems: VToolbarItems
96367
96419
  VTreeview: VTreeview
96368
96420
  VTreeviewItem: VTreeviewItem
96369
96421
  VTreeviewGroup: VTreeviewGroup
96370
96422
  VWindow: VWindow
96371
96423
  VWindowItem: VWindowItem
96372
- VAutocomplete: VAutocomplete
96424
+ VLabel: VLabel
96373
96425
  VConfirmEdit: VConfirmEdit
96374
- VDataIterator: VDataIterator
96375
96426
  VDefaultsProvider: VDefaultsProvider
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
96381
96433
  VHover: VHover
96434
+ VLocaleProvider: VLocaleProvider
96382
96435
  VLazy: VLazy
96383
96436
  VLayout: VLayout
96384
96437
  VLayoutItem: VLayoutItem
96385
- VLocaleProvider: VLocaleProvider
96386
96438
  VNoSsr: VNoSsr
96387
96439
  VParallax: VParallax
96388
96440
  VRadio: VRadio
@@ -96410,20 +96462,19 @@ declare module 'vue' {
96410
96462
  VExpandTransition: VExpandTransition
96411
96463
  VExpandXTransition: VExpandXTransition
96412
96464
  VDialogTransition: VDialogTransition
96413
- VSnackbar: VSnackbar
96414
- VFileUpload: VFileUpload
96415
- VFileUploadItem: VFileUploadItem
96416
- VIconBtn: VIconBtn
96417
96465
  VCalendar: VCalendar
96418
96466
  VCalendarDay: VCalendarDay
96419
96467
  VCalendarHeader: VCalendarHeader
96420
96468
  VCalendarInterval: VCalendarInterval
96421
96469
  VCalendarIntervalEvent: VCalendarIntervalEvent
96422
96470
  VCalendarMonthDay: VCalendarMonthDay
96423
- VColorInput: VColorInput
96471
+ VFileUpload: VFileUpload
96472
+ VFileUploadItem: VFileUploadItem
96424
96473
  VPie: VPie
96425
96474
  VPieSegment: VPieSegment
96426
96475
  VPieTooltip: VPieTooltip
96476
+ VIconBtn: VIconBtn
96477
+ VColorInput: VColorInput
96427
96478
  VPicker: VPicker
96428
96479
  VPickerTitle: VPickerTitle
96429
96480
  VHotkey: VHotkey
@@ -96433,8 +96484,8 @@ declare module 'vue' {
96433
96484
  VVideo: VVideo
96434
96485
  VVideoControls: VVideoControls
96435
96486
  VVideoVolume: VVideoVolume
96436
- VDateInput: VDateInput
96437
96487
  VMaskInput: VMaskInput
96488
+ VDateInput: VDateInput
96438
96489
  VPullToRefresh: VPullToRefresh
96439
96490
  }
96440
96491
  export interface GlobalDirectives {