@vuetify/nightly 3.9.3-master.2025-07-31 → 3.9.3-master.2025-08-02

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 (60) hide show
  1. package/CHANGELOG.md +14 -3
  2. package/dist/json/attributes.json +3543 -3531
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +182 -182
  5. package/dist/json/tags.json +4 -1
  6. package/dist/json/web-types.json +6238 -6212
  7. package/dist/vuetify-labs.cjs +70 -36
  8. package/dist/vuetify-labs.css +4455 -4440
  9. package/dist/vuetify-labs.d.ts +128 -86
  10. package/dist/vuetify-labs.esm.js +70 -36
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +70 -36
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +70 -36
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2538 -2523
  17. package/dist/vuetify.d.ts +100 -86
  18. package/dist/vuetify.esm.js +70 -36
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +70 -36
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +288 -282
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAlert/VAlert.css +9 -2
  26. package/lib/components/VAlert/VAlert.js +2 -2
  27. package/lib/components/VAlert/VAlert.js.map +1 -1
  28. package/lib/components/VAlert/VAlert.sass +10 -3
  29. package/lib/components/VAlert/_variables.scss +1 -1
  30. package/lib/components/VApp/VApp.d.ts +0 -25
  31. package/lib/components/VApp/VApp.js +6 -5
  32. package/lib/components/VApp/VApp.js.map +1 -1
  33. package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
  34. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
  35. package/lib/components/VStepper/VStepperItem.css +2 -0
  36. package/lib/components/VStepper/VStepperItem.sass +3 -0
  37. package/lib/components/VTable/VTable.js +32 -20
  38. package/lib/components/VTable/VTable.js.map +1 -1
  39. package/lib/components/VTreeview/VTreeviewItem.css +6 -0
  40. package/lib/components/VTreeview/VTreeviewItem.sass +7 -0
  41. package/lib/composables/calendar.d.ts +12 -0
  42. package/lib/composables/calendar.js +5 -1
  43. package/lib/composables/calendar.js.map +1 -1
  44. package/lib/composables/date/DateAdapter.d.ts +1 -1
  45. package/lib/composables/date/DateAdapter.js.map +1 -1
  46. package/lib/composables/date/adapters/string.d.ts +1 -1
  47. package/lib/composables/date/adapters/string.js +2 -2
  48. package/lib/composables/date/adapters/string.js.map +1 -1
  49. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  50. package/lib/composables/date/adapters/vuetify.js +25 -5
  51. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  52. package/lib/composables/date/date.d.ts +1 -1
  53. package/lib/entry-bundler.d.ts +1 -1
  54. package/lib/entry-bundler.js +1 -1
  55. package/lib/framework.d.ts +72 -72
  56. package/lib/framework.js +1 -1
  57. package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
  58. package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
  59. package/lib/labs/entry-bundler.d.ts +1 -1
  60. 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;
