@vuetify/nightly 3.10.9-dev.2025-11-05 → 3.10.9-dev.2025-11-08

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 (62) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +1165 -1113
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +14 -1
  6. package/dist/json/web-types.json +2215 -2091
  7. package/dist/vuetify-labs.cjs +79 -38
  8. package/dist/vuetify-labs.css +5133 -5126
  9. package/dist/vuetify-labs.d.ts +398 -133
  10. package/dist/vuetify-labs.esm.js +79 -38
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +79 -38
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +79 -38
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2945 -2938
  17. package/dist/vuetify.d.ts +338 -113
  18. package/dist/vuetify.esm.js +79 -38
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +79 -38
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +23 -22
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +33 -11
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +25 -0
  27. package/lib/components/VBreadcrumbs/VBreadcrumbs.d.ts +13 -0
  28. package/lib/components/VBreadcrumbs/VBreadcrumbs.js +3 -2
  29. package/lib/components/VBreadcrumbs/VBreadcrumbs.js.map +1 -1
  30. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.d.ts +20 -0
  31. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +7 -2
  32. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
  33. package/lib/components/VCombobox/VCombobox.d.ts +33 -11
  34. package/lib/components/VDialog/VDialog.d.ts +52 -9
  35. package/lib/components/VInfiniteScroll/VInfiniteScroll.css +7 -0
  36. package/lib/components/VInfiniteScroll/VInfiniteScroll.js +3 -1
  37. package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
  38. package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -0
  39. package/lib/components/VMenu/VMenu.d.ts +52 -9
  40. package/lib/components/VOverlay/VOverlay.d.ts +25 -0
  41. package/lib/components/VOverlay/locationStrategies.d.ts +12 -0
  42. package/lib/components/VOverlay/locationStrategies.js +10 -7
  43. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  44. package/lib/components/VSelect/VSelect.d.ts +51 -17
  45. package/lib/components/VSnackbar/VSnackbar.d.ts +27 -9
  46. package/lib/components/VSnackbar/VSnackbar.js +1 -1
  47. package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
  48. package/lib/components/VSpeedDial/VSpeedDial.d.ts +25 -0
  49. package/lib/components/VTabs/VTab.d.ts +20 -0
  50. package/lib/components/VTabs/VTab.js +46 -17
  51. package/lib/components/VTabs/VTab.js.map +1 -1
  52. package/lib/components/VTabs/VTabs.d.ts +20 -0
  53. package/lib/components/VTabs/VTabs.js +9 -7
  54. package/lib/components/VTabs/VTabs.js.map +1 -1
  55. package/lib/components/VTooltip/VTooltip.d.ts +52 -9
  56. package/lib/entry-bundler.js +1 -1
  57. package/lib/framework.d.ts +90 -71
  58. package/lib/framework.js +1 -1
  59. package/lib/labs/VVideo/VVideo.d.ts +63 -21
  60. package/lib/labs/VVideo/VVideoControls.d.ts +30 -10
  61. package/lib/labs/VVideo/VVideoVolume.d.ts +30 -10
  62. package/package.json +1 -1
