@vuetify/nightly 3.9.3-master.2025-08-04 → 3.9.3-master.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 (71) hide show
  1. package/CHANGELOG.md +3 -6
  2. package/dist/json/attributes.json +3560 -3576
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +148 -148
  5. package/dist/json/tags.json +0 -4
  6. package/dist/json/web-types.json +6481 -6609
  7. package/dist/vuetify-labs.cjs +19 -63
  8. package/dist/vuetify-labs.css +3946 -3946
  9. package/dist/vuetify-labs.d.ts +69 -148
  10. package/dist/vuetify-labs.esm.js +19 -63
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +19 -63
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +19 -63
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5211 -5211
  17. package/dist/vuetify.d.ts +69 -120
  18. package/dist/vuetify.esm.js +19 -63
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +19 -63
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +279 -285
  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 +4 -6
  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 +11 -14
  32. package/lib/components/VDataTable/VDataTableRows.js +0 -9
  33. package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
  34. package/lib/components/VDataTable/VDataTableServer.d.ts +2 -4
  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 +2 -4
  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 +5 -13
  41. package/lib/components/VDataTable/composables/group.js +5 -11
  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 +1 -7
  46. package/lib/components/VDataTable/types.js.map +1 -1
  47. package/lib/components/VDatePicker/VDatePicker.d.ts +0 -25
  48. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +0 -25
  49. package/lib/components/VTreeview/VTreeviewChildren.d.ts +2 -20
  50. package/lib/components/VTreeview/VTreeviewChildren.js +2 -7
  51. package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
  52. package/lib/composables/calendar.d.ts +0 -12
  53. package/lib/composables/calendar.js +1 -5
  54. package/lib/composables/calendar.js.map +1 -1
  55. package/lib/composables/date/DateAdapter.d.ts +1 -1
  56. package/lib/composables/date/DateAdapter.js.map +1 -1
  57. package/lib/composables/date/adapters/string.d.ts +1 -1
  58. package/lib/composables/date/adapters/string.js +2 -2
  59. package/lib/composables/date/adapters/string.js.map +1 -1
  60. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  61. package/lib/composables/date/adapters/vuetify.js +5 -25
  62. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  63. package/lib/composables/date/date.d.ts +1 -1
  64. package/lib/entry-bundler.d.ts +1 -1
  65. package/lib/entry-bundler.js +1 -1
  66. package/lib/framework.d.ts +54 -54
  67. package/lib/framework.js +1 -1
  68. package/lib/labs/VCalendar/VCalendar.d.ts +0 -25
  69. package/lib/labs/VDateInput/VDateInput.d.ts +0 -25
  70. package/lib/labs/entry-bundler.d.ts +1 -1
  71. 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, firstDayOfYear?: number | string): number;
42
+ getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
43
43
  getMonth(date: T): number;
44
44
  setMonth(date: T, month: number): T;
45
45
  getDate(date: T): number;
@@ -878,15 +878,7 @@ interface Group<T = any> {
878
878
  id: string;
879
879
  key: string;
880
880
  value: any;
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>)[];
881
+ items: readonly (T | Group<T>)[];
890
882
  }
891
883
  declare function provideGroupBy(options: {
892
884
  groupBy: Ref<readonly SortItem[]>;
@@ -897,7 +889,7 @@ declare function provideGroupBy(options: {
897
889
  toggleGroup: (group: Group) => void;
898
890
  opened: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
899
891
  groupBy: Ref<readonly SortItem[], readonly SortItem[]>;
900
- extractRows: <T extends GroupableItem>(items: readonly (T | Group<T> | GroupSummary<T>)[]) => T[];
892
+ extractRows: <T extends GroupableItem>(items: readonly (T | Group<T>)[]) => T[];
901
893
  isGroupOpen: (group: Group) => boolean;
902
894
  };
903
895
 
@@ -1002,12 +994,6 @@ type GroupHeaderSlot = {
1002
994
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
1003
995
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
1004
996
  };
1005
- type GroupSummarySlot = {
1006
- index: number;
1007
- item: GroupSummary;
1008
- columns: InternalDataTableHeader[];
1009
- toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
1010
- };
1011
997
  type ItemSlotBase<T> = {
1012
998
  index: number;
1013
999
  item: T;
@@ -37620,7 +37606,7 @@ type VDataIteratorSlotProps<T> = {
37620
37606
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
37621
37607
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
37622
37608
  items: readonly DataIteratorItem<T>[];
37623
- groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>> | GroupSummary<DataIteratorItem<T>>)[];
37609
+ groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
37624
37610
  };
37625
37611
  type VDataIteratorSlots<T> = {
37626
37612
  default: VDataIteratorSlotProps<T>;
@@ -38613,7 +38599,6 @@ type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots
38613
38599
  };
38614
38600
  loading: never;
38615
38601
  'group-header': GroupHeaderSlot;
38616
- 'group-summary': GroupSummarySlot;
38617
38602
  'no-data': never;
38618
38603
  'expanded-row': ItemSlot$1<T>;
38619
38604
  };
@@ -38628,7 +38613,7 @@ declare const VDataTableRows: {
38628
38613
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38629
38614
  cellProps?: CellProps<any> | undefined;
38630
38615
  rowProps?: RowProps<any> | undefined;
38631
- }, {}, 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, {
38616
+ }, {}, 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, {
38632
38617
  mobile: boolean | null;
38633
38618
  noDataText: string;
38634
38619
  loadingText: string;
@@ -38663,7 +38648,6 @@ declare const VDataTableRows: {
38663
38648
  }) => vue.VNode[];
38664
38649
  loading: () => vue.VNode[];
38665
38650
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38666
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38667
38651
  'no-data': () => vue.VNode[];
38668
38652
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38669
38653
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
@@ -38702,7 +38686,7 @@ declare const VDataTableRows: {
38702
38686
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
38703
38687
  cellProps?: CellProps<any> | undefined;
38704
38688
  rowProps?: RowProps<any> | undefined;
38705
- }, {}, 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, {
38689
+ }, {}, 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, {
38706
38690
  mobile: boolean | null;
38707
38691
  noDataText: string;
38708
38692
  loadingText: string;
@@ -38737,11 +38721,10 @@ declare const VDataTableRows: {
38737
38721
  }) => vue.VNode[];
38738
38722
  loading: () => vue.VNode[];
38739
38723
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38740
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38741
38724
  'no-data': () => vue.VNode[];
38742
38725
  'expanded-row': (arg: ItemSlot$1<unknown>) => vue.VNode[];
38743
38726
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
38744
- items?: readonly (DataTableItem<T> | Group<T> | GroupSummary<T>)[];
38727
+ items?: readonly (DataTableItem<T> | Group<T>)[];
38745
38728
  }, slots: VDataTableRowsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
38746
38729
  mobile: {
38747
38730
  type: PropType<boolean | null>;
@@ -38755,7 +38738,7 @@ declare const VDataTableRows: {
38755
38738
  };
38756
38739
  hideNoData: BooleanConstructor;
38757
38740
  items: {
38758
- type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
38741
+ type: PropType<readonly (DataTableItem | Group)[]>;
38759
38742
  default: () => never[];
38760
38743
  };
38761
38744
  noDataText: {
@@ -38777,7 +38760,7 @@ declare const VDataTableRows: {
38777
38760
  };
38778
38761
  hideNoData: BooleanConstructor;
38779
38762
  items: {
38780
- type: PropType<readonly (DataTableItem | Group | GroupSummary)[]>;
38763
+ type: PropType<readonly (DataTableItem | Group)[]>;
38781
38764
  default: () => never[];
38782
38765
  };
38783
38766
  noDataText: {
@@ -38808,7 +38791,7 @@ type VDataTableSlotProps<T> = {
38808
38791
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
38809
38792
  items: readonly T[];
38810
38793
  internalItems: readonly DataTableItem[];
38811
- groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>> | GroupSummary<DataTableItem<T>>)[];
38794
+ groupedItems: readonly (DataTableItem<T> | Group<DataTableItem<T>>)[];
38812
38795
  columns: InternalDataTableHeader[];
38813
38796
  headers: InternalDataTableHeader[][];
38814
38797
  };
@@ -38907,7 +38890,7 @@ declare const VDataTable: {
38907
38890
  'update:groupBy': (value: any) => true;
38908
38891
  'update:expanded': (value: any) => true;
38909
38892
  'update:currentItems': (value: any) => true;
38910
- }, "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, {
38893
+ }, "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, {
38911
38894
  page: string | number;
38912
38895
  expanded: readonly string[];
38913
38896
  style: vue.StyleValue;
@@ -38986,7 +38969,6 @@ declare const VDataTable: {
38986
38969
  }) => vue.VNode[];
38987
38970
  loading: () => vue.VNode[];
38988
38971
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
38989
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
38990
38972
  'no-data': () => vue.VNode[];
38991
38973
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
38992
38974
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -39213,7 +39195,7 @@ declare const VDataTable: {
39213
39195
  'update:groupBy': (value: any) => true;
39214
39196
  'update:expanded': (value: any) => true;
39215
39197
  'update:currentItems': (value: any) => true;
39216
- }, "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, {
39198
+ }, "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, {
39217
39199
  page: string | number;
