@vuetify/nightly 3.5.3-dev.2024-02-08 → 3.5.3-dev.2024-02-25

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 (52) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/dist/json/attributes.json +5 -5
  3. package/dist/json/importMap-labs.json +8 -8
  4. package/dist/json/importMap.json +126 -126
  5. package/dist/json/web-types.json +6 -6
  6. package/dist/vuetify-labs.css +2131 -2131
  7. package/dist/vuetify-labs.d.ts +22 -21
  8. package/dist/vuetify-labs.esm.js +58 -62
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +57 -61
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +1360 -1360
  13. package/dist/vuetify.d.ts +62 -61
  14. package/dist/vuetify.esm.js +58 -62
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +57 -61
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +909 -914
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VApp/VApp.mjs +5 -2
  22. package/lib/components/VApp/VApp.mjs.map +1 -1
  23. package/lib/components/VApp/index.d.mts +6 -6
  24. package/lib/components/VAppBar/VAppBar.mjs +5 -5
  25. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  26. package/lib/components/VAppBar/index.d.mts +2 -2
  27. package/lib/components/VBottomNavigation/VBottomNavigation.mjs +5 -3
  28. package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
  29. package/lib/components/VBottomNavigation/index.d.mts +2 -2
  30. package/lib/components/VFooter/VFooter.mjs +3 -2
  31. package/lib/components/VFooter/VFooter.mjs.map +1 -1
  32. package/lib/components/VLabel/VLabel.sass +1 -1
  33. package/lib/components/VLabel/_variables.scss +1 -0
  34. package/lib/components/VLayout/VLayout.mjs +5 -2
  35. package/lib/components/VLayout/VLayout.mjs.map +1 -1
  36. package/lib/components/VLayout/VLayoutItem.mjs +6 -4
  37. package/lib/components/VLayout/VLayoutItem.mjs.map +1 -1
  38. package/lib/components/VLayout/index.d.mts +9 -9
  39. package/lib/components/VMain/VMain.mjs +3 -2
  40. package/lib/components/VMain/VMain.mjs.map +1 -1
  41. package/lib/components/VMain/index.d.mts +2 -2
  42. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +7 -7
  43. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  44. package/lib/components/index.d.mts +21 -21
  45. package/lib/composables/layout.mjs +14 -37
  46. package/lib/composables/layout.mjs.map +1 -1
  47. package/lib/entry-bundler.mjs +1 -1
  48. package/lib/framework.mjs +1 -1
  49. package/lib/index.d.mts +41 -40
  50. package/lib/util/helpers.mjs +11 -1
  51. package/lib/util/helpers.mjs.map +1 -1
  52. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -712,6 +712,7 @@ interface LayoutItem extends Layer {
712
712
  position: Position;
713
713
  }