@@ -719,6 +719,7 @@ interface StrategyProps$1 {
719
719
  origin: Anchor | 'auto' | 'overlap';
720
720
  offset?: number | string | number[];
721
721
  stickToTarget?: boolean;
722
+ viewportMargin?: number | string;
722
723
  maxHeight?: number | string;
723
724
  maxWidth?: number | string;
724
725
  minHeight?: number | string;
@@ -859,6 +860,7 @@ declare const VSnackbar: {
859
860
  location: Anchor;
860
861
  origin: "auto" | "overlap" | Anchor;
861
862
  stickToTarget: boolean;
863
+ viewportMargin: string | number;
862
864
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
863
865
  activatorProps: Record<string, any>;
864
866
  openOnClick: boolean;
@@ -909,6 +911,7 @@ declare const VSnackbar: {
909
911
  origin: "auto" | "overlap" | Anchor;
910
912
  offset?: string | number | number[] | undefined;
911
913
  stickToTarget: boolean;
914
+ viewportMargin: string | number;
912
915
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
913
916
  height?: string | number | undefined;
914
917
  maxHeight?: string | number | undefined;
@@ -956,7 +959,7 @@ declare const VSnackbar: {
956
959
  "v-slot:default"?: false | ((arg: {
957
960
  isActive: Ref<boolean, boolean>;
958
961
  }) => vue.VNodeChild) | undefined;
959
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
962
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">;
960
963
  $attrs: {
961
964
  [x: string]: unknown;
962
965
  };
@@ -988,6 +991,7 @@ declare const VSnackbar: {
988
991
  location: Anchor;
989
992
  origin: "auto" | "overlap" | Anchor;
990
993
  stickToTarget: boolean;
994
+ viewportMargin: string | number;
991
995
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
992
996
  activatorProps: Record<string, any>;
993
997
  openOnHover: boolean;
@@ -1088,6 +1092,7 @@ declare const VSnackbar: {
1088
1092
  location: Anchor;
1089
1093
  origin: "auto" | "overlap" | Anchor;
1090
1094
  stickToTarget: boolean;
1095
+ viewportMargin: string | number;
1091
1096
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1092
1097
  activatorProps: Record<string, any>;
1093
1098
  openOnClick: boolean;
@@ -1144,6 +1149,7 @@ declare const VSnackbar: {
1144
1149
  location: Anchor;
1145
1150
  origin: "auto" | "overlap" | Anchor;
1146
1151
  stickToTarget: boolean;
1152
+ viewportMargin: string | number;
1147
1153
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1148
1154
  activatorProps: Record<string, any>;
1149
1155
  openOnClick: boolean;
@@ -1167,6 +1173,7 @@ declare const VSnackbar: {
1167
1173
  location: Anchor;
1168
1174
  origin: "auto" | "overlap" | Anchor;
1169
1175
  stickToTarget: boolean;
1176
+ viewportMargin: string | number;
1170
1177
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1171
1178
  activatorProps: Record<string, any>;
1172
1179
  openOnHover: boolean;
@@ -1245,7 +1252,7 @@ declare const VSnackbar: {
1245
1252
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1246
1253
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1247
1254
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1248
- }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex")> & vue.ShallowUnwrapRef<{
1255
+ }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{
1249
1256
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1250
1257
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1251
1258
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1255,7 +1262,7 @@ declare const VSnackbar: {
1255
1262
  globalTop: Readonly<Ref<boolean, boolean>>;
1256
1263
  localTop: Readonly<Ref<boolean, boolean>>;
1257
1264
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1258
- }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
1265
+ }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
1259
1266
  _allExposed: {
1260
1267
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1261
1268
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1414,6 +1421,7 @@ declare const VSnackbar: {
1414
1421
  location: Anchor;
1415
1422
  origin: "auto" | "overlap" | Anchor;
1416
1423
  stickToTarget: boolean;
1424
+ viewportMargin: string | number;
1417
1425
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1418
1426
  activatorProps: Record<string, any>;
1419
1427
  openOnClick: boolean;
@@ -1464,6 +1472,7 @@ declare const VSnackbar: {
1464
1472
  origin: "auto" | "overlap" | Anchor;
1465
1473
  offset?: string | number | number[] | undefined;
1466
1474
  stickToTarget: boolean;
1475
+ viewportMargin: string | number;
1467
1476
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1468
1477
  height?: string | number | undefined;
1469
1478
  maxHeight?: string | number | undefined;
@@ -1511,7 +1520,7 @@ declare const VSnackbar: {
1511
1520
  "v-slot:default"?: false | ((arg: {
1512
1521
  isActive: Ref<boolean, boolean>;
1513
1522
  }) => vue.VNodeChild) | undefined;
1514
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
1523
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">;
1515
1524
  $attrs: {
1516
1525
  [x: string]: unknown;
1517
1526
  };
@@ -1543,6 +1552,7 @@ declare const VSnackbar: {
1543
1552
  location: Anchor;
1544
1553
  origin: "auto" | "overlap" | Anchor;
1545
1554
  stickToTarget: boolean;
1555
+ viewportMargin: string | number;
1546
1556
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1547
1557
  activatorProps: Record<string, any>;
1548
1558
  openOnHover: boolean;
@@ -1643,6 +1653,7 @@ declare const VSnackbar: {
1643
1653
  location: Anchor;
1644
1654
  origin: "auto" | "overlap" | Anchor;
1645
1655
  stickToTarget: boolean;
1656
+ viewportMargin: string | number;
1646
1657
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1647
1658
  activatorProps: Record<string, any>;
1648
1659
  openOnClick: boolean;
@@ -1699,6 +1710,7 @@ declare const VSnackbar: {
1699
1710
  location: Anchor;
1700
1711
  origin: "auto" | "overlap" | Anchor;
1701
1712
  stickToTarget: boolean;
1713
+ viewportMargin: string | number;
1702
1714
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1703
1715
  activatorProps: Record<string, any>;
1704
1716
  openOnClick: boolean;
@@ -1722,6 +1734,7 @@ declare const VSnackbar: {
1722
1734
  location: Anchor;
1723
1735
  origin: "auto" | "overlap" | Anchor;
1724
1736
  stickToTarget: boolean;
1737
+ viewportMargin: string | number;
1725
1738
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1726
1739
  activatorProps: Record<string, any>;
1727
1740
  openOnHover: boolean;
@@ -1800,7 +1813,7 @@ declare const VSnackbar: {
1800
1813
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1801
1814
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1802
1815
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1803
- }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex")> & vue.ShallowUnwrapRef<{
1816
+ }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{
1804
1817
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1805
1818
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1806
1819
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1810,7 +1823,7 @@ declare const VSnackbar: {
1810
1823
  globalTop: Readonly<Ref<boolean, boolean>>;
1811
1824
  localTop: Readonly<Ref<boolean, boolean>>;
1812
1825
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1813
- }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
1826
+ }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
1814
1827
  _allExposed: {
1815
1828
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1816
1829
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1946,6 +1959,7 @@ declare const VSnackbar: {
1946
1959
  location: Anchor;
1947
1960
  origin: "auto" | "overlap" | Anchor;
1948
1961
  stickToTarget: boolean;
1962
+ viewportMargin: string | number;
1949
1963
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1950
1964
  activatorProps: Record<string, any>;
1951
1965
  openOnClick: boolean;
@@ -1996,6 +2010,7 @@ declare const VSnackbar: {
1996
2010
  origin: "auto" | "overlap" | Anchor;
1997
2011
  offset?: string | number | number[] | undefined;
1998
2012
  stickToTarget: boolean;
2013
+ viewportMargin: string | number;
1999
2014
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2000
2015
  height?: string | number | undefined;
2001
2016
  maxHeight?: string | number | undefined;
@@ -2043,7 +2058,7 @@ declare const VSnackbar: {
2043
2058
  "v-slot:default"?: false | ((arg: {
2044
2059
  isActive: Ref<boolean, boolean>;
2045
2060
  }) => vue.VNodeChild) | undefined;
2046
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
2061
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">;
2047
2062
  $attrs: {
2048
2063
  [x: string]: unknown;
2049
2064
  };
@@ -2075,6 +2090,7 @@ declare const VSnackbar: {
2075
2090
  location: Anchor;
2076
2091
  origin: "auto" | "overlap" | Anchor;
2077
2092
  stickToTarget: boolean;
2093
+ viewportMargin: string | number;
2078
2094
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2079
2095
  activatorProps: Record<string, any>;
2080
2096
  openOnHover: boolean;
@@ -2175,6 +2191,7 @@ declare const VSnackbar: {
2175
2191
  location: Anchor;
2176
2192
  origin: "auto" | "overlap" | Anchor;
2177
2193
  stickToTarget: boolean;
2194
+ viewportMargin: string | number;
2178
2195
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2179
2196
  activatorProps: Record<string, any>;
2180
2197
  openOnClick: boolean;
@@ -2231,6 +2248,7 @@ declare const VSnackbar: {
2231
2248
  location: Anchor;
2232
2249
  origin: "auto" | "overlap" | Anchor;
2233
2250
  stickToTarget: boolean;
2251
+ viewportMargin: string | number;
2234
2252
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2235
2253
  activatorProps: Record<string, any>;
2236
2254
  openOnClick: boolean;
@@ -2254,6 +2272,7 @@ declare const VSnackbar: {
2254
2272
  location: Anchor;
2255
2273
  origin: "auto" | "overlap" | Anchor;
2256
2274
  stickToTarget: boolean;
2275
+ viewportMargin: string | number;
2257
2276
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2258
2277
  activatorProps: Record<string, any>;
2259
2278
  openOnHover: boolean;
@@ -2332,7 +2351,7 @@ declare const VSnackbar: {
2332
2351
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2333
2352
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2334
2353
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2335
- }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex")> & vue.ShallowUnwrapRef<{
2354
+ }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{
2336
2355
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2337
2356
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2338
2357
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2342,7 +2361,7 @@ declare const VSnackbar: {
2342
2361
  globalTop: Readonly<Ref<boolean, boolean>>;
2343
2362
  localTop: Readonly<Ref<boolean, boolean>>;
2344
2363
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2345
- }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
2364
+ }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & {
2346
2365
  _allExposed: {
2347
2366
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2348
2367
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2722,41 +2741,49 @@ declare module 'vue' {
2722
2741
  $children?: VNodeChild
2723
2742
  }
2724
2743
  export interface GlobalComponents {
2725
- VAlert: typeof import('vuetify/components')['VAlert']
2726
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2744
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2745
+ VApp: typeof import('vuetify/components')['VApp']
2727
2746
  VAppBar: typeof import('vuetify/components')['VAppBar']
2728
2747
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2729
2748
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2730
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2731
- VApp: typeof import('vuetify/components')['VApp']
2732
2749
  VBadge: typeof import('vuetify/components')['VBadge']
2750
+ VAlert: typeof import('vuetify/components')['VAlert']
2751
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2752
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2733
2753
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2734
2754
  VBanner: typeof import('vuetify/components')['VBanner']
2735
2755
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2736
2756
  VBannerText: typeof import('vuetify/components')['VBannerText']
2737
- VAvatar: typeof import('vuetify/components')['VAvatar']
2738
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2757
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2739
2758
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2740
2759
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2741
2760
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2742
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2743
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2744
- VBtn: typeof import('vuetify/components')['VBtn']
2761
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2745
2762
  VCard: typeof import('vuetify/components')['VCard']
2746
2763
  VCardActions: typeof import('vuetify/components')['VCardActions']
2747
2764
  VCardItem: typeof import('vuetify/components')['VCardItem']
2748
2765
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2749
2766
  VCardText: typeof import('vuetify/components')['VCardText']
2750
2767
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2751
- VCode: typeof import('vuetify/components')['VCode']
2768
+ VBtn: typeof import('vuetify/components')['VBtn']
2769
+ VChip: typeof import('vuetify/components')['VChip']
2770
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2752
2771
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2753
2772
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2754
- VChip: typeof import('vuetify/components')['VChip']
2755
2773
  VCarousel: typeof import('vuetify/components')['VCarousel']
2756
2774
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2757
2775
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
2776
+ VCode: typeof import('vuetify/components')['VCode']
2758
2777
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
2759
2778
  VCombobox: typeof import('vuetify/components')['VCombobox']
2779
+ VFab: typeof import('vuetify/components')['VFab']
2780
+ VCounter: typeof import('vuetify/components')['VCounter']
2781
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
2782
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2783
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2784
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2785
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2786
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2760
2787
  VDataTable: typeof import('vuetify/components')['VDataTable']
2761
2788
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2762
2789
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2765,35 +2792,29 @@ declare module 'vue' {
2765
2792
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2766
2793
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2767
2794
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2768
- VCounter: typeof import('vuetify/components')['VCounter']
2769
- VFab: typeof import('vuetify/components')['VFab']
2770
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
2771
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2772
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2773
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2774
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2775
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2776
- VDialog: typeof import('vuetify/components')['VDialog']
2777
2795
  VDivider: typeof import('vuetify/components')['VDivider']
2796
+ VField: typeof import('vuetify/components')['VField']
2797
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2798
+ VDialog: typeof import('vuetify/components')['VDialog']
2799
+ VFileInput: typeof import('vuetify/components')['VFileInput']
2778
2800
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2779
2801
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2780
2802
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2781
2803
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2782
- VFileInput: typeof import('vuetify/components')['VFileInput']
2783
2804
  VFooter: typeof import('vuetify/components')['VFooter']
2784
- VField: typeof import('vuetify/components')['VField']
2785
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2805
+ VImg: typeof import('vuetify/components')['VImg']
2806
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
2807
+ VItem: typeof import('vuetify/components')['VItem']
2808
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2786
2809
  VIcon: typeof import('vuetify/components')['VIcon']
2787
2810
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2788
2811
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2789
2812
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2790
2813
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2791
- VImg: typeof import('vuetify/components')['VImg']
2792
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2793
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
2794
- VItem: typeof import('vuetify/components')['VItem']
2795
- VKbd: typeof import('vuetify/components')['VKbd']
2796
2814
  VInput: typeof import('vuetify/components')['VInput']
2815
+ VLabel: typeof import('vuetify/components')['VLabel']
2816
+ VMain: typeof import('vuetify/components')['VMain']
2817
+ VKbd: typeof import('vuetify/components')['VKbd']
2797
2818
  VList: typeof import('vuetify/components')['VList']
2798
2819
  VListGroup: typeof import('vuetify/components')['VListGroup']
2799
2820
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2803,29 +2824,30 @@ declare module 'vue' {
2803
2824
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2804
2825
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2805
2826
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2806
- VLabel: typeof import('vuetify/components')['VLabel']
2807
- VMain: typeof import('vuetify/components')['VMain']
2827
+ VMessages: typeof import('vuetify/components')['VMessages']
2808
2828
  VMenu: typeof import('vuetify/components')['VMenu']
2809
- VOverlay: typeof import('vuetify/components')['VOverlay']
2810
2829
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2811
- VMessages: typeof import('vuetify/components')['VMessages']
2830
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2812
2831
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2813
2832
  VPagination: typeof import('vuetify/components')['VPagination']
2814
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2815
2833
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2816
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2817
- VSelect: typeof import('vuetify/components')['VSelect']
2834
+ VOverlay: typeof import('vuetify/components')['VOverlay']
2818
2835
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2819
- VSheet: typeof import('vuetify/components')['VSheet']
2820
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2821
2836
  VRating: typeof import('vuetify/components')['VRating']
2837
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2838
+ VSheet: typeof import('vuetify/components')['VSheet']
2822
2839
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2840
+ VSelect: typeof import('vuetify/components')['VSelect']
2841
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2842
+ VSlider: typeof import('vuetify/components')['VSlider']
2823
2843
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2824
2844
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2825
2845
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2826
2846
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
2827
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2828
- VSlider: typeof import('vuetify/components')['VSlider']
2847
+ VTab: typeof import('vuetify/components')['VTab']
2848
+ VTabs: typeof import('vuetify/components')['VTabs']
2849
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2850
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2829
2851
  VStepper: typeof import('vuetify/components')['VStepper']
2830
2852
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2831
2853
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
@@ -2833,27 +2855,24 @@ declare module 'vue' {
2833
2855
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2834
2856
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2835
2857
  VSwitch: typeof import('vuetify/components')['VSwitch']
2836
- VTab: typeof import('vuetify/components')['VTab']
2837
- VTabs: typeof import('vuetify/components')['VTabs']
2838
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2839
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2858
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2859
+ VTimePicker: typeof import('vuetify/components')['VTimePicker']
2860
+ VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2861
+ VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2840
2862
  VTable: typeof import('vuetify/components')['VTable']
2841
2863
  VTextarea: typeof import('vuetify/components')['VTextarea']
2842
2864
  VTextField: typeof import('vuetify/components')['VTextField']
2843
2865
  VTooltip: typeof import('vuetify/components')['VTooltip']
2844
- VTimePicker: typeof import('vuetify/components')['VTimePicker']
2845
- VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2846
- VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2866
+ VWindow: typeof import('vuetify/components')['VWindow']
2867
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
2847
2868
  VTimeline: typeof import('vuetify/components')['VTimeline']
2848
2869
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2849
- VTreeview: typeof import('vuetify/components')['VTreeview']
2850
- VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2851
- VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2852
2870
  VToolbar: typeof import('vuetify/components')['VToolbar']
2853
2871
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2854
2872
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2855
- VWindow: typeof import('vuetify/components')['VWindow']
2856
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
2873
+ VTreeview: typeof import('vuetify/components')['VTreeview']
2874
+ VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2875
+ VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2857
2876
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2858
2877
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2859
2878
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
@@ -2863,21 +2882,20 @@ declare module 'vue' {
2863
2882
  VRow: typeof import('vuetify/components')['VRow']
2864
2883
  VSpacer: typeof import('vuetify/components')['VSpacer']
2865
2884
  VHover: typeof import('vuetify/components')['VHover']
2866
- VLazy: typeof import('vuetify/components')['VLazy']
2867
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2868
2885
  VLayout: typeof import('vuetify/components')['VLayout']
2869
2886
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2887
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2888
+ VLazy: typeof import('vuetify/components')['VLazy']
2870
2889
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2871
2890
  VParallax: typeof import('vuetify/components')['VParallax']
2872
2891
  VRadio: typeof import('vuetify/components')['VRadio']
2873
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2874
2892
  VResponsive: typeof import('vuetify/components')['VResponsive']
2875
- VSparkline: typeof import('vuetify/components')['VSparkline']
2876
2893
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2894
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2877
2895
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2878
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2896
+ VSparkline: typeof import('vuetify/components')['VSparkline']
2879
2897
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2880
- VValidation: typeof import('vuetify/components')['VValidation']
2898
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2881
2899
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2882
2900
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2883
2901
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2894,23 +2912,24 @@ declare module 'vue' {
2894
2912
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2895
2913
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2896
2914
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2897
- VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2915
+ VValidation: typeof import('vuetify/components')['VValidation']
2898
2916
  VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2899
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2917
+ VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2900
2918
  VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2901
2919
  VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2920
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2902
2921
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2903
2922
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2904
2923
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2905
2924
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2906
2925
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2907
2926
  VHotkey: typeof import('vuetify/labs/components')['VHotkey']
2908
- VVideo: typeof import('vuetify/labs/components')['VVideo']
2909
- VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
2910
- VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
2911
2927
  VPie: typeof import('vuetify/labs/components')['VPie']
2912
2928
  VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
2913
2929
  VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
2930
+ VVideo: typeof import('vuetify/labs/components')['VVideo']
2931
+ VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
2932
+ VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
2914
2933
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2915
2934
  VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2916
2935
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
package/lib/framework.js CHANGED
@@ -110,7 +110,7 @@ export function createVuetify() {
110
110
  };
111
111
  });
112
112
  }
113
- export const version = "3.10.9-dev.2025-11-05";
113
+ export const version = "3.10.9-dev.2025-11-08";
114
114
  createVuetify.version = version;
115
115
 
116
116
  // Vue's inject() can only be used in setup