@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
@@ -177,6 +177,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
177
177
  location: import("../../util/index.js").Anchor | undefined;
178
178
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
179
179
  stickToTarget: boolean;
180
+ viewportMargin: string | number;
180
181
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
181
182
  closeDelay: string | number;
182
183
  openDelay: string | number;
@@ -297,6 +298,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
297
298
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
298
299
  offset?: string | number | number[] | undefined;
299
300
  stickToTarget: boolean;
301
+ viewportMargin: string | number;
300
302
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
301
303
  height?: string | number | undefined;
302
304
  maxHeight?: string | number | undefined;
@@ -406,7 +408,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
406
408
  "v-slot:default"?: false | ((arg: {
407
409
  isActive: Ref<boolean, boolean>;
408
410
  }) => import("vue").VNodeChild) | undefined;
409
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
411
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
410
412
  sliderProps?: Pick<Partial<{
411
413
  style: import("vue").StyleValue;
412
414
  focused: boolean;
@@ -572,6 +574,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
572
574
  location: import("../../util/index.js").Anchor | undefined;
573
575
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
574
576
  stickToTarget: boolean;
577
+ viewportMargin: string | number;
575
578
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
576
579
  closeDelay: string | number;
577
580
  openDelay: string | number;
@@ -692,6 +695,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
692
695
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
693
696
  offset?: string | number | number[] | undefined;
694
697
  stickToTarget: boolean;
698
+ viewportMargin: string | number;
695
699
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
696
700
  height?: string | number | undefined;
697
701
  maxHeight?: string | number | undefined;
@@ -801,7 +805,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
801
805
  "v-slot:default"?: false | ((arg: {
802
806
  isActive: Ref<boolean, boolean>;
803
807
  }) => import("vue").VNodeChild) | undefined;
804
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
808
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
805
809
  sliderProps?: Pick<Partial<{
806
810
  style: import("vue").StyleValue;
807
811
  focused: boolean;
@@ -966,6 +970,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
966
970
  location: import("../../util/index.js").Anchor | undefined;
967
971
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
968
972
  stickToTarget: boolean;
973
+ viewportMargin: string | number;
969
974
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
970
975
  closeDelay: string | number;
971
976
  openDelay: string | number;
@@ -1086,6 +1091,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1086
1091
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1087
1092
  offset?: string | number | number[] | undefined;
1088
1093
  stickToTarget: boolean;
1094
+ viewportMargin: string | number;
1089
1095
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1090
1096
  height?: string | number | undefined;
1091
1097
  maxHeight?: string | number | undefined;
@@ -1195,7 +1201,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1195
1201
  "v-slot:default"?: false | ((arg: {
1196
1202
  isActive: Ref<boolean, boolean>;
1197
1203
  }) => import("vue").VNodeChild) | undefined;
1198
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
1204
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
1199
1205
  sliderProps?: Pick<Partial<{
1200
1206
  style: import("vue").StyleValue;
1201
1207
  focused: boolean;
@@ -1361,6 +1367,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1361
1367
  location: import("../../util/index.js").Anchor | undefined;
1362
1368
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1363
1369
  stickToTarget: boolean;
1370
+ viewportMargin: string | number;
1364
1371
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1365
1372
  closeDelay: string | number;
1366
1373
  openDelay: string | number;
@@ -1481,6 +1488,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1481
1488
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1482
1489
  offset?: string | number | number[] | undefined;
1483
1490
  stickToTarget: boolean;
1491
+ viewportMargin: string | number;
1484
1492
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1485
1493
  height?: string | number | undefined;
1486
1494
  maxHeight?: string | number | undefined;
@@ -1590,7 +1598,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1590
1598
  "v-slot:default"?: false | ((arg: {
1591
1599
  isActive: Ref<boolean, boolean>;
1592
1600
  }) => import("vue").VNodeChild) | undefined;
1593
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
1601
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
1594
1602
  sliderProps?: Pick<Partial<{
1595
1603
  style: import("vue").StyleValue;
1596
1604
  focused: boolean;
@@ -1755,6 +1763,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1755
1763
  location: import("../../util/index.js").Anchor | undefined;
1756
1764
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1757
1765
  stickToTarget: boolean;
1766
+ viewportMargin: string | number;
1758
1767
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1759
1768
  closeDelay: string | number;
1760
1769
  openDelay: string | number;
@@ -1875,6 +1884,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1875
1884
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1876
1885
  offset?: string | number | number[] | undefined;
1877
1886
  stickToTarget: boolean;
1887
+ viewportMargin: string | number;
1878
1888
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1879
1889
  height?: string | number | undefined;
1880
1890
  maxHeight?: string | number | undefined;
@@ -1984,7 +1994,7 @@ export declare const makeVVideoControlsProps: <Defaults extends {
1984
1994
  "v-slot:default"?: false | ((arg: {
1985
1995
  isActive: Ref<boolean, boolean>;
1986
1996
  }) => import("vue").VNodeChild) | undefined;
1987
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
1997
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
1988
1998
  sliderProps?: Pick<Partial<{
1989
1999
  style: import("vue").StyleValue;
1990
2000
  focused: boolean;
@@ -2174,6 +2184,7 @@ export declare const VVideoControls: {
2174
2184
  location: import("../../util/index.js").Anchor | undefined;
2175
2185
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2176
2186
  stickToTarget: boolean;
2187
+ viewportMargin: string | number;
2177
2188
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2178
2189
  closeDelay: string | number;
2179
2190
  openDelay: string | number;
@@ -2294,6 +2305,7 @@ export declare const VVideoControls: {
2294
2305
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2295
2306
  offset?: string | number | number[] | undefined;
2296
2307
  stickToTarget: boolean;
2308
+ viewportMargin: string | number;
2297
2309
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2298
2310
  height?: string | number | undefined;
2299
2311
  maxHeight?: string | number | undefined;
@@ -2403,7 +2415,7 @@ export declare const VVideoControls: {
2403
2415
  "v-slot:default"?: false | ((arg: {
2404
2416
  isActive: Ref<boolean, boolean>;
2405
2417
  }) => import("vue").VNodeChild) | undefined;
2406
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
2418
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
2407
2419
  sliderProps?: Pick<Partial<{
2408
2420
  style: import("vue").StyleValue;
2409
2421
  focused: boolean;
@@ -2652,6 +2664,7 @@ export declare const VVideoControls: {
2652
2664
  location: import("../../util/index.js").Anchor | undefined;
2653
2665
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2654
2666
  stickToTarget: boolean;
2667
+ viewportMargin: string | number;
2655
2668
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2656
2669
  closeDelay: string | number;
2657
2670
  openDelay: string | number;
@@ -2772,6 +2785,7 @@ export declare const VVideoControls: {
2772
2785
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2773
2786
  offset?: string | number | number[] | undefined;
2774
2787
  stickToTarget: boolean;
2788
+ viewportMargin: string | number;
2775
2789
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2776
2790
  height?: string | number | undefined;
2777
2791
  maxHeight?: string | number | undefined;
@@ -2881,7 +2895,7 @@ export declare const VVideoControls: {
2881
2895
  "v-slot:default"?: false | ((arg: {
2882
2896
  isActive: Ref<boolean, boolean>;
2883
2897
  }) => import("vue").VNodeChild) | undefined;
2884
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
2898
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
2885
2899
  sliderProps?: Pick<Partial<{
2886
2900
  style: import("vue").StyleValue;
2887
2901
  focused: boolean;
@@ -3111,6 +3125,7 @@ export declare const VVideoControls: {
3111
3125
  location: import("../../util/index.js").Anchor | undefined;
3112
3126
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3113
3127
  stickToTarget: boolean;
3128
+ viewportMargin: string | number;
3114
3129
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3115
3130
  closeDelay: string | number;
3116
3131
  openDelay: string | number;
@@ -3231,6 +3246,7 @@ export declare const VVideoControls: {
3231
3246
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3232
3247
  offset?: string | number | number[] | undefined;
3233
3248
  stickToTarget: boolean;
3249
+ viewportMargin: string | number;
3234
3250
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3235
3251
  height?: string | number | undefined;
3236
3252
  maxHeight?: string | number | undefined;
@@ -3340,7 +3356,7 @@ export declare const VVideoControls: {
3340
3356
  "v-slot:default"?: false | ((arg: {
3341
3357
  isActive: Ref<boolean, boolean>;
3342
3358
  }) => import("vue").VNodeChild) | undefined;
3343
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
3359
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
3344
3360
  sliderProps?: Pick<Partial<{
3345
3361
  style: import("vue").StyleValue;
3346
3362
  focused: boolean;
@@ -3598,6 +3614,7 @@ export declare const VVideoControls: {
3598
3614
  location: import("../../util/index.js").Anchor | undefined;
3599
3615
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3600
3616
  stickToTarget: boolean;
3617
+ viewportMargin: string | number;
3601
3618
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3602
3619
  closeDelay: string | number;
3603
3620
  openDelay: string | number;
@@ -3718,6 +3735,7 @@ export declare const VVideoControls: {
3718
3735
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3719
3736
  offset?: string | number | number[] | undefined;
3720
3737
  stickToTarget: boolean;
3738
+ viewportMargin: string | number;
3721
3739
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3722
3740
  height?: string | number | undefined;
3723
3741
  maxHeight?: string | number | undefined;
@@ -3827,7 +3845,7 @@ export declare const VVideoControls: {
3827
3845
  "v-slot:default"?: false | ((arg: {
3828
3846
  isActive: Ref<boolean, boolean>;
3829
3847
  }) => import("vue").VNodeChild) | undefined;
3830
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
3848
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
3831
3849
  sliderProps?: Pick<Partial<{
3832
3850
  style: import("vue").StyleValue;
3833
3851
  focused: boolean;
@@ -4030,6 +4048,7 @@ export declare const VVideoControls: {
4030
4048
  location: import("../../util/index.js").Anchor | undefined;
4031
4049
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
4032
4050
  stickToTarget: boolean;
4051
+ viewportMargin: string | number;
4033
4052
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
4034
4053
  closeDelay: string | number;
4035
4054
  openDelay: string | number;
@@ -4150,6 +4169,7 @@ export declare const VVideoControls: {
4150
4169
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
4151
4170
  offset?: string | number | number[] | undefined;
4152
4171
  stickToTarget: boolean;
4172
+ viewportMargin: string | number;
4153
4173
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
4154
4174
  height?: string | number | undefined;
4155
4175
  maxHeight?: string | number | undefined;
@@ -4259,7 +4279,7 @@ export declare const VVideoControls: {
4259
4279
  "v-slot:default"?: false | ((arg: {
4260
4280
  isActive: Ref<boolean, boolean>;
4261
4281
  }) => import("vue").VNodeChild) | undefined;
4262
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
4282
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
4263
4283
  sliderProps?: Pick<Partial<{
4264
4284
  style: import("vue").StyleValue;
4265
4285
  focused: boolean;
@@ -59,6 +59,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
59
59
  location: import("../../util/index.js").Anchor | undefined;
60
60
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
61
61
  stickToTarget: boolean;
62
+ viewportMargin: string | number;
62
63
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
63
64
  closeDelay: string | number;
64
65
  openDelay: string | number;
@@ -179,6 +180,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
179
180
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
180
181
  offset?: string | number | number[] | undefined;
181
182
  stickToTarget: boolean;
183
+ viewportMargin: string | number;
182
184
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
183
185
  height?: string | number | undefined;
184
186
  maxHeight?: string | number | undefined;
@@ -288,13 +290,14 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
288
290
  "v-slot:default"?: false | ((arg: {
289
291
  isActive: import("vue").Ref<boolean, boolean>;
290
292
  }) => import("vue").VNodeChild) | undefined;
291
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">> : {
293
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">> : {
292
294
  type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
293
295
  style: import("vue").StyleValue;
294
296
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
295
297
  location: import("../../util/index.js").Anchor | undefined;
296
298
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
297
299
  stickToTarget: boolean;
300
+ viewportMargin: string | number;
298
301
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
299
302
  closeDelay: string | number;
300
303
  openDelay: string | number;
@@ -415,6 +418,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
415
418
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
416
419
  offset?: string | number | number[] | undefined;
417
420
  stickToTarget: boolean;
421
+ viewportMargin: string | number;
418
422
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
419
423
  height?: string | number | undefined;
420
424
  maxHeight?: string | number | undefined;
@@ -524,12 +528,13 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
524
528
  "v-slot:default"?: false | ((arg: {
525
529
  isActive: import("vue").Ref<boolean, boolean>;
526
530
  }) => import("vue").VNodeChild) | undefined;
527
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex"> : Defaults["menuProps"] | (Partial<{
531
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | (Partial<{
528
532
  style: import("vue").StyleValue;
529
533
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
530
534
  location: import("../../util/index.js").Anchor | undefined;
531
535
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
532
536
  stickToTarget: boolean;
537
+ viewportMargin: string | number;
533
538
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
534
539
  closeDelay: string | number;
535
540
  openDelay: string | number;
@@ -650,6 +655,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
650
655
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
651
656
  offset?: string | number | number[] | undefined;
652
657
  stickToTarget: boolean;
658
+ viewportMargin: string | number;
653
659
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
654
660
  height?: string | number | undefined;
655
661
  maxHeight?: string | number | undefined;
@@ -759,13 +765,14 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
759
765
  "v-slot:default"?: false | ((arg: {
760
766
  isActive: import("vue").Ref<boolean, boolean>;
761
767
  }) => import("vue").VNodeChild) | undefined;
762
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">)>;
768
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">)>;
763
769
  default: unknown extends Defaults["menuProps"] ? Partial<{
764
770
  style: import("vue").StyleValue;
765
771
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
766
772
  location: import("../../util/index.js").Anchor | undefined;
767
773
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
768
774
  stickToTarget: boolean;
775
+ viewportMargin: string | number;
769
776
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
770
777
  closeDelay: string | number;
771
778
  openDelay: string | number;
@@ -886,6 +893,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
886
893
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
887
894
  offset?: string | number | number[] | undefined;
888
895
  stickToTarget: boolean;
896
+ viewportMargin: string | number;
889
897
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
890
898
  height?: string | number | undefined;
891
899
  maxHeight?: string | number | undefined;
@@ -995,12 +1003,13 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
995
1003
  "v-slot:default"?: false | ((arg: {
996
1004
  isActive: import("vue").Ref<boolean, boolean>;
997
1005
  }) => import("vue").VNodeChild) | undefined;
998
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
1006
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
999
1007
  style: import("vue").StyleValue;
1000
1008
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
1001
1009
  location: import("../../util/index.js").Anchor | undefined;
1002
1010
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1003
1011
  stickToTarget: boolean;
1012
+ viewportMargin: string | number;
1004
1013
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1005
1014
  closeDelay: string | number;
1006
1015
  openDelay: string | number;
@@ -1121,6 +1130,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
1121
1130
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1122
1131
  offset?: string | number | number[] | undefined;
1123
1132
  stickToTarget: boolean;
1133
+ viewportMargin: string | number;
1124
1134
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1125
1135
  height?: string | number | undefined;
1126
1136
  maxHeight?: string | number | undefined;
@@ -1230,7 +1240,7 @@ export declare const makeVVideoVolumeProps: <Defaults extends {
1230
1240
  "v-slot:default"?: false | ((arg: {
1231
1241
  isActive: import("vue").Ref<boolean, boolean>;
1232
1242
  }) => import("vue").VNodeChild) | undefined;
1233
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
1243
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
1234
1244
  };
1235
1245
  sliderProps: unknown extends Defaults["sliderProps"] ? PropType<Pick<Partial<{
1236
1246
  style: import("vue").StyleValue;
@@ -1926,6 +1936,7 @@ export declare const VVideoVolume: {
1926
1936
  location: import("../../util/index.js").Anchor | undefined;
1927
1937
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1928
1938
  stickToTarget: boolean;
1939
+ viewportMargin: string | number;
1929
1940
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1930
1941
  closeDelay: string | number;
1931
1942
  openDelay: string | number;
@@ -2046,6 +2057,7 @@ export declare const VVideoVolume: {
2046
2057
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2047
2058
  offset?: string | number | number[] | undefined;
2048
2059
  stickToTarget: boolean;
2060
+ viewportMargin: string | number;
2049
2061
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2050
2062
  height?: string | number | undefined;
2051
2063
  maxHeight?: string | number | undefined;
@@ -2155,7 +2167,7 @@ export declare const VVideoVolume: {
2155
2167
  "v-slot:default"?: false | ((arg: {
2156
2168
  isActive: import("vue").Ref<boolean, boolean>;
2157
2169
  }) => import("vue").VNodeChild) | undefined;
2158
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
2170
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
2159
2171
  sliderProps?: Pick<Partial<{
2160
2172
  style: import("vue").StyleValue;
2161
2173
  focused: boolean;
@@ -2337,6 +2349,7 @@ export declare const VVideoVolume: {
2337
2349
  location: import("../../util/index.js").Anchor | undefined;
2338
2350
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2339
2351
  stickToTarget: boolean;
2352
+ viewportMargin: string | number;
2340
2353
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2341
2354
  closeDelay: string | number;
2342
2355
  openDelay: string | number;
@@ -2457,6 +2470,7 @@ export declare const VVideoVolume: {
2457
2470
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2458
2471
  offset?: string | number | number[] | undefined;
2459
2472
  stickToTarget: boolean;
2473
+ viewportMargin: string | number;
2460
2474
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2461
2475
  height?: string | number | undefined;
2462
2476
  maxHeight?: string | number | undefined;
@@ -2566,7 +2580,7 @@ export declare const VVideoVolume: {
2566
2580
  "v-slot:default"?: false | ((arg: {
2567
2581
  isActive: import("vue").Ref<boolean, boolean>;
2568
2582
  }) => import("vue").VNodeChild) | undefined;
2569
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
2583
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
2570
2584
  sliderProps?: Pick<Partial<{
2571
2585
  style: import("vue").StyleValue;
2572
2586
  focused: boolean;
@@ -2739,6 +2753,7 @@ export declare const VVideoVolume: {
2739
2753
  location: import("../../util/index.js").Anchor | undefined;
2740
2754
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2741
2755
  stickToTarget: boolean;
2756
+ viewportMargin: string | number;
2742
2757
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2743
2758
  closeDelay: string | number;
2744
2759
  openDelay: string | number;
@@ -2859,6 +2874,7 @@ export declare const VVideoVolume: {
2859
2874
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2860
2875
  offset?: string | number | number[] | undefined;
2861
2876
  stickToTarget: boolean;
2877
+ viewportMargin: string | number;
2862
2878
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2863
2879
  height?: string | number | undefined;
2864
2880
  maxHeight?: string | number | undefined;
@@ -2968,7 +2984,7 @@ export declare const VVideoVolume: {
2968
2984
  "v-slot:default"?: false | ((arg: {
2969
2985
  isActive: import("vue").Ref<boolean, boolean>;
2970
2986
  }) => import("vue").VNodeChild) | undefined;
2971
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
2987
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
2972
2988
  sliderProps?: Pick<Partial<{
2973
2989
  style: import("vue").StyleValue;
2974
2990
  focused: boolean;
@@ -3151,6 +3167,7 @@ export declare const VVideoVolume: {
3151
3167
  location: import("../../util/index.js").Anchor | undefined;
3152
3168
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3153
3169
  stickToTarget: boolean;
3170
+ viewportMargin: string | number;
3154
3171
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3155
3172
  closeDelay: string | number;
3156
3173
  openDelay: string | number;
@@ -3271,6 +3288,7 @@ export declare const VVideoVolume: {
3271
3288
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3272
3289
  offset?: string | number | number[] | undefined;
3273
3290
  stickToTarget: boolean;
3291
+ viewportMargin: string | number;
3274
3292
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3275
3293
  height?: string | number | undefined;
3276
3294
  maxHeight?: string | number | undefined;
@@ -3380,7 +3398,7 @@ export declare const VVideoVolume: {
3380
3398
  "v-slot:default"?: false | ((arg: {
3381
3399
  isActive: import("vue").Ref<boolean, boolean>;
3382
3400
  }) => import("vue").VNodeChild) | undefined;
3383
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
3401
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
3384
3402
  sliderProps: PropType<Pick<Partial<{
3385
3403
  style: import("vue").StyleValue;
3386
3404
  focused: boolean;
@@ -3539,6 +3557,7 @@ export declare const VVideoVolume: {
3539
3557
  location: import("../../util/index.js").Anchor | undefined;
3540
3558
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3541
3559
  stickToTarget: boolean;
3560
+ viewportMargin: string | number;
3542
3561
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3543
3562
  closeDelay: string | number;
3544
3563
  openDelay: string | number;
@@ -3659,6 +3678,7 @@ export declare const VVideoVolume: {
3659
3678
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3660
3679
  offset?: string | number | number[] | undefined;
3661
3680
  stickToTarget: boolean;
3681
+ viewportMargin: string | number;
3662
3682
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3663
3683
  height?: string | number | undefined;
3664
3684
  maxHeight?: string | number | undefined;
@@ -3768,7 +3788,7 @@ export declare const VVideoVolume: {
3768
3788
  "v-slot:default"?: false | ((arg: {
3769
3789
  isActive: import("vue").Ref<boolean, boolean>;
3770
3790
  }) => import("vue").VNodeChild) | undefined;
3771
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
3791
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
3772
3792
  sliderProps: PropType<Pick<Partial<{
3773
3793
  style: import("vue").StyleValue;
3774
3794
  focused: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.10.9-dev.2025-11-05",
4
+ "version": "3.10.9-dev.2025-11-08",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"