@vuetify/nightly 3.6.5-master.2024-05-13 → 3.6.6-master.2024-05-15

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 (48) hide show
  1. package/CHANGELOG.md +3 -8
  2. package/dist/json/importMap-labs.json +4 -4
  3. package/dist/json/importMap.json +120 -120
  4. package/dist/json/web-types.json +5 -5
  5. package/dist/vuetify-labs.css +2132 -2087
  6. package/dist/vuetify-labs.d.ts +60 -36
  7. package/dist/vuetify-labs.esm.js +27 -19
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +27 -19
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +2725 -2680
  12. package/dist/vuetify.d.ts +98 -74
  13. package/dist/vuetify.esm.js +15 -9
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +15 -9
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +18 -17
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBanner/VBanner.mjs +3 -1
  21. package/lib/components/VBanner/VBanner.mjs.map +1 -1
  22. package/lib/components/VBanner/index.d.mts +15 -9
  23. package/lib/components/VChipGroup/index.d.mts +15 -9
  24. package/lib/components/VDivider/VDivider.css +1 -0
  25. package/lib/components/VDivider/VDivider.sass +1 -0
  26. package/lib/components/VMenu/VMenu.mjs +2 -1
  27. package/lib/components/VMenu/VMenu.mjs.map +1 -1
  28. package/lib/components/VSelect/VSelect.mjs +1 -1
  29. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  30. package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
  31. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  32. package/lib/components/VSlideGroup/index.d.mts +15 -9
  33. package/lib/components/VSwitch/VSwitch.css +44 -0
  34. package/lib/components/VSwitch/VSwitch.mjs +4 -3
  35. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  36. package/lib/components/VSwitch/VSwitch.sass +55 -0
  37. package/lib/components/VTabs/index.d.mts +15 -9
  38. package/lib/components/index.d.mts +60 -36
  39. package/lib/entry-bundler.mjs +1 -1
  40. package/lib/framework.mjs +1 -1
  41. package/lib/index.d.mts +38 -38
  42. package/lib/labs/VTreeview/VTreeviewChildren.mjs +12 -10
  43. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  44. package/lib/locale/de.mjs +4 -4
  45. package/lib/locale/de.mjs.map +1 -1
  46. package/lib/locale/hu.mjs +18 -18
  47. package/lib/locale/hu.mjs.map +1 -1
  48. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -9429,7 +9429,7 @@ declare const VBanner: {
9429
9429
  new (...args: any[]): vue.CreateComponentPublicInstance<{
9430
9430
  style: vue.StyleValue;
9431
9431
  tag: string;
9432
- mobile: boolean | null;
9432
+ mobile: NonNullable<boolean | null> | null;
9433
9433
  sticky: boolean;
9434
9434
  tile: boolean;
9435
9435
  density: Density;
@@ -9476,7 +9476,7 @@ declare const VBanner: {
9476
9476
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
9477
9477
  style: vue.StyleValue;
9478
9478
  tag: string;
9479
- mobile: boolean | null;
9479
+ mobile: NonNullable<boolean | null> | null;
9480
9480
  sticky: boolean;
9481
9481
  tile: boolean;
9482
9482
  density: Density;
@@ -9523,7 +9523,7 @@ declare const VBanner: {
9523
9523
  }, {
9524
9524
  style: vue.StyleValue;
9525
9525
  tag: string;
9526
- mobile: boolean | null;
9526
+ mobile: NonNullable<boolean | null> | null;
9527
9527
  sticky: boolean;
9528
9528
  rounded: string | number | boolean;
9529
9529
  tile: boolean;
@@ -9552,7 +9552,7 @@ declare const VBanner: {
9552
9552
  }, {
9553
9553
  style: vue.StyleValue;
9554
9554
  tag: string;
9555
- mobile: boolean | null;
9555
+ mobile: NonNullable<boolean | null> | null;
9556
9556
  sticky: boolean;
9557
9557
  tile: boolean;
9558
9558
  density: Density;
@@ -9599,7 +9599,7 @@ declare const VBanner: {
9599
9599
  }, {}, {}, {}, {}, {
9600
9600
  style: vue.StyleValue;
9601
9601
  tag: string;
9602
- mobile: boolean | null;
9602
+ mobile: NonNullable<boolean | null> | null;
9603
9603
  sticky: boolean;
9604
9604
  rounded: string | number | boolean;
9605
9605
  tile: boolean;
@@ -9612,7 +9612,7 @@ declare const VBanner: {
9612
9612
  } & vue.ComponentOptionsBase<{
9613
9613
  style: vue.StyleValue;
9614
9614
  tag: string;
9615
- mobile: boolean | null;
9615
+ mobile: NonNullable<boolean | null> | null;
9616
9616
  sticky: boolean;
9617
9617
  tile: boolean;
9618
9618
  density: Density;
@@ -9659,7 +9659,7 @@ declare const VBanner: {
9659
9659
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
9660
9660
  style: vue.StyleValue;
9661
9661
  tag: string;
9662
- mobile: boolean | null;
9662
+ mobile: NonNullable<boolean | null> | null;
9663
9663
  sticky: boolean;
9664
9664
  rounded: string | number | boolean;
9665
9665
  tile: boolean;
@@ -9698,9 +9698,12 @@ declare const VBanner: {
9698
9698
  type: (StringConstructor | NumberConstructor)[];
9699
9699
  validator(v: any): boolean;
9700
9700
  };
9701
- mobile: {
9701
+ mobile: Omit<{
9702
9702
  type: PropType<boolean | null>;
9703
9703
  default: boolean;
9704
+ }, "default" | "type"> & {
9705
+ type: PropType<NonNullable<boolean | null> | null>;
9706
+ default: NonNullable<boolean | null> | null;
9704
9707
  };
9705
9708
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9706
9709
  height: (StringConstructor | NumberConstructor)[];
@@ -9748,9 +9751,12 @@ declare const VBanner: {
9748
9751
  type: (StringConstructor | NumberConstructor)[];
9749
9752
  validator(v: any): boolean;
9750
9753
  };
9751
- mobile: {
9754
+ mobile: Omit<{
9752
9755
  type: PropType<boolean | null>;
9753
9756
  default: boolean;
9757
+ }, "default" | "type"> & {
9758
+ type: PropType<NonNullable<boolean | null> | null>;
9759
+ default: NonNullable<boolean | null> | null;
9754
9760
  };
9755
9761
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9756
9762
  height: (StringConstructor | NumberConstructor)[];
@@ -17670,7 +17676,7 @@ declare const VChipGroup: {
17670
17676
  style: vue.StyleValue;
17671
17677
  disabled: boolean;
17672
17678
  tag: string;
17673
- mobile: boolean | null;
17679
+ mobile: NonNullable<boolean | null> | null;
17674
17680
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17675
17681
  column: boolean;
17676
17682
  multiple: boolean;
@@ -17696,7 +17702,7 @@ declare const VChipGroup: {
17696
17702
  style: vue.StyleValue;
17697
17703
  disabled: boolean;
17698
17704
  tag: string;
17699
- mobile: boolean | null;
17705
+ mobile: NonNullable<boolean | null> | null;
17700
17706
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17701
17707
  column: boolean;
17702
17708
  multiple: boolean;
@@ -17720,7 +17726,7 @@ declare const VChipGroup: {
17720
17726
  style: vue.StyleValue;
17721
17727
  disabled: boolean;
17722
17728
  tag: string;
17723
- mobile: boolean | null;
17729
+ mobile: NonNullable<boolean | null> | null;
17724
17730
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17725
17731
  column: boolean;
17726
17732
  multiple: boolean;
@@ -17753,7 +17759,7 @@ declare const VChipGroup: {
17753
17759
  style: vue.StyleValue;
17754
17760
  disabled: boolean;
17755
17761
  tag: string;
17756
- mobile: boolean | null;
17762
+ mobile: NonNullable<boolean | null> | null;
17757
17763
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17758
17764
  column: boolean;
17759
17765
  multiple: boolean;
@@ -17777,7 +17783,7 @@ declare const VChipGroup: {
17777
17783
  style: vue.StyleValue;
17778
17784
  disabled: boolean;
17779
17785
  tag: string;
17780
- mobile: boolean | null;
17786
+ mobile: NonNullable<boolean | null> | null;
17781
17787
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17782
17788
  column: boolean;
17783
17789
  multiple: boolean;
@@ -17797,7 +17803,7 @@ declare const VChipGroup: {
17797
17803
  style: vue.StyleValue;
17798
17804
  disabled: boolean;
17799
17805
  tag: string;
17800
- mobile: boolean | null;
17806
+ mobile: NonNullable<boolean | null> | null;
17801
17807
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17802
17808
  column: boolean;
17803
17809
  multiple: boolean;
@@ -17823,7 +17829,7 @@ declare const VChipGroup: {
17823
17829
  style: vue.StyleValue;
17824
17830
  disabled: boolean;
17825
17831
  tag: string;
17826
- mobile: boolean | null;
17832
+ mobile: NonNullable<boolean | null> | null;
17827
17833
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17828
17834
  column: boolean;
17829
17835
  multiple: boolean;
@@ -17881,9 +17887,12 @@ declare const VChipGroup: {
17881
17887
  type: PropType<vue.StyleValue>;
17882
17888
  default: null;
17883
17889
  };
17884
- mobile: {
17890
+ mobile: Omit<{
17885
17891
  type: PropType<boolean | null>;
17886
17892
  default: boolean;
17893
+ }, "default" | "type"> & {
17894
+ type: PropType<NonNullable<boolean | null> | null>;
17895
+ default: NonNullable<boolean | null> | null;
17887
17896
  };
17888
17897
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17889
17898
  centerActive: BooleanConstructor;
@@ -17945,9 +17954,12 @@ declare const VChipGroup: {
17945
17954
  type: PropType<vue.StyleValue>;
17946
17955
  default: null;
17947
17956
  };
17948
- mobile: {
17957
+ mobile: Omit<{
17949
17958
  type: PropType<boolean | null>;
17950
17959
  default: boolean;
17960
+ }, "default" | "type"> & {
17961
+ type: PropType<NonNullable<boolean | null> | null>;
17962
+ default: NonNullable<boolean | null> | null;
17951
17963
  };
17952
17964
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17953
17965
  centerActive: BooleanConstructor;
@@ -53576,7 +53588,7 @@ declare const VSlideGroup: {
53576
53588
  style: vue.StyleValue;
53577
53589
  disabled: boolean;
53578
53590
  tag: string;
53579
- mobile: boolean | null;
53591
+ mobile: NonNullable<boolean | null> | null;
53580
53592
  multiple: boolean;
53581
53593
  direction: "horizontal" | "vertical";
53582
53594
  selectedClass: string;
@@ -53601,7 +53613,7 @@ declare const VSlideGroup: {
53601
53613
  style: vue.StyleValue;
53602
53614
  disabled: boolean;
53603
53615
  tag: string;
53604
- mobile: boolean | null;
53616
+ mobile: NonNullable<boolean | null> | null;
53605
53617
  multiple: boolean;
53606
53618
  direction: "horizontal" | "vertical";
53607
53619
  selectedClass: string;
@@ -53619,7 +53631,7 @@ declare const VSlideGroup: {
53619
53631
  style: vue.StyleValue;
53620
53632
  disabled: boolean;
53621
53633
  tag: string;
53622
- mobile: boolean | null;
53634
+ mobile: NonNullable<boolean | null> | null;
53623
53635
  multiple: boolean;
53624
53636
  direction: "horizontal" | "vertical";
53625
53637
  selectedClass: string;
@@ -53648,7 +53660,7 @@ declare const VSlideGroup: {
53648
53660
  style: vue.StyleValue;
53649
53661
  disabled: boolean;
53650
53662
  tag: string;
53651
- mobile: boolean | null;
53663
+ mobile: NonNullable<boolean | null> | null;
53652
53664
  multiple: boolean;
53653
53665
  direction: "horizontal" | "vertical";
53654
53666
  selectedClass: string;
@@ -53671,7 +53683,7 @@ declare const VSlideGroup: {
53671
53683
  style: vue.StyleValue;
53672
53684
  disabled: boolean;
53673
53685
  tag: string;
53674
- mobile: boolean | null;
53686
+ mobile: NonNullable<boolean | null> | null;
53675
53687
  multiple: boolean;
53676
53688
  direction: "horizontal" | "vertical";
53677
53689
  selectedClass: string;
@@ -53687,7 +53699,7 @@ declare const VSlideGroup: {
53687
53699
  style: vue.StyleValue;
53688
53700
  disabled: boolean;
53689
53701
  tag: string;
53690
- mobile: boolean | null;
53702
+ mobile: NonNullable<boolean | null> | null;
53691
53703
  multiple: boolean;
53692
53704
  direction: "horizontal" | "vertical";
53693
53705
  selectedClass: string;
@@ -53712,7 +53724,7 @@ declare const VSlideGroup: {
53712
53724
  style: vue.StyleValue;
53713
53725
  disabled: boolean;
53714
53726
  tag: string;
53715
- mobile: boolean | null;
53727
+ mobile: NonNullable<boolean | null> | null;
53716
53728
  multiple: boolean;
53717
53729
  direction: "horizontal" | "vertical";
53718
53730
  selectedClass: string;
@@ -53752,9 +53764,12 @@ declare const VSlideGroup: {
53752
53764
  type: StringConstructor;
53753
53765
  default: string;
53754
53766
  };
53755
- mobile: {
53767
+ mobile: Omit<{
53756
53768
  type: PropType<boolean | null>;
53757
53769
  default: boolean;
53770
+ }, "default" | "type"> & {
53771
+ type: PropType<NonNullable<boolean | null> | null>;
53772
+ default: NonNullable<boolean | null> | null;
53758
53773
  };
53759
53774
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
53760
53775
  class: PropType<any>;
@@ -53800,9 +53815,12 @@ declare const VSlideGroup: {
53800
53815
  type: StringConstructor;
53801
53816
  default: string;
53802
53817
  };
53803
- mobile: {
53818
+ mobile: Omit<{
53804
53819
  type: PropType<boolean | null>;
53805
53820
  default: boolean;
53821
+ }, "default" | "type"> & {
53822
+ type: PropType<NonNullable<boolean | null> | null>;
53823
+ default: NonNullable<boolean | null> | null;
53806
53824
  };
53807
53825
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
53808
53826
  class: PropType<any>;
@@ -62237,7 +62255,7 @@ declare const VTabs: {
62237
62255
  style: vue.StyleValue;
62238
62256
  disabled: boolean;
62239
62257
  tag: string;
62240
- mobile: boolean | null;
62258
+ mobile: NonNullable<boolean | null> | null;
62241
62259
  items: readonly TabItem[];
62242
62260
  mandatory: NonNullable<boolean | "force">;
62243
62261
  multiple: boolean;
@@ -62295,7 +62313,7 @@ declare const VTabs: {
62295
62313
  style: vue.StyleValue;
62296
62314
  disabled: boolean;
62297
62315
  tag: string;
62298
- mobile: boolean | null;
62316
+ mobile: NonNullable<boolean | null> | null;
62299
62317
  items: readonly TabItem[];
62300
62318
  mandatory: NonNullable<boolean | "force">;
62301
62319
  multiple: boolean;
@@ -62352,7 +62370,7 @@ declare const VTabs: {
62352
62370
  height: string | number;
62353
62371
  disabled: boolean;
62354
62372
  tag: string;
62355
- mobile: boolean | null;
62373
+ mobile: NonNullable<boolean | null> | null;
62356
62374
  modelValue: any;
62357
62375
  items: readonly TabItem[];
62358
62376
  mandatory: NonNullable<boolean | "force">;
@@ -62399,7 +62417,7 @@ declare const VTabs: {
62399
62417
  style: vue.StyleValue;
62400
62418
  disabled: boolean;
62401
62419
  tag: string;
62402
- mobile: boolean | null;
62420
+ mobile: NonNullable<boolean | null> | null;
62403
62421
  items: readonly TabItem[];
62404
62422
  mandatory: NonNullable<boolean | "force">;
62405
62423
  multiple: boolean;
@@ -62456,7 +62474,7 @@ declare const VTabs: {
62456
62474
  height: string | number;
62457
62475
  disabled: boolean;
62458
62476
  tag: string;
62459
- mobile: boolean | null;
62477
+ mobile: NonNullable<boolean | null> | null;
62460
62478
  modelValue: any;
62461
62479
  items: readonly TabItem[];
62462
62480
  mandatory: NonNullable<boolean | "force">;
@@ -62481,7 +62499,7 @@ declare const VTabs: {
62481
62499
  style: vue.StyleValue;
62482
62500
  disabled: boolean;
62483
62501
  tag: string;
62484
- mobile: boolean | null;
62502
+ mobile: NonNullable<boolean | null> | null;
62485
62503
  items: readonly TabItem[];
62486
62504
  mandatory: NonNullable<boolean | "force">;
62487
62505
  multiple: boolean;
@@ -62540,7 +62558,7 @@ declare const VTabs: {
62540
62558
  height: string | number;
62541
62559
  disabled: boolean;
62542
62560
  tag: string;
62543
- mobile: boolean | null;
62561
+ mobile: NonNullable<boolean | null> | null;
62544
62562
  modelValue: any;
62545
62563
  items: readonly TabItem[];
62546
62564
  mandatory: NonNullable<boolean | "force">;
@@ -62603,9 +62621,12 @@ declare const VTabs: {
62603
62621
  default: string;
62604
62622
  };
62605
62623
  disabled: BooleanConstructor;
62606
- mobile: {
62624
+ mobile: Omit<{
62607
62625
  type: PropType<boolean | null>;
62608
62626
  default: boolean;
62627
+ }, "default" | "type"> & {
62628
+ type: PropType<NonNullable<boolean | null> | null>;
62629
+ default: NonNullable<boolean | null> | null;
62609
62630
  };
62610
62631
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62611
62632
  class: PropType<any>;
@@ -62681,9 +62702,12 @@ declare const VTabs: {
62681
62702
  default: string;
62682
62703
  };
62683
62704
  disabled: BooleanConstructor;
62684
- mobile: {
62705
+ mobile: Omit<{
62685
62706
  type: PropType<boolean | null>;
62686
62707
  default: boolean;
62708
+ }, "default" | "type"> & {
62709
+ type: PropType<NonNullable<boolean | null> | null>;
62710
+ default: NonNullable<boolean | null> | null;
62687
62711
  };
62688
62712
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62689
62713
  class: PropType<any>;
@@ -73433,40 +73457,41 @@ declare module '@vue/runtime-core' {
73433
73457
  }
73434
73458
 
73435
73459
  export interface GlobalComponents {
73436
- VAlert: typeof import('vuetify/components')['VAlert']
73437
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73438
- VApp: typeof import('vuetify/components')['VApp']
73439
- VAvatar: typeof import('vuetify/components')['VAvatar']
73440
73460
  VAppBar: typeof import('vuetify/components')['VAppBar']
73441
73461
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73442
73462
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73443
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73463
+ VAlert: typeof import('vuetify/components')['VAlert']
73464
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73465
+ VApp: typeof import('vuetify/components')['VApp']
73444
73466
  VBadge: typeof import('vuetify/components')['VBadge']
73467
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73468
+ VAvatar: typeof import('vuetify/components')['VAvatar']
73469
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73470
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73471
+ VBtn: typeof import('vuetify/components')['VBtn']
73445
73472
  VBanner: typeof import('vuetify/components')['VBanner']
73446
73473
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
73447
73474
  VBannerText: typeof import('vuetify/components')['VBannerText']
73475
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73448
73476
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73449
73477
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73450
73478
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73451
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73452
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73453
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73454
- VBtn: typeof import('vuetify/components')['VBtn']
73455
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73456
- VCarousel: typeof import('vuetify/components')['VCarousel']
73457
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73458
73479
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
73459
73480
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73481
+ VCarousel: typeof import('vuetify/components')['VCarousel']
73482
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73483
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73484
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
73460
73485
  VCard: typeof import('vuetify/components')['VCard']
73461
73486
  VCardActions: typeof import('vuetify/components')['VCardActions']
73462
73487
  VCardItem: typeof import('vuetify/components')['VCardItem']
73463
73488
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73464
73489
  VCardText: typeof import('vuetify/components')['VCardText']
73465
73490
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
73466
- VCode: typeof import('vuetify/components')['VCode']
73467
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
73468
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
73469
73491
  VChip: typeof import('vuetify/components')['VChip']
73492
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
73493
+ VCounter: typeof import('vuetify/components')['VCounter']
73494
+ VCode: typeof import('vuetify/components')['VCode']
73470
73495
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
73471
73496
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73472
73497
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
@@ -73474,6 +73499,8 @@ declare module '@vue/runtime-core' {
73474
73499
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73475
73500
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73476
73501
  VCombobox: typeof import('vuetify/components')['VCombobox']
73502
+ VDialog: typeof import('vuetify/components')['VDialog']
73503
+ VDivider: typeof import('vuetify/components')['VDivider']
73477
73504
  VDataTable: typeof import('vuetify/components')['VDataTable']
73478
73505
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73479
73506
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73481,11 +73508,6 @@ declare module '@vue/runtime-core' {
73481
73508
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
73482
73509
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
73483
73510
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
73484
- VCounter: typeof import('vuetify/components')['VCounter']
73485
- VFab: typeof import('vuetify/components')['VFab']
73486
- VDialog: typeof import('vuetify/components')['VDialog']
73487
- VDivider: typeof import('vuetify/components')['VDivider']
73488
- VFileInput: typeof import('vuetify/components')['VFileInput']
73489
73511
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
73490
73512
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
73491
73513
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
@@ -73493,19 +73515,21 @@ declare module '@vue/runtime-core' {
73493
73515
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
73494
73516
  VField: typeof import('vuetify/components')['VField']
73495
73517
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73518
+ VFab: typeof import('vuetify/components')['VFab']
73519
+ VFileInput: typeof import('vuetify/components')['VFileInput']
73520
+ VImg: typeof import('vuetify/components')['VImg']
73496
73521
  VFooter: typeof import('vuetify/components')['VFooter']
73497
73522
  VIcon: typeof import('vuetify/components')['VIcon']
73498
73523
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73499
73524
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73500
73525
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73501
73526
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
73502
- VImg: typeof import('vuetify/components')['VImg']
73503
73527
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73504
73528
  VInput: typeof import('vuetify/components')['VInput']
73505
73529
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
73506
73530
  VItem: typeof import('vuetify/components')['VItem']
73507
- VLabel: typeof import('vuetify/components')['VLabel']
73508
73531
  VKbd: typeof import('vuetify/components')['VKbd']
73532
+ VLabel: typeof import('vuetify/components')['VLabel']
73509
73533
  VList: typeof import('vuetify/components')['VList']
73510
73534
  VListGroup: typeof import('vuetify/components')['VListGroup']
73511
73535
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -73515,26 +73539,26 @@ declare module '@vue/runtime-core' {
73515
73539
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73516
73540
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73517
73541
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73518
- VMenu: typeof import('vuetify/components')['VMenu']
73519
73542
  VMain: typeof import('vuetify/components')['VMain']
73520
73543
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73521
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
73522
- VMessages: typeof import('vuetify/components')['VMessages']
73544
+ VMenu: typeof import('vuetify/components')['VMenu']
73523
73545
  VPagination: typeof import('vuetify/components')['VPagination']
73546
+ VMessages: typeof import('vuetify/components')['VMessages']
73524
73547
  VOverlay: typeof import('vuetify/components')['VOverlay']
73548
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
73525
73549
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73526
73550
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73527
- VSelect: typeof import('vuetify/components')['VSelect']
73528
73551
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73529
73552
  VRating: typeof import('vuetify/components')['VRating']
73530
73553
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73531
- VSheet: typeof import('vuetify/components')['VSheet']
73554
+ VSelect: typeof import('vuetify/components')['VSelect']
73532
73555
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73533
- VSlider: typeof import('vuetify/components')['VSlider']
73534
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73535
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73556
+ VSheet: typeof import('vuetify/components')['VSheet']
73536
73557
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73537
73558
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
73559
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73560
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73561
+ VSlider: typeof import('vuetify/components')['VSlider']
73538
73562
  VStepper: typeof import('vuetify/components')['VStepper']
73539
73563
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
73540
73564
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
@@ -73542,30 +73566,30 @@ declare module '@vue/runtime-core' {
73542
73566
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73543
73567
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
73544
73568
  VSwitch: typeof import('vuetify/components')['VSwitch']
73545
- VTextarea: typeof import('vuetify/components')['VTextarea']
73546
- VTable: typeof import('vuetify/components')['VTable']
73547
- VTextField: typeof import('vuetify/components')['VTextField']
73548
73569
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
73549
73570
  VTab: typeof import('vuetify/components')['VTab']
73550
73571
  VTabs: typeof import('vuetify/components')['VTabs']
73551
73572
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73552
73573
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73553
- VTooltip: typeof import('vuetify/components')['VTooltip']
73554
73574
  VTimeline: typeof import('vuetify/components')['VTimeline']
73555
73575
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73576
+ VTable: typeof import('vuetify/components')['VTable']
73577
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73578
+ VTextField: typeof import('vuetify/components')['VTextField']
73556
73579
  VToolbar: typeof import('vuetify/components')['VToolbar']
73557
73580
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
73558
73581
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
73559
73582
  VWindow: typeof import('vuetify/components')['VWindow']
73560
73583
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
73584
+ VTooltip: typeof import('vuetify/components')['VTooltip']
73561
73585
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
73562
73586
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
73563
73587
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
73564
- VForm: typeof import('vuetify/components')['VForm']
73565
73588
  VContainer: typeof import('vuetify/components')['VContainer']
73566
73589
  VCol: typeof import('vuetify/components')['VCol']
73567
73590
  VRow: typeof import('vuetify/components')['VRow']
73568
73591
  VSpacer: typeof import('vuetify/components')['VSpacer']
73592
+ VForm: typeof import('vuetify/components')['VForm']
73569
73593
  VHover: typeof import('vuetify/components')['VHover']
73570
73594
  VLayout: typeof import('vuetify/components')['VLayout']
73571
73595
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
@@ -73573,11 +73597,11 @@ declare module '@vue/runtime-core' {
73573
73597
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
73574
73598
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
73575
73599
  VParallax: typeof import('vuetify/components')['VParallax']
73576
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73577
73600
  VRadio: typeof import('vuetify/components')['VRadio']
73601
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73578
73602
  VResponsive: typeof import('vuetify/components')['VResponsive']
73579
- VSparkline: typeof import('vuetify/components')['VSparkline']
73580
73603
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73604
+ VSparkline: typeof import('vuetify/components')['VSparkline']
73581
73605
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73582
73606
  VValidation: typeof import('vuetify/components')['VValidation']
73583
73607
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
@@ -73616,7 +73640,7 @@ declare module '@vue/runtime-core' {
73616
73640
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73617
73641
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73618
73642
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
73619
- VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73620
73643
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73644
+ VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73621
73645
  }
73622
73646
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.5-master.2024-05-13
2
+ * Vuetify v3.6.6-master.2024-05-15
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -7601,7 +7601,9 @@ const makeVSlideGroupProps = propsFactory({
7601
7601
  validator: v => typeof v === 'boolean' || ['always', 'desktop', 'mobile'].includes(v)
7602
7602
  },
7603
7603
  ...makeComponentProps(),
7604
- ...makeDisplayProps(),
7604
+ ...makeDisplayProps({
7605
+ mobile: null
7606
+ }),
7605
7607
  ...makeTagProps(),
7606
7608
  ...makeGroupProps({
7607
7609
  selectedClass: 'v-slide-group-item--active'
@@ -11332,7 +11334,7 @@ const VMenu = genericComponent()({
11332
11334
  },
11333
11335
  closeParents(e) {
11334
11336
  setTimeout(() => {
11335
- if (!openChildren.value && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
11337
+ if (!openChildren.value && !props.persistent && (e == null || e && !isClickInsideElement(e, overlay.value.contentEl))) {
11336
11338
  isActive.value = false;
11337
11339
  parent?.closeParents();
11338
11340
  }
@@ -11371,6 +11373,7 @@ const VMenu = genericComponent()({
11371
11373
  function onKeydown(e) {
11372
11374
  if (props.disabled) return;
11373
11375
  if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
11376
+ if (e.key === 'Enter' && e.target instanceof HTMLTextAreaElement) return;
11374
11377
  if (e.key === 'Enter') e.preventDefault();
11375
11378
  const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
11376
11379
  if (!nextElement) {
@@ -12552,7 +12555,7 @@ const VSelect = genericComponent()({
12552
12555
  let keyboardLookupLastTime;
12553
12556
  const displayItems = computed(() => {
12554
12557
  if (props.hideSelected) {
12555
- return items.value.filter(item => !model.value.some(s => s === item));
12558
+ return items.value.filter(item => !model.value.some(s => props.valueComparator(s, item)));
12556
12559
  }
12557
12560
  return items.value;
12558
12561
  });
@@ -13578,7 +13581,9 @@ const makeVBannerProps = propsFactory({
13578
13581
  ...makeComponentProps(),
13579
13582
  ...makeDensityProps(),
13580
13583
  ...makeDimensionProps(),
13581
- ...makeDisplayProps(),
13584
+ ...makeDisplayProps({
13585
+ mobile: null
13586
+ }),
13582
13587
  ...makeElevationProps(),
13583
13588
  ...makeLocationProps(),
13584
13589
  ...makePositionProps(),
@@ -26405,6 +26410,7 @@ const VSwitch = genericComponent()({
26405
26410
  blur
26406
26411
  } = useFocus(props);
26407
26412
  const control = ref();
26413
+ const isForcedColorsModeActive = IN_BROWSER && window.matchMedia('(forced-colors: active)').matches;
26408
26414
  const loaderColor = computed(() => {
26409
26415
  return typeof props.loading === 'string' && props.loading !== '' ? props.loading : props.color;
26410
26416
  });
@@ -26473,7 +26479,7 @@ const VSwitch = genericComponent()({
26473
26479
  backgroundColorStyles
26474
26480
  } = _ref3;
26475
26481
  return createVNode("div", {
26476
- "class": ['v-switch__track', ...backgroundColorClasses.value],
26482
+ "class": ['v-switch__track', !isForcedColorsModeActive ? backgroundColorClasses.value : undefined],
26477
26483
  "style": backgroundColorStyles.value,
26478
26484
  "onClick": onTrackClick
26479
26485
  }, [slots['track-true'] && createVNode("div", {
@@ -26494,7 +26500,7 @@ const VSwitch = genericComponent()({
26494
26500
  return createVNode(Fragment, null, [inputNode, createVNode("div", {
26495
26501
  "class": ['v-switch__thumb', {
26496
26502
  'v-switch__thumb--filled': icon || props.loading
26497
- }, props.inset ? undefined : backgroundColorClasses.value],
26503
+ }, props.inset || isForcedColorsModeActive ? undefined : backgroundColorClasses.value],
26498
26504
  "style": props.inset ? undefined : backgroundColorStyles.value
26499
26505
  }, [slots.thumb ? createVNode(VDefaultsProvider, {
26500
26506
  "defaults": {
@@ -27994,7 +28000,7 @@ function createVuetify$1() {
27994
28000
  goTo
27995
28001
  };
27996
28002
  }
27997
- const version$1 = "3.6.5-master.2024-05-13";
28003
+ const version$1 = "3.6.6-master.2024-05-15";
27998
28004
  createVuetify$1.version = version$1;
27999
28005
 
28000
28006
  // Vue's inject() can only be used in setup
@@ -28019,7 +28025,7 @@ const createVuetify = function () {
28019
28025
  ...options
28020
28026
  });
28021
28027
  };
28022
- const version = "3.6.5-master.2024-05-13";
28028
+ const version = "3.6.6-master.2024-05-15";
28023
28029
  createVuetify.version = version;
28024
28030
 
28025
28031
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };