@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-04-30

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 +10 -3
  2. package/dist/json/attributes.json +2916 -2916
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +120 -120
  5. package/dist/json/web-types.json +5199 -5199
  6. package/dist/vuetify-labs.cjs +19 -16
  7. package/dist/vuetify-labs.css +3752 -3752
  8. package/dist/vuetify-labs.d.ts +4023 -859
  9. package/dist/vuetify-labs.esm.js +19 -16
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +19 -16
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +19 -16
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +4587 -4587
  16. package/dist/vuetify.d.ts +4023 -859
  17. package/dist/vuetify.esm.js +19 -16
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +19 -16
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +9 -9
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
  25. package/lib/components/VBadge/VBadge.d.ts +22 -46
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
  27. package/lib/components/VCombobox/VCombobox.d.ts +792 -74
  28. package/lib/components/VCounter/VCounter.d.ts +22 -46
  29. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  30. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  31. package/lib/components/VDialog/VDialog.js.map +1 -1
  32. package/lib/components/VFab/VFab.d.ts +22 -46
  33. package/lib/components/VImg/VImg.d.ts +22 -49
  34. package/lib/components/VLazy/VLazy.d.ts +22 -46
  35. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  36. package/lib/components/VMenu/VMenu.js.map +1 -1
  37. package/lib/components/VMessages/VMessages.d.ts +22 -46
  38. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  39. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  40. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  41. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  42. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  43. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  44. package/lib/components/VTooltip/VTooltip.js +2 -2
  45. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  46. package/lib/composables/transition.d.ts +10 -20
  47. package/lib/composables/transition.js +15 -12
  48. package/lib/composables/transition.js.map +1 -1
  49. package/lib/entry-bundler.js +1 -1
  50. package/lib/framework.d.ts +95 -134
  51. package/lib/framework.js +1 -1
  52. package/package.json +1 -1
@@ -678,7 +678,7 @@ declare const VSnackbar: {
678
678
  origin: "auto" | Anchor | "overlap";
679
679
  transition: string | boolean | (vue.TransitionProps & {
680
680
  component?: vue.Component;
681
- });
681
+ }) | null;
682
682
  zIndex: string | number;
683
683
  style: vue.StyleValue;
684
684
  eager: boolean;
