@vuetify/nightly 3.7.15-dev.2025-03-07 → 3.7.15-dev.2025-03-08

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 (36) hide show
  1. package/CHANGELOG.md +9 -3
  2. package/dist/json/attributes.json +3379 -3339
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +170 -170
  5. package/dist/json/tags.json +10 -0
  6. package/dist/json/web-types.json +6242 -6151
  7. package/dist/vuetify-labs.css +3410 -3409
  8. package/dist/vuetify-labs.d.ts +234 -181
  9. package/dist/vuetify-labs.esm.js +810 -808
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +810 -808
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +2799 -2798
  14. package/dist/vuetify.d.ts +214 -161
  15. package/dist/vuetify.esm.js +810 -808
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +810 -808
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +176 -175
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VColorPicker/VColorPicker.css +3 -2
  23. package/lib/components/VColorPicker/VColorPicker.d.ts +259 -156
  24. package/lib/components/VColorPicker/VColorPicker.js +16 -17
  25. package/lib/components/VColorPicker/VColorPicker.js.map +1 -1
  26. package/lib/components/VColorPicker/VColorPicker.sass +2 -1
  27. package/lib/components/VColorPicker/_variables.scss +1 -0
  28. package/lib/components/VDatePicker/VDatePicker.d.ts +6 -6
  29. package/lib/components/VDatePicker/VDatePicker.js +5 -2
  30. package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
  31. package/lib/entry-bundler.js +1 -1
  32. package/lib/framework.d.ts +57 -57
  33. package/lib/framework.js +1 -1
  34. package/lib/labs/VCalendar/VCalendar.d.ts +6 -6
  35. package/lib/labs/VDateInput/VDateInput.d.ts +25 -25
  36. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -17258,35 +17258,45 @@ declare const modes: {
17258
17258
 
17259
17259
  declare const VColorPicker: {
17260
17260
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<vue.ExtractPropTypes<{
17261
- width: {
17262
- type: PropType<string | number>;
17263
- default: NonNullable<string | number>;
17264
- };
17265
- border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17266
- color: StringConstructor;
17267
- position: {
17268
- type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17269
- validator: (v: any) => boolean;
17270
- };
17271
- style: {
17272
- type: PropType<vue.StyleValue>;
17273
- default: null;
17274
- };
17275
- class: PropType<ClassValue>;
17276
17261
  theme: StringConstructor;
17277
17262
  tag: {
17278
17263
  type: PropType<string | JSXComponent>;
17279
17264
  default: string;
17280
17265
  };
17281
- elevation: {
17282
- type: (StringConstructor | NumberConstructor)[];
17283
- validator(v: any): boolean;
17284
- };
17285
17266
  rounded: {
17286
17267
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17287
17268
  default: undefined;
17288
17269
  };
17289
17270
  tile: BooleanConstructor;
17271
+ position: {
17272
+ type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17273
+ validator: (v: any) => boolean;
17274
+ };
17275
+ location: PropType<Anchor | null>;
17276
+ elevation: {
17277
+ type: (StringConstructor | NumberConstructor)[];
17278
+ validator(v: any): boolean;
17279
+ };
17280
+ height: (StringConstructor | NumberConstructor)[];
17281
+ maxHeight: (StringConstructor | NumberConstructor)[];
17282
+ maxWidth: (StringConstructor | NumberConstructor)[];
17283
+ minHeight: (StringConstructor | NumberConstructor)[];
17284
+ minWidth: (StringConstructor | NumberConstructor)[];
17285
+ width: (StringConstructor | NumberConstructor)[];
17286
+ class: PropType<ClassValue>;
17287
+ style: {
17288
+ type: PropType<vue.StyleValue>;
17289
+ default: null;
17290
+ };
17291
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17292
+ color: StringConstructor;
17293
+ bgColor: StringConstructor;
17294
+ landscape: BooleanConstructor;
17295
+ title: StringConstructor;
17296
+ hideHeader: {
17297
+ type: PropType<boolean>;
17298
+ default: boolean;
17299
+ };
17290
17300
  canvasHeight: {
17291
17301
  type: (StringConstructor | NumberConstructor)[];
17292
17302
  default: number;
@@ -17325,15 +17335,16 @@ declare const VColorPicker: {
17325
17335
  'update:modelValue': (color: any) => true;
17326
17336
  'update:mode': (mode: keyof typeof modes) => true;
17327
17337
  }, vue.PublicProps, {
17328
- width: string | number;
17329
17338
  style: vue.StyleValue;
17330
17339
  disabled: boolean;
17331
17340
  tag: string | JSXComponent;
17332
17341
  mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
17342
+ landscape: boolean;
17333
17343
  rounded: string | number | boolean;
17334
17344
  tile: boolean;
17335
17345
  dotSize: string | number;
17336
17346
  modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
17347
+ hideHeader: boolean;
17337
17348
  canvasHeight: string | number;
17338
17349
  hideCanvas: boolean;
17339
17350
  hideSliders: boolean;
@@ -17348,35 +17359,45 @@ declare const VColorPicker: {
17348
17359
  M: {};
17349
17360
  Defaults: {};
17350
17361
  }, Readonly<vue.ExtractPropTypes<{
17351
- width: {
17352
- type: PropType<string | number>;
17353
- default: NonNullable<string | number>;
17354
- };
17355
- border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17356
- color: StringConstructor;
17357
- position: {
17358
- type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17359
- validator: (v: any) => boolean;
17360
- };
17361
- style: {
17362
- type: PropType<vue.StyleValue>;
17363
- default: null;
17364
- };
17365
- class: PropType<ClassValue>;
17366
17362
  theme: StringConstructor;
17367
17363
  tag: {
17368
17364
  type: PropType<string | JSXComponent>;
17369
17365
  default: string;
17370
17366
  };
17371
- elevation: {
17372
- type: (StringConstructor | NumberConstructor)[];
17373
- validator(v: any): boolean;
17374
- };
17375
17367
  rounded: {
17376
17368
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17377
17369
  default: undefined;
17378
17370
  };
17379
17371
  tile: BooleanConstructor;
17372
+ position: {
17373
+ type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17374
+ validator: (v: any) => boolean;
17375
+ };
17376
+ location: PropType<Anchor | null>;
17377
+ elevation: {
17378
+ type: (StringConstructor | NumberConstructor)[];
17379
+ validator(v: any): boolean;
17380
+ };
17381
+ height: (StringConstructor | NumberConstructor)[];
17382
+ maxHeight: (StringConstructor | NumberConstructor)[];
17383
+ maxWidth: (StringConstructor | NumberConstructor)[];
17384
+ minHeight: (StringConstructor | NumberConstructor)[];
17385
+ minWidth: (StringConstructor | NumberConstructor)[];
17386
+ width: (StringConstructor | NumberConstructor)[];
17387
+ class: PropType<ClassValue>;
17388
+ style: {
17389
+ type: PropType<vue.StyleValue>;
17390
+ default: null;
17391
+ };
17392
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17393
+ color: StringConstructor;
17394
+ bgColor: StringConstructor;
17395
+ landscape: BooleanConstructor;
17396
+ title: StringConstructor;
17397
+ hideHeader: {
17398
+ type: PropType<boolean>;
17399
+ default: boolean;
17400
+ };
17380
17401
  canvasHeight: {
17381
17402
  type: (StringConstructor | NumberConstructor)[];
17382
17403
  default: number;
@@ -17412,15 +17433,16 @@ declare const VColorPicker: {
17412
17433
  "onUpdate:modelValue"?: ((color: any) => any) | undefined;
17413
17434
  "onUpdate:mode"?: ((mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa") => any) | undefined;
17414
17435
  }, {}, {}, {}, {}, {
17415
- width: string | number;
17416
17436
  style: vue.StyleValue;
17417
17437
  disabled: boolean;
17418
17438
  tag: string | JSXComponent;
17419
17439
  mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
17440
+ landscape: boolean;
17420
17441
  rounded: string | number | boolean;
17421
17442
  tile: boolean;
17422
17443
  dotSize: string | number;
17423
17444
  modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
17445
+ hideHeader: boolean;
17424
17446
  canvasHeight: string | number;
17425
17447
  hideCanvas: boolean;
17426
17448
  hideSliders: boolean;
@@ -17432,35 +17454,45 @@ declare const VColorPicker: {
17432
17454
  __isTeleport?: never;
17433
17455
  __isSuspense?: never;
17434
17456
  } & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<{
17435
- width: {
17436
- type: PropType<string | number>;
17437
- default: NonNullable<string | number>;
17438
- };
17439
- border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17440
- color: StringConstructor;
17441
- position: {
17442
- type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17443
- validator: (v: any) => boolean;
17444
- };
17445
- style: {
17446
- type: PropType<vue.StyleValue>;
17447
- default: null;
17448
- };
17449
- class: PropType<ClassValue>;
17450
17457
  theme: StringConstructor;
17451
17458
  tag: {
17452
17459
  type: PropType<string | JSXComponent>;
17453
17460
  default: string;
17454
17461
  };
17455
- elevation: {
17456
- type: (StringConstructor | NumberConstructor)[];
17457
- validator(v: any): boolean;
17458
- };
17459
17462
  rounded: {
17460
17463
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17461
17464
  default: undefined;
17462
17465
  };
17463
17466
  tile: BooleanConstructor;
17467
+ position: {
17468
+ type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17469
+ validator: (v: any) => boolean;
17470
+ };
17471
+ location: PropType<Anchor | null>;
17472
+ elevation: {
17473
+ type: (StringConstructor | NumberConstructor)[];
17474
+ validator(v: any): boolean;
17475
+ };
17476
+ height: (StringConstructor | NumberConstructor)[];
17477
+ maxHeight: (StringConstructor | NumberConstructor)[];
17478
+ maxWidth: (StringConstructor | NumberConstructor)[];
17479
+ minHeight: (StringConstructor | NumberConstructor)[];
17480
+ minWidth: (StringConstructor | NumberConstructor)[];
17481
+ width: (StringConstructor | NumberConstructor)[];
17482
+ class: PropType<ClassValue>;
17483
+ style: {
17484
+ type: PropType<vue.StyleValue>;
17485
+ default: null;
17486
+ };
17487
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17488
+ color: StringConstructor;
17489
+ bgColor: StringConstructor;
17490
+ landscape: BooleanConstructor;
17491
+ title: StringConstructor;
17492
+ hideHeader: {
17493
+ type: PropType<boolean>;
17494
+ default: boolean;
17495
+ };
17464
17496
  canvasHeight: {
17465
17497
  type: (StringConstructor | NumberConstructor)[];
17466
17498
  default: number;
@@ -17499,15 +17531,16 @@ declare const VColorPicker: {
17499
17531
  'update:modelValue': (color: any) => true;
17500
17532
  'update:mode': (mode: keyof typeof modes) => true;
17501
17533
  }, string, {
17502
- width: string | number;
17503
17534
  style: vue.StyleValue;
17504
17535
  disabled: boolean;
17505
17536
  tag: string | JSXComponent;
17506
17537
  mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
17538
+ landscape: boolean;
17507
17539
  rounded: string | number | boolean;
17508
17540
  tile: boolean;
17509
17541
  dotSize: string | number;
17510
17542
  modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
17543
+ hideHeader: boolean;
17511
17544
  canvasHeight: string | number;
17512
17545
  hideCanvas: boolean;
17513
17546
  hideSliders: boolean;
@@ -17515,35 +17548,45 @@ declare const VColorPicker: {
17515
17548
  showSwatches: boolean;
17516
17549
  swatchesMaxHeight: string | number;
17517
17550
  }, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
17518
- width: {
17519
- type: PropType<string | number>;
17520
- default: NonNullable<string | number>;
17521
- };
17522
- border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17523
- color: StringConstructor;
17524
- position: {
17525
- type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17526
- validator: (v: any) => boolean;
17527
- };
17528
- style: {
17529
- type: PropType<vue.StyleValue>;
17530
- default: null;
17531
- };
17532
- class: PropType<ClassValue>;
17533
17551
  theme: StringConstructor;
17534
17552
  tag: {
17535
17553
  type: PropType<string | JSXComponent>;
17536
17554
  default: string;
17537
17555
  };
17538
- elevation: {
17539
- type: (StringConstructor | NumberConstructor)[];
17540
- validator(v: any): boolean;
17541
- };
17542
17556
  rounded: {
17543
17557
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17544
17558
  default: undefined;
17545
17559
  };
17546
17560
  tile: BooleanConstructor;
17561
+ position: {
17562
+ type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17563
+ validator: (v: any) => boolean;
17564
+ };
17565
+ location: PropType<Anchor | null>;
17566
+ elevation: {
17567
+ type: (StringConstructor | NumberConstructor)[];
17568
+ validator(v: any): boolean;
17569
+ };
17570
+ height: (StringConstructor | NumberConstructor)[];
17571
+ maxHeight: (StringConstructor | NumberConstructor)[];
17572
+ maxWidth: (StringConstructor | NumberConstructor)[];
17573
+ minHeight: (StringConstructor | NumberConstructor)[];
17574
+ minWidth: (StringConstructor | NumberConstructor)[];
17575
+ width: (StringConstructor | NumberConstructor)[];
17576
+ class: PropType<ClassValue>;
17577
+ style: {
17578
+ type: PropType<vue.StyleValue>;
17579
+ default: null;
17580
+ };
17581
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17582
+ color: StringConstructor;
17583
+ bgColor: StringConstructor;
17584
+ landscape: BooleanConstructor;
17585
+ title: StringConstructor;
17586
+ hideHeader: {
17587
+ type: PropType<boolean>;
17588
+ default: boolean;
17589
+ };
17547
17590
  canvasHeight: {
17548
17591
  type: (StringConstructor | NumberConstructor)[];
17549
17592
  default: number;
@@ -17576,35 +17619,45 @@ declare const VColorPicker: {
17576
17619
  type: PropType<Record<string, unknown> | string | undefined | null>;
17577
17620
  };
17578
17621
  }, vue.ExtractPropTypes<{
17579
- width: {
17580
- type: PropType<string | number>;
17581
- default: NonNullable<string | number>;
17582
- };
17583
- border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17584
- color: StringConstructor;
17585
- position: {
17586
- type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17587
- validator: (v: any) => boolean;
17588
- };
17589
- style: {
17590
- type: PropType<vue.StyleValue>;
17591
- default: null;
17592
- };
17593
- class: PropType<ClassValue>;
17594
17622
  theme: StringConstructor;
17595
17623
  tag: {
17596
17624
  type: PropType<string | JSXComponent>;
17597
17625
  default: string;
17598
17626
  };
17599
- elevation: {
17600
- type: (StringConstructor | NumberConstructor)[];
17601
- validator(v: any): boolean;
17602
- };
17603
17627
  rounded: {
17604
17628
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17605
17629
  default: undefined;
17606
17630
  };
17607
17631
  tile: BooleanConstructor;
17632
+ position: {
17633
+ type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
17634
+ validator: (v: any) => boolean;
17635
+ };
17636
+ location: PropType<Anchor | null>;
17637
+ elevation: {
17638
+ type: (StringConstructor | NumberConstructor)[];
17639
+ validator(v: any): boolean;
17640
+ };
17641
+ height: (StringConstructor | NumberConstructor)[];
17642
+ maxHeight: (StringConstructor | NumberConstructor)[];
17643
+ maxWidth: (StringConstructor | NumberConstructor)[];
17644
+ minHeight: (StringConstructor | NumberConstructor)[];
17645
+ minWidth: (StringConstructor | NumberConstructor)[];
17646
+ width: (StringConstructor | NumberConstructor)[];
17647
+ class: PropType<ClassValue>;
17648
+ style: {
17649
+ type: PropType<vue.StyleValue>;
17650
+ default: null;
17651
+ };
17652
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
17653
+ color: StringConstructor;
17654
+ bgColor: StringConstructor;
17655
+ landscape: BooleanConstructor;
17656
+ title: StringConstructor;
17657
+ hideHeader: {
17658
+ type: PropType<boolean>;
17659
+ default: boolean;
17660
+ };
17608
17661
  canvasHeight: {
17609
17662
  type: (StringConstructor | NumberConstructor)[];
17610
17663
  default: number;
@@ -23708,6 +23761,7 @@ declare const VDatePicker: {
23708
23761
  nextIcon: IconValue;
23709
23762
  prevIcon: IconValue;
23710
23763
  reverseTransition: string;
23764
+ hideHeader: boolean;
23711
23765
  modeIcon: IconValue;
23712
23766
  viewMode: "month" | "year" | "months";
23713
23767
  showAdjacentMonths: boolean;
@@ -23715,7 +23769,6 @@ declare const VDatePicker: {
23715
23769
  weeksInMonth: "static" | "dynamic";
23716
23770
  hideWeekdays: boolean;
23717
23771
  showWeek: boolean;
23718
- hideHeader: boolean;
23719
23772
  } & {
23720
23773
  max?: unknown;
23721
23774
  location?: Anchor | null | undefined;
@@ -23763,6 +23816,7 @@ declare const VDatePicker: {
23763
23816
  nextIcon: IconValue;
23764
23817
  prevIcon: IconValue;
23765
23818
  reverseTransition: string;
23819
+ hideHeader: boolean;
23766
23820
  modeIcon: IconValue;
23767
23821
  viewMode: "month" | "year" | "months";
23768
23822
  showAdjacentMonths: boolean;
@@ -23770,7 +23824,6 @@ declare const VDatePicker: {
23770
23824
  weeksInMonth: "static" | "dynamic";
23771
23825
  hideWeekdays: boolean;
23772
23826
  showWeek: boolean;
23773
- hideHeader: boolean;
23774
23827
  }, true, {}, vue.SlotsType<Partial<{
23775
23828
  default: () => vue.VNode[];
23776
23829
  title: () => vue.VNode[];
@@ -23798,6 +23851,7 @@ declare const VDatePicker: {
23798
23851
  nextIcon: IconValue;
23799
23852
  prevIcon: IconValue;
23800
23853
  reverseTransition: string;
23854
+ hideHeader: boolean;
23801
23855
  modeIcon: IconValue;
23802
23856
  viewMode: "month" | "year" | "months";
23803
23857
  showAdjacentMonths: boolean;
@@ -23805,7 +23859,6 @@ declare const VDatePicker: {
23805
23859
  weeksInMonth: "static" | "dynamic";
23806
23860
  hideWeekdays: boolean;
23807
23861
  showWeek: boolean;
23808
- hideHeader: boolean;
23809
23862
  } & {
23810
23863
  max?: unknown;
23811
23864
  location?: Anchor | null | undefined;
@@ -23848,6 +23901,7 @@ declare const VDatePicker: {
23848
23901
  nextIcon: IconValue;
23849
23902
  prevIcon: IconValue;
23850
23903
  reverseTransition: string;
23904
+ hideHeader: boolean;
23851
23905
  modeIcon: IconValue;
23852
23906
  viewMode: "month" | "year" | "months";
23853
23907
  showAdjacentMonths: boolean;
@@ -23855,7 +23909,6 @@ declare const VDatePicker: {
23855
23909
  weeksInMonth: "static" | "dynamic";
23856
23910
  hideWeekdays: boolean;
23857
23911
  showWeek: boolean;
23858
- hideHeader: boolean;
23859
23912
  }>;
23860
23913
  __isFragment?: never;
23861
23914
  __isTeleport?: never;
@@ -23872,6 +23925,7 @@ declare const VDatePicker: {
23872
23925
  nextIcon: IconValue;
23873
23926
  prevIcon: IconValue;
23874
23927
  reverseTransition: string;
23928
+ hideHeader: boolean;
23875
23929
  modeIcon: IconValue;
23876
23930
  viewMode: "month" | "year" | "months";
23877
23931
  showAdjacentMonths: boolean;
@@ -23879,7 +23933,6 @@ declare const VDatePicker: {
23879
23933
  weeksInMonth: "static" | "dynamic";
23880
23934
  hideWeekdays: boolean;
23881
23935
  showWeek: boolean;
23882
- hideHeader: boolean;
23883
23936
  } & {
23884
23937
  max?: unknown;
23885
23938
  location?: Anchor | null | undefined;
@@ -23927,6 +23980,7 @@ declare const VDatePicker: {
23927
23980
  nextIcon: IconValue;
23928
23981
  prevIcon: IconValue;
23929
23982
  reverseTransition: string;
23983
+ hideHeader: boolean;
23930
23984
  modeIcon: IconValue;
23931
23985
  viewMode: "month" | "year" | "months";
23932
23986
  showAdjacentMonths: boolean;
@@ -23934,7 +23988,6 @@ declare const VDatePicker: {
23934
23988
  weeksInMonth: "static" | "dynamic";
23935
23989
  hideWeekdays: boolean;
23936
23990
  showWeek: boolean;
23937
- hideHeader: boolean;
23938
23991
  }, {}, string, vue.SlotsType<Partial<{
23939
23992
  default: () => vue.VNode[];
23940
23993
  title: () => vue.VNode[];
@@ -57892,39 +57945,47 @@ declare module 'vue' {
57892
57945
  VAppBarNavIcon: VAppBarNavIcon
57893
57946
  VAppBarTitle: VAppBarTitle
57894
57947
  VApp: VApp
57895
- VAutocomplete: VAutocomplete
57896
- VBadge: VBadge
57897
57948
  VAlert: VAlert
57898
57949
  VAlertTitle: VAlertTitle
57899
- VBottomSheet: VBottomSheet
57950
+ VAvatar: VAvatar
57951
+ VBottomNavigation: VBottomNavigation
57952
+ VAutocomplete: VAutocomplete
57953
+ VBadge: VBadge
57900
57954
  VBanner: VBanner
57901
57955
  VBannerActions: VBannerActions
57902
57956
  VBannerText: VBannerText
57903
- VAvatar: VAvatar
57904
- VBtnToggle: VBtnToggle
57905
- VBottomNavigation: VBottomNavigation
57906
- VCheckbox: VCheckbox
57907
- VCheckboxBtn: VCheckboxBtn
57908
57957
  VBreadcrumbs: VBreadcrumbs
57909
57958
  VBreadcrumbsItem: VBreadcrumbsItem
57910
57959
  VBreadcrumbsDivider: VBreadcrumbsDivider
57960
+ VBtn: VBtn
57961
+ VBottomSheet: VBottomSheet
57962
+ VBtnToggle: VBtnToggle
57911
57963
  VCard: VCard
57912
57964
  VCardActions: VCardActions
57913
57965
  VCardItem: VCardItem
57914
57966
  VCardSubtitle: VCardSubtitle
57915
57967
  VCardText: VCardText
57916
57968
  VCardTitle: VCardTitle
57917
- VBtnGroup: VBtnGroup
57918
- VBtn: VBtn
57919
- VColorPicker: VColorPicker
57920
57969
  VChip: VChip
57970
+ VBtnGroup: VBtnGroup
57921
57971
  VCarousel: VCarousel
57922
57972
  VCarouselItem: VCarouselItem
57923
- VChipGroup: VChipGroup
57973
+ VCheckbox: VCheckbox
57974
+ VCheckboxBtn: VCheckboxBtn
57975
+ VCombobox: VCombobox
57976
+ VCode: VCode
57924
57977
  VCounter: VCounter
57925
57978
  VDialog: VDialog
57979
+ VDatePicker: VDatePicker
57980
+ VDatePickerControls: VDatePickerControls
57981
+ VDatePickerHeader: VDatePickerHeader
57982
+ VDatePickerMonth: VDatePickerMonth
57983
+ VDatePickerMonths: VDatePickerMonths
57984
+ VDatePickerYears: VDatePickerYears
57985
+ VChipGroup: VChipGroup
57986
+ VColorPicker: VColorPicker
57926
57987
  VDivider: VDivider
57927
- VCombobox: VCombobox
57988
+ VEmptyState: VEmptyState
57928
57989
  VExpansionPanels: VExpansionPanels
57929
57990
  VExpansionPanel: VExpansionPanel
57930
57991
  VExpansionPanelText: VExpansionPanelText
@@ -57936,33 +57997,24 @@ declare module 'vue' {
57936
57997
  VDataTableRow: VDataTableRow
57937
57998
  VDataTableVirtual: VDataTableVirtual
57938
57999
  VDataTableServer: VDataTableServer
57939
- VDatePicker: VDatePicker
57940
- VDatePickerControls: VDatePickerControls
57941
- VDatePickerHeader: VDatePickerHeader
57942
- VDatePickerMonth: VDatePickerMonth
57943
- VDatePickerMonths: VDatePickerMonths
57944
- VDatePickerYears: VDatePickerYears
57945
- VEmptyState: VEmptyState
58000
+ VFab: VFab
58001
+ VFooter: VFooter
57946
58002
  VField: VField
57947
58003
  VFieldLabel: VFieldLabel
57948
- VFooter: VFooter
57949
58004
  VFileInput: VFileInput
57950
- VFab: VFab
58005
+ VImg: VImg
58006
+ VInput: VInput
58007
+ VItemGroup: VItemGroup
58008
+ VItem: VItem
58009
+ VInfiniteScroll: VInfiniteScroll
57951
58010
  VIcon: VIcon
57952
58011
  VComponentIcon: VComponentIcon
57953
58012
  VSvgIcon: VSvgIcon
57954
58013
  VLigatureIcon: VLigatureIcon
57955
58014
  VClassIcon: VClassIcon
57956
- VImg: VImg
57957
- VInfiniteScroll: VInfiniteScroll
58015
+ VKbd: VKbd
57958
58016
  VLabel: VLabel
57959
- VItemGroup: VItemGroup
57960
- VItem: VItem
57961
58017
  VMain: VMain
57962
- VKbd: VKbd
57963
- VInput: VInput
57964
- VMessages: VMessages
57965
- VMenu: VMenu
57966
58018
  VList: VList
57967
58019
  VListGroup: VListGroup
57968
58020
  VListImg: VListImg
@@ -57973,59 +58025,60 @@ declare module 'vue' {
57973
58025
  VListItemTitle: VListItemTitle
57974
58026
  VListSubheader: VListSubheader
57975
58027
  VNavigationDrawer: VNavigationDrawer
58028
+ VOverlay: VOverlay
58029
+ VMenu: VMenu
57976
58030
  VOtpInput: VOtpInput
58031
+ VMessages: VMessages
57977
58032
  VPagination: VPagination
57978
- VOverlay: VOverlay
58033
+ VProgressLinear: VProgressLinear
57979
58034
  VProgressCircular: VProgressCircular
58035
+ VSelectionControl: VSelectionControl
57980
58036
  VRadioGroup: VRadioGroup
57981
- VProgressLinear: VProgressLinear
57982
- VSelect: VSelect
57983
- VCode: VCode
57984
- VRating: VRating
57985
58037
  VSelectionControlGroup: VSelectionControlGroup
57986
- VSheet: VSheet
58038
+ VSelect: VSelect
57987
58039
  VSkeletonLoader: VSkeletonLoader
57988
- VSelectionControl: VSelectionControl
58040
+ VRating: VRating
57989
58041
  VSlider: VSlider
57990
58042
  VSnackbar: VSnackbar
57991
- VSystemBar: VSystemBar
57992
- VSwitch: VSwitch
57993
58043
  VSlideGroup: VSlideGroup
57994
58044
  VSlideGroupItem: VSlideGroupItem
57995
- VTab: VTab
57996
- VTabs: VTabs
57997
- VTabsWindow: VTabsWindow
57998
- VTabsWindowItem: VTabsWindowItem
57999
- VTextarea: VTextarea
58000
58045
  VStepper: VStepper
58001
58046
  VStepperActions: VStepperActions
58002
58047
  VStepperHeader: VStepperHeader
58003
58048
  VStepperItem: VStepperItem
58004
58049
  VStepperWindow: VStepperWindow
58005
58050
  VStepperWindowItem: VStepperWindowItem
58006
- VTable: VTable
58051
+ VSheet: VSheet
58052
+ VSwitch: VSwitch
58053
+ VSystemBar: VSystemBar
58007
58054
  VTextField: VTextField
58008
- VTimeline: VTimeline
58009
- VTimelineItem: VTimelineItem
58010
- VTooltip: VTooltip
58055
+ VTable: VTable
58056
+ VTab: VTab
58057
+ VTabs: VTabs
58058
+ VTabsWindow: VTabsWindow
58059
+ VTabsWindowItem: VTabsWindowItem
58060
+ VTextarea: VTextarea
58011
58061
  VToolbar: VToolbar
58012
58062
  VToolbarTitle: VToolbarTitle
58013
58063
  VToolbarItems: VToolbarItems
58064
+ VTimeline: VTimeline
58065
+ VTimelineItem: VTimelineItem
58066
+ VTooltip: VTooltip
58014
58067
  VWindow: VWindow
58015
58068
  VWindowItem: VWindowItem
58016
58069
  VConfirmEdit: VConfirmEdit
58017
58070
  VDataIterator: VDataIterator
58018
58071
  VDefaultsProvider: VDefaultsProvider
58072
+ VForm: VForm
58019
58073
  VContainer: VContainer
58020
58074
  VCol: VCol
58021
58075
  VRow: VRow
58022
58076
  VSpacer: VSpacer
58023
- VForm: VForm
58024
58077
  VHover: VHover
58078
+ VLocaleProvider: VLocaleProvider
58025
58079
  VLayout: VLayout
58026
58080
  VLayoutItem: VLayoutItem
58027
58081
  VLazy: VLazy
58028
- VLocaleProvider: VLocaleProvider
58029
58082
  VNoSsr: VNoSsr
58030
58083
  VParallax: VParallax
58031
58084
  VRadio: VRadio
@@ -58034,8 +58087,8 @@ declare module 'vue' {
58034
58087
  VSparkline: VSparkline
58035
58088
  VSpeedDial: VSpeedDial
58036
58089
  VThemeProvider: VThemeProvider
58037
- VValidation: VValidation
58038
58090
  VVirtualScroll: VVirtualScroll
58091
+ VValidation: VValidation
58039
58092
  VFabTransition: VFabTransition
58040
58093
  VDialogBottomTransition: VDialogBottomTransition
58041
58094
  VDialogTopTransition: VDialogTopTransition
@@ -58052,20 +58105,20 @@ declare module 'vue' {
58052
58105
  VExpandTransition: VExpandTransition
58053
58106
  VExpandXTransition: VExpandXTransition
58054
58107
  VDialogTransition: VDialogTransition
58055
- VFileUpload: VFileUpload
58056
- VFileUploadItem: VFileUploadItem
58057
- VNumberInput: VNumberInput
58058
58108
  VCalendar: VCalendar
58059
58109
  VCalendarDay: VCalendarDay
58060
58110
  VCalendarHeader: VCalendarHeader
58061
58111
  VCalendarInterval: VCalendarInterval
58062
58112
  VCalendarIntervalEvent: VCalendarIntervalEvent
58063
58113
  VCalendarMonthDay: VCalendarMonthDay
58114
+ VPicker: VPicker
58115
+ VPickerTitle: VPickerTitle
58116
+ VFileUpload: VFileUpload
58117
+ VFileUploadItem: VFileUploadItem
58118
+ VNumberInput: VNumberInput
58064
58119
  VStepperVertical: VStepperVertical
58065
58120
  VStepperVerticalItem: VStepperVerticalItem
58066
58121
  VStepperVerticalActions: VStepperVerticalActions
58067
- VPicker: VPicker
58068
- VPickerTitle: VPickerTitle
58069
58122
  VTimePicker: VTimePicker
58070
58123
  VTimePickerClock: VTimePickerClock
58071
58124
  VTimePickerControls: VTimePickerControls
@@ -58073,7 +58126,7 @@ declare module 'vue' {
58073
58126
  VTreeviewItem: VTreeviewItem
58074
58127
  VTreeviewGroup: VTreeviewGroup
58075
58128
  VDateInput: VDateInput
58076
- VPullToRefresh: VPullToRefresh
58077
58129
  VSnackbarQueue: VSnackbarQueue
58130
+ VPullToRefresh: VPullToRefresh
58078
58131
  }
58079
58132
  }