714
714
  declare function useLayout(): {
715
+ layoutIsReady: Promise<void>;
715
716
  getLayoutItem: (id: string) => LayoutItem | undefined;
716
717
  mainRect: Ref<Layer>;
717
718
  mainStyles: Ref<CSSProperties>;
@@ -806,7 +807,7 @@ declare const VApp: {
806
807
  right: number;
807
808
  id: string;
808
809
  } | undefined;
809
- items: vue.ComputedRef<{
810
+ items: Readonly<vue.Ref<{
810
811
  size: number;
811
812
  position: "left" | "top" | "bottom" | "right";
812
813
  top: number;
@@ -814,7 +815,7 @@ declare const VApp: {
814
815
  left: number;
815
816
  right: number;
816
817
  id: string;
817
- }[]>;
818
+ }[]>>;
818
819
  theme: ThemeInstance;
819
820
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
820
821
  style: vue.StyleValue;
@@ -872,7 +873,7 @@ declare const VApp: {
872
873
  right: number;
873
874
  id: string;
874
875
  } | undefined;
875
- items: vue.ComputedRef<{
876
+ items: Readonly<vue.Ref<{
876
877
  size: number;
877
878
  position: "left" | "top" | "bottom" | "right";
878
879
  top: number;
@@ -880,7 +881,7 @@ declare const VApp: {
880
881
  left: number;
881
882
  right: number;
882
883
  id: string;
883
- }[]>;
884
+ }[]>>;
884
885
  theme: ThemeInstance;
885
886
  }, {}, {}, {}, {
886
887
  style: vue.StyleValue;
@@ -915,7 +916,7 @@ declare const VApp: {
915
916
  right: number;
916
917
  id: string;
917
918
  } | undefined;
918
- items: vue.ComputedRef<{
919
+ items: Readonly<vue.Ref<{
919
920
  size: number;
920
921
  position: "left" | "top" | "bottom" | "right";
921
922
  top: number;
@@ -923,7 +924,7 @@ declare const VApp: {
923
924
  left: number;
924
925
  right: number;
925
926
  id: string;
926
- }[]>;
927
+ }[]>>;
927
928
  theme: ThemeInstance;
928
929
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
929
930
  style: vue.StyleValue;
@@ -1376,7 +1377,7 @@ declare const VAppBar: {
1376
1377
  "v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
1377
1378
  } & {
1378
1379
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1379
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1380
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1380
1381
  'update:modelValue': (value: boolean) => boolean;
1381
1382
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
1382
1383
  flat: boolean;
@@ -1599,7 +1600,7 @@ declare const VAppBar: {
1599
1600
  "v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
1600
1601
  } & {
1601
1602
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1602
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1603
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1603
1604
  'update:modelValue': (value: boolean) => boolean;
1604
1605
  }, string, {
1605
1606
  flat: boolean;
@@ -9625,7 +9626,7 @@ declare const VBottomNavigation: {
9625
9626
  theme?: string | undefined;
9626
9627
  rounded?: string | number | boolean | undefined;
9627
9628
  bgColor?: string | undefined;
9628
- } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9629
+ } & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9629
9630
  'update:modelValue': (value: any) => boolean;
9630
9631
  }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
9631
9632
  absolute: boolean;
@@ -9742,7 +9743,7 @@ declare const VBottomNavigation: {
9742
9743
  theme?: string | undefined;
9743
9744
  rounded?: string | number | boolean | undefined;
9744
9745
  bgColor?: string | undefined;
9745
- } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9746
+ } & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9746
9747
  'update:modelValue': (value: any) => boolean;
9747
9748
  }, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, string, {
9748
9749
  absolute: boolean;
@@ -36071,7 +36072,7 @@ declare const VLayout: {
36071
36072
  right: number;
36072
36073
  id: string;
36073
36074
  } | undefined;
36074
- items: vue.ComputedRef<{
36075
+ items: Readonly<vue.Ref<{
36075
36076
  size: number;
36076
36077
  position: "left" | "top" | "bottom" | "right";
36077
36078
  top: number;
@@ -36079,7 +36080,7 @@ declare const VLayout: {
36079
36080
  left: number;
36080
36081
  right: number;
36081
36082
  id: string;
36082
- }[]>;
36083
+ }[]>>;
36083
36084
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
36084
36085
  style: vue.StyleValue;
36085
36086
  fullHeight: boolean;
@@ -36134,7 +36135,7 @@ declare const VLayout: {
36134
36135
  right: number;
36135
36136
  id: string;
36136
36137
  } | undefined;
36137
- items: vue.ComputedRef<{
36138
+ items: Readonly<vue.Ref<{
36138
36139
  size: number;
36139
36140
  position: "left" | "top" | "bottom" | "right";
36140
36141
  top: number;
@@ -36142,7 +36143,7 @@ declare const VLayout: {
36142
36143
  left: number;
36143
36144
  right: number;
36144
36145
  id: string;
36145
- }[]>;
36146
+ }[]>>;
36146
36147
  }, {}, {}, {}, {
36147
36148
  style: vue.StyleValue;
36148
36149
  fullHeight: boolean;
@@ -36175,7 +36176,7 @@ declare const VLayout: {
36175
36176
  right: number;
36176
36177
  id: string;
36177
36178
  } | undefined;
36178
- items: vue.ComputedRef<{
36179
+ items: Readonly<vue.Ref<{
36179
36180
  size: number;
36180
36181
  position: "left" | "top" | "bottom" | "right";
36181
36182
  top: number;
@@ -36183,7 +36184,7 @@ declare const VLayout: {
36183
36184
  left: number;
36184
36185
  right: number;
36185
36186
  id: string;
36186
- }[]>;
36187
+ }[]>>;
36187
36188
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
36188
36189
  style: vue.StyleValue;
36189
36190
  fullHeight: boolean;
@@ -36230,7 +36231,7 @@ declare const VLayoutItem: {
36230
36231
  } | undefined;
36231
36232
  } & {
36232
36233
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
36233
- }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
36234
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
36234
36235
  absolute: boolean;
36235
36236
  order: string | number;
36236
36237
  position: "left" | "top" | "bottom" | "right";
@@ -36285,7 +36286,7 @@ declare const VLayoutItem: {
36285
36286
  } | undefined;
36286
36287
  } & {
36287
36288
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
36288
- }, () => JSX.Element, {}, {}, {}, {
36289
+ }, {}, {}, {}, {}, {
36289
36290
  absolute: boolean;
36290
36291
  order: string | number;
36291
36292
  style: vue.StyleValue;
@@ -36314,7 +36315,7 @@ declare const VLayoutItem: {
36314
36315
  } | undefined;
36315
36316
  } & {
36316
36317
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
36317
- }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
36318
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
36318
36319
  absolute: boolean;
36319
36320
  order: string | number;
36320
36321
  style: vue.StyleValue;
@@ -38393,7 +38394,7 @@ declare const VMain: {
38393
38394
  } | undefined;
38394
38395
  } & {
38395
38396
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
38396
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
38397
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
38397
38398
  style: vue.StyleValue;
38398
38399
  tag: string;
38399
38400
  scrollable: boolean;
@@ -38461,7 +38462,7 @@ declare const VMain: {
38461
38462
  } | undefined;
38462
38463
  } & {
38463
38464
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
38464
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
38465
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
38465
38466
  style: vue.StyleValue;
38466
38467
  tag: string;
38467
38468
  scrollable: boolean;
@@ -67343,72 +67344,71 @@ declare module '@vue/runtime-core' {
67343
67344
  VAppBar: typeof import('vuetify/components')['VAppBar']
67344
67345
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
67345
67346
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
67347
+ VAvatar: typeof import('vuetify/components')['VAvatar']
67346
67348
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
67347
67349
  VAlert: typeof import('vuetify/components')['VAlert']
67348
67350
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
67349
- VAvatar: typeof import('vuetify/components')['VAvatar']
67351
+ VBadge: typeof import('vuetify/components')['VBadge']
67350
67352
  VBanner: typeof import('vuetify/components')['VBanner']
67351
67353
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
67352
67354
  VBannerText: typeof import('vuetify/components')['VBannerText']
67353
- VBadge: typeof import('vuetify/components')['VBadge']
67354
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67355
- VBtn: typeof import('vuetify/components')['VBtn']
67356
67355
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
67356
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
67357
67357
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
67358
67358
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
67359
67359
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
67360
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67360
+ VBtn: typeof import('vuetify/components')['VBtn']
67361
67361
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
67362
67362
  VCarousel: typeof import('vuetify/components')['VCarousel']
67363
67363
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
67364
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
67365
+ VCode: typeof import('vuetify/components')['VCode']
67366
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
67367
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67364
67368
  VCard: typeof import('vuetify/components')['VCard']
67365
67369
  VCardActions: typeof import('vuetify/components')['VCardActions']
67366
67370
  VCardItem: typeof import('vuetify/components')['VCardItem']
67367
67371
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
67368
67372
  VCardText: typeof import('vuetify/components')['VCardText']
67369
67373
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
67370
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
67371
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
67372
67374
  VChip: typeof import('vuetify/components')['VChip']
67373
67375
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
67374
- VCode: typeof import('vuetify/components')['VCode']
67375
- VCounter: typeof import('vuetify/components')['VCounter']
67376
67376
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
67377
- VDataTable: typeof import('vuetify/components')['VDataTable']
67378
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67379
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67380
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67381
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67382
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67383
67377
  VCombobox: typeof import('vuetify/components')['VCombobox']
67378
+ VCounter: typeof import('vuetify/components')['VCounter']
67384
67379
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
67385
67380
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
67386
67381
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
67387
67382
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
67388
67383
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
67389
67384
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
67390
- VDivider: typeof import('vuetify/components')['VDivider']
67385
+ VDataTable: typeof import('vuetify/components')['VDataTable']
67386
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
67387
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
67388
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
67389
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
67390
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
67391
67391
  VDialog: typeof import('vuetify/components')['VDialog']
67392
+ VDivider: typeof import('vuetify/components')['VDivider']
67392
67393
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
67393
67394
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
67394
67395
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
67395
67396
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
67396
- VFileInput: typeof import('vuetify/components')['VFileInput']
67397
- VFooter: typeof import('vuetify/components')['VFooter']
67398
67397
  VField: typeof import('vuetify/components')['VField']
67399
67398
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
67399
+ VFileInput: typeof import('vuetify/components')['VFileInput']
67400
+ VFooter: typeof import('vuetify/components')['VFooter']
67401
+ VImg: typeof import('vuetify/components')['VImg']
67400
67402
  VIcon: typeof import('vuetify/components')['VIcon']
67401
67403
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
67402
67404
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
67403
67405
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
67404
67406
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
67405
67407
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
67406
- VImg: typeof import('vuetify/components')['VImg']
67407
67408
  VInput: typeof import('vuetify/components')['VInput']
67408
67409
  VKbd: typeof import('vuetify/components')['VKbd']
67409
67410
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
67410
67411
  VItem: typeof import('vuetify/components')['VItem']
67411
- VLabel: typeof import('vuetify/components')['VLabel']
67412
67412
  VList: typeof import('vuetify/components')['VList']
67413
67413
  VListGroup: typeof import('vuetify/components')['VListGroup']
67414
67414
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -67418,45 +67418,46 @@ declare module '@vue/runtime-core' {
67418
67418
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
67419
67419
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
67420
67420
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
67421
+ VLabel: typeof import('vuetify/components')['VLabel']
67422
+ VMenu: typeof import('vuetify/components')['VMenu']
67421
67423
  VMain: typeof import('vuetify/components')['VMain']
67422
67424
  VMessages: typeof import('vuetify/components')['VMessages']
67423
- VMenu: typeof import('vuetify/components')['VMenu']
67424
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
67425
+ VPagination: typeof import('vuetify/components')['VPagination']
67425
67426
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
67427
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
67426
67428
  VOverlay: typeof import('vuetify/components')['VOverlay']
67427
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67428
- VPagination: typeof import('vuetify/components')['VPagination']
67429
67429
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
67430
- VRating: typeof import('vuetify/components')['VRating']
67431
67430
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
67431
+ VRating: typeof import('vuetify/components')['VRating']
67432
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
67432
67433
  VSelect: typeof import('vuetify/components')['VSelect']
67433
67434
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
67434
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67435
67435
  VSheet: typeof import('vuetify/components')['VSheet']
67436
67436
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
67437
67437
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
67438
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
67438
67439
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
67439
- VSwitch: typeof import('vuetify/components')['VSwitch']
67440
- VSlider: typeof import('vuetify/components')['VSlider']
67441
- VTabs: typeof import('vuetify/components')['VTabs']
67442
- VTab: typeof import('vuetify/components')['VTab']
67443
67440
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
67441
+ VSlider: typeof import('vuetify/components')['VSlider']
67442
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
67444
67443
  VStepper: typeof import('vuetify/components')['VStepper']
67445
67444
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
67446
67445
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
67447
67446
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
67448
67447
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
67449
67448
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
67449
+ VSwitch: typeof import('vuetify/components')['VSwitch']
67450
67450
  VTable: typeof import('vuetify/components')['VTable']
67451
- VTextField: typeof import('vuetify/components')['VTextField']
67452
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
67451
+ VTextarea: typeof import('vuetify/components')['VTextarea']
67452
+ VTabs: typeof import('vuetify/components')['VTabs']
67453
+ VTab: typeof import('vuetify/components')['VTab']
67453
67454
  VTimeline: typeof import('vuetify/components')['VTimeline']
67454
67455
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
67455
- VTextarea: typeof import('vuetify/components')['VTextarea']
67456
+ VTooltip: typeof import('vuetify/components')['VTooltip']
67457
+ VTextField: typeof import('vuetify/components')['VTextField']
67456
67458
  VToolbar: typeof import('vuetify/components')['VToolbar']
67457
67459
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
67458
67460
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
67459
- VTooltip: typeof import('vuetify/components')['VTooltip']
67460
67461
  VWindow: typeof import('vuetify/components')['VWindow']
67461
67462
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
67462
67463
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
@@ -67471,14 +67472,12 @@ declare module '@vue/runtime-core' {
67471
67472
  VLayout: typeof import('vuetify/components')['VLayout']
67472
67473
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
67473
67474
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
67474
- VParallax: typeof import('vuetify/components')['VParallax']
67475
67475
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
67476
- VRadio: typeof import('vuetify/components')['VRadio']
67476
+ VParallax: typeof import('vuetify/components')['VParallax']
67477
67477
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
67478
+ VRadio: typeof import('vuetify/components')['VRadio']
67478
67479
  VResponsive: typeof import('vuetify/components')['VResponsive']
67479
67480
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
67480
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67481
- VValidation: typeof import('vuetify/components')['VValidation']
67482
67481
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
67483
67482
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
67484
67483
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -67495,14 +67494,16 @@ declare module '@vue/runtime-core' {
67495
67494
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
67496
67495
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
67497
67496
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
67498
- VPicker: typeof import('vuetify/labs/components')['VPicker']
67499
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67497
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
67498
+ VValidation: typeof import('vuetify/components')['VValidation']
67500
67499
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
67501
67500
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
67502
67501
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
67503
67502
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
67504
67503
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
67505
67504
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
67505
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
67506
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
67506
67507
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
67507
67508
  }
67508
67509
  }