@@ -761,9 +761,6 @@ declare const VSnackbar: {
761
761
  absolute: boolean;
762
762
  location: Anchor;
763
763
  origin: "auto" | Anchor | "overlap";
764
- transition: string | boolean | (vue.TransitionProps & {
765
- component?: vue.Component;
766
- });
767
764
  zIndex: string | number;
768
765
  style: vue.StyleValue;
769
766
  eager: boolean;
@@ -786,9 +783,6 @@ declare const VSnackbar: {
786
783
  absolute: boolean;
787
784
  location: Anchor;
788
785
  origin: "auto" | Anchor | "overlap";
789
- transition: string | boolean | (vue.TransitionProps & {
790
- component?: vue.Component;
791
- });
792
786
  zIndex: string | number;
793
787
  style: vue.StyleValue;
794
788
  eager: boolean;
@@ -813,6 +807,9 @@ declare const VSnackbar: {
813
807
  minHeight?: string | number | undefined;
814
808
  minWidth?: string | number | undefined;
815
809
  opacity?: string | number | undefined;
810
+ transition?: string | boolean | (vue.TransitionProps & {
811
+ component?: vue.Component;
812
+ }) | null | undefined;
816
813
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
817
814
  class?: any;
818
815
  theme?: string | undefined;
@@ -859,7 +856,7 @@ declare const VSnackbar: {
859
856
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
860
857
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
861
858
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
862
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
859
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
863
860
  $attrs: {
864
861
  [x: string]: unknown;
865
862
  };
@@ -885,9 +882,6 @@ declare const VSnackbar: {
885
882
  absolute: boolean;
886
883
  location: Anchor;
887
884
  origin: "auto" | Anchor | "overlap";
888
- transition: string | boolean | (vue.TransitionProps & {
889
- component?: vue.Component;
890
- });
891
885
  zIndex: string | number;
892
886
  style: vue.StyleValue;
893
887
  eager: boolean;
@@ -913,6 +907,9 @@ declare const VSnackbar: {
913
907
  minHeight?: string | number | undefined;
914
908
  minWidth?: string | number | undefined;
915
909
  opacity?: string | number | undefined;
910
+ transition?: string | boolean | (vue.TransitionProps & {
911
+ component?: vue.Component;
912
+ }) | null | undefined;
916
913
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
917
914
  class?: any;
918
915
  theme?: string | undefined;
@@ -981,9 +978,6 @@ declare const VSnackbar: {
981
978
  absolute: boolean;
982
979
  location: Anchor;
983
980
  origin: "auto" | Anchor | "overlap";
984
- transition: string | boolean | (vue.TransitionProps & {
985
- component?: vue.Component;
986
- });
987
981
  zIndex: string | number;
988
982
  style: vue.StyleValue;
989
983
  eager: boolean;
@@ -1035,9 +1029,6 @@ declare const VSnackbar: {
1035
1029
  absolute: boolean;
1036
1030
  location: Anchor;
1037
1031
  origin: "auto" | Anchor | "overlap";
1038
- transition: string | boolean | (vue.TransitionProps & {
1039
- component?: vue.Component;
1040
- });
1041
1032
  zIndex: string | number;
1042
1033
  style: vue.StyleValue;
1043
1034
  eager: boolean;
@@ -1060,9 +1051,6 @@ declare const VSnackbar: {
1060
1051
  absolute: boolean;
1061
1052
  location: Anchor;
1062
1053
  origin: "auto" | Anchor | "overlap";
1063
- transition: string | boolean | (vue.TransitionProps & {
1064
- component?: vue.Component;
1065
- });
1066
1054
  zIndex: string | number;
1067
1055
  style: vue.StyleValue;
1068
1056
  eager: boolean;
@@ -1088,6 +1076,9 @@ declare const VSnackbar: {
1088
1076
  minHeight?: string | number | undefined;
1089
1077
  minWidth?: string | number | undefined;
1090
1078
  opacity?: string | number | undefined;
1079
+ transition?: string | boolean | (vue.TransitionProps & {
1080
+ component?: vue.Component;
1081
+ }) | null | undefined;
1091
1082
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1092
1083
  class?: any;
1093
1084
  theme?: string | undefined;
@@ -1137,7 +1128,7 @@ declare const VSnackbar: {
1137
1128
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1138
1129
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1139
1130
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1140
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1131
+ }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1141
1132
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1142
1133
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1143
1134
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1146,7 +1137,7 @@ declare const VSnackbar: {
1146
1137
  globalTop: Readonly<Ref<boolean, boolean>>;
1147
1138
  localTop: Readonly<Ref<boolean, boolean>>;
1148
1139
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1149
- }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
1140
+ }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
1150
1141
  _allExposed: {
1151
1142
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1152
1143
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1166,7 +1157,7 @@ declare const VSnackbar: {
1166
1157
  origin: "auto" | Anchor | "overlap";
1167
1158
  transition: string | boolean | (vue.TransitionProps & {
1168
1159
  component?: vue.Component;
1169
- });
1160
+ }) | null;
1170
1161
  zIndex: string | number;
1171
1162
  style: vue.StyleValue;
1172
1163
  eager: boolean;
@@ -1209,7 +1200,7 @@ declare const VSnackbar: {
1209
1200
  origin: "auto" | Anchor | "overlap";
1210
1201
  transition: string | boolean | (vue.TransitionProps & {
1211
1202
  component?: vue.Component;
1212
- });
1203
+ }) | null;
1213
1204
  zIndex: string | number;
1214
1205
  style: vue.StyleValue;
1215
1206
  eager: boolean;
@@ -1292,9 +1283,6 @@ declare const VSnackbar: {
1292
1283
  absolute: boolean;
1293
1284
  location: Anchor;
1294
1285
  origin: "auto" | Anchor | "overlap";
1295
- transition: string | boolean | (vue.TransitionProps & {
1296
- component?: vue.Component;
1297
- });
1298
1286
  zIndex: string | number;
1299
1287
  style: vue.StyleValue;
1300
1288
  eager: boolean;
@@ -1317,9 +1305,6 @@ declare const VSnackbar: {
1317
1305
  absolute: boolean;
1318
1306
  location: Anchor;
1319
1307
  origin: "auto" | Anchor | "overlap";
1320
- transition: string | boolean | (vue.TransitionProps & {
1321
- component?: vue.Component;
1322
- });
1323
1308
  zIndex: string | number;
1324
1309
  style: vue.StyleValue;
1325
1310
  eager: boolean;
@@ -1344,6 +1329,9 @@ declare const VSnackbar: {
1344
1329
  minHeight?: string | number | undefined;
1345
1330
  minWidth?: string | number | undefined;
1346
1331
  opacity?: string | number | undefined;
1332
+ transition?: string | boolean | (vue.TransitionProps & {
1333
+ component?: vue.Component;
1334
+ }) | null | undefined;
1347
1335
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1348
1336
  class?: any;
1349
1337
  theme?: string | undefined;
@@ -1390,7 +1378,7 @@ declare const VSnackbar: {
1390
1378
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1391
1379
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1392
1380
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1393
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
1381
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
1394
1382
  $attrs: {
1395
1383
  [x: string]: unknown;
1396
1384
  };
@@ -1416,9 +1404,6 @@ declare const VSnackbar: {
1416
1404
  absolute: boolean;
1417
1405
  location: Anchor;
1418
1406
  origin: "auto" | Anchor | "overlap";
1419
- transition: string | boolean | (vue.TransitionProps & {
1420
- component?: vue.Component;
1421
- });
1422
1407
  zIndex: string | number;
1423
1408
  style: vue.StyleValue;
1424
1409
  eager: boolean;
@@ -1444,6 +1429,9 @@ declare const VSnackbar: {
1444
1429
  minHeight?: string | number | undefined;
1445
1430
  minWidth?: string | number | undefined;
1446
1431
  opacity?: string | number | undefined;
1432
+ transition?: string | boolean | (vue.TransitionProps & {
1433
+ component?: vue.Component;
1434
+ }) | null | undefined;
1447
1435
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1448
1436
  class?: any;
1449
1437
  theme?: string | undefined;
@@ -1512,9 +1500,6 @@ declare const VSnackbar: {
1512
1500
  absolute: boolean;
1513
1501
  location: Anchor;
1514
1502
  origin: "auto" | Anchor | "overlap";
1515
- transition: string | boolean | (vue.TransitionProps & {
1516
- component?: vue.Component;
1517
- });
1518
1503
  zIndex: string | number;
1519
1504
  style: vue.StyleValue;
1520
1505
  eager: boolean;
@@ -1566,9 +1551,6 @@ declare const VSnackbar: {
1566
1551
  absolute: boolean;
1567
1552
  location: Anchor;
1568
1553
  origin: "auto" | Anchor | "overlap";
1569
- transition: string | boolean | (vue.TransitionProps & {
1570
- component?: vue.Component;
1571
- });
1572
1554
  zIndex: string | number;
1573
1555
  style: vue.StyleValue;
1574
1556
  eager: boolean;
@@ -1591,9 +1573,6 @@ declare const VSnackbar: {
1591
1573
  absolute: boolean;
1592
1574
  location: Anchor;
1593
1575
  origin: "auto" | Anchor | "overlap";
1594
- transition: string | boolean | (vue.TransitionProps & {
1595
- component?: vue.Component;
1596
- });
1597
1576
  zIndex: string | number;
1598
1577
  style: vue.StyleValue;
1599
1578
  eager: boolean;
@@ -1619,6 +1598,9 @@ declare const VSnackbar: {
1619
1598
  minHeight?: string | number | undefined;
1620
1599
  minWidth?: string | number | undefined;
1621
1600
  opacity?: string | number | undefined;
1601
+ transition?: string | boolean | (vue.TransitionProps & {
1602
+ component?: vue.Component;
1603
+ }) | null | undefined;
1622
1604
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1623
1605
  class?: any;
1624
1606
  theme?: string | undefined;
@@ -1668,7 +1650,7 @@ declare const VSnackbar: {
1668
1650
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1669
1651
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1670
1652
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1671
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1653
+ }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1672
1654
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1673
1655
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1674
1656
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1677,7 +1659,7 @@ declare const VSnackbar: {
1677
1659
  globalTop: Readonly<Ref<boolean, boolean>>;
1678
1660
  localTop: Readonly<Ref<boolean, boolean>>;
1679
1661
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1680
- }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
1662
+ }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
1681
1663
  _allExposed: {
1682
1664
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1683
1665
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1695,7 +1677,7 @@ declare const VSnackbar: {
1695
1677
  origin: "auto" | Anchor | "overlap";
1696
1678
  transition: string | boolean | (vue.TransitionProps & {
1697
1679
  component?: vue.Component;
1698
- });
1680
+ }) | null;
1699
1681
  zIndex: string | number;
1700
1682
  style: vue.StyleValue;
1701
1683
  eager: boolean;
@@ -1725,7 +1707,7 @@ declare const VSnackbar: {
1725
1707
  origin: "auto" | Anchor | "overlap";
1726
1708
  transition: string | boolean | (vue.TransitionProps & {
1727
1709
  component?: vue.Component;
1728
- });
1710
+ }) | null;
1729
1711
  zIndex: string | number;
1730
1712
  style: vue.StyleValue;
1731
1713
  eager: boolean;
@@ -1808,9 +1790,6 @@ declare const VSnackbar: {
1808
1790
  absolute: boolean;
1809
1791
  location: Anchor;
1810
1792
  origin: "auto" | Anchor | "overlap";
1811
- transition: string | boolean | (vue.TransitionProps & {
1812
- component?: vue.Component;
1813
- });
1814
1793
  zIndex: string | number;
1815
1794
  style: vue.StyleValue;
1816
1795
  eager: boolean;
@@ -1833,9 +1812,6 @@ declare const VSnackbar: {
1833
1812
  absolute: boolean;
1834
1813
  location: Anchor;
1835
1814
  origin: "auto" | Anchor | "overlap";
1836
- transition: string | boolean | (vue.TransitionProps & {
1837
- component?: vue.Component;
1838
- });
1839
1815
  zIndex: string | number;
1840
1816
  style: vue.StyleValue;
1841
1817
  eager: boolean;
@@ -1860,6 +1836,9 @@ declare const VSnackbar: {
1860
1836
  minHeight?: string | number | undefined;
1861
1837
  minWidth?: string | number | undefined;
1862
1838
  opacity?: string | number | undefined;
1839
+ transition?: string | boolean | (vue.TransitionProps & {
1840
+ component?: vue.Component;
1841
+ }) | null | undefined;
1863
1842
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1864
1843
  class?: any;
1865
1844
  theme?: string | undefined;
@@ -1906,7 +1885,7 @@ declare const VSnackbar: {
1906
1885
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1907
1886
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1908
1887
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1909
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
1888
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
1910
1889
  $attrs: {
1911
1890
  [x: string]: unknown;
1912
1891
  };
@@ -1932,9 +1911,6 @@ declare const VSnackbar: {
1932
1911
  absolute: boolean;
1933
1912
  location: Anchor;
1934
1913
  origin: "auto" | Anchor | "overlap";
1935
- transition: string | boolean | (vue.TransitionProps & {
1936
- component?: vue.Component;
1937
- });
1938
1914
  zIndex: string | number;
1939
1915
  style: vue.StyleValue;
1940
1916
  eager: boolean;
@@ -1960,6 +1936,9 @@ declare const VSnackbar: {
1960
1936
  minHeight?: string | number | undefined;
1961
1937
  minWidth?: string | number | undefined;
1962
1938
  opacity?: string | number | undefined;
1939
+ transition?: string | boolean | (vue.TransitionProps & {
1940
+ component?: vue.Component;
1941
+ }) | null | undefined;
1963
1942
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1964
1943
  class?: any;
1965
1944
  theme?: string | undefined;
@@ -2028,9 +2007,6 @@ declare const VSnackbar: {
2028
2007
  absolute: boolean;
2029
2008
  location: Anchor;
2030
2009
  origin: "auto" | Anchor | "overlap";
2031
- transition: string | boolean | (vue.TransitionProps & {
2032
- component?: vue.Component;
2033
- });
2034
2010
  zIndex: string | number;
2035
2011
  style: vue.StyleValue;
2036
2012
  eager: boolean;
@@ -2082,9 +2058,6 @@ declare const VSnackbar: {
2082
2058
  absolute: boolean;
2083
2059
  location: Anchor;
2084
2060
  origin: "auto" | Anchor | "overlap";
2085
- transition: string | boolean | (vue.TransitionProps & {
2086
- component?: vue.Component;
2087
- });
2088
2061
  zIndex: string | number;
2089
2062
  style: vue.StyleValue;
2090
2063
  eager: boolean;
@@ -2107,9 +2080,6 @@ declare const VSnackbar: {
2107
2080
  absolute: boolean;
2108
2081
  location: Anchor;
2109
2082
  origin: "auto" | Anchor | "overlap";
2110
- transition: string | boolean | (vue.TransitionProps & {
2111
- component?: vue.Component;
2112
- });
2113
2083
  zIndex: string | number;
2114
2084
  style: vue.StyleValue;
2115
2085
  eager: boolean;
@@ -2135,6 +2105,9 @@ declare const VSnackbar: {
2135
2105
  minHeight?: string | number | undefined;
2136
2106
  minWidth?: string | number | undefined;
2137
2107
  opacity?: string | number | undefined;
2108
+ transition?: string | boolean | (vue.TransitionProps & {
2109
+ component?: vue.Component;
2110
+ }) | null | undefined;
2138
2111
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
2139
2112
  class?: any;
2140
2113
  theme?: string | undefined;
@@ -2184,7 +2157,7 @@ declare const VSnackbar: {
2184
2157
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2185
2158
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2186
2159
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2187
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
2160
+ }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
2188
2161
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2189
2162
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2190
2163
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2193,7 +2166,7 @@ declare const VSnackbar: {
2193
2166
  globalTop: Readonly<Ref<boolean, boolean>>;
2194
2167
  localTop: Readonly<Ref<boolean, boolean>>;
2195
2168
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2196
- }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
2169
+ }> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
2197
2170
  _allExposed: {
2198
2171
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2199
2172
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2213,7 +2186,7 @@ declare const VSnackbar: {
2213
2186
  origin: "auto" | Anchor | "overlap";
2214
2187
  transition: string | boolean | (vue.TransitionProps & {
2215
2188
  component?: vue.Component;
2216
- });
2189
+ }) | null;
2217
2190
  zIndex: string | number;
2218
2191
  style: vue.StyleValue;
2219
2192
  eager: boolean;
@@ -2260,19 +2233,13 @@ declare const VSnackbar: {
2260
2233
  minHeight: (StringConstructor | NumberConstructor)[];
2261
2234
  minWidth: (StringConstructor | NumberConstructor)[];
2262
2235
  opacity: (StringConstructor | NumberConstructor)[];
2263
- transition: Omit<{
2236
+ transition: {
2264
2237
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
2265
2238
  component?: vue.Component;
2266
- })>;
2267
- default: string;
2268
- validator: (val: unknown) => boolean;
2269
- }, "type" | "default"> & {
2270
- type: vue.PropType<string | boolean | (vue.TransitionProps & {
2271
- component?: vue.Component;
2272
- })>;
2239
+ }) | null>;
2273
2240
  default: NonNullable<string | boolean | (vue.TransitionProps & {
2274
2241
  component?: vue.Component;
2275
- })>;
2242
+ }) | null>;
2276
2243
  };
2277
2244
  zIndex: {
2278
2245
  type: (StringConstructor | NumberConstructor)[];
@@ -2359,19 +2326,13 @@ declare const VSnackbar: {
2359
2326
  minHeight: (StringConstructor | NumberConstructor)[];
2360
2327
  minWidth: (StringConstructor | NumberConstructor)[];
2361
2328
  opacity: (StringConstructor | NumberConstructor)[];
2362
- transition: Omit<{
2363
- type: vue.PropType<string | boolean | (vue.TransitionProps & {
2364
- component?: vue.Component;
2365
- })>;
2366
- default: string;
2367
- validator: (val: unknown) => boolean;
2368
- }, "type" | "default"> & {
2329
+ transition: {
2369
2330
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
2370
2331
  component?: vue.Component;
2371
- })>;
2332
+ }) | null>;
2372
2333
  default: NonNullable<string | boolean | (vue.TransitionProps & {
2373
2334
  component?: vue.Component;
2374
- })>;
2335
+ }) | null>;
2375
2336
  };
2376
2337
  zIndex: {
2377
2338
  type: (StringConstructor | NumberConstructor)[];
@@ -2576,41 +2537,42 @@ declare module 'vue' {
2576
2537
  $children?: VNodeChild
2577
2538
  }
2578
2539
  export interface GlobalComponents {
2540
+ VApp: typeof import('vuetify/components')['VApp']
2579
2541
  VAppBar: typeof import('vuetify/components')['VAppBar']
2580
2542
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2581
2543
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2582
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2583
- VApp: typeof import('vuetify/components')['VApp']
2584
2544
  VAlert: typeof import('vuetify/components')['VAlert']
2585
2545
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2586
- VBadge: typeof import('vuetify/components')['VBadge']
2546
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2547
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2587
2548
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2549
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2550
+ VBadge: typeof import('vuetify/components')['VBadge']
2588
2551
  VBanner: typeof import('vuetify/components')['VBanner']
2589
2552
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2590
2553
  VBannerText: typeof import('vuetify/components')['VBannerText']
2591
2554
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2592
2555
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2593
2556
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2594
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2557
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2558
+ VBtn: typeof import('vuetify/components')['VBtn']
2595
2559
  VCard: typeof import('vuetify/components')['VCard']
2596
2560
  VCardActions: typeof import('vuetify/components')['VCardActions']
2597
2561
  VCardItem: typeof import('vuetify/components')['VCardItem']
2598
2562
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2599
2563
  VCardText: typeof import('vuetify/components')['VCardText']
2600
2564
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2565
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2566
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2601
2567
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2602
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2603
- VBtn: typeof import('vuetify/components')['VBtn']
2604
2568
  VCarousel: typeof import('vuetify/components')['VCarousel']
2605
2569
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2606
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2607
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2570
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2571
+ VCounter: typeof import('vuetify/components')['VCounter']
2572
+ VCode: typeof import('vuetify/components')['VCode']
2573
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2608
2574
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
2609
2575
  VChip: typeof import('vuetify/components')['VChip']
2610
- VCombobox: typeof import('vuetify/components')['VCombobox']
2611
- VCode: typeof import('vuetify/components')['VCode']
2612
- VCounter: typeof import('vuetify/components')['VCounter']
2613
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2614
2576
  VDataTable: typeof import('vuetify/components')['VDataTable']
2615
2577
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2616
2578
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2618,33 +2580,35 @@ declare module 'vue' {
2618
2580
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2619
2581
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2620
2582
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2621
- VDivider: typeof import('vuetify/components')['VDivider']
2622
2583
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2623
2584
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2624
2585
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2625
2586
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2626
2587
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2627
2588
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2589
+ VDivider: typeof import('vuetify/components')['VDivider']
2628
2590
  VDialog: typeof import('vuetify/components')['VDialog']
2629
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2630
2591
  VFab: typeof import('vuetify/components')['VFab']
2631
2592
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2632
2593
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2633
2594
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2634
2595
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2635
- VFooter: typeof import('vuetify/components')['VFooter']
2636
2596
  VField: typeof import('vuetify/components')['VField']
2637
2597
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2638
2598
  VFileInput: typeof import('vuetify/components')['VFileInput']
2599
+ VFooter: typeof import('vuetify/components')['VFooter']
2600
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2639
2601
  VIcon: typeof import('vuetify/components')['VIcon']
2640
2602
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2641
2603
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2642
2604
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2643
2605
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2644
2606
  VImg: typeof import('vuetify/components')['VImg']
2645
- VInput: typeof import('vuetify/components')['VInput']
2646
- VKbd: typeof import('vuetify/components')['VKbd']
2647
2607
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2608
+ VInput: typeof import('vuetify/components')['VInput']
2609
+ VLabel: typeof import('vuetify/components')['VLabel']
2610
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
2611
+ VItem: typeof import('vuetify/components')['VItem']
2648
2612
  VList: typeof import('vuetify/components')['VList']
2649
2613
  VListGroup: typeof import('vuetify/components')['VListGroup']
2650
2614
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2654,56 +2618,53 @@ declare module 'vue' {
2654
2618
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2655
2619
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2656
2620
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2657
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
2658
- VItem: typeof import('vuetify/components')['VItem']
2659
- VLabel: typeof import('vuetify/components')['VLabel']
2621
+ VKbd: typeof import('vuetify/components')['VKbd']
2622
+ VMain: typeof import('vuetify/components')['VMain']
2660
2623
  VMenu: typeof import('vuetify/components')['VMenu']
2661
2624
  VMessages: typeof import('vuetify/components')['VMessages']
2662
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2663
- VMain: typeof import('vuetify/components')['VMain']
2625
+ VOverlay: typeof import('vuetify/components')['VOverlay']
2626
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2664
2627
  VPagination: typeof import('vuetify/components')['VPagination']
2665
2628
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
2666
- VOverlay: typeof import('vuetify/components')['VOverlay']
2667
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2629
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2668
2630
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2631
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2669
2632
  VRating: typeof import('vuetify/components')['VRating']
2670
- VSelect: typeof import('vuetify/components')['VSelect']
2671
2633
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2672
2634
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2673
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2674
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2635
+ VSelect: typeof import('vuetify/components')['VSelect']
2636
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2675
2637
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2676
2638
  VSheet: typeof import('vuetify/components')['VSheet']
2677
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2678
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2679
2639
  VSlider: typeof import('vuetify/components')['VSlider']
2680
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2681
- VSwitch: typeof import('vuetify/components')['VSwitch']
2640
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2641
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2642
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2682
2643
  VStepper: typeof import('vuetify/components')['VStepper']
2683
2644
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2684
2645
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2685
2646
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2686
2647
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2687
2648
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2649
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2650
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2688
2651
  VTable: typeof import('vuetify/components')['VTable']
2689
2652
  VTab: typeof import('vuetify/components')['VTab']
2690
2653
  VTabs: typeof import('vuetify/components')['VTabs']
2691
2654
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2692
2655
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2693
2656
  VTextarea: typeof import('vuetify/components')['VTextarea']
2694
- VTooltip: typeof import('vuetify/components')['VTooltip']
2695
2657
  VTextField: typeof import('vuetify/components')['VTextField']
2658
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2659
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2660
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2696
2661
  VToolbar: typeof import('vuetify/components')['VToolbar']
2697
2662
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2698
2663
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2699
- VTimeline: typeof import('vuetify/components')['VTimeline']
2700
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2701
2664
  VWindow: typeof import('vuetify/components')['VWindow']
2702
2665
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2703
- VAvatar: typeof import('vuetify/components')['VAvatar']
2704
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2705
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
2706
2666
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2667
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
2707
2668
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2708
2669
  VForm: typeof import('vuetify/components')['VForm']
2709
2670
  VContainer: typeof import('vuetify/components')['VContainer']
@@ -2715,8 +2676,8 @@ declare module 'vue' {
2715
2676
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2716
2677
  VLazy: typeof import('vuetify/components')['VLazy']
2717
2678
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2718
- VParallax: typeof import('vuetify/components')['VParallax']
2719
2679
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2680
+ VParallax: typeof import('vuetify/components')['VParallax']
2720
2681
  VRadio: typeof import('vuetify/components')['VRadio']
2721
2682
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2722
2683
  VResponsive: typeof import('vuetify/components')['VResponsive']
@@ -2724,8 +2685,8 @@ declare module 'vue' {
2724
2685
  VSparkline: typeof import('vuetify/components')['VSparkline']
2725
2686
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2726
2687
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2727
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2728
2688
  VValidation: typeof import('vuetify/components')['VValidation']
2689
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2729
2690
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2730
2691
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2731
2692
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2743,26 +2704,26 @@ declare module 'vue' {
2743
2704
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2744
2705
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2745
2706
  VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2746
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2747
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2748
2707
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2749
2708
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2750
2709
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2751
2710
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2752
2711
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2753
2712
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2754
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2755
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2756
- VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2757
- VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2758
- VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2759
2713
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2760
2714
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2761
2715
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2716
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2717
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2718
+ VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2719
+ VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2720
+ VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2721
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2722
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2762
2723
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2763
2724
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2764
2725
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2765
- VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2766
2726
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2727
+ VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2767
2728
  }
2768
2729
  }