@@ -3406,7 +3406,6 @@ interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {
3406
3406
  declare const VApp: {
3407
3407
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
3408
3408
  style: vue.StyleValue;
3409
- fullHeight: boolean;
3410
3409
  } & {
3411
3410
  class?: any;
3412
3411
  theme?: string | undefined;
@@ -3444,7 +3443,6 @@ declare const VApp: {
3444
3443
  theme: ThemeInstance;
3445
3444
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
3446
3445
  style: vue.StyleValue;
3447
- fullHeight: boolean;
3448
3446
  }, true, {}, vue.SlotsType<Partial<{
3449
3447
  default: () => vue.VNode[];
3450
3448
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
@@ -3456,7 +3454,6 @@ declare const VApp: {
3456
3454
  Defaults: {};
3457
3455
  }, {
3458
3456
  style: vue.StyleValue;
3459
- fullHeight: boolean;
3460
3457
  } & {
3461
3458
  class?: any;
3462
3459
  theme?: string | undefined;
@@ -3494,14 +3491,12 @@ declare const VApp: {
3494
3491
  theme: ThemeInstance;
3495
3492
  }, {}, {}, {}, {
3496
3493
  style: vue.StyleValue;
3497
- fullHeight: boolean;
3498
3494
  }>;
3499
3495
  __isFragment?: never;
3500
3496
  __isTeleport?: never;
3501
3497
  __isSuspense?: never;
3502
3498
  } & vue.ComponentOptionsBase<{
3503
3499
  style: vue.StyleValue;
3504
- fullHeight: boolean;
3505
3500
  } & {
3506
3501
  class?: any;
3507
3502
  theme?: string | undefined;
@@ -3539,16 +3534,11 @@ declare const VApp: {
3539
3534
  theme: ThemeInstance;
3540
3535
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
3541
3536
  style: vue.StyleValue;
3542
- fullHeight: boolean;
3543
3537
  }, {}, string, vue.SlotsType<Partial<{
3544
3538
  default: () => vue.VNode[];
3545
3539
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
3546
3540
  theme: StringConstructor;
3547
3541
  overlaps: vue.Prop<string[]>;
3548
- fullHeight: {
3549
- type: vue.PropType<boolean>;
3550
- default: boolean;
3551
- };
3552
3542
  class: vue.PropType<ClassValue>;
3553
3543
  style: {
3554
3544
  type: vue.PropType<vue.StyleValue>;
@@ -3557,10 +3547,6 @@ declare const VApp: {
3557
3547
  }, vue.ExtractPropTypes<{
3558
3548
  theme: StringConstructor;
3559
3549
  overlaps: vue.Prop<string[]>;
3560
- fullHeight: {
3561
- type: vue.PropType<boolean>;
3562
- default: boolean;
3563
- };
3564
3550
  class: vue.PropType<ClassValue>;
3565
3551
  style: {
3566
3552
  type: vue.PropType<vue.StyleValue>;
@@ -41912,6 +41898,7 @@ declare const VDatePickerMonth: {
41912
41898
  year?: string | number | undefined;
41913
41899
  modelValue?: unknown[] | undefined;
41914
41900
  firstDayOfWeek?: string | number | undefined;
41901
+ firstDayOfYear?: string | number | undefined;
41915
41902
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41916
41903
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41917
41904
  } & {
@@ -41959,6 +41946,7 @@ declare const VDatePickerMonth: {
41959
41946
  weekdays: CalendarWeekdays[];
41960
41947
  weeksInMonth: "static" | "dynamic";
41961
41948
  firstDayOfWeek: string | number;
41949
+ firstDayOfYear: string | number;
41962
41950
  hideWeekdays: boolean;
41963
41951
  showWeek: boolean;
41964
41952
  }, true, {}, vue.SlotsType<Partial<{
@@ -41994,6 +41982,7 @@ declare const VDatePickerMonth: {
41994
41982
  year?: string | number | undefined;
41995
41983
  modelValue?: unknown[] | undefined;
41996
41984
  firstDayOfWeek?: string | number | undefined;
41985
+ firstDayOfYear?: string | number | undefined;
41997
41986
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
41998
41987
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
41999
41988
  } & {
@@ -42037,6 +42026,7 @@ declare const VDatePickerMonth: {
42037
42026
  weekdays: CalendarWeekdays[];
42038
42027
  weeksInMonth: "static" | "dynamic";
42039
42028
  firstDayOfWeek: string | number;
42029
+ firstDayOfYear: string | number;
42040
42030
  hideWeekdays: boolean;
42041
42031
  showWeek: boolean;
42042
42032
  }>;
@@ -42061,6 +42051,7 @@ declare const VDatePickerMonth: {
42061
42051
  year?: string | number | undefined;
42062
42052
  modelValue?: unknown[] | undefined;
42063
42053
  firstDayOfWeek?: string | number | undefined;
42054
+ firstDayOfYear?: string | number | undefined;
42064
42055
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42065
42056
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42066
42057
  } & {
@@ -42108,6 +42099,7 @@ declare const VDatePickerMonth: {
42108
42099
  weekdays: CalendarWeekdays[];
42109
42100
  weeksInMonth: "static" | "dynamic";
42110
42101
  firstDayOfWeek: string | number;
42102
+ firstDayOfYear: string | number;
42111
42103
  hideWeekdays: boolean;
42112
42104
  showWeek: boolean;
42113
42105
  }, {}, string, vue.SlotsType<Partial<{
@@ -42141,6 +42133,10 @@ declare const VDatePickerMonth: {
42141
42133
  type: (StringConstructor | NumberConstructor)[];
42142
42134
  default: undefined;
42143
42135
  };
42136
+ firstDayOfYear: {
42137
+ type: (StringConstructor | NumberConstructor)[];
42138
+ default: undefined;
42139
+ };
42144
42140
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42145
42141
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42146
42142
  color: StringConstructor;
@@ -42178,6 +42174,10 @@ declare const VDatePickerMonth: {
42178
42174
  type: (StringConstructor | NumberConstructor)[];
42179
42175
  default: undefined;
42180
42176
  };
42177
+ firstDayOfYear: {
42178
+ type: (StringConstructor | NumberConstructor)[];
42179
+ default: undefined;
42180
+ };
42181
42181
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
42182
42182
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
42183
42183
  color: StringConstructor;
@@ -42992,6 +42992,7 @@ declare const VDatePicker: {
42992
42992
  controlHeight?: string | number | undefined;
42993
42993
  headerColor?: string | undefined;
42994
42994
  firstDayOfWeek?: string | number | undefined;
42995
+ firstDayOfYear?: string | number | undefined;
42995
42996
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
42996
42997
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
42997
42998
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43027,6 +43028,7 @@ declare const VDatePicker: {
43027
43028
  weekdays: CalendarWeekdays[];
43028
43029
  weeksInMonth: "static" | "dynamic";
43029
43030
  firstDayOfWeek: string | number;
43031
+ firstDayOfYear: string | number;
43030
43032
  hideWeekdays: boolean;
43031
43033
  showWeek: boolean;
43032
43034
  }, true, {}, vue.SlotsType<Partial<{
@@ -43123,6 +43125,7 @@ declare const VDatePicker: {
43123
43125
  controlHeight?: string | number | undefined;
43124
43126
  headerColor?: string | undefined;
43125
43127
  firstDayOfWeek?: string | number | undefined;
43128
+ firstDayOfYear?: string | number | undefined;
43126
43129
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43127
43130
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
43128
43131
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43153,6 +43156,7 @@ declare const VDatePicker: {
43153
43156
  weekdays: CalendarWeekdays[];
43154
43157
  weeksInMonth: "static" | "dynamic";
43155
43158
  firstDayOfWeek: string | number;
43159
+ firstDayOfYear: string | number;
43156
43160
  hideWeekdays: boolean;
43157
43161
  showWeek: boolean;
43158
43162
  }>;
@@ -43205,6 +43209,7 @@ declare const VDatePicker: {
43205
43209
  controlHeight?: string | number | undefined;
43206
43210
  headerColor?: string | undefined;
43207
43211
  firstDayOfWeek?: string | number | undefined;
43212
+ firstDayOfYear?: string | number | undefined;
43208
43213
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
43209
43214
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
43210
43215
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -43240,6 +43245,7 @@ declare const VDatePicker: {
43240
43245
  weekdays: CalendarWeekdays[];
43241
43246
  weeksInMonth: "static" | "dynamic";
43242
43247
  firstDayOfWeek: string | number;
43248
+ firstDayOfYear: string | number;
43243
43249
  hideWeekdays: boolean;
43244
43250
  showWeek: boolean;
43245
43251
  }, {}, string, vue.SlotsType<Partial<{
@@ -43355,6 +43361,10 @@ declare const VDatePicker: {
43355
43361
  type: (StringConstructor | NumberConstructor)[];
43356
43362
  default: undefined;
43357
43363
  };
43364
+ firstDayOfYear: {
43365
+ type: (StringConstructor | NumberConstructor)[];
43366
+ default: undefined;
43367
+ };
43358
43368
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43359
43369
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43360
43370
  hideWeekdays: BooleanConstructor;
@@ -43463,6 +43473,10 @@ declare const VDatePicker: {
43463
43473
  type: (StringConstructor | NumberConstructor)[];
43464
43474
  default: undefined;
43465
43475
  };
43476
+ firstDayOfYear: {
43477
+ type: (StringConstructor | NumberConstructor)[];
43478
+ default: undefined;
43479
+ };
43466
43480
  allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
43467
43481
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
43468
43482
  hideWeekdays: BooleanConstructor;
@@ -96522,6 +96536,7 @@ declare const VCalendar: {
96522
96536
  events?: any[] | undefined;
96523
96537
  modelValue?: unknown[] | undefined;
96524
96538
  firstDayOfWeek?: string | number | undefined;
96539
+ firstDayOfYear?: string | number | undefined;
96525
96540
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
96526
96541
  displayValue?: unknown;
96527
96542
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -96725,6 +96740,7 @@ declare const VCalendar: {
96725
96740
  weekdays: CalendarWeekdays[];
96726
96741
  weeksInMonth: "static" | "dynamic";
96727
96742
  firstDayOfWeek: string | number;
96743
+ firstDayOfYear: string | number;
96728
96744
  intervalDivisions: number;
96729
96745
  intervalDuration: number;
96730
96746
  intervalHeight: number;
@@ -96824,6 +96840,7 @@ declare const VCalendar: {
96824
96840
  events?: any[] | undefined;
96825
96841
  modelValue?: unknown[] | undefined;
96826
96842
  firstDayOfWeek?: string | number | undefined;
96843
+ firstDayOfYear?: string | number | undefined;
96827
96844
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
96828
96845
  displayValue?: unknown;
96829
96846
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -97022,6 +97039,7 @@ declare const VCalendar: {
97022
97039
  weekdays: CalendarWeekdays[];
97023
97040
  weeksInMonth: "static" | "dynamic";
97024
97041
  firstDayOfWeek: string | number;
97042
+ firstDayOfYear: string | number;
97025
97043
  intervalDivisions: number;
97026
97044
  intervalDuration: number;
97027
97045
  intervalHeight: number;
@@ -97062,6 +97080,7 @@ declare const VCalendar: {
97062
97080
  events?: any[] | undefined;
97063
97081
  modelValue?: unknown[] | undefined;
97064
97082
  firstDayOfWeek?: string | number | undefined;
97083
+ firstDayOfYear?: string | number | undefined;
97065
97084
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
97066
97085
  displayValue?: unknown;
97067
97086
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -97265,6 +97284,7 @@ declare const VCalendar: {
97265
97284
  weekdays: CalendarWeekdays[];
97266
97285
  weeksInMonth: "static" | "dynamic";
97267
97286
  firstDayOfWeek: string | number;
97287
+ firstDayOfYear: string | number;
97268
97288
  intervalDivisions: number;
97269
97289
  intervalDuration: number;
97270
97290
  intervalHeight: number;
@@ -97417,6 +97437,10 @@ declare const VCalendar: {
97417
97437
  type: (StringConstructor | NumberConstructor)[];
97418
97438
  default: undefined;
97419
97439
  };
97440
+ firstDayOfYear: {
97441
+ type: (StringConstructor | NumberConstructor)[];
97442
+ default: undefined;
97443
+ };
97420
97444
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
97421
97445
  hideHeader: BooleanConstructor;
97422
97446
  hideWeekNumber: BooleanConstructor;
@@ -97508,6 +97532,10 @@ declare const VCalendar: {
97508
97532
  type: (StringConstructor | NumberConstructor)[];
97509
97533
  default: undefined;
97510
97534
  };
97535
+ firstDayOfYear: {
97536
+ type: (StringConstructor | NumberConstructor)[];
97537
+ default: undefined;
97538
+ };
97511
97539
  weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
97512
97540
  hideHeader: BooleanConstructor;
97513
97541
  hideWeekNumber: BooleanConstructor;
@@ -99345,6 +99373,7 @@ declare const VDateInput: {
99345
99373
  counterValue?: number | ((value: any) => number) | undefined;
99346
99374
  modelModifiers?: Record<string, boolean> | undefined;
99347
99375
  firstDayOfWeek?: string | number | undefined;
99376
+ firstDayOfYear?: string | number | undefined;
99348
99377
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
99349
99378
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
99350
99379
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -101384,6 +101413,7 @@ declare const VDateInput: {
101384
101413
  weekdays: CalendarWeekdays[];
101385
101414
  weeksInMonth: "static" | "dynamic";
101386
101415
  firstDayOfWeek: string | number;
101416
+ firstDayOfYear: string | number;
101387
101417
  hideWeekdays: boolean;
101388
101418
  showWeek: boolean;
101389
101419
  displayFormat: string | ((date: unknown) => any);
@@ -101519,6 +101549,7 @@ declare const VDateInput: {
101519
101549
  counterValue?: number | ((value: any) => number) | undefined;
101520
101550
  modelModifiers?: Record<string, boolean> | undefined;
101521
101551
  firstDayOfWeek?: string | number | undefined;
101552
+ firstDayOfYear?: string | number | undefined;
101522
101553
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
101523
101554
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
101524
101555
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -103552,6 +103583,7 @@ declare const VDateInput: {
103552
103583
  weekdays: CalendarWeekdays[];
103553
103584
  weeksInMonth: "static" | "dynamic";
103554
103585
  firstDayOfWeek: string | number;
103586
+ firstDayOfYear: string | number;
103555
103587
  hideWeekdays: boolean;
103556
103588
  showWeek: boolean;
103557
103589
  displayFormat: string | ((date: unknown) => any);
@@ -103666,6 +103698,7 @@ declare const VDateInput: {
103666
103698
  counterValue?: number | ((value: any) => number) | undefined;
103667
103699
  modelModifiers?: Record<string, boolean> | undefined;
103668
103700
  firstDayOfWeek?: string | number | undefined;
103701
+ firstDayOfYear?: string | number | undefined;
103669
103702
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
103670
103703
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
103671
103704
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -105705,6 +105738,7 @@ declare const VDateInput: {
105705
105738
  weekdays: CalendarWeekdays[];
105706
105739
  weeksInMonth: "static" | "dynamic";
105707
105740
  firstDayOfWeek: string | number;
105741
+ firstDayOfYear: string | number;
105708
105742
  hideWeekdays: boolean;
105709
105743
  showWeek: boolean;
105710
105744
  displayFormat: string | ((date: unknown) => any);
@@ -105831,6 +105865,10 @@ declare const VDateInput: {
105831
105865
  type: (StringConstructor | NumberConstructor)[];
105832
105866
  default: undefined;
105833
105867
  };
105868
+ firstDayOfYear: {
105869
+ type: (StringConstructor | NumberConstructor)[];
105870
+ default: undefined;
105871
+ };
105834
105872
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
105835
105873
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
105836
105874
  hideWeekdays: BooleanConstructor;
@@ -106070,6 +106108,10 @@ declare const VDateInput: {
106070
106108
  type: (StringConstructor | NumberConstructor)[];
106071
106109
  default: undefined;
106072
106110
  };
106111
+ firstDayOfYear: {
106112
+ type: (StringConstructor | NumberConstructor)[];
106113
+ default: undefined;
106114
+ };
106073
106115
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
106074
106116
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
106075
106117
  hideWeekdays: BooleanConstructor;
@@ -122818,7 +122860,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
122818
122860
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
122819
122861
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
122820
122862
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
122821
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
122863
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
122822
122864
  getMonth: (date: unknown) => number;
122823
122865
  setMonth: (date: unknown, month: number) => unknown;
122824
122866
  getDate: (date: unknown) => number;
@@ -122872,78 +122914,79 @@ declare module 'vue' {
122872
122914
  }
122873
122915
  export interface GlobalComponents {
122874
122916
  VApp: VApp
122875
- VAlert: VAlert
122876
- VAlertTitle: VAlertTitle
122877
- VAutocomplete: VAutocomplete
122878
122917
  VAppBar: VAppBar
122879
122918
  VAppBarNavIcon: VAppBarNavIcon
122880
122919
  VAppBarTitle: VAppBarTitle
122920
+ VAlert: VAlert
122921
+ VAlertTitle: VAlertTitle
122922
+ VAutocomplete: VAutocomplete
122923
+ VBadge: VBadge
122881
122924
  VAvatar: VAvatar
122925
+ VBottomNavigation: VBottomNavigation
122926
+ VBottomSheet: VBottomSheet
122927
+ VBtn: VBtn
122882
122928
  VBanner: VBanner
122883
122929
  VBannerActions: VBannerActions
122884
122930
  VBannerText: VBannerText
122885
- VBadge: VBadge
122886
- VBtnToggle: VBtnToggle
122931
+ VBtnGroup: VBtnGroup
122887
122932
  VBreadcrumbs: VBreadcrumbs
122888
122933
  VBreadcrumbsItem: VBreadcrumbsItem
122889
122934
  VBreadcrumbsDivider: VBreadcrumbsDivider
122890
- VBtn: VBtn
122891
- VBtnGroup: VBtnGroup
122892
- VBottomSheet: VBottomSheet
122893
- VBottomNavigation: VBottomNavigation
122935
+ VCarousel: VCarousel
122936
+ VCarouselItem: VCarouselItem
122937
+ VBtnToggle: VBtnToggle
122938
+ VCheckbox: VCheckbox
122939
+ VCheckboxBtn: VCheckboxBtn
122940
+ VCode: VCode
122894
122941
  VCard: VCard
122895
122942
  VCardActions: VCardActions
122896
122943
  VCardItem: VCardItem
122897
122944
  VCardSubtitle: VCardSubtitle
122898
122945
  VCardText: VCardText
122899
122946
  VCardTitle: VCardTitle
122900
- VCarousel: VCarousel
122901
- VCarouselItem: VCarouselItem
122902
- VCheckbox: VCheckbox
122903
- VCheckboxBtn: VCheckboxBtn
122904
122947
  VChip: VChip
122905
122948
  VChipGroup: VChipGroup
122906
- VCode: VCode
122949
+ VDataTable: VDataTable
122950
+ VDataTableHeaders: VDataTableHeaders
122951
+ VDataTableFooter: VDataTableFooter
122952
+ VDataTableRows: VDataTableRows
122953
+ VDataTableRow: VDataTableRow
122954
+ VDataTableVirtual: VDataTableVirtual
122955
+ VDataTableServer: VDataTableServer
122956
+ VColorPicker: VColorPicker
122957
+ VCounter: VCounter
122907
122958
  VDatePicker: VDatePicker
122908
122959
  VDatePickerControls: VDatePickerControls
122909
122960
  VDatePickerHeader: VDatePickerHeader
122910
122961
  VDatePickerMonth: VDatePickerMonth
122911
122962
  VDatePickerMonths: VDatePickerMonths
122912
122963
  VDatePickerYears: VDatePickerYears
122913
- VColorPicker: VColorPicker
122964
+ VDialog: VDialog
122914
122965
  VCombobox: VCombobox
122915
- VCounter: VCounter
122966
+ VEmptyState: VEmptyState
122916
122967
  VDivider: VDivider
122917
122968
  VExpansionPanels: VExpansionPanels
122918
122969
  VExpansionPanel: VExpansionPanel
122919
122970
  VExpansionPanelText: VExpansionPanelText
122920
122971
  VExpansionPanelTitle: VExpansionPanelTitle
122921
- VDialog: VDialog
122922
- VDataTable: VDataTable
122923
- VDataTableHeaders: VDataTableHeaders
122924
- VDataTableFooter: VDataTableFooter
122925
- VDataTableRows: VDataTableRows
122926
- VDataTableRow: VDataTableRow
122927
- VDataTableVirtual: VDataTableVirtual
122928
- VDataTableServer: VDataTableServer
122929
122972
  VFab: VFab
122930
- VEmptyState: VEmptyState
122973
+ VFileInput: VFileInput
122931
122974
  VField: VField
122932
122975
  VFieldLabel: VFieldLabel
122933
122976
  VFooter: VFooter
122934
- VFileInput: VFileInput
122935
- VImg: VImg
122977
+ VInfiniteScroll: VInfiniteScroll
122936
122978
  VIcon: VIcon
122937
122979
  VComponentIcon: VComponentIcon
122938
122980
  VSvgIcon: VSvgIcon
122939
122981
  VLigatureIcon: VLigatureIcon
122940
122982
  VClassIcon: VClassIcon
122941
- VInfiniteScroll: VInfiniteScroll
122983
+ VInput: VInput
122942
122984
  VKbd: VKbd
122985
+ VImg: VImg
122986
+ VMenu: VMenu
122987
+ VMain: VMain
122943
122988
  VLabel: VLabel
122944
- VInput: VInput
122945
- VItemGroup: VItemGroup
122946
- VItem: VItem
122989
+ VMessages: VMessages
122947
122990
  VList: VList
122948
122991
  VListGroup: VListGroup
122949
122992
  VListImg: VListImg
@@ -122953,77 +122996,73 @@ declare module 'vue' {
122953
122996
  VListItemSubtitle: VListItemSubtitle
122954
122997
  VListItemTitle: VListItemTitle
122955
122998
  VListSubheader: VListSubheader
122956
- VMain: VMain
122957
- VMessages: VMessages
122958
- VMenu: VMenu
122959
- VPagination: VPagination
122960
- VOverlay: VOverlay
122961
- VNavigationDrawer: VNavigationDrawer
122962
122999
  VNumberInput: VNumberInput
122963
- VOtpInput: VOtpInput
123000
+ VOverlay: VOverlay
123001
+ VItemGroup: VItemGroup
123002
+ VItem: VItem
123003
+ VPagination: VPagination
122964
123004
  VProgressCircular: VProgressCircular
122965
123005
  VProgressLinear: VProgressLinear
122966
- VRadioGroup: VRadioGroup
123006
+ VOtpInput: VOtpInput
122967
123007
  VRating: VRating
123008
+ VRadioGroup: VRadioGroup
123009
+ VNavigationDrawer: VNavigationDrawer
122968
123010
  VSelect: VSelect
122969
- VSelectionControlGroup: VSelectionControlGroup
122970
123011
  VSelectionControl: VSelectionControl
122971
- VSheet: VSheet
123012
+ VSelectionControlGroup: VSelectionControlGroup
122972
123013
  VSkeletonLoader: VSkeletonLoader
123014
+ VSheet: VSheet
122973
123015
  VSlideGroup: VSlideGroup
122974
123016
  VSlideGroupItem: VSlideGroupItem
122975
- VSlider: VSlider
122976
- VSnackbar: VSnackbar
122977
123017
  VStepper: VStepper
122978
123018
  VStepperActions: VStepperActions
122979
123019
  VStepperHeader: VStepperHeader
122980
123020
  VStepperItem: VStepperItem
122981
123021
  VStepperWindow: VStepperWindow
122982
123022
  VStepperWindowItem: VStepperWindowItem
122983
- VSwitch: VSwitch
123023
+ VSlider: VSlider
123024
+ VSystemBar: VSystemBar
122984
123025
  VTab: VTab
122985
123026
  VTabs: VTabs
122986
123027
  VTabsWindow: VTabsWindow
122987
123028
  VTabsWindowItem: VTabsWindowItem
122988
- VSystemBar: VSystemBar
122989
- VTextarea: VTextarea
122990
- VTextField: VTextField
123029
+ VSwitch: VSwitch
122991
123030
  VTable: VTable
122992
- VTimePicker: VTimePicker
122993
- VTimePickerClock: VTimePickerClock
122994
- VTimePickerControls: VTimePickerControls
122995
- VToolbar: VToolbar
122996
- VToolbarTitle: VToolbarTitle
122997
- VToolbarItems: VToolbarItems
123031
+ VTextField: VTextField
123032
+ VTextarea: VTextarea
122998
123033
  VTimeline: VTimeline
122999
123034
  VTimelineItem: VTimelineItem
123000
123035
  VTooltip: VTooltip
123036
+ VTimePicker: VTimePicker
123037
+ VTimePickerClock: VTimePickerClock
123038
+ VTimePickerControls: VTimePickerControls
123001
123039
  VTreeview: VTreeview
123002
123040
  VTreeviewItem: VTreeviewItem
123003
123041
  VTreeviewGroup: VTreeviewGroup
123042
+ VToolbar: VToolbar
123043
+ VToolbarTitle: VToolbarTitle
123044
+ VToolbarItems: VToolbarItems
123004
123045
  VWindow: VWindow
123005
123046
  VWindowItem: VWindowItem
123006
- VConfirmEdit: VConfirmEdit
123007
- VDataIterator: VDataIterator
123047
+ VSnackbar: VSnackbar
123008
123048
  VDefaultsProvider: VDefaultsProvider
123009
- VForm: VForm
123010
123049
  VContainer: VContainer
123011
123050
  VCol: VCol
123012
123051
  VRow: VRow
123013
123052
  VSpacer: VSpacer
123014
- VHover: VHover
123015
- VLazy: VLazy
123053
+ VForm: VForm
123016
123054
  VLayout: VLayout
123017
123055
  VLayoutItem: VLayoutItem
123056
+ VHover: VHover
123057
+ VLazy: VLazy
123018
123058
  VLocaleProvider: VLocaleProvider
123019
123059
  VNoSsr: VNoSsr
123020
123060
  VParallax: VParallax
123021
123061
  VRadio: VRadio
123022
- VRangeSlider: VRangeSlider
123023
123062
  VResponsive: VResponsive
123063
+ VRangeSlider: VRangeSlider
123024
123064
  VSnackbarQueue: VSnackbarQueue
123025
123065
  VSparkline: VSparkline
123026
- VSpeedDial: VSpeedDial
123027
123066
  VThemeProvider: VThemeProvider
123028
123067
  VValidation: VValidation
123029
123068
  VVirtualScroll: VVirtualScroll
@@ -123043,29 +123082,32 @@ declare module 'vue' {
123043
123082
  VExpandTransition: VExpandTransition
123044
123083
  VExpandXTransition: VExpandXTransition
123045
123084
  VDialogTransition: VDialogTransition
123046
- VColorInput: VColorInput
123085
+ VSpeedDial: VSpeedDial
123086
+ VConfirmEdit: VConfirmEdit
123087
+ VDataIterator: VDataIterator
123088
+ VFileUpload: VFileUpload
123089
+ VFileUploadItem: VFileUploadItem
123047
123090
  VCalendar: VCalendar
123048
123091
  VCalendarDay: VCalendarDay
123049
123092
  VCalendarHeader: VCalendarHeader
123050
123093
  VCalendarInterval: VCalendarInterval
123051
123094
  VCalendarIntervalEvent: VCalendarIntervalEvent
123052
123095
  VCalendarMonthDay: VCalendarMonthDay
123053
- VIconBtn: VIconBtn
123054
- VPie: VPie
123055
- VPieSegment: VPieSegment
123056
- VPieTooltip: VPieTooltip
123057
- VFileUpload: VFileUpload
123058
- VFileUploadItem: VFileUploadItem
123059
123096
  VPicker: VPicker
123060
123097
  VPickerTitle: VPickerTitle
123098
+ VColorInput: VColorInput
123061
123099
  VHotkey: VHotkey
123062
- VStepperVertical: VStepperVertical
123063
- VStepperVerticalItem: VStepperVerticalItem
123064
- VStepperVerticalActions: VStepperVerticalActions
123065
123100
  VVideo: VVideo
123066
123101
  VVideoControls: VVideoControls
123067
123102
  VVideoVolume: VVideoVolume
123103
+ VPie: VPie
123104
+ VPieSegment: VPieSegment
123105
+ VPieTooltip: VPieTooltip
123106
+ VStepperVertical: VStepperVertical
123107
+ VStepperVerticalItem: VStepperVerticalItem
123108
+ VStepperVerticalActions: VStepperVerticalActions
123068
123109
  VDateInput: VDateInput
123110
+ VIconBtn: VIconBtn
123069
123111
  VMaskInput: VMaskInput
123070
123112
  VPullToRefresh: VPullToRefresh
123071
123113
  }