39218
39200
  expanded: readonly string[];
39219
39201
  style: vue.StyleValue;
@@ -39292,7 +39274,6 @@ declare const VDataTable: {
39292
39274
  }) => vue.VNode[];
39293
39275
  loading: () => vue.VNode[];
39294
39276
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
39295
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
39296
39277
  'no-data': () => vue.VNode[];
39297
39278
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
39298
39279
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -39994,7 +39975,7 @@ declare const VDataTableVirtual: {
39994
39975
  'update:options': (value: any) => true;
39995
39976
  'update:groupBy': (value: any) => true;
39996
39977
  'update:expanded': (value: any) => true;
39997
- }, "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, {
39978
+ }, "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, {
39998
39979
  expanded: readonly string[];
39999
39980
  style: vue.StyleValue;
40000
39981
  mobile: boolean | null;
@@ -40059,7 +40040,6 @@ declare const VDataTableVirtual: {
40059
40040
  }) => vue.VNode[];
40060
40041
  loading: () => vue.VNode[];
40061
40042
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40062
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40063
40043
  'no-data': () => vue.VNode[];
40064
40044
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40065
40045
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40232,7 +40212,7 @@ declare const VDataTableVirtual: {
40232
40212
  'update:options': (value: any) => true;
40233
40213
  'update:groupBy': (value: any) => true;
40234
40214
  'update:expanded': (value: any) => true;
40235
- }, "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, {
40215
+ }, "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, {
40236
40216
  expanded: readonly string[];
40237
40217
  style: vue.StyleValue;
40238
40218
  mobile: boolean | null;
@@ -40297,7 +40277,6 @@ declare const VDataTableVirtual: {
40297
40277
  }) => vue.VNode[];
40298
40278
  loading: () => vue.VNode[];
40299
40279
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40300
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40301
40280
  'no-data': () => vue.VNode[];
40302
40281
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40303
40282
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40638,7 +40617,7 @@ declare const VDataTableServer: {
40638
40617
  'update:options': (options: any) => true;
40639
40618
  'update:expanded': (options: any) => true;
40640
40619
  'update:groupBy': (value: any) => true;
40641
- }, "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, {
40620
+ }, "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, {
40642
40621
  page: string | number;
40643
40622
  expanded: readonly string[];
40644
40623
  style: vue.StyleValue;
@@ -40715,7 +40694,6 @@ declare const VDataTableServer: {
40715
40694
  }) => vue.VNode[];
40716
40695
  loading: () => vue.VNode[];
40717
40696
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
40718
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
40719
40697
  'no-data': () => vue.VNode[];
40720
40698
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
40721
40699
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -40929,7 +40907,7 @@ declare const VDataTableServer: {
40929
40907
  'update:options': (options: any) => true;
40930
40908
  'update:expanded': (options: any) => true;
40931
40909
  'update:groupBy': (value: any) => true;
40932
- }, "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, {
40910
+ }, "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, {
40933
40911
  page: string | number;
40934
40912
  expanded: readonly string[];
40935
40913
  style: vue.StyleValue;
@@ -41006,7 +40984,6 @@ declare const VDataTableServer: {
41006
40984
  }) => vue.VNode[];
41007
40985
  loading: () => vue.VNode[];
41008
40986
  'group-header': (arg: GroupHeaderSlot) => vue.VNode[];
41009
- 'group-summary': (arg: GroupSummarySlot) => vue.VNode[];
41010
40987
  'no-data': () => vue.VNode[];
41011
40988
  'expanded-row': (arg: ItemSlot$1<any>) => vue.VNode[];
41012
40989
  headers: (arg: HeadersSlotProps) => vue.VNode[];
@@ -41524,7 +41501,6 @@ declare const VDatePickerMonth: {
41524
41501
  year?: string | number | undefined;
41525
41502
  modelValue?: unknown[] | undefined;
41526
41503
  firstDayOfWeek?: string | number | undefined;
41527
- firstDayOfYear?: string | number | undefined;
41528
41504
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41529
41505
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41530
41506
  } & {
@@ -41572,7 +41548,6 @@ declare const VDatePickerMonth: {
41572
41548
  weekdays: CalendarWeekdays[];
41573
41549
  weeksInMonth: "static" | "dynamic";
41574
41550
  firstDayOfWeek: string | number;
41575
- firstDayOfYear: string | number;
41576
41551
  hideWeekdays: boolean;
41577
41552
  showWeek: boolean;
41578
41553
  }, true, {}, vue.SlotsType<Partial<{
@@ -41608,7 +41583,6 @@ declare const VDatePickerMonth: {
41608
41583
  year?: string | number | undefined;
41609
41584
  modelValue?: unknown[] | undefined;
41610
41585
  firstDayOfWeek?: string | number | undefined;
41611
- firstDayOfYear?: string | number | undefined;
41612
41586
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41613
41587
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41614
41588
  } & {
@@ -41652,7 +41626,6 @@ declare const VDatePickerMonth: {
41652
41626
  weekdays: CalendarWeekdays[];
41653
41627
  weeksInMonth: "static" | "dynamic";
41654
41628
  firstDayOfWeek: string | number;
41655
- firstDayOfYear: string | number;
41656
41629
  hideWeekdays: boolean;
41657
41630
  showWeek: boolean;
41658
41631
  }>;
@@ -41677,7 +41650,6 @@ declare const VDatePickerMonth: {
41677
41650
  year?: string | number | undefined;
41678
41651
  modelValue?: unknown[] | undefined;
41679
41652
  firstDayOfWeek?: string | number | undefined;
41680
- firstDayOfYear?: string | number | undefined;
41681
41653
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41682
41654
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41683
41655
  } & {
@@ -41725,7 +41697,6 @@ declare const VDatePickerMonth: {
41725
41697
  weekdays: CalendarWeekdays[];
41726
41698
  weeksInMonth: "static" | "dynamic";
41727
41699
  firstDayOfWeek: string | number;
41728
- firstDayOfYear: string | number;
41729
41700
  hideWeekdays: boolean;
41730
41701
  showWeek: boolean;
41731
41702
  }, {}, string, vue.SlotsType<Partial<{
@@ -41759,10 +41730,6 @@ declare const VDatePickerMonth: {
41759
41730
  type: (StringConstructor | NumberConstructor)[];
41760
41731
  default: undefined;
41761
41732
  };
41762
- firstDayOfYear: {
41763
- type: (StringConstructor | NumberConstructor)[];
41764
- default: undefined;
41765
- };
41766
41733
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
41767
41734
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
41768
41735
  color: StringConstructor;
@@ -41800,10 +41767,6 @@ declare const VDatePickerMonth: {
41800
41767
  type: (StringConstructor | NumberConstructor)[];
41801
41768
  default: undefined;
41802
41769
  };
41803
- firstDayOfYear: {
41804
- type: (StringConstructor | NumberConstructor)[];
41805
- default: undefined;
41806
- };
41807
41770
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
41808
41771
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
41809
41772
  color: StringConstructor;
@@ -42362,7 +42325,6 @@ declare const VDatePicker: {
42362
42325
  controlHeight?: string | number | undefined;
42363
42326
  headerColor?: string | undefined;
42364
42327
  firstDayOfWeek?: string | number | undefined;
42365
- firstDayOfYear?: string | number | undefined;
42366
42328
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42367
42329
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42368
42330
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42398,7 +42360,6 @@ declare const VDatePicker: {
42398
42360
  weekdays: CalendarWeekdays[];
42399
42361
  weeksInMonth: "static" | "dynamic";
42400
42362
  firstDayOfWeek: string | number;
42401
- firstDayOfYear: string | number;
42402
42363
  hideWeekdays: boolean;
42403
42364
  showWeek: boolean;
42404
42365
  }, true, {}, vue.SlotsType<Partial<{
@@ -42495,7 +42456,6 @@ declare const VDatePicker: {
42495
42456
  controlHeight?: string | number | undefined;
42496
42457
  headerColor?: string | undefined;
42497
42458
  firstDayOfWeek?: string | number | undefined;
42498
- firstDayOfYear?: string | number | undefined;
42499
42459
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42500
42460
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42501
42461
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42526,7 +42486,6 @@ declare const VDatePicker: {
42526
42486
  weekdays: CalendarWeekdays[];
42527
42487
  weeksInMonth: "static" | "dynamic";
42528
42488
  firstDayOfWeek: string | number;
42529
- firstDayOfYear: string | number;
42530
42489
  hideWeekdays: boolean;
42531
42490
  showWeek: boolean;
42532
42491
  }>;
@@ -42579,7 +42538,6 @@ declare const VDatePicker: {
42579
42538
  controlHeight?: string | number | undefined;
42580
42539
  headerColor?: string | undefined;
42581
42540
  firstDayOfWeek?: string | number | undefined;
42582
- firstDayOfYear?: string | number | undefined;
42583
42541
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42584
42542
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42585
42543
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -42615,7 +42573,6 @@ declare const VDatePicker: {
42615
42573
  weekdays: CalendarWeekdays[];
42616
42574
  weeksInMonth: "static" | "dynamic";
42617
42575
  firstDayOfWeek: string | number;
42618
- firstDayOfYear: string | number;
42619
42576
  hideWeekdays: boolean;
42620
42577
  showWeek: boolean;
42621
42578
  }, {}, string, vue.SlotsType<Partial<{
@@ -42731,10 +42688,6 @@ declare const VDatePicker: {
42731
42688
  type: (StringConstructor | NumberConstructor)[];
42732
42689
  default: undefined;
42733
42690
  };
42734
- firstDayOfYear: {
42735
- type: (StringConstructor | NumberConstructor)[];
42736
- default: undefined;
42737
- };
42738
42691
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
42739
42692
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
42740
42693
  hideWeekdays: BooleanConstructor;
@@ -42843,10 +42796,6 @@ declare const VDatePicker: {
42843
42796
  type: (StringConstructor | NumberConstructor)[];
42844
42797
  default: undefined;
42845
42798
  };
42846
- firstDayOfYear: {
42847
- type: (StringConstructor | NumberConstructor)[];
42848
- default: undefined;
42849
- };
42850
42799
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
42851
42800
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
42852
42801
  hideWeekdays: BooleanConstructor;
@@ -95358,7 +95307,7 @@ declare const createVuetify: {
95358
95307
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
95359
95308
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
95360
95309
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
95361
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
95310
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
95362
95311
  getMonth: (date: unknown) => number;
95363
95312
  setMonth: (date: unknown, month: number) => unknown;
95364
95313
  getDate: (date: unknown) => number;
@@ -95415,38 +95364,47 @@ declare module 'vue' {
95415
95364
  }
95416
95365
  export interface GlobalComponents {
95417
95366
  VApp: VApp
95367
+ VAlert: VAlert
95368
+ VAlertTitle: VAlertTitle
95418
95369
  VAppBar: VAppBar
95419
95370
  VAppBarNavIcon: VAppBarNavIcon
95420
95371
  VAppBarTitle: VAppBarTitle
95372
+ VBadge: VBadge
95421
95373
  VAutocomplete: VAutocomplete
95422
95374
  VAvatar: VAvatar
95423
- VAlert: VAlert
95424
- VAlertTitle: VAlertTitle
95425
- VBanner: VBanner
95426
- VBannerActions: VBannerActions
95427
- VBannerText: VBannerText
95428
- VBadge: VBadge
95429
95375
  VBreadcrumbs: VBreadcrumbs
95430
95376
  VBreadcrumbsItem: VBreadcrumbsItem
95431
95377
  VBreadcrumbsDivider: VBreadcrumbsDivider
95432
95378
  VBtn: VBtn
95379
+ VBtnGroup: VBtnGroup
95380
+ VBottomSheet: VBottomSheet
95433
95381
  VBottomNavigation: VBottomNavigation
95434
- VBtnToggle: VBtnToggle
95435
95382
  VCard: VCard
95436
95383
  VCardActions: VCardActions
95437
95384
  VCardItem: VCardItem
95438
95385
  VCardSubtitle: VCardSubtitle
95439
95386
  VCardText: VCardText
95440
95387
  VCardTitle: VCardTitle
95388
+ VBtnToggle: VBtnToggle
95389
+ VChip: VChip
95441
95390
  VCarousel: VCarousel
95442
95391
  VCarouselItem: VCarouselItem
95443
- VCheckbox: VCheckbox
95444
- VCheckboxBtn: VCheckboxBtn
95445
- VChipGroup: VChipGroup
95446
95392
  VCode: VCode
95447
- VChip: VChip
95393
+ VBanner: VBanner
95394
+ VBannerActions: VBannerActions
95395
+ VBannerText: VBannerText
95396
+ VChipGroup: VChipGroup
95448
95397
  VColorPicker: VColorPicker
95398
+ VCombobox: VCombobox
95399
+ VCheckbox: VCheckbox
95400
+ VCheckboxBtn: VCheckboxBtn
95449
95401
  VCounter: VCounter
95402
+ VDatePicker: VDatePicker
95403
+ VDatePickerControls: VDatePickerControls
95404
+ VDatePickerHeader: VDatePickerHeader
95405
+ VDatePickerMonth: VDatePickerMonth
95406
+ VDatePickerMonths: VDatePickerMonths
95407
+ VDatePickerYears: VDatePickerYears
95450
95408
  VDataTable: VDataTable
95451
95409
  VDataTableHeaders: VDataTableHeaders
95452
95410
  VDataTableFooter: VDataTableFooter
@@ -95454,34 +95412,26 @@ declare module 'vue' {
95454
95412
  VDataTableRow: VDataTableRow
95455
95413
  VDataTableVirtual: VDataTableVirtual
95456
95414
  VDataTableServer: VDataTableServer
95457
- VDatePicker: VDatePicker
95458
- VDatePickerControls: VDatePickerControls
95459
- VDatePickerHeader: VDatePickerHeader
95460
- VDatePickerMonth: VDatePickerMonth
95461
- VDatePickerMonths: VDatePickerMonths
95462
- VDatePickerYears: VDatePickerYears
95463
95415
  VDialog: VDialog
95464
95416
  VDivider: VDivider
95465
- VEmptyState: VEmptyState
95466
95417
  VExpansionPanels: VExpansionPanels
95467
95418
  VExpansionPanel: VExpansionPanel
95468
95419
  VExpansionPanelText: VExpansionPanelText
95469
95420
  VExpansionPanelTitle: VExpansionPanelTitle
95470
95421
  VField: VField
95471
95422
  VFieldLabel: VFieldLabel
95472
- VFileInput: VFileInput
95473
95423
  VFooter: VFooter
95424
+ VFileInput: VFileInput
95474
95425
  VIcon: VIcon
95475
95426
  VComponentIcon: VComponentIcon
95476
95427
  VSvgIcon: VSvgIcon
95477
95428
  VLigatureIcon: VLigatureIcon
95478
95429
  VClassIcon: VClassIcon
95479
95430
  VImg: VImg
95480
- VFab: VFab
95431
+ VInput: VInput
95481
95432
  VInfiniteScroll: VInfiniteScroll
95482
95433
  VItemGroup: VItemGroup
95483
95434
  VItem: VItem
95484
- VInput: VInput
95485
95435
  VKbd: VKbd
95486
95436
  VLabel: VLabel
95487
95437
  VList: VList
@@ -95493,25 +95443,27 @@ declare module 'vue' {
95493
95443
  VListItemSubtitle: VListItemSubtitle
95494
95444
  VListItemTitle: VListItemTitle
95495
95445
  VListSubheader: VListSubheader
95496
- VMain: VMain
95497
- VMenu: VMenu
95498
95446
  VMessages: VMessages
95499
95447
  VNavigationDrawer: VNavigationDrawer
95500
- VOtpInput: VOtpInput
95448
+ VMain: VMain
95449
+ VMenu: VMenu
95450
+ VNumberInput: VNumberInput
95501
95451
  VOverlay: VOverlay
95452
+ VOtpInput: VOtpInput
95502
95453
  VPagination: VPagination
95503
- VNumberInput: VNumberInput
95504
95454
  VProgressCircular: VProgressCircular
95505
95455
  VProgressLinear: VProgressLinear
95506
95456
  VRadioGroup: VRadioGroup
95507
- VRating: VRating
95508
95457
  VSelect: VSelect
95458
+ VRating: VRating
95509
95459
  VSelectionControl: VSelectionControl
95510
95460
  VSelectionControlGroup: VSelectionControlGroup
95511
95461
  VSheet: VSheet
95512
95462
  VSkeletonLoader: VSkeletonLoader
95463
+ VSnackbar: VSnackbar
95513
95464
  VSlideGroup: VSlideGroup
95514
95465
  VSlideGroupItem: VSlideGroupItem
95466
+ VSwitch: VSwitch
95515
95467
  VSlider: VSlider
95516
95468
  VStepper: VStepper
95517
95469
  VStepperActions: VStepperActions
@@ -95519,7 +95471,6 @@ declare module 'vue' {
95519
95471
  VStepperItem: VStepperItem
95520
95472
  VStepperWindow: VStepperWindow
95521
95473
  VStepperWindowItem: VStepperWindowItem
95522
- VTable: VTable
95523
95474
  VSystemBar: VSystemBar
95524
95475
  VTab: VTab
95525
95476
  VTabs: VTabs
@@ -95527,47 +95478,47 @@ declare module 'vue' {
95527
95478
  VTabsWindowItem: VTabsWindowItem
95528
95479
  VTextarea: VTextarea
95529
95480
  VTextField: VTextField
95481
+ VToolbar: VToolbar
95482
+ VToolbarTitle: VToolbarTitle
95483
+ VToolbarItems: VToolbarItems
95484
+ VTable: VTable
95530
95485
  VTimeline: VTimeline
95531
95486
  VTimelineItem: VTimelineItem
95532
95487
  VTimePicker: VTimePicker
95533
95488
  VTimePickerClock: VTimePickerClock
95534
95489
  VTimePickerControls: VTimePickerControls
95535
- VToolbar: VToolbar
95536
- VToolbarTitle: VToolbarTitle
95537
- VToolbarItems: VToolbarItems
95490
+ VTooltip: VTooltip
95538
95491
  VTreeview: VTreeview
95539
95492
  VTreeviewItem: VTreeviewItem
95540
95493
  VTreeviewGroup: VTreeviewGroup
95541
- VTooltip: VTooltip
95542
95494
  VWindow: VWindow
95543
95495
  VWindowItem: VWindowItem
95544
- VBtnGroup: VBtnGroup
95545
- VDataIterator: VDataIterator
95496
+ VEmptyState: VEmptyState
95546
95497
  VConfirmEdit: VConfirmEdit
95498
+ VDataIterator: VDataIterator
95547
95499
  VDefaultsProvider: VDefaultsProvider
95548
95500
  VForm: VForm
95549
95501
  VContainer: VContainer
95550
95502
  VCol: VCol
95551
95503
  VRow: VRow
95552
95504
  VSpacer: VSpacer
95505
+ VHover: VHover
95553
95506
  VLayout: VLayout
95554
95507
  VLayoutItem: VLayoutItem
95555
95508
  VLazy: VLazy
95556
- VHover: VHover
95557
95509
  VNoSsr: VNoSsr
95558
- VLocaleProvider: VLocaleProvider
95559
95510
  VParallax: VParallax
95560
- VRangeSlider: VRangeSlider
95511
+ VLocaleProvider: VLocaleProvider
95561
95512
  VRadio: VRadio
95562
- VCombobox: VCombobox
95563
- VSparkline: VSparkline
95513
+ VRangeSlider: VRangeSlider
95564
95514
  VResponsive: VResponsive
95565
- VSpeedDial: VSpeedDial
95566
- VSwitch: VSwitch
95567
95515
  VSnackbarQueue: VSnackbarQueue
95516
+ VSparkline: VSparkline
95517
+ VSpeedDial: VSpeedDial
95568
95518
  VThemeProvider: VThemeProvider
95569
- VVirtualScroll: VVirtualScroll
95570
95519
  VValidation: VValidation
95520
+ VVirtualScroll: VVirtualScroll
95521
+ VFab: VFab
95571
95522
  VFabTransition: VFabTransition
95572
95523
  VDialogBottomTransition: VDialogBottomTransition
95573
95524
  VDialogTopTransition: VDialogTopTransition
@@ -95584,30 +95535,28 @@ declare module 'vue' {
95584
95535
  VExpandTransition: VExpandTransition
95585
95536
  VExpandXTransition: VExpandXTransition
95586
95537
  VDialogTransition: VDialogTransition
95587
- VSnackbar: VSnackbar
95588
- VBottomSheet: VBottomSheet
95538
+ VColorInput: VColorInput
95589
95539
  VCalendar: VCalendar
95590
95540
  VCalendarDay: VCalendarDay
95591
95541
  VCalendarHeader: VCalendarHeader
95592
95542
  VCalendarInterval: VCalendarInterval
95593
95543
  VCalendarIntervalEvent: VCalendarIntervalEvent
95594
95544
  VCalendarMonthDay: VCalendarMonthDay
95595
- VColorInput: VColorInput
95596
95545
  VIconBtn: VIconBtn
95597
- VPie: VPie
95598
- VPieSegment: VPieSegment
95599
- VPieTooltip: VPieTooltip
95600
- VVideo: VVideo
95601
- VVideoControls: VVideoControls
95602
- VVideoVolume: VVideoVolume
95603
95546
  VStepperVertical: VStepperVertical
95604
95547
  VStepperVerticalItem: VStepperVerticalItem
95605
95548
  VStepperVerticalActions: VStepperVerticalActions
95549
+ VFileUpload: VFileUpload
95550
+ VFileUploadItem: VFileUploadItem
95606
95551
  VPicker: VPicker
95607
95552
  VPickerTitle: VPickerTitle
95553
+ VVideo: VVideo
95554
+ VVideoControls: VVideoControls
95555
+ VVideoVolume: VVideoVolume
95556
+ VPie: VPie
95557
+ VPieSegment: VPieSegment
95558
+ VPieTooltip: VPieTooltip
95608
95559
  VHotkey: VHotkey
95609
- VFileUpload: VFileUpload
95610
- VFileUploadItem: VFileUploadItem
95611
95560
  VDateInput: VDateInput
95612
95561
  VMaskInput: VMaskInput
95613
95562
  VPullToRefresh: VPullToRefresh