vuetify 3.0.5 → 3.0.7

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 (58) hide show
  1. package/dist/_component-variables.sass +1 -0
  2. package/dist/json/attributes.json +17 -13
  3. package/dist/json/importMap.json +88 -88
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +28 -19
  6. package/dist/vuetify.css +75 -60
  7. package/dist/vuetify.d.ts +27 -25
  8. package/dist/vuetify.esm.js +88 -46
  9. package/dist/vuetify.esm.js.map +1 -1
  10. package/dist/vuetify.js +88 -46
  11. package/dist/vuetify.js.map +1 -1
  12. package/dist/vuetify.min.css +2 -2
  13. package/dist/vuetify.min.js +227 -222
  14. package/dist/vuetify.min.js.map +1 -1
  15. package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
  16. package/lib/components/VAvatar/VAvatar.mjs +7 -2
  17. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  18. package/lib/components/VAvatar/index.d.ts +2 -0
  19. package/lib/components/VColorPicker/VColorPicker.mjs +0 -1
  20. package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
  21. package/lib/components/VFileInput/VFileInput.mjs +4 -3
  22. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  23. package/lib/components/VImg/VImg.mjs +10 -2
  24. package/lib/components/VImg/VImg.mjs.map +1 -1
  25. package/lib/components/VList/VList.mjs +4 -2
  26. package/lib/components/VList/VList.mjs.map +1 -1
  27. package/lib/components/VList/VListGroup.mjs +2 -1
  28. package/lib/components/VList/VListGroup.mjs.map +1 -1
  29. package/lib/components/VList/VListItem.css +1 -0
  30. package/lib/components/VList/VListItem.sass +1 -0
  31. package/lib/components/VPagination/VPagination.mjs +12 -5
  32. package/lib/components/VPagination/VPagination.mjs.map +1 -1
  33. package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
  34. package/lib/components/VRadioGroup/VRadioGroup.mjs +3 -2
  35. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  36. package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
  37. package/lib/components/VRadioGroup/_variables.scss +2 -2
  38. package/lib/components/VSelectionControl/VSelectionControl.mjs +11 -2
  39. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  40. package/lib/components/VSelectionControl/index.d.ts +2 -2
  41. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +12 -3
  42. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
  43. package/lib/components/VSlider/VSliderThumb.css +11 -0
  44. package/lib/components/VSlider/VSliderThumb.mjs +4 -6
  45. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  46. package/lib/components/VSlider/VSliderThumb.sass +10 -0
  47. package/lib/components/VSlider/VSliderTrack.css +4 -1
  48. package/lib/components/VSlider/VSliderTrack.sass +3 -1
  49. package/lib/components/VSlider/slider.mjs +2 -2
  50. package/lib/components/VSlider/slider.mjs.map +1 -1
  51. package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
  52. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  53. package/lib/components/index.d.ts +3 -1
  54. package/lib/entry-bundler.mjs +1 -1
  55. package/lib/framework.mjs +15 -13
  56. package/lib/framework.mjs.map +1 -1
  57. package/lib/index.d.ts +24 -24
  58. package/package.json +2 -2
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.0.5
2
+ * Vuetify v3.0.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -22620,6 +22620,7 @@ textarea.v-field__input::placeholder {
22620
22620
  grid-template-areas: "prepend content append";
22621
22621
  grid-template-columns: max-content auto max-content;
22622
22622
  outline: none;
22623
+ max-width: 100%;
22623
22624
  padding: 4px 16px;
22624
22625
  position: relative;
22625
22626
  text-decoration: none;
@@ -23202,12 +23203,6 @@ html.v-overlay-scroll-blocked {
23202
23203
 
23203
23204
  .v-overlay--scroll-blocked {
23204
23205
  padding-inline-end: var(--v-scrollbar-offset);
23205
- }.v-parallax {
23206
- position: relative;
23207
- overflow: hidden;
23208
- }
23209
- .v-parallax--active > .v-img__img {
23210
- will-change: transform;
23211
23206
  }.v-pagination__list {
23212
23207
  display: inline-flex;
23213
23208
  list-style-type: none;
@@ -23216,6 +23211,12 @@ html.v-overlay-scroll-blocked {
23216
23211
  }
23217
23212
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23218
23213
  margin: 0.3rem;
23214
+ }.v-parallax {
23215
+ position: relative;
23216
+ overflow: hidden;
23217
+ }
23218
+ .v-parallax--active > .v-img__img {
23219
+ will-change: transform;
23219
23220
  }.v-progress-circular {
23220
23221
  align-items: center;
23221
23222
  display: inline-flex;
@@ -23530,11 +23531,11 @@ html.v-overlay-scroll-blocked {
23530
23531
  }.v-radio-group > .v-input__control {
23531
23532
  flex-direction: column;
23532
23533
  }
23533
- .v-radio-group > .v-label {
23534
- margin-inline-start: 12px;
23534
+ .v-radio-group > .v-input__control > .v-label {
23535
+ margin-inline-start: 8px;
23535
23536
  }
23536
- .v-radio-group > .v-label + .v-selection-control-group {
23537
- margin-top: 16px;
23537
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23538
+ margin-top: 8px;
23538
23539
  }.v-slider .v-slider__container input {
23539
23540
  cursor: default;
23540
23541
  padding: 0;
@@ -24134,34 +24135,6 @@ html.v-overlay-scroll-blocked {
24134
24135
  }
24135
24136
  .v-system-bar--window {
24136
24137
  height: 32px;
24137
- }.v-tab.v-tab {
24138
- --v-btn-height: var(--v-tabs-height);
24139
- min-width: 90px;
24140
- }
24141
- .v-slide-group--horizontal .v-tab {
24142
- max-width: 360px;
24143
- }
24144
- .v-slide-group--vertical .v-tab {
24145
- justify-content: start;
24146
- }
24147
-
24148
- .v-tab__slider {
24149
- position: absolute;
24150
- bottom: 0;
24151
- left: 0;
24152
- height: 2px;
24153
- width: 100%;
24154
- background: currentColor;
24155
- pointer-events: none;
24156
- opacity: 0;
24157
- }
24158
- .v-tab--selected .v-tab__slider {
24159
- opacity: 1;
24160
- }
24161
- .v-slide-group--vertical .v-tab__slider {
24162
- top: 0;
24163
- height: 100%;
24164
- width: 2px;
24165
24138
  }.v-tabs {
24166
24139
  display: flex;
24167
24140
  height: var(--v-tabs-height);
@@ -24227,6 +24200,34 @@ html.v-overlay-scroll-blocked {
24227
24200
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24228
24201
  margin-inline-end: 52px;
24229
24202
  }
24203
+ }.v-tab.v-tab {
24204
+ --v-btn-height: var(--v-tabs-height);
24205
+ min-width: 90px;
24206
+ }
24207
+ .v-slide-group--horizontal .v-tab {
24208
+ max-width: 360px;
24209
+ }
24210
+ .v-slide-group--vertical .v-tab {
24211
+ justify-content: start;
24212
+ }
24213
+
24214
+ .v-tab__slider {
24215
+ position: absolute;
24216
+ bottom: 0;
24217
+ left: 0;
24218
+ height: 2px;
24219
+ width: 100%;
24220
+ background: currentColor;
24221
+ pointer-events: none;
24222
+ opacity: 0;
24223
+ }
24224
+ .v-tab--selected .v-tab__slider {
24225
+ opacity: 1;
24226
+ }
24227
+ .v-slide-group--vertical .v-tab__slider {
24228
+ top: 0;
24229
+ height: 100%;
24230
+ width: 2px;
24230
24231
  }.v-table {
24231
24232
  background: rgb(var(--v-theme-surface));
24232
24233
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -25149,6 +25150,26 @@ html.v-overlay-scroll-blocked {
25149
25150
  }
25150
25151
  .v-window-y-reverse-transition-leave-to {
25151
25152
  transform: translateY(100%);
25153
+ }.v-color-picker-canvas {
25154
+ position: relative;
25155
+ overflow: hidden;
25156
+ contain: strict;
25157
+ }
25158
+ .v-color-picker-canvas__dot {
25159
+ position: absolute;
25160
+ top: 0;
25161
+ left: 0;
25162
+ width: 15px;
25163
+ height: 15px;
25164
+ background: transparent;
25165
+ border-radius: 50%;
25166
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25167
+ }
25168
+ .v-color-picker-canvas__dot--disabled {
25169
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25170
+ }
25171
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25172
+ will-change: transform;
25152
25173
  }.v-color-picker-edit {
25153
25174
  display: flex;
25154
25175
  }
@@ -25179,26 +25200,6 @@ html.v-overlay-scroll-blocked {
25179
25200
  }
25180
25201
  .v-color-picker-edit__input span {
25181
25202
  font-size: 0.75rem;
25182
- }.v-color-picker-canvas {
25183
- position: relative;
25184
- overflow: hidden;
25185
- contain: strict;
25186
- }
25187
- .v-color-picker-canvas__dot {
25188
- position: absolute;
25189
- top: 0;
25190
- left: 0;
25191
- width: 15px;
25192
- height: 15px;
25193
- background: transparent;
25194
- border-radius: 50%;
25195
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25196
- }
25197
- .v-color-picker-canvas__dot--disabled {
25198
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25199
- }
25200
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25201
- will-change: transform;
25202
25203
  }.v-color-picker-preview__alpha .v-slider-track__background {
25203
25204
  background-color: transparent !important;
25204
25205
  }
@@ -25335,6 +25336,8 @@ html.v-overlay-scroll-blocked {
25335
25336
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
25336
25337
  content: "";
25337
25338
  color: inherit;
25339
+ top: 0;
25340
+ left: 0;
25338
25341
  width: 100%;
25339
25342
  height: 100%;
25340
25343
  border-radius: 50%;
@@ -25392,6 +25395,12 @@ html.v-overlay-scroll-blocked {
25392
25395
  top: 50%;
25393
25396
  transform: translateY(-50%);
25394
25397
  }
25398
+ .v-slider.v-input--horizontal .v-slider-thumb.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb {
25399
+ left: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25400
+ }
25401
+ .v-slider.v-input--horizontal .v-slider-thumb.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb {
25402
+ right: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25403
+ }
25395
25404
  .v-slider.v-input--horizontal .v-slider-thumb__label-container {
25396
25405
  left: calc(var(--v-slider-thumb-size) / 2);
25397
25406
  top: 0;
@@ -25412,6 +25421,9 @@ html.v-overlay-scroll-blocked {
25412
25421
  bottom: -6px;
25413
25422
  }
25414
25423
 
25424
+ .v-slider.v-input--vertical .v-slider-thumb {
25425
+ top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25426
+ }
25415
25427
  .v-slider.v-input--vertical .v-slider-thumb__label-container {
25416
25428
  top: calc(var(--v-slider-thumb-size) / 2);
25417
25429
  right: 0;
@@ -25583,9 +25595,12 @@ html.v-overlay-scroll-blocked {
25583
25595
  .v-slider.v-input--vertical .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
25584
25596
  transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
25585
25597
  }
25586
- .v-slider.v-input--vertical .v-slider-track__tick--last {
25598
+ .v-slider.v-input--vertical .v-slider-track__tick--first {
25587
25599
  bottom: calc(0% + var(--v-slider-tick-size) + 1px);
25588
25600
  }
25601
+ .v-slider.v-input--vertical .v-slider-track__tick--last {
25602
+ bottom: calc(100% - var(--v-slider-tick-size) - 1px);
25603
+ }
25589
25604
  .v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label {
25590
25605
  margin-inline-start: calc(var(--v-slider-track-size) / 2 + 12px);
25591
25606
  transform: translateY(-50%);
package/dist/vuetify.d.ts CHANGED
@@ -3466,6 +3466,7 @@ declare const VAvatar: vue.DefineComponent<{
3466
3466
  type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
3467
3467
  default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
3468
3468
  };
3469
+ theme: StringConstructor;
3469
3470
  tag: {
3470
3471
  type: StringConstructor;
3471
3472
  default: string;
@@ -3497,6 +3498,7 @@ declare const VAvatar: vue.DefineComponent<{
3497
3498
  type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
3498
3499
  default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
3499
3500
  };
3501
+ theme: StringConstructor;
3500
3502
  tag: {
3501
3503
  type: StringConstructor;
3502
3504
  default: string;
@@ -17643,7 +17645,7 @@ declare const VSelectionControl: {
17643
17645
  errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
17644
17646
  };
17645
17647
  $forceUpdate: () => void;
17646
- $nextTick: typeof vue.nextTick;
17648
+ $nextTick: typeof nextTick;
17647
17649
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
17648
17650
  } & Readonly<ExtractPropTypes<Omit<{
17649
17651
  density: {
@@ -25991,30 +25993,22 @@ declare module '@vue/runtime-core' {
25991
25993
  }
25992
25994
 
25993
25995
  export interface GlobalComponents {
25994
- VApp: typeof import('vuetify/components')['VApp']
25995
25996
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
25996
- VForm: typeof import('vuetify/components')['VForm']
25997
25997
  VContainer: typeof import('vuetify/components')['VContainer']
25998
25998
  VCol: typeof import('vuetify/components')['VCol']
25999
25999
  VRow: typeof import('vuetify/components')['VRow']
26000
26000
  VSpacer: typeof import('vuetify/components')['VSpacer']
26001
26001
  VHover: typeof import('vuetify/components')['VHover']
26002
- VLazy: typeof import('vuetify/components')['VLazy']
26002
+ VForm: typeof import('vuetify/components')['VForm']
26003
26003
  VLayout: typeof import('vuetify/components')['VLayout']
26004
26004
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
26005
+ VLazy: typeof import('vuetify/components')['VLazy']
26005
26006
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
26006
26007
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
26007
26008
  VParallax: typeof import('vuetify/components')['VParallax']
26008
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
26009
26009
  VRadio: typeof import('vuetify/components')['VRadio']
26010
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
26010
26011
  VResponsive: typeof import('vuetify/components')['VResponsive']
26011
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
26012
- VValidation: typeof import('vuetify/components')['VValidation']
26013
- VAppBar: typeof import('vuetify/components')['VAppBar']
26014
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
26015
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
26016
- VAlert: typeof import('vuetify/components')['VAlert']
26017
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
26018
26012
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
26019
26013
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
26020
26014
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -26031,8 +26025,13 @@ declare module '@vue/runtime-core' {
26031
26025
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
26032
26026
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
26033
26027
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
26034
- VAvatar: typeof import('vuetify/components')['VAvatar']
26028
+ VApp: typeof import('vuetify/components')['VApp']
26029
+ VAlert: typeof import('vuetify/components')['VAlert']
26030
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
26031
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
26035
26032
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
26033
+ VAvatar: typeof import('vuetify/components')['VAvatar']
26034
+ VValidation: typeof import('vuetify/components')['VValidation']
26036
26035
  VBadge: typeof import('vuetify/components')['VBadge']
26037
26036
  VBanner: typeof import('vuetify/components')['VBanner']
26038
26037
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
@@ -26043,6 +26042,7 @@ declare module '@vue/runtime-core' {
26043
26042
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
26044
26043
  VBtn: typeof import('vuetify/components')['VBtn']
26045
26044
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
26045
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
26046
26046
  VCard: typeof import('vuetify/components')['VCard']
26047
26047
  VCardActions: typeof import('vuetify/components')['VCardActions']
26048
26048
  VCardItem: typeof import('vuetify/components')['VCardItem']
@@ -26053,22 +26053,22 @@ declare module '@vue/runtime-core' {
26053
26053
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
26054
26054
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
26055
26055
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
26056
- VChip: typeof import('vuetify/components')['VChip']
26057
26056
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
26057
+ VChip: typeof import('vuetify/components')['VChip']
26058
26058
  VCode: typeof import('vuetify/components')['VCode']
26059
26059
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
26060
26060
  VCombobox: typeof import('vuetify/components')['VCombobox']
26061
26061
  VCounter: typeof import('vuetify/components')['VCounter']
26062
26062
  VDialog: typeof import('vuetify/components')['VDialog']
26063
26063
  VDivider: typeof import('vuetify/components')['VDivider']
26064
+ VField: typeof import('vuetify/components')['VField']
26065
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
26064
26066
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
26065
26067
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
26066
26068
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
26067
26069
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
26068
- VField: typeof import('vuetify/components')['VField']
26069
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
26070
- VFileInput: typeof import('vuetify/components')['VFileInput']
26071
26070
  VFooter: typeof import('vuetify/components')['VFooter']
26071
+ VFileInput: typeof import('vuetify/components')['VFileInput']
26072
26072
  VIcon: typeof import('vuetify/components')['VIcon']
26073
26073
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
26074
26074
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -26076,10 +26076,10 @@ declare module '@vue/runtime-core' {
26076
26076
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
26077
26077
  VImg: typeof import('vuetify/components')['VImg']
26078
26078
  VInput: typeof import('vuetify/components')['VInput']
26079
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
26080
- VItem: typeof import('vuetify/components')['VItem']
26081
26079
  VKbd: typeof import('vuetify/components')['VKbd']
26082
26080
  VLabel: typeof import('vuetify/components')['VLabel']
26081
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
26082
+ VItem: typeof import('vuetify/components')['VItem']
26083
26083
  VList: typeof import('vuetify/components')['VList']
26084
26084
  VListGroup: typeof import('vuetify/components')['VListGroup']
26085
26085
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -26094,34 +26094,36 @@ declare module '@vue/runtime-core' {
26094
26094
  VMessages: typeof import('vuetify/components')['VMessages']
26095
26095
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
26096
26096
  VOverlay: typeof import('vuetify/components')['VOverlay']
26097
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
26098
26097
  VPagination: typeof import('vuetify/components')['VPagination']
26098
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
26099
26099
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
26100
26100
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
26101
26101
  VRating: typeof import('vuetify/components')['VRating']
26102
26102
  VSelect: typeof import('vuetify/components')['VSelect']
26103
26103
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
26104
26104
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
26105
+ VSheet: typeof import('vuetify/components')['VSheet']
26105
26106
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
26106
26107
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
26107
- VSheet: typeof import('vuetify/components')['VSheet']
26108
26108
  VSlider: typeof import('vuetify/components')['VSlider']
26109
26109
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
26110
26110
  VSwitch: typeof import('vuetify/components')['VSwitch']
26111
26111
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
26112
26112
  VTabs: typeof import('vuetify/components')['VTabs']
26113
26113
  VTab: typeof import('vuetify/components')['VTab']
26114
- VTable: typeof import('vuetify/components')['VTable']
26115
26114
  VTextarea: typeof import('vuetify/components')['VTextarea']
26116
26115
  VTextField: typeof import('vuetify/components')['VTextField']
26116
+ VTable: typeof import('vuetify/components')['VTable']
26117
+ VTimeline: typeof import('vuetify/components')['VTimeline']
26118
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
26117
26119
  VToolbar: typeof import('vuetify/components')['VToolbar']
26118
26120
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
26119
26121
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
26120
- VTimeline: typeof import('vuetify/components')['VTimeline']
26121
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
26122
26122
  VTooltip: typeof import('vuetify/components')['VTooltip']
26123
26123
  VWindow: typeof import('vuetify/components')['VWindow']
26124
26124
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
26125
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
26125
+ VAppBar: typeof import('vuetify/components')['VAppBar']
26126
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
26127
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
26126
26128
  }
26127
26129
  }