vuetify 3.1.0 → 3.1.2

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 (108) hide show
  1. package/dist/json/attributes.json +46 -34
  2. package/dist/json/importMap.json +46 -46
  3. package/dist/json/tags.json +3 -0
  4. package/dist/json/web-types.json +144 -37
  5. package/dist/vuetify-labs.css +25749 -0
  6. package/dist/vuetify-labs.d.ts +25980 -38
  7. package/dist/vuetify-labs.esm.js +20181 -0
  8. package/dist/vuetify-labs.esm.js.map +1 -0
  9. package/dist/vuetify-labs.js +17271 -6823
  10. package/dist/vuetify-labs.min.css +12 -0
  11. package/dist/vuetify.css +8 -2
  12. package/dist/vuetify.d.ts +65 -17
  13. package/dist/vuetify.esm.js +203 -119
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +203 -119
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +410 -408
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAppBar/VAppBarTitle.mjs +4 -4
  21. package/lib/components/VAppBar/VAppBarTitle.mjs.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +17 -7
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.ts +1 -0
  25. package/lib/components/VBtn/VBtn.mjs +9 -3
  26. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  27. package/lib/components/VCard/VCard.mjs +5 -2
  28. package/lib/components/VCard/VCard.mjs.map +1 -1
  29. package/lib/components/VCard/index.d.ts +8 -2
  30. package/lib/components/VCheckbox/VCheckbox.mjs +2 -0
  31. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  32. package/lib/components/VChip/VChip.mjs +18 -4
  33. package/lib/components/VChip/VChip.mjs.map +1 -1
  34. package/lib/components/VChip/index.d.ts +15 -2
  35. package/lib/components/VChipGroup/VChipGroup.mjs +1 -0
  36. package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
  37. package/lib/components/VCombobox/VCombobox.mjs +18 -8
  38. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  39. package/lib/components/VCombobox/index.d.ts +1 -0
  40. package/lib/components/VField/VField.mjs +3 -1
  41. package/lib/components/VField/VField.mjs.map +1 -1
  42. package/lib/components/VField/index.d.ts +1 -0
  43. package/lib/components/VFileInput/VFileInput.css +1 -0
  44. package/lib/components/VFileInput/VFileInput.mjs +2 -0
  45. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  46. package/lib/components/VFileInput/VFileInput.sass +1 -0
  47. package/lib/components/VFileInput/index.d.ts +1 -0
  48. package/lib/components/VGrid/VGrid.css +5 -0
  49. package/lib/components/VGrid/VGrid.sass +5 -0
  50. package/lib/components/VInput/VInput.mjs +3 -0
  51. package/lib/components/VInput/VInput.mjs.map +1 -1
  52. package/lib/components/VInput/index.d.ts +1 -0
  53. package/lib/components/VList/VListItem.css +1 -1
  54. package/lib/components/VList/VListItem.mjs +5 -1
  55. package/lib/components/VList/VListItem.mjs.map +1 -1
  56. package/lib/components/VList/VListItem.sass +1 -1
  57. package/lib/components/VList/index.d.ts +20 -1
  58. package/lib/components/VMessages/VMessages.mjs +3 -1
  59. package/lib/components/VMessages/VMessages.mjs.map +1 -1
  60. package/lib/components/VProgressLinear/VProgressLinear.mjs +13 -1
  61. package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
  62. package/lib/components/VProgressLinear/index.d.ts +18 -0
  63. package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -0
  64. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  65. package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -1
  66. package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
  67. package/lib/components/VSelect/VSelect.mjs +19 -9
  68. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  69. package/lib/components/VSelect/index.d.ts +1 -0
  70. package/lib/components/VSlider/VSlider.mjs +4 -1
  71. package/lib/components/VSlider/VSlider.mjs.map +1 -1
  72. package/lib/components/VSlider/VSliderThumb.mjs +5 -1
  73. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  74. package/lib/components/VSwitch/VSwitch.mjs +2 -0
  75. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  76. package/lib/components/VTextField/index.d.ts +1 -0
  77. package/lib/components/VTextarea/index.d.ts +1 -0
  78. package/lib/components/index.d.ts +53 -5
  79. package/lib/components/transitions/dialog-transition.mjs +3 -9
  80. package/lib/components/transitions/dialog-transition.mjs.map +1 -1
  81. package/lib/composables/filter.mjs +3 -3
  82. package/lib/composables/filter.mjs.map +1 -1
  83. package/lib/composables/teleport.mjs +6 -7
  84. package/lib/composables/teleport.mjs.map +1 -1
  85. package/lib/entry-bundler.mjs +1 -1
  86. package/lib/framework.mjs +1 -1
  87. package/lib/index.d.ts +12 -12
  88. package/lib/labs/VDataTable/VDataTable.mjs +8 -5
  89. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  90. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +3 -3
  91. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -1
  92. package/lib/labs/VDataTable/VDataTableRows.mjs +36 -8
  93. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  94. package/lib/labs/VDataTable/VDataTableServer.mjs +4 -4
  95. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  96. package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -1
  97. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  98. package/lib/labs/VDataTable/composables/group.mjs +9 -4
  99. package/lib/labs/VDataTable/composables/group.mjs.map +1 -1
  100. package/lib/labs/VDataTable/composables/sort.mjs +3 -5
  101. package/lib/labs/VDataTable/composables/sort.mjs.map +1 -1
  102. package/lib/labs/allComponents.mjs +3 -0
  103. package/lib/labs/allComponents.mjs.map +1 -0
  104. package/lib/labs/entry-bundler.mjs +14 -0
  105. package/lib/labs/entry-bundler.mjs.map +1 -0
  106. package/lib/util/defineComponent.mjs +1 -1
  107. package/lib/util/defineComponent.mjs.map +1 -1
  108. package/package.json +2 -2
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.0
2
+ * Vuetify v3.1.2
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -20524,6 +20524,11 @@ html.overflow-y-hidden {
20524
20524
  .v-container--fluid {
20525
20525
  max-width: 100%;
20526
20526
  }
20527
+ .v-container.fill-height {
20528
+ align-items: center;
20529
+ display: flex;
20530
+ flex-wrap: wrap;
20531
+ }
20527
20532
 
20528
20533
  .v-row {
20529
20534
  display: flex;
@@ -22253,6 +22258,7 @@ textarea.v-field__input::placeholder {
22253
22258
  position: absolute;
22254
22259
  top: 0;
22255
22260
  width: 100%;
22261
+ z-index: 1;
22256
22262
  }
22257
22263
  .v-file-input .v-chip {
22258
22264
  margin-top: 2px;
@@ -22936,7 +22942,7 @@ textarea.v-field__input::placeholder {
22936
22942
  padding-inline-start: 8px;
22937
22943
  padding-inline-end: 8px;
22938
22944
  }
22939
- .v-list .v-list-item--nav:not(:last-child):not(:only-child) {
22945
+ .v-list .v-list-item--nav:not(:only-child) {
22940
22946
  margin-bottom: 4px;
22941
22947
  }
22942
22948
 
package/dist/vuetify.d.ts CHANGED
@@ -1170,6 +1170,7 @@ interface LoaderSlotProps {
1170
1170
 
1171
1171
  interface VInputSlot {
1172
1172
  id: ComputedRef<string>;
1173
+ messagesId: ComputedRef<string>;
1173
1174
  isDirty: ComputedRef<boolean>;
1174
1175
  isDisabled: ComputedRef<boolean>;
1175
1176
  isReadonly: ComputedRef<boolean>;
@@ -4632,7 +4633,10 @@ declare const VCard: vue.DefineComponent<{
4632
4633
  };
4633
4634
  prependAvatar: StringConstructor;
4634
4635
  prependIcon: vue.PropType<IconValue>;
4635
- ripple: BooleanConstructor;
4636
+ ripple: {
4637
+ type: BooleanConstructor;
4638
+ default: boolean;
4639
+ };
4636
4640
  subtitle: StringConstructor;
4637
4641
  text: StringConstructor;
4638
4642
  title: StringConstructor;
@@ -4693,7 +4697,10 @@ declare const VCard: vue.DefineComponent<{
4693
4697
  };
4694
4698
  prependAvatar: StringConstructor;
4695
4699
  prependIcon: vue.PropType<IconValue>;
4696
- ripple: BooleanConstructor;
4700
+ ripple: {
4701
+ type: BooleanConstructor;
4702
+ default: boolean;
4703
+ };
4697
4704
  subtitle: StringConstructor;
4698
4705
  text: StringConstructor;
4699
4706
  title: StringConstructor;
@@ -5217,7 +5224,10 @@ declare const VChip: vue.DefineComponent<{
5217
5224
  default: string;
5218
5225
  };
5219
5226
  label: BooleanConstructor;
5220
- link: BooleanConstructor;
5227
+ link: {
5228
+ type: BooleanConstructor;
5229
+ default: undefined;
5230
+ };
5221
5231
  pill: BooleanConstructor;
5222
5232
  prependAvatar: StringConstructor;
5223
5233
  prependIcon: vue.PropType<IconValue>;
@@ -5230,6 +5240,8 @@ declare const VChip: vue.DefineComponent<{
5230
5240
  type: BooleanConstructor;
5231
5241
  default: boolean;
5232
5242
  };
5243
+ onClick: vue.PropType<EventProp<(...args: any[]) => any>>;
5244
+ onClickOnce: vue.PropType<EventProp<(...args: any[]) => any>>;
5233
5245
  }, () => false | JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5234
5246
  'click:close': (e: Event) => true;
5235
5247
  'update:modelValue': (value: boolean) => true;
@@ -5299,7 +5311,10 @@ declare const VChip: vue.DefineComponent<{
5299
5311
  default: string;
5300
5312
  };
5301
5313
  label: BooleanConstructor;
5302
- link: BooleanConstructor;
5314
+ link: {
5315
+ type: BooleanConstructor;
5316
+ default: undefined;
5317
+ };
5303
5318
  pill: BooleanConstructor;
5304
5319
  prependAvatar: StringConstructor;
5305
5320
  prependIcon: vue.PropType<IconValue>;
@@ -5312,6 +5327,8 @@ declare const VChip: vue.DefineComponent<{
5312
5327
  type: BooleanConstructor;
5313
5328
  default: boolean;
5314
5329
  };
5330
+ onClick: vue.PropType<EventProp<(...args: any[]) => any>>;
5331
+ onClickOnce: vue.PropType<EventProp<(...args: any[]) => any>>;
5315
5332
  }>> & {
5316
5333
  onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
5317
5334
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -11910,6 +11927,7 @@ declare const VListItem: {
11910
11927
  rounded: string | number | boolean;
11911
11928
  density: Density;
11912
11929
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
11930
+ ripple: boolean;
11913
11931
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
11914
11932
  color: StringConstructor;
11915
11933
  variant: Omit<{
@@ -11966,6 +11984,10 @@ declare const VListItem: {
11966
11984
  nav: BooleanConstructor;
11967
11985
  prependAvatar: StringConstructor;
11968
11986
  prependIcon: PropType<IconValue>;
11987
+ ripple: {
11988
+ type: BooleanConstructor;
11989
+ default: boolean;
11990
+ };
11969
11991
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
11970
11992
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
11971
11993
  value: null;
@@ -11973,7 +11995,7 @@ declare const VListItem: {
11973
11995
  onClickOnce: PropType<EventProp<(...args: any[]) => any>>;
11974
11996
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:subtitle">>> & {
11975
11997
  onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
11976
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant">;
11998
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant" | "ripple">;
11977
11999
  $attrs: {
11978
12000
  [x: string]: unknown;
11979
12001
  };
@@ -12043,6 +12065,10 @@ declare const VListItem: {
12043
12065
  nav: BooleanConstructor;
12044
12066
  prependAvatar: StringConstructor;
12045
12067
  prependIcon: PropType<IconValue>;
12068
+ ripple: {
12069
+ type: BooleanConstructor;
12070
+ default: boolean;
12071
+ };
12046
12072
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12047
12073
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12048
12074
  value: null;
@@ -12063,6 +12089,7 @@ declare const VListItem: {
12063
12089
  rounded: string | number | boolean;
12064
12090
  density: Density;
12065
12091
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
12092
+ ripple: boolean;
12066
12093
  }> & {
12067
12094
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
12068
12095
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -12139,6 +12166,10 @@ declare const VListItem: {
12139
12166
  nav: BooleanConstructor;
12140
12167
  prependAvatar: StringConstructor;
12141
12168
  prependIcon: PropType<IconValue>;
12169
+ ripple: {
12170
+ type: BooleanConstructor;
12171
+ default: boolean;
12172
+ };
12142
12173
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12143
12174
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12144
12175
  value: null;
@@ -12206,6 +12237,10 @@ declare const VListItem: {
12206
12237
  nav: BooleanConstructor;
12207
12238
  prependAvatar: StringConstructor;
12208
12239
  prependIcon: PropType<IconValue>;
12240
+ ripple: {
12241
+ type: BooleanConstructor;
12242
+ default: boolean;
12243
+ };
12209
12244
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12210
12245
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12211
12246
  value: null;
@@ -12226,6 +12261,7 @@ declare const VListItem: {
12226
12261
  rounded: string | number | boolean;
12227
12262
  density: Density;
12228
12263
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
12264
+ ripple: boolean;
12229
12265
  }> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
12230
12266
  $props: SlotsToProps<{
12231
12267
  prepend: [ListItemSlot];
@@ -14854,6 +14890,11 @@ declare const VProgressLinear: vue.DefineComponent<{
14854
14890
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
14855
14891
  default: undefined;
14856
14892
  };
14893
+ location: {
14894
+ type: vue.PropType<Anchor | (Anchor & {})>;
14895
+ default: Anchor | (Anchor & {});
14896
+ };
14897
+ absolute: BooleanConstructor;
14857
14898
  active: {
14858
14899
  type: BooleanConstructor;
14859
14900
  default: boolean;
@@ -14895,6 +14936,11 @@ declare const VProgressLinear: vue.DefineComponent<{
14895
14936
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
14896
14937
  default: undefined;
14897
14938
  };
14939
+ location: {
14940
+ type: vue.PropType<Anchor | (Anchor & {})>;
14941
+ default: Anchor | (Anchor & {});
14942
+ };
14943
+ absolute: BooleanConstructor;
14898
14944
  active: {
14899
14945
  type: BooleanConstructor;
14900
14946
  default: boolean;
@@ -14929,6 +14975,8 @@ declare const VProgressLinear: vue.DefineComponent<{
14929
14975
  }, {
14930
14976
  reverse: boolean;
14931
14977
  max: string | number;
14978
+ absolute: boolean;
14979
+ location: Anchor | (Anchor & {});
14932
14980
  height: string | number;
14933
14981
  active: boolean;
14934
14982
  tag: string;
@@ -25971,12 +26019,12 @@ declare module '@vue/runtime-core' {
25971
26019
 
25972
26020
  export interface GlobalComponents {
25973
26021
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
25974
- VForm: typeof import('vuetify/components')['VForm']
25975
26022
  VContainer: typeof import('vuetify/components')['VContainer']
25976
26023
  VCol: typeof import('vuetify/components')['VCol']
25977
26024
  VRow: typeof import('vuetify/components')['VRow']
25978
26025
  VSpacer: typeof import('vuetify/components')['VSpacer']
25979
26026
  VHover: typeof import('vuetify/components')['VHover']
26027
+ VForm: typeof import('vuetify/components')['VForm']
25980
26028
  VLayout: typeof import('vuetify/components')['VLayout']
25981
26029
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
25982
26030
  VLazy: typeof import('vuetify/components')['VLazy']
@@ -25988,6 +26036,7 @@ declare module '@vue/runtime-core' {
25988
26036
  VResponsive: typeof import('vuetify/components')['VResponsive']
25989
26037
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
25990
26038
  VValidation: typeof import('vuetify/components')['VValidation']
26039
+ VApp: typeof import('vuetify/components')['VApp']
25991
26040
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
25992
26041
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
25993
26042
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -26004,7 +26053,6 @@ declare module '@vue/runtime-core' {
26004
26053
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
26005
26054
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
26006
26055
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
26007
- VApp: typeof import('vuetify/components')['VApp']
26008
26056
  VAppBar: typeof import('vuetify/components')['VAppBar']
26009
26057
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
26010
26058
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
@@ -26012,7 +26060,6 @@ declare module '@vue/runtime-core' {
26012
26060
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
26013
26061
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
26014
26062
  VAvatar: typeof import('vuetify/components')['VAvatar']
26015
- VBadge: typeof import('vuetify/components')['VBadge']
26016
26063
  VBanner: typeof import('vuetify/components')['VBanner']
26017
26064
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
26018
26065
  VBannerText: typeof import('vuetify/components')['VBannerText']
@@ -26022,23 +26069,23 @@ declare module '@vue/runtime-core' {
26022
26069
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
26023
26070
  VBtn: typeof import('vuetify/components')['VBtn']
26024
26071
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
26025
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
26026
26072
  VCard: typeof import('vuetify/components')['VCard']
26027
26073
  VCardActions: typeof import('vuetify/components')['VCardActions']
26028
26074
  VCardItem: typeof import('vuetify/components')['VCardItem']
26029
26075
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
26030
26076
  VCardText: typeof import('vuetify/components')['VCardText']
26031
26077
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
26078
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
26032
26079
  VCarousel: typeof import('vuetify/components')['VCarousel']
26033
26080
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
26081
+ VChip: typeof import('vuetify/components')['VChip']
26034
26082
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
26035
26083
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
26036
- VChip: typeof import('vuetify/components')['VChip']
26037
26084
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
26038
- VCode: typeof import('vuetify/components')['VCode']
26039
26085
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
26040
- VCombobox: typeof import('vuetify/components')['VCombobox']
26086
+ VCode: typeof import('vuetify/components')['VCode']
26041
26087
  VCounter: typeof import('vuetify/components')['VCounter']
26088
+ VCombobox: typeof import('vuetify/components')['VCombobox']
26042
26089
  VDialog: typeof import('vuetify/components')['VDialog']
26043
26090
  VDivider: typeof import('vuetify/components')['VDivider']
26044
26091
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
@@ -26058,8 +26105,8 @@ declare module '@vue/runtime-core' {
26058
26105
  VInput: typeof import('vuetify/components')['VInput']
26059
26106
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
26060
26107
  VItem: typeof import('vuetify/components')['VItem']
26061
- VKbd: typeof import('vuetify/components')['VKbd']
26062
26108
  VLabel: typeof import('vuetify/components')['VLabel']
26109
+ VKbd: typeof import('vuetify/components')['VKbd']
26063
26110
  VList: typeof import('vuetify/components')['VList']
26064
26111
  VListGroup: typeof import('vuetify/components')['VListGroup']
26065
26112
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -26070,17 +26117,17 @@ declare module '@vue/runtime-core' {
26070
26117
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
26071
26118
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
26072
26119
  VMain: typeof import('vuetify/components')['VMain']
26073
- VMenu: typeof import('vuetify/components')['VMenu']
26074
26120
  VMessages: typeof import('vuetify/components')['VMessages']
26121
+ VMenu: typeof import('vuetify/components')['VMenu']
26075
26122
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
26076
26123
  VOverlay: typeof import('vuetify/components')['VOverlay']
26077
- VPagination: typeof import('vuetify/components')['VPagination']
26078
26124
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
26125
+ VPagination: typeof import('vuetify/components')['VPagination']
26079
26126
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
26080
26127
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
26081
26128
  VRating: typeof import('vuetify/components')['VRating']
26082
- VSelect: typeof import('vuetify/components')['VSelect']
26083
26129
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
26130
+ VSelect: typeof import('vuetify/components')['VSelect']
26084
26131
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
26085
26132
  VSheet: typeof import('vuetify/components')['VSheet']
26086
26133
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
@@ -26096,11 +26143,12 @@ declare module '@vue/runtime-core' {
26096
26143
  VTextField: typeof import('vuetify/components')['VTextField']
26097
26144
  VTimeline: typeof import('vuetify/components')['VTimeline']
26098
26145
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
26146
+ VTooltip: typeof import('vuetify/components')['VTooltip']
26099
26147
  VToolbar: typeof import('vuetify/components')['VToolbar']
26100
26148
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
26101
26149
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
26102
- VTooltip: typeof import('vuetify/components')['VTooltip']
26103
26150
  VWindow: typeof import('vuetify/components')['VWindow']
26104
26151
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
26152
+ VBadge: typeof import('vuetify/components')['VBadge']
26105
26153
  }
26106
26154
  }