vuetify 3.7.8 → 3.7.10

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 (56) hide show
  1. package/dist/json/attributes.json +855 -851
  2. package/dist/json/importMap-labs.json +28 -28
  3. package/dist/json/importMap.json +182 -182
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +1675 -1665
  6. package/dist/vuetify-labs.css +4564 -4564
  7. package/dist/vuetify-labs.d.ts +41 -118
  8. package/dist/vuetify-labs.esm.js +75 -10
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +74 -9
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +5268 -5268
  13. package/dist/vuetify.d.ts +90 -182
  14. package/dist/vuetify.esm.js +64 -9
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +63 -8
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +463 -460
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs +10 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  23. package/lib/components/VCombobox/VCombobox.mjs +11 -1
  24. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  25. package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
  26. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  27. package/lib/components/VSelect/VSelect.mjs +5 -1
  28. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  29. package/lib/components/VTabs/VTabs.mjs +1 -1
  30. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  31. package/lib/components/VTabs/index.d.mts +52 -119
  32. package/lib/components/index.d.mts +26 -118
  33. package/lib/components/transitions/expand-transition.mjs +2 -0
  34. package/lib/components/transitions/expand-transition.mjs.map +1 -1
  35. package/lib/composables/display.mjs +3 -1
  36. package/lib/composables/display.mjs.map +1 -1
  37. package/lib/composables/mousedown.mjs +30 -0
  38. package/lib/composables/mousedown.mjs.map +1 -0
  39. package/lib/entry-bundler.mjs +1 -1
  40. package/lib/entry-bundler.mjs.map +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/framework.mjs.map +1 -1
  43. package/lib/index.d.mts +64 -64
  44. package/lib/labs/VTreeview/VTreeview.mjs +1 -1
  45. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  46. package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
  47. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  48. package/lib/labs/VTreeview/index.d.mts +15 -0
  49. package/lib/labs/components.d.mts +15 -0
  50. package/lib/locale/da.mjs +5 -5
  51. package/lib/locale/da.mjs.map +1 -1
  52. package/lib/locale/de.mjs +3 -3
  53. package/lib/locale/de.mjs.map +1 -1
  54. package/lib/locale/fi.mjs +5 -5
  55. package/lib/locale/fi.mjs.map +1 -1
  56. package/package.json +2 -2
package/dist/vuetify.d.ts CHANGED
@@ -56295,8 +56295,17 @@ declare const VTab: {
56295
56295
  type VTab = InstanceType<typeof VTab>;
56296
56296
 
56297
56297
  type TabItem = string | number | Record<string, any>;
56298
- type VTabsSlot = {
56299
- item: TabItem;
56298
+ type VTabsSlot<T> = {
56299
+ item: T;
56300
+ };
56301
+ type VTabsSlots<T> = {
56302
+ default: never;
56303
+ tab: VTabsSlot<T>;
56304
+ item: VTabsSlot<T>;
56305
+ window: never;
56306
+ } & {
56307
+ [key: `tab.${string}`]: VTabsSlot<T>;
56308
+ [key: `item.${string}`]: VTabsSlot<T>;
56300
56309
  };
56301
56310
  declare const VTabs: {
56302
56311
  new (...args: any[]): vue.CreateComponentPublicInstance<{
@@ -56308,7 +56317,6 @@ declare const VTabs: {
56308
56317
  multiple: boolean;
56309
56318
  tag: string;
56310
56319
  mandatory: boolean | "force";
56311
- items: readonly TabItem[];
56312
56320
  density: Density;
56313
56321
  selectedClass: string;
56314
56322
  stacked: boolean;
@@ -56329,35 +56337,11 @@ declare const VTabs: {
56329
56337
  bgColor?: string | undefined;
56330
56338
  showArrows?: string | boolean | undefined;
56331
56339
  sliderColor?: string | undefined;
56332
- } & {
56333
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
56334
- [x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56335
- [x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56336
- default?: (() => vue.VNodeChild) | undefined;
56337
- tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56338
- item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56339
- window?: (() => vue.VNodeChild) | undefined;
56340
- };
56341
- 'v-slots'?: {
56342
- [x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56343
- [x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56344
- default?: false | (() => vue.VNodeChild) | undefined;
56345
- tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56346
- item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56347
- window?: false | (() => vue.VNodeChild) | undefined;
56348
- } | undefined;
56349
- } & {
56350
- [x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56351
- [x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56352
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
56353
- "v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56354
- "v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56355
- "v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
56356
56340
  } & {
56357
56341
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
56358
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
56342
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
56359
56343
  'update:modelValue': (v: unknown) => true;
56360
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
56344
+ }, "$children" | "v-slots" | "v-slot:default" | "items" | "v-slot:item" | `v-slot:item.${string}` | "v-slot:window" | "v-slot:tab" | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
56361
56345
  symbol: any;
56362
56346
  direction: "horizontal" | "vertical";
56363
56347
  style: vue.StyleValue;
@@ -56366,7 +56350,6 @@ declare const VTabs: {
56366
56350
  multiple: boolean;
56367
56351
  tag: string;
56368
56352
  mandatory: boolean | "force";
56369
- items: readonly TabItem[];
56370
56353
  density: Density;
56371
56354
  selectedClass: string;
56372
56355
  stacked: boolean;
@@ -56387,30 +56370,6 @@ declare const VTabs: {
56387
56370
  bgColor?: string | undefined;
56388
56371
  showArrows?: string | boolean | undefined;
56389
56372
  sliderColor?: string | undefined;
56390
- } & {
56391
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
56392
- [x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56393
- [x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56394
- default?: (() => vue.VNodeChild) | undefined;
56395
- tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56396
- item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56397
- window?: (() => vue.VNodeChild) | undefined;
56398
- };
56399
- 'v-slots'?: {
56400
- [x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56401
- [x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56402
- default?: false | (() => vue.VNodeChild) | undefined;
56403
- tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56404
- item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56405
- window?: false | (() => vue.VNodeChild) | undefined;
56406
- } | undefined;
56407
- } & {
56408
- [x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56409
- [x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56410
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
56411
- "v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56412
- "v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56413
- "v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
56414
56373
  } & {
56415
56374
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
56416
56375
  }, {
@@ -56424,7 +56383,6 @@ declare const VTabs: {
56424
56383
  tag: string;
56425
56384
  mandatory: boolean | "force";
56426
56385
  modelValue: any;
56427
- items: readonly TabItem[];
56428
56386
  density: Density;
56429
56387
  selectedClass: string;
56430
56388
  stacked: boolean;
@@ -56436,11 +56394,11 @@ declare const VTabs: {
56436
56394
  alignTabs: "center" | "end" | "start" | "title";
56437
56395
  fixedTabs: boolean;
56438
56396
  }, true, {}, vue.SlotsType<Partial<{
56439
- [x: `tab.${string}`]: (arg: VTabsSlot) => vue.VNode[];
56440
- [x: `item.${string}`]: (arg: VTabsSlot) => vue.VNode[];
56397
+ [x: `tab.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
56398
+ [x: `item.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
56441
56399
  default: () => vue.VNode[];
56442
- tab: (arg: VTabsSlot) => vue.VNode[];
56443
- item: (arg: VTabsSlot) => vue.VNode[];
56400
+ tab: (arg: VTabsSlot<unknown>) => vue.VNode[];
56401
+ item: (arg: VTabsSlot<unknown>) => vue.VNode[];
56444
56402
  window: () => vue.VNode[];
56445
56403
  }>>, {
56446
56404
  P: {};
@@ -56458,7 +56416,6 @@ declare const VTabs: {
56458
56416
  multiple: boolean;
56459
56417
  tag: string;
56460
56418
  mandatory: boolean | "force";
56461
- items: readonly TabItem[];
56462
56419
  density: Density;
56463
56420
  selectedClass: string;
56464
56421
  stacked: boolean;
@@ -56479,30 +56436,6 @@ declare const VTabs: {
56479
56436
  bgColor?: string | undefined;
56480
56437
  showArrows?: string | boolean | undefined;
56481
56438
  sliderColor?: string | undefined;
56482
- } & {
56483
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
56484
- [x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56485
- [x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56486
- default?: (() => vue.VNodeChild) | undefined;
56487
- tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56488
- item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56489
- window?: (() => vue.VNodeChild) | undefined;
56490
- };
56491
- 'v-slots'?: {
56492
- [x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56493
- [x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56494
- default?: false | (() => vue.VNodeChild) | undefined;
56495
- tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56496
- item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56497
- window?: false | (() => vue.VNodeChild) | undefined;
56498
- } | undefined;
56499
- } & {
56500
- [x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56501
- [x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56502
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
56503
- "v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56504
- "v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56505
- "v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
56506
56439
  } & {
56507
56440
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
56508
56441
  }, {}, {}, {}, {}, {
@@ -56516,7 +56449,6 @@ declare const VTabs: {
56516
56449
  tag: string;
56517
56450
  mandatory: boolean | "force";
56518
56451
  modelValue: any;
56519
- items: readonly TabItem[];
56520
56452
  density: Density;
56521
56453
  selectedClass: string;
56522
56454
  stacked: boolean;
@@ -56540,7 +56472,6 @@ declare const VTabs: {
56540
56472
  multiple: boolean;
56541
56473
  tag: string;
56542
56474
  mandatory: boolean | "force";
56543
- items: readonly TabItem[];
56544
56475
  density: Density;
56545
56476
  selectedClass: string;
56546
56477
  stacked: boolean;
@@ -56561,35 +56492,11 @@ declare const VTabs: {
56561
56492
  bgColor?: string | undefined;
56562
56493
  showArrows?: string | boolean | undefined;
56563
56494
  sliderColor?: string | undefined;
56564
- } & {
56565
- $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
56566
- [x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56567
- [x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56568
- default?: (() => vue.VNodeChild) | undefined;
56569
- tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56570
- item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56571
- window?: (() => vue.VNodeChild) | undefined;
56572
- };
56573
- 'v-slots'?: {
56574
- [x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56575
- [x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56576
- default?: false | (() => vue.VNodeChild) | undefined;
56577
- tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56578
- item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56579
- window?: false | (() => vue.VNodeChild) | undefined;
56580
- } | undefined;
56581
- } & {
56582
- [x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56583
- [x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56584
- "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
56585
- "v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56586
- "v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
56587
- "v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
56588
56495
  } & {
56589
56496
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
56590
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
56497
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
56591
56498
  'update:modelValue': (v: unknown) => true;
56592
- }, string, {
56499
+ }, "$children" | "v-slots" | "v-slot:default" | "items" | "v-slot:item" | `v-slot:item.${string}` | "v-slot:window" | "v-slot:tab" | `v-slot:tab.${string}`>, string, {
56593
56500
  symbol: any;
56594
56501
  height: string | number;
56595
56502
  direction: "horizontal" | "vertical";
@@ -56600,7 +56507,6 @@ declare const VTabs: {
56600
56507
  tag: string;
56601
56508
  mandatory: boolean | "force";
56602
56509
  modelValue: any;
56603
- items: readonly TabItem[];
56604
56510
  density: Density;
56605
56511
  selectedClass: string;
56606
56512
  stacked: boolean;
@@ -56612,13 +56518,15 @@ declare const VTabs: {
56612
56518
  alignTabs: "center" | "end" | "start" | "title";
56613
56519
  fixedTabs: boolean;
56614
56520
  }, {}, string, vue.SlotsType<Partial<{
56615
- [x: `tab.${string}`]: (arg: VTabsSlot) => vue.VNode[];
56616
- [x: `item.${string}`]: (arg: VTabsSlot) => vue.VNode[];
56521
+ [x: `tab.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
56522
+ [x: `item.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
56617
56523
  default: () => vue.VNode[];
56618
- tab: (arg: VTabsSlot) => vue.VNode[];
56619
- item: (arg: VTabsSlot) => vue.VNode[];
56524
+ tab: (arg: VTabsSlot<unknown>) => vue.VNode[];
56525
+ item: (arg: VTabsSlot<unknown>) => vue.VNode[];
56620
56526
  window: () => vue.VNode[];
56621
- }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
56527
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
56528
+ items?: T;
56529
+ }, slots: VTabsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
56622
56530
  tag: {
56623
56531
  type: StringConstructor;
56624
56532
  default: string;
@@ -67089,76 +66997,76 @@ declare module 'vue' {
67089
66997
  }
67090
66998
  export interface GlobalComponents {
67091
66999
  VApp: typeof import('vuetify/components')['VApp']
67092
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67093
- VAvatar: typeof import('vuetify/components')['VAvatar']
67094
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67095
- VBadge: typeof import('vuetify/components')['VBadge']
67096
- VAppBar: typeof import('vuetify/components')['VAppBar']
67097
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67098
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67099
67000
  VAlert: typeof import('vuetify/components')['VAlert']
67100
67001
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67002
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67101
67003
  VBanner: typeof import('vuetify/components')['VBanner']
67102
67004
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67103
67005
  VBannerText: typeof import('vuetify/components')['VBannerText']
67104
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67105
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67106
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67107
- VBtn: typeof import('vuetify/components')['VBtn']
67108
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67006
+ VAvatar: typeof import('vuetify/components')['VAvatar']
67007
+ VAppBar: typeof import('vuetify/components')['VAppBar']
67008
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67009
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67109
67010
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67110
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
67111
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67011
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67012
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67013
+ VBadge: typeof import('vuetify/components')['VBadge']
67112
67014
  VCard: typeof import('vuetify/components')['VCard']
67113
67015
  VCardActions: typeof import('vuetify/components')['VCardActions']
67114
67016
  VCardItem: typeof import('vuetify/components')['VCardItem']
67115
67017
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67116
67018
  VCardText: typeof import('vuetify/components')['VCardText']
67117
67019
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67118
- VCarousel: typeof import('vuetify/components')['VCarousel']
67119
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67020
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67021
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67022
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67023
+ VBtn: typeof import('vuetify/components')['VBtn']
67024
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
67025
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67026
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67120
67027
  VChip: typeof import('vuetify/components')['VChip']
67121
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
67122
67028
  VCode: typeof import('vuetify/components')['VCode']
67123
- VCombobox: typeof import('vuetify/components')['VCombobox']
67124
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67125
- VCounter: typeof import('vuetify/components')['VCounter']
67126
67029
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
67030
+ VCarousel: typeof import('vuetify/components')['VCarousel']
67031
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67032
+ VCounter: typeof import('vuetify/components')['VCounter']
67033
+ VCombobox: typeof import('vuetify/components')['VCombobox']
67034
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
67035
+ VDataTable: typeof import('vuetify/components')['VDataTable']
67036
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67037
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67038
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67039
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67040
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67041
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67042
+ VDialog: typeof import('vuetify/components')['VDialog']
67043
+ VDivider: typeof import('vuetify/components')['VDivider']
67127
67044
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67128
67045
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67129
67046
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67130
67047
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67131
67048
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67132
67049
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67133
- VDialog: typeof import('vuetify/components')['VDialog']
67134
- VDivider: typeof import('vuetify/components')['VDivider']
67050
+ VFileInput: typeof import('vuetify/components')['VFileInput']
67051
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
67135
67052
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67136
67053
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67137
67054
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67138
67055
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67139
- VDataTable: typeof import('vuetify/components')['VDataTable']
67140
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
67141
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67142
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67143
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67144
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67145
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67146
67056
  VFab: typeof import('vuetify/components')['VFab']
67147
- VFooter: typeof import('vuetify/components')['VFooter']
67148
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
67149
- VImg: typeof import('vuetify/components')['VImg']
67150
- VFileInput: typeof import('vuetify/components')['VFileInput']
67151
67057
  VField: typeof import('vuetify/components')['VField']
67152
67058
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67059
+ VFooter: typeof import('vuetify/components')['VFooter']
67153
67060
  VIcon: typeof import('vuetify/components')['VIcon']
67154
67061
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67155
67062
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67156
67063
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67157
67064
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67065
+ VImg: typeof import('vuetify/components')['VImg']
67066
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
67067
+ VItem: typeof import('vuetify/components')['VItem']
67158
67068
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67159
- VKbd: typeof import('vuetify/components')['VKbd']
67160
67069
  VInput: typeof import('vuetify/components')['VInput']
67161
- VLabel: typeof import('vuetify/components')['VLabel']
67162
67070
  VList: typeof import('vuetify/components')['VList']
67163
67071
  VListGroup: typeof import('vuetify/components')['VListGroup']
67164
67072
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67168,29 +67076,35 @@ declare module 'vue' {
67168
67076
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67169
67077
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67170
67078
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67171
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
67172
- VItem: typeof import('vuetify/components')['VItem']
67079
+ VKbd: typeof import('vuetify/components')['VKbd']
67080
+ VLabel: typeof import('vuetify/components')['VLabel']
67173
67081
  VMain: typeof import('vuetify/components')['VMain']
67174
67082
  VMenu: typeof import('vuetify/components')['VMenu']
67175
67083
  VMessages: typeof import('vuetify/components')['VMessages']
67176
67084
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67177
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
67178
67085
  VOverlay: typeof import('vuetify/components')['VOverlay']
67179
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67086
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
67180
67087
  VPagination: typeof import('vuetify/components')['VPagination']
67181
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67182
67088
  VRating: typeof import('vuetify/components')['VRating']
67089
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67183
67090
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67184
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67091
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67185
67092
  VSelect: typeof import('vuetify/components')['VSelect']
67186
- VSheet: typeof import('vuetify/components')['VSheet']
67187
67093
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67188
- VSlider: typeof import('vuetify/components')['VSlider']
67189
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
67094
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67190
67095
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67191
67096
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67192
67097
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67098
+ VSheet: typeof import('vuetify/components')['VSheet']
67099
+ VSlider: typeof import('vuetify/components')['VSlider']
67100
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
67193
67101
  VSwitch: typeof import('vuetify/components')['VSwitch']
67102
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
67103
+ VTable: typeof import('vuetify/components')['VTable']
67104
+ VTab: typeof import('vuetify/components')['VTab']
67105
+ VTabs: typeof import('vuetify/components')['VTabs']
67106
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
67107
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
67194
67108
  VStepper: typeof import('vuetify/components')['VStepper']
67195
67109
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
67196
67110
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
@@ -67199,42 +67113,37 @@ declare module 'vue' {
67199
67113
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67200
67114
  VTimeline: typeof import('vuetify/components')['VTimeline']
67201
67115
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67202
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
67203
67116
  VTextarea: typeof import('vuetify/components')['VTextarea']
67204
- VTab: typeof import('vuetify/components')['VTab']
67205
- VTabs: typeof import('vuetify/components')['VTabs']
67206
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
67207
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
67208
- VTextField: typeof import('vuetify/components')['VTextField']
67209
67117
  VTooltip: typeof import('vuetify/components')['VTooltip']
67210
67118
  VToolbar: typeof import('vuetify/components')['VToolbar']
67211
67119
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67212
67120
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
67213
- VTable: typeof import('vuetify/components')['VTable']
67121
+ VTextField: typeof import('vuetify/components')['VTextField']
67214
67122
  VWindow: typeof import('vuetify/components')['VWindow']
67215
67123
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
67216
67124
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
67217
- VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67218
67125
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
67126
+ VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
67127
+ VForm: typeof import('vuetify/components')['VForm']
67219
67128
  VContainer: typeof import('vuetify/components')['VContainer']
67220
67129
  VCol: typeof import('vuetify/components')['VCol']
67221
67130
  VRow: typeof import('vuetify/components')['VRow']
67222
67131
  VSpacer: typeof import('vuetify/components')['VSpacer']
67223
- VForm: typeof import('vuetify/components')['VForm']
67224
67132
  VHover: typeof import('vuetify/components')['VHover']
67225
- VLayout: typeof import('vuetify/components')['VLayout']
67226
- VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67227
67133
  VLazy: typeof import('vuetify/components')['VLazy']
67228
67134
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67135
+ VLayout: typeof import('vuetify/components')['VLayout']
67136
+ VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67229
67137
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
67230
67138
  VParallax: typeof import('vuetify/components')['VParallax']
67231
67139
  VRadio: typeof import('vuetify/components')['VRadio']
67232
67140
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67233
67141
  VResponsive: typeof import('vuetify/components')['VResponsive']
67234
67142
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
67235
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67236
67143
  VSparkline: typeof import('vuetify/components')['VSparkline']
67144
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67237
67145
  VValidation: typeof import('vuetify/components')['VValidation']
67146
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67238
67147
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
67239
67148
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
67240
67149
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -67251,14 +67160,18 @@ declare module 'vue' {
67251
67160
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
67252
67161
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
67253
67162
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
67254
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67255
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67256
67163
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
67257
67164
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
67258
67165
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
67259
67166
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
67260
67167
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
67261
67168
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
67169
+ VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
67170
+ VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
67171
+ VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
67172
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
67173
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
67174
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
67262
67175
  VPicker: typeof import('vuetify/labs/components')['VPicker']
67263
67176
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67264
67177
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
@@ -67267,13 +67180,8 @@ declare module 'vue' {
67267
67180
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
67268
67181
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
67269
67182
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
67270
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
67271
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
67272
- VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
67273
- VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
67274
- VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
67275
67183
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
67276
- VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67277
67184
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
67185
+ VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
67278
67186
  }
67279
67187
  }