@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
@@ -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;
@@ -920,7 +920,15 @@ interface Group<T = any> {
920
920
  id: string;
921
921
  key: string;
922
922
  value: any;
923
- items: readonly (T | Group<T>)[];
923
+ items: readonly (T | Group<T> | GroupSummary<T>)[];
924
+ }
925
+ interface GroupSummary<T = any> {
926
+ type: 'group-summary';
927
+ depth: number;
928
+ id: string;
929
+ key: string;
930
+ value: any;
931
+ items: readonly (T | Group<T> | GroupSummary<T>)[];
924
932
  }
925
933
  declare function provideGroupBy(options: {
926
934
  groupBy: Ref<readonly SortItem[]>;
@@ -931,7 +939,7 @@ declare function provideGroupBy(options: {
931
939
  toggleGroup: (group: Group) => void;
932
940
  opened: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
933
941
  groupBy: Ref<readonly SortItem[], readonly SortItem[]>;
934
- extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>)[]) => T[];
942
+ extractRows: <T extends GroupableItem>(items: readonly (T | Group<T> | GroupSummary<T>)[]) => T[];
935
943
  isGroupOpen: (group: Group) => boolean;
936
944
  };
937
945
 
@@ -1037,6 +1045,12 @@ type GroupHeaderSlot = {
1037
1045
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
1038
1046
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
1039
1047
  };
1048
+ type GroupSummarySlot = {
1049
+ index: number;
1050
+ item: GroupSummary;
1051
+ columns: InternalDataTableHeader[];
1052
+ toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
1053
+ };
1040
1054
  type ItemSlotBase<T> = {
1041
1055
  index: number;
1042
1056
  item: T;
@@ -38148,7 +38162,7 @@ type VDataIteratorSlotProps<T> = {
38148
38162
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
38149
38163
  items: readonly DataIteratorItem<T>[];
38150
38164
  itemsCount: number;
38151
- groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
38165
+ groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>> | GroupSummary<DataIteratorItem<T>>)[];
38152
38166
  };
38153
38167
  type VDataIteratorSlots<T> = {
38154
38168
  default: VDataIteratorSlotProps<T>;
@@ -39169,6 +39183,7 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
39169
39183
  };
39170
39184
  loading: never;
39171
39185
  'group-header': GroupHeaderSlot;
39186
+ 'group-summary': GroupSummarySlot;
39172
39187
  'no-data': never;
39173
39188
  'expanded-row': ItemSlot$1<T>;
39174
39189
  };
@@ -39187,7 +39202,7 @@ declare const VDataTableRows: {
39187
39202
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39188
39203
  cellProps?: CellProps<any> | undefined;
39189
39204
  rowProps?: RowProps<any> | undefined;
39190
- }, {}, 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, {
39205
+ }, {}, 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, {
39191
39206
  mobile: boolean | null;
39192
39207
  noDataText: string;
39193
39208
  loadingText: string;
@@ -39226,6 +39241,7 @@ declare const VDataTableRows: {
39226
39241
  }) => vue.VNode[];
39227
39242
  loading: () => vue.VNode[];
39228
39243
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39244
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39229
39245
  'no-data': () => vue.VNode[];
39230
39246
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
39231
39247
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
@@ -39276,7 +39292,7 @@ declare const VDataTableRows: {
39276
39292
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39277
39293
  cellProps?: CellProps<any> | undefined;
39278
39294
  rowProps?: RowProps<any> | undefined;
39279
- }, {}, 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, {
39295
+ }, {}, 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, {
39280
39296
  mobile: boolean | null;
39281
39297
  noDataText: string;
39282
39298
  loadingText: string;
@@ -39315,10 +39331,11 @@ declare const VDataTableRows: {
39315
39331
  }) => vue.VNode[];
39316
39332
  loading: () => vue.VNode[];
39317
39333
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39334
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39318
39335
  'no-data': () => vue.VNode[];
39319
39336
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
39320
39337
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
39321
- items?: readonly (DataTableItem<T> | Group<T>)[];
39338
+ items?: readonly (DataTableItem<T> | Group<T> | GroupSummary<T>)[];
39322
39339
  }, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
39323
39340
  mobile: {
39324
39341
  type: PropType<boolean | null>;
@@ -39348,7 +39365,7 @@ declare const VDataTableRows: {
39348
39365
  };
39349
39366
  hideNoData: BooleanConstructor;
39350
39367
  items: {
39351
- type: PropType<readonly (DataTableItem | Group)[]>;
39368
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
39352
39369
  default: () => never[];
39353
39370
  };
39354
39371
  noDataText: {
@@ -39386,7 +39403,7 @@ declare const VDataTableRows: {
39386
39403
  };
39387
39404
  hideNoData: BooleanConstructor;
39388
39405
  items: {
39389
- type: PropType<readonly (DataTableItem | Group)[]>;
39406
+ type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
39390
39407
  default: () => never[];
39391
39408
  };
39392
39409
  noDataText: {
@@ -39417,7 +39434,7 @@ type VDataTableSlotProps<T> = {
39417
39434
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
39418
39435
  items: readonly T[];
39419
39436
  internalItems: readonly DataTableItem[];
39420
- groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
39437
+ groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>> | GroupSummary<DataTableItem<T>>)[];
39421
39438
  columns: InternalDataTableHeader[];
39422
39439
  headers: InternalDataTableHeader[][];
39423
39440
  };
@@ -39520,7 +39537,7 @@ declare const VDataTable: {
39520
39537
  'update:groupBy': (value: any) => true;
39521
39538
  'update:expanded': (value: any) => true;
39522
39539
  'update:currentItems': (value: any) => true;
39523
- }, "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, {
39540
+ }, "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, {
39524
39541
  page: string | number;
39525
39542
  expanded: readonly string[];
39526
39543
  style: vue.StyleValue;
@@ -39603,6 +39620,7 @@ declare const VDataTable: {
39603
39620
  }) => vue.VNode[];
39604
39621
  loading: () => vue.VNode[];
39605
39622
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39623
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39606
39624
  'no-data': () => vue.VNode[];
39607
39625
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39608
39626
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -39841,7 +39859,7 @@ declare const VDataTable: {
39841
39859
  'update:groupBy': (value: any) => true;
39842
39860
  'update:expanded': (value: any) => true;
39843
39861
  'update:currentItems': (value: any) => true;
39844
- }, "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, {
39862
+ }, "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, {
39845
39863
  page: string | number;
39846
39864
  expanded: readonly string[];
39847
39865
  style: vue.StyleValue;
@@ -39924,6 +39942,7 @@ declare const VDataTable: {
39924
39942
  }) => vue.VNode[];
39925
39943
  loading: () => vue.VNode[];
39926
39944
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39945
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39927
39946
  'no-data': () => vue.VNode[];
39928
39947
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39929
39948
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40661,7 +40680,7 @@ declare const VDataTableVirtual: {
40661
40680
  'update:options': (value: any) => true;
40662
40681
  'update:groupBy': (value: any) => true;
40663
40682
  'update:expanded': (value: any) => true;
40664
- }, "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, {
40683
+ }, "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, {
40665
40684
  expanded: readonly string[];
40666
40685
  style: vue.StyleValue;
40667
40686
  mobile: boolean | null;
@@ -40730,6 +40749,7 @@ declare const VDataTableVirtual: {
40730
40749
  }) => vue.VNode[];
40731
40750
  loading: () => vue.VNode[];
40732
40751
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40752
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40733
40753
  'no-data': () => vue.VNode[];
40734
40754
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40735
40755
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40914,7 +40934,7 @@ declare const VDataTableVirtual: {
40914
40934
  'update:options': (value: any) => true;
40915
40935
  'update:groupBy': (value: any) => true;
40916
40936
  'update:expanded': (value: any) => true;
40917
- }, "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, {
40937
+ }, "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, {
40918
40938
  expanded: readonly string[];
40919
40939
  style: vue.StyleValue;
40920
40940
  mobile: boolean | null;
@@ -40983,6 +41003,7 @@ declare const VDataTableVirtual: {
40983
41003
  }) => vue.VNode[];
40984
41004
  loading: () => vue.VNode[];
40985
41005
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41006
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40986
41007
  'no-data': () => vue.VNode[];
40987
41008
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40988
41009
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41359,7 +41380,7 @@ declare const VDataTableServer: {
41359
41380
  'update:options': (options: any) => true;
41360
41381
  'update:expanded': (options: any) => true;
41361
41382
  'update:groupBy': (value: any) => true;
41362
- }, "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, {
41383
+ }, "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, {
41363
41384
  page: string | number;
41364
41385
  expanded: readonly string[];
41365
41386
  style: vue.StyleValue;
@@ -41440,6 +41461,7 @@ declare const VDataTableServer: {
41440
41461
  }) => vue.VNode[];
41441
41462
  loading: () => vue.VNode[];
41442
41463
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41464
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41443
41465
  'no-data': () => vue.VNode[];
41444
41466
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41445
41467
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41665,7 +41687,7 @@ declare const VDataTableServer: {
41665
41687
  'update:options': (options: any) => true;
41666
41688
  'update:expanded': (options: any) => true;
41667
41689
  'update:groupBy': (value: any) => true;
41668
- }, "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, {
41690
+ }, "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, {
41669
41691
  page: string | number;
41670
41692
  expanded: readonly string[];
41671
41693
  style: vue.StyleValue;
@@ -41746,6 +41768,7 @@ declare const VDataTableServer: {
41746
41768
  }) => vue.VNode[];
41747
41769
  loading: () => vue.VNode[];
41748
41770
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41771
+ 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41749
41772
  'no-data': () => vue.VNode[];
41750
41773
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41751
41774
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -42313,6 +42336,7 @@ declare const VDatePickerMonth: {
42313
42336
  year?: string | number | undefined;
42314
42337
  modelValue?: unknown[] | undefined;
42315
42338
  firstDayOfWeek?: string | number | undefined;
42339
+ firstDayOfYear?: string | number | undefined;
42316
42340
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42317
42341
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42318
42342
  } & {
@@ -42360,6 +42384,7 @@ declare const VDatePickerMonth: {
42360
42384
  weekdays: CalendarWeekdays[];
42361
42385
  weeksInMonth: "static" | "dynamic";
42362
42386
  firstDayOfWeek: string | number;
42387
+ firstDayOfYear: string | number;
42363
42388
  hideWeekdays: boolean;
42364
42389
  showWeek: boolean;
42365
42390
  }, true, {}, vue.SlotsType<Partial<{
@@ -42395,6 +42420,7 @@ declare const VDatePickerMonth: {
42395
42420
  year?: string | number | undefined;
42396
42421
  modelValue?: unknown[] | undefined;
42397
42422
  firstDayOfWeek?: string | number | undefined;
42423
+ firstDayOfYear?: string | number | undefined;
42398
42424
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42399
42425
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42400
42426
  } & {
@@ -42438,6 +42464,7 @@ declare const VDatePickerMonth: {
42438
42464
  weekdays: CalendarWeekdays[];
42439
42465
  weeksInMonth: "static" | "dynamic";
42440
42466
  firstDayOfWeek: string | number;
42467
+ firstDayOfYear: string | number;
42441
42468
  hideWeekdays: boolean;
42442
42469
  showWeek: boolean;
42443
42470
  }>;
@@ -42462,6 +42489,7 @@ declare const VDatePickerMonth: {
42462
42489
  year?: string | number | undefined;
42463
42490
  modelValue?: unknown[] | undefined;
42464
42491
  firstDayOfWeek?: string | number | undefined;
42492
+ firstDayOfYear?: string | number | undefined;
42465
42493
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42466
42494
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42467
42495
  } & {
@@ -42509,6 +42537,7 @@ declare const VDatePickerMonth: {
42509
42537
  weekdays: CalendarWeekdays[];
42510
42538
  weeksInMonth: "static" | "dynamic";
42511
42539
  firstDayOfWeek: string | number;
42540
+ firstDayOfYear: string | number;
42512
42541
  hideWeekdays: boolean;
42513
42542
  showWeek: boolean;
42514
42543
  }, {}, string, vue.SlotsType<Partial<{
@@ -42542,6 +42571,10 @@ declare const VDatePickerMonth: {
42542
42571
  type: (StringConstructor | NumberConstructor)[];
42543
42572
  default: undefined;
42544
42573
  };
42574
+ firstDayOfYear: {
42575
+ type: (StringConstructor | NumberConstructor)[];
42576
+ default: undefined;
42577
+ };
42545
42578
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42546
42579
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42547
42580
  color: StringConstructor;
@@ -42579,6 +42612,10 @@ declare const VDatePickerMonth: {
42579
42612
  type: (StringConstructor | NumberConstructor)[];
42580
42613
  default: undefined;
42581
42614
  };
42615
+ firstDayOfYear: {
42616
+ type: (StringConstructor | NumberConstructor)[];
42617
+ default: undefined;
42618
+ };
42582
42619
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42583
42620
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42584
42621
  color: StringConstructor;
@@ -43402,6 +43439,7 @@ declare const VDatePicker: {
43402
43439
  controlHeight?: string | number | undefined;
43403
43440
  headerColor?: string | undefined;
43404
43441
  firstDayOfWeek?: string | number | undefined;
43442
+ firstDayOfYear?: string | number | undefined;
43405
43443
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43406
43444
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
43407
43445
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43438,6 +43476,7 @@ declare const VDatePicker: {
43438
43476
  weekdays: CalendarWeekdays[];
43439
43477
  weeksInMonth: "static" | "dynamic";
43440
43478
  firstDayOfWeek: string | number;
43479
+ firstDayOfYear: string | number;
43441
43480
  hideWeekdays: boolean;
43442
43481
  showWeek: boolean;
43443
43482
  }, true, {}, vue.SlotsType<Partial<{
@@ -43535,6 +43574,7 @@ declare const VDatePicker: {
43535
43574
  controlHeight?: string | number | undefined;
43536
43575
  headerColor?: string | undefined;
43537
43576
  firstDayOfWeek?: string | number | undefined;
43577
+ firstDayOfYear?: string | number | undefined;
43538
43578
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43539
43579
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
43540
43580
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43566,6 +43606,7 @@ declare const VDatePicker: {
43566
43606
  weekdays: CalendarWeekdays[];
43567
43607
  weeksInMonth: "static" | "dynamic";
43568
43608
  firstDayOfWeek: string | number;
43609
+ firstDayOfYear: string | number;
43569
43610
  hideWeekdays: boolean;
43570
43611
  showWeek: boolean;
43571
43612
  }>;
@@ -43619,6 +43660,7 @@ declare const VDatePicker: {
43619
43660
  controlHeight?: string | number | undefined;
43620
43661
  headerColor?: string | undefined;
43621
43662
  firstDayOfWeek?: string | number | undefined;
43663
+ firstDayOfYear?: string | number | undefined;
43622
43664
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43623
43665
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
43624
43666
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43655,6 +43697,7 @@ declare const VDatePicker: {
43655
43697
  weekdays: CalendarWeekdays[];
43656
43698
  weeksInMonth: "static" | "dynamic";
43657
43699
  firstDayOfWeek: string | number;
43700
+ firstDayOfYear: string | number;
43658
43701
  hideWeekdays: boolean;
43659
43702
  showWeek: boolean;
43660
43703
  }, {}, string, vue.SlotsType<Partial<{
@@ -43771,6 +43814,10 @@ declare const VDatePicker: {
43771
43814
  type: (StringConstructor | NumberConstructor)[];
43772
43815
  default: undefined;
43773
43816
  };
43817
+ firstDayOfYear: {
43818
+ type: (StringConstructor | NumberConstructor)[];
43819
+ default: undefined;
43820
+ };
43774
43821
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43775
43822
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43776
43823
  hideWeekdays: BooleanConstructor;
@@ -43880,6 +43927,10 @@ declare const VDatePicker: {
43880
43927
  type: (StringConstructor | NumberConstructor)[];
43881
43928
  default: undefined;
43882
43929
  };
43930
+ firstDayOfYear: {
43931
+ type: (StringConstructor | NumberConstructor)[];
43932
+ default: undefined;
43933
+ };
43883
43934
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43884
43935
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43885
43936
  hideWeekdays: BooleanConstructor;
@@ -97370,6 +97421,7 @@ declare const VCalendar: {
97370
97421
  events?: any[] | undefined;
97371
97422
  modelValue?: unknown[] | undefined;
97372
97423
  firstDayOfWeek?: string | number | undefined;
97424
+ firstDayOfYear?: string | number | undefined;
97373
97425
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
97374
97426
  displayValue?: unknown;
97375
97427
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -97573,6 +97625,7 @@ declare const VCalendar: {
97573
97625
  weekdays: CalendarWeekdays[];
97574
97626
  weeksInMonth: "static" | "dynamic";
97575
97627
  firstDayOfWeek: string | number;
97628
+ firstDayOfYear: string | number;
97576
97629
  intervalDivisions: number;
97577
97630
  intervalDuration: number;
97578
97631
  intervalHeight: number;
@@ -97672,6 +97725,7 @@ declare const VCalendar: {
97672
97725
  events?: any[] | undefined;
97673
97726
  modelValue?: unknown[] | undefined;
97674
97727
  firstDayOfWeek?: string | number | undefined;
97728
+ firstDayOfYear?: string | number | undefined;
97675
97729
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
97676
97730
  displayValue?: unknown;
97677
97731
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -97870,6 +97924,7 @@ declare const VCalendar: {
97870
97924
  weekdays: CalendarWeekdays[];
97871
97925
  weeksInMonth: "static" | "dynamic";
97872
97926
  firstDayOfWeek: string | number;
97927
+ firstDayOfYear: string | number;
97873
97928
  intervalDivisions: number;
97874
97929
  intervalDuration: number;
97875
97930
  intervalHeight: number;
@@ -97910,6 +97965,7 @@ declare const VCalendar: {
97910
97965
  events?: any[] | undefined;
97911
97966
  modelValue?: unknown[] | undefined;
97912
97967
  firstDayOfWeek?: string | number | undefined;
97968
+ firstDayOfYear?: string | number | undefined;
97913
97969
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
97914
97970
  displayValue?: unknown;
97915
97971
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -98113,6 +98169,7 @@ declare const VCalendar: {
98113
98169
  weekdays: CalendarWeekdays[];
98114
98170
  weeksInMonth: "static" | "dynamic";
98115
98171
  firstDayOfWeek: string | number;
98172
+ firstDayOfYear: string | number;
98116
98173
  intervalDivisions: number;
98117
98174
  intervalDuration: number;
98118
98175
  intervalHeight: number;
@@ -98265,6 +98322,10 @@ declare const VCalendar: {
98265
98322
  type: (StringConstructor | NumberConstructor)[];
98266
98323
  default: undefined;
98267
98324
  };
98325
+ firstDayOfYear: {
98326
+ type: (StringConstructor | NumberConstructor)[];
98327
+ default: undefined;
98328
+ };
98268
98329
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
98269
98330
  hideHeader: BooleanConstructor;
98270
98331
  hideWeekNumber: BooleanConstructor;
@@ -98356,6 +98417,10 @@ declare const VCalendar: {
98356
98417
  type: (StringConstructor | NumberConstructor)[];
98357
98418
  default: undefined;
98358
98419
  };
98420
+ firstDayOfYear: {
98421
+ type: (StringConstructor | NumberConstructor)[];
98422
+ default: undefined;
98423
+ };
98359
98424
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
98360
98425
  hideHeader: BooleanConstructor;
98361
98426
  hideWeekNumber: BooleanConstructor;
@@ -100230,6 +100295,7 @@ declare const VDateInput: {
100230
100295
  counterValue?: number | ((value: any) => number) | undefined;
100231
100296
  modelModifiers?: Record<string, boolean> | undefined;
100232
100297
  firstDayOfWeek?: string | number | undefined;
100298
+ firstDayOfYear?: string | number | undefined;
100233
100299
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
100234
100300
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
100235
100301
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -102273,6 +102339,7 @@ declare const VDateInput: {
102273
102339
  weekdays: CalendarWeekdays[];
102274
102340
  weeksInMonth: "static" | "dynamic";
102275
102341
  firstDayOfWeek: string | number;
102342
+ firstDayOfYear: string | number;
102276
102343
  hideWeekdays: boolean;
102277
102344
  showWeek: boolean;
102278
102345
  displayFormat: string | ((date: unknown) => any);
@@ -102410,6 +102477,7 @@ declare const VDateInput: {
102410
102477
  counterValue?: number | ((value: any) => number) | undefined;
102411
102478
  modelModifiers?: Record<string, boolean> | undefined;
102412
102479
  firstDayOfWeek?: string | number | undefined;
102480
+ firstDayOfYear?: string | number | undefined;
102413
102481
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
102414
102482
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
102415
102483
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -104447,6 +104515,7 @@ declare const VDateInput: {
104447
104515
  weekdays: CalendarWeekdays[];
104448
104516
  weeksInMonth: "static" | "dynamic";
104449
104517
  firstDayOfWeek: string | number;
104518
+ firstDayOfYear: string | number;
104450
104519
  hideWeekdays: boolean;
104451
104520
  showWeek: boolean;
104452
104521
  displayFormat: string | ((date: unknown) => any);
@@ -104563,6 +104632,7 @@ declare const VDateInput: {
104563
104632
  counterValue?: number | ((value: any) => number) | undefined;
104564
104633
  modelModifiers?: Record<string, boolean> | undefined;
104565
104634
  firstDayOfWeek?: string | number | undefined;
104635
+ firstDayOfYear?: string | number | undefined;
104566
104636
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
104567
104637
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
104568
104638
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -106606,6 +106676,7 @@ declare const VDateInput: {
106606
106676
  weekdays: CalendarWeekdays[];
106607
106677
  weeksInMonth: "static" | "dynamic";
106608
106678
  firstDayOfWeek: string | number;
106679
+ firstDayOfYear: string | number;
106609
106680
  hideWeekdays: boolean;
106610
106681
  showWeek: boolean;
106611
106682
  displayFormat: string | ((date: unknown) => any);
@@ -106733,6 +106804,10 @@ declare const VDateInput: {
106733
106804
  type: (StringConstructor | NumberConstructor)[];
106734
106805
  default: undefined;
106735
106806
  };
106807
+ firstDayOfYear: {
106808
+ type: (StringConstructor | NumberConstructor)[];
106809
+ default: undefined;
106810
+ };
106736
106811
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
106737
106812
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
106738
106813
  hideWeekdays: BooleanConstructor;
@@ -106974,6 +107049,10 @@ declare const VDateInput: {
106974
107049
  type: (StringConstructor | NumberConstructor)[];
106975
107050
  default: undefined;
106976
107051
  };
107052
+ firstDayOfYear: {
107053
+ type: (StringConstructor | NumberConstructor)[];
107054
+ default: undefined;
107055
+ };
106977
107056
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
106978
107057
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
106979
107058
  hideWeekdays: BooleanConstructor;
@@ -123771,7 +123850,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
123771
123850
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
123772
123851
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
123773
123852
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
123774
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
123853
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
123775
123854
  getMonth: (date: unknown) => number;
123776
123855
  setMonth: (date: unknown, month: number) => unknown;
123777
123856
  getDate: (date: unknown) => number;
@@ -123828,37 +123907,38 @@ declare module 'vue' {
123828
123907
  VAppBar: VAppBar
123829
123908
  VAppBarNavIcon: VAppBarNavIcon
123830
123909
  VAppBarTitle: VAppBarTitle
123910
+ VAvatar: VAvatar
123831
123911
  VAlert: VAlert
123832
123912
  VAlertTitle: VAlertTitle
123833
- VBadge: VBadge
123834
- VAvatar: VAvatar
123835
- VBanner: VBanner
123836
- VBannerActions: VBannerActions
123837
- VBannerText: VBannerText
123838
- VBottomSheet: VBottomSheet
123913
+ VAutocomplete: VAutocomplete
123839
123914
  VBreadcrumbs: VBreadcrumbs
123840
123915
  VBreadcrumbsItem: VBreadcrumbsItem
123841
123916
  VBreadcrumbsDivider: VBreadcrumbsDivider
123917
+ VBanner: VBanner
123918
+ VBannerActions: VBannerActions
123919
+ VBannerText: VBannerText
123920
+ VBottomNavigation: VBottomNavigation
123842
123921
  VBtn: VBtn
123922
+ VBottomSheet: VBottomSheet
123923
+ VBadge: VBadge
123924
+ VBtnGroup: VBtnGroup
123843
123925
  VCard: VCard
123844
123926
  VCardActions: VCardActions
123845
123927
  VCardItem: VCardItem
123846
123928
  VCardSubtitle: VCardSubtitle
123847
123929
  VCardText: VCardText
123848
123930
  VCardTitle: VCardTitle
123849
- VBtnToggle: VBtnToggle
123850
- VChip: VChip
123851
- VBtnGroup: VBtnGroup
123852
- VCheckbox: VCheckbox
123853
- VCheckboxBtn: VCheckboxBtn
123854
- VCode: VCode
123855
- VBottomNavigation: VBottomNavigation
123856
- VColorPicker: VColorPicker
123857
- VChipGroup: VChipGroup
123858
123931
  VCarousel: VCarousel
123859
123932
  VCarouselItem: VCarouselItem
123933
+ VBtnToggle: VBtnToggle
123934
+ VChipGroup: VChipGroup
123935
+ VCode: VCode
123860
123936
  VCombobox: VCombobox
123937
+ VCheckbox: VCheckbox
123938
+ VCheckboxBtn: VCheckboxBtn
123861
123939
  VCounter: VCounter
123940
+ VColorPicker: VColorPicker
123941
+ VChip: VChip
123862
123942
  VDataTable: VDataTable
123863
123943
  VDataTableHeaders: VDataTableHeaders
123864
123944
  VDataTableFooter: VDataTableFooter
@@ -123872,29 +123952,29 @@ declare module 'vue' {
123872
123952
  VDatePickerMonth: VDatePickerMonth
123873
123953
  VDatePickerMonths: VDatePickerMonths
123874
123954
  VDatePickerYears: VDatePickerYears
123875
- VEmptyState: VEmptyState
123876
- VDivider: VDivider
123877
123955
  VDialog: VDialog
123878
- VExpansionPanels: VExpansionPanels
123879
- VExpansionPanel: VExpansionPanel
123880
- VExpansionPanelText: VExpansionPanelText
123881
- VExpansionPanelTitle: VExpansionPanelTitle
123882
- VFab: VFab
123956
+ VDivider: VDivider
123883
123957
  VFileInput: VFileInput
123958
+ VFab: VFab
123959
+ VEmptyState: VEmptyState
123884
123960
  VField: VField
123885
123961
  VFieldLabel: VFieldLabel
123886
- VInfiniteScroll: VInfiniteScroll
123887
123962
  VFooter: VFooter
123888
123963
  VImg: VImg
123964
+ VExpansionPanels: VExpansionPanels
123965
+ VExpansionPanel: VExpansionPanel
123966
+ VExpansionPanelText: VExpansionPanelText
123967
+ VExpansionPanelTitle: VExpansionPanelTitle
123889
123968
  VIcon: VIcon
123890
123969
  VComponentIcon: VComponentIcon
123891
123970
  VSvgIcon: VSvgIcon
123892
123971
  VLigatureIcon: VLigatureIcon
123893
123972
  VClassIcon: VClassIcon
123973
+ VInput: VInput
123894
123974
  VKbd: VKbd
123895
123975
  VItemGroup: VItemGroup
123896
123976
  VItem: VItem
123897
- VInput: VInput
123977
+ VInfiniteScroll: VInfiniteScroll
123898
123978
  VList: VList
123899
123979
  VListGroup: VListGroup
123900
123980
  VListImg: VListImg
@@ -123904,70 +123984,70 @@ declare module 'vue' {
123904
123984
  VListItemSubtitle: VListItemSubtitle
123905
123985
  VListItemTitle: VListItemTitle
123906
123986
  VListSubheader: VListSubheader
123907
- VLabel: VLabel
123908
- VMain: VMain
123909
123987
  VMenu: VMenu
123910
- VNavigationDrawer: VNavigationDrawer
123988
+ VMain: VMain
123911
123989
  VMessages: VMessages
123990
+ VNavigationDrawer: VNavigationDrawer
123991
+ VOtpInput: VOtpInput
123912
123992
  VNumberInput: VNumberInput
123913
123993
  VOverlay: VOverlay
123914
- VOtpInput: VOtpInput
123915
123994
  VPagination: VPagination
123916
123995
  VProgressLinear: VProgressLinear
123917
- VProgressCircular: VProgressCircular
123918
123996
  VRating: VRating
123997
+ VProgressCircular: VProgressCircular
123919
123998
  VRadioGroup: VRadioGroup
123920
- VSelectionControlGroup: VSelectionControlGroup
123921
- VSkeletonLoader: VSkeletonLoader
123922
- VSheet: VSheet
123923
123999
  VSelect: VSelect
124000
+ VSheet: VSheet
124001
+ VSelectionControl: VSelectionControl
124002
+ VSelectionControlGroup: VSelectionControlGroup
123924
124003
  VSlideGroup: VSlideGroup
123925
124004
  VSlideGroupItem: VSlideGroupItem
123926
124005
  VSlider: VSlider
123927
- VSelectionControl: VSelectionControl
124006
+ VSkeletonLoader: VSkeletonLoader
123928
124007
  VSwitch: VSwitch
123929
- VSystemBar: VSystemBar
123930
124008
  VStepper: VStepper
123931
124009
  VStepperActions: VStepperActions
123932
124010
  VStepperHeader: VStepperHeader
123933
124011
  VStepperItem: VStepperItem
123934
124012
  VStepperWindow: VStepperWindow
123935
124013
  VStepperWindowItem: VStepperWindowItem
124014
+ VSnackbar: VSnackbar
124015
+ VSystemBar: VSystemBar
123936
124016
  VTab: VTab
123937
124017
  VTabs: VTabs
123938
124018
  VTabsWindow: VTabsWindow
123939
124019
  VTabsWindowItem: VTabsWindowItem
123940
- VTable: VTable
123941
- VTextarea: VTextarea
123942
124020
  VTextField: VTextField
124021
+ VTextarea: VTextarea
124022
+ VToolbar: VToolbar
124023
+ VToolbarTitle: VToolbarTitle
124024
+ VToolbarItems: VToolbarItems
123943
124025
  VTimeline: VTimeline
123944
124026
  VTimelineItem: VTimelineItem
123945
124027
  VTimePicker: VTimePicker
123946
124028
  VTimePickerClock: VTimePickerClock
123947
124029
  VTimePickerControls: VTimePickerControls
124030
+ VTable: VTable
123948
124031
  VTooltip: VTooltip
123949
- VToolbar: VToolbar
123950
- VToolbarTitle: VToolbarTitle
123951
- VToolbarItems: VToolbarItems
123952
124032
  VTreeview: VTreeview
123953
124033
  VTreeviewItem: VTreeviewItem
123954
124034
  VTreeviewGroup: VTreeviewGroup
123955
124035
  VWindow: VWindow
123956
124036
  VWindowItem: VWindowItem
123957
- VAutocomplete: VAutocomplete
124037
+ VLabel: VLabel
123958
124038
  VConfirmEdit: VConfirmEdit
123959
- VDataIterator: VDataIterator
123960
124039
  VDefaultsProvider: VDefaultsProvider
123961
- VForm: VForm
124040
+ VDataIterator: VDataIterator
123962
124041
  VContainer: VContainer
123963
124042
  VCol: VCol
123964
124043
  VRow: VRow
123965
124044
  VSpacer: VSpacer
124045
+ VForm: VForm
123966
124046
  VHover: VHover
124047
+ VLocaleProvider: VLocaleProvider
123967
124048
  VLazy: VLazy
123968
124049
  VLayout: VLayout
123969
124050
  VLayoutItem: VLayoutItem
123970
- VLocaleProvider: VLocaleProvider
123971
124051
  VNoSsr: VNoSsr
123972
124052
  VParallax: VParallax
123973
124053
  VRadio: VRadio
@@ -123995,20 +124075,19 @@ declare module 'vue' {
123995
124075
  VExpandTransition: VExpandTransition
123996
124076
  VExpandXTransition: VExpandXTransition
123997
124077
  VDialogTransition: VDialogTransition
123998
- VSnackbar: VSnackbar
123999
- VFileUpload: VFileUpload
124000
- VFileUploadItem: VFileUploadItem
124001
- VIconBtn: VIconBtn
124002
124078
  VCalendar: VCalendar
124003
124079
  VCalendarDay: VCalendarDay
124004
124080
  VCalendarHeader: VCalendarHeader
124005
124081
  VCalendarInterval: VCalendarInterval
124006
124082
  VCalendarIntervalEvent: VCalendarIntervalEvent
124007
124083
  VCalendarMonthDay: VCalendarMonthDay
124008
- VColorInput: VColorInput
124084
+ VFileUpload: VFileUpload
124085
+ VFileUploadItem: VFileUploadItem
124009
124086
  VPie: VPie
124010
124087
  VPieSegment: VPieSegment
124011
124088
  VPieTooltip: VPieTooltip
124089
+ VIconBtn: VIconBtn
124090
+ VColorInput: VColorInput
124012
124091
  VPicker: VPicker
124013
124092
  VPickerTitle: VPickerTitle
124014
124093
  VHotkey: VHotkey
@@ -124018,8 +124097,8 @@ declare module 'vue' {
124018
124097
  VVideo: VVideo
124019
124098
  VVideoControls: VVideoControls
124020
124099
  VVideoVolume: VVideoVolume
124021
- VDateInput: VDateInput
124022
124100
  VMaskInput: VMaskInput
124101
+ VDateInput: VDateInput
124023
124102
  VPullToRefresh: VPullToRefresh
124024
124103
  }
124025
124104
  export interface GlobalDirectives {