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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/CHANGELOG.md +6 -3
  2. package/dist/json/attributes.json +3507 -3455
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +164 -164
  5. package/dist/json/tags.json +14 -1
  6. package/dist/json/web-types.json +6462 -6338
  7. package/dist/vuetify-labs.cjs +76 -37
  8. package/dist/vuetify-labs.css +4631 -4631
  9. package/dist/vuetify-labs.d.ts +394 -129
  10. package/dist/vuetify-labs.esm.js +76 -37
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +76 -37
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +76 -37
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3336 -3336
  17. package/dist/vuetify.d.ts +334 -109
  18. package/dist/vuetify.esm.js +76 -37
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +76 -37
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +22 -21
  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/VMenu/VMenu.d.ts +52 -9
  36. package/lib/components/VOverlay/VOverlay.d.ts +25 -0
  37. package/lib/components/VOverlay/locationStrategies.d.ts +12 -0
  38. package/lib/components/VOverlay/locationStrategies.js +10 -7
  39. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  40. package/lib/components/VSelect/VSelect.d.ts +51 -17
  41. package/lib/components/VSnackbar/VSnackbar.d.ts +27 -9
  42. package/lib/components/VSnackbar/VSnackbar.js +1 -1
  43. package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
  44. package/lib/components/VSpeedDial/VSpeedDial.d.ts +25 -0
  45. package/lib/components/VTabs/VTab.d.ts +20 -0
  46. package/lib/components/VTabs/VTab.js +46 -17
  47. package/lib/components/VTabs/VTab.js.map +1 -1
  48. package/lib/components/VTabs/VTabs.d.ts +20 -0
  49. package/lib/components/VTabs/VTabs.js +9 -7
  50. package/lib/components/VTabs/VTabs.js.map +1 -1
  51. package/lib/components/VTooltip/VTooltip.d.ts +52 -9
  52. package/lib/entry-bundler.js +1 -1
  53. package/lib/framework.d.ts +86 -67
  54. package/lib/framework.js +1 -1
  55. package/lib/labs/VVideo/VVideo.d.ts +63 -21
  56. package/lib/labs/VVideo/VVideoControls.d.ts +30 -10
  57. package/lib/labs/VVideo/VVideoVolume.d.ts +30 -10
  58. package/package.json +1 -1
@@ -11,6 +11,7 @@ export declare const makeVDialogProps: <Defaults extends {
11
11
  origin?: unknown;
12
12
  offset?: unknown;
13
13
  stickToTarget?: unknown;
14
+ viewportMargin?: unknown;
14
15
  scrollStrategy?: unknown;
15
16
  height?: unknown;
16
17
  maxHeight?: unknown;
@@ -110,6 +111,16 @@ export declare const makeVDialogProps: <Defaults extends {
110
111
  type: import("vue").PropType<unknown extends Defaults["stickToTarget"] ? boolean : boolean | Defaults["stickToTarget"]>;
111
112
  default: unknown extends Defaults["stickToTarget"] ? boolean : boolean | Defaults["stickToTarget"];
112
113
  };
114
+ viewportMargin: unknown extends Defaults["viewportMargin"] ? {
115
+ type: (NumberConstructor | StringConstructor)[];
116
+ default: number;
117
+ } : Omit<{
118
+ type: (NumberConstructor | StringConstructor)[];
119
+ default: number;
120
+ }, "default" | "type"> & {
121
+ type: import("vue").PropType<unknown extends Defaults["viewportMargin"] ? string | number : string | number | Defaults["viewportMargin"]>;
122
+ default: unknown extends Defaults["viewportMargin"] ? string | number : Defaults["viewportMargin"] | NonNullable<string | number>;
123
+ };
113
124
  scrollStrategy: unknown extends Defaults["scrollStrategy"] ? Omit<{
114
125
  type: import("vue").PropType<"block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction>;
115
126
  default: string;
@@ -858,6 +869,7 @@ export declare const VDialog: {
858
869
  location: import("../../util/index.js").Anchor;
859
870
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
860
871
  stickToTarget: boolean;
872
+ viewportMargin: string | number;
861
873
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
862
874
  activatorProps: Record<string, any>;
863
875
  openOnHover: boolean;
@@ -1010,6 +1022,7 @@ export declare const VDialog: {
1010
1022
  location: import("../../util/index.js").Anchor;
1011
1023
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1012
1024
  stickToTarget: boolean;
1025
+ viewportMargin: string | number;
1013
1026
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1014
1027
  activatorProps: Record<string, any>;
1015
1028
  openOnClick: boolean;
@@ -1060,6 +1073,7 @@ export declare const VDialog: {
1060
1073
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1061
1074
  offset?: string | number | number[] | undefined;
1062
1075
  stickToTarget: boolean;
1076
+ viewportMargin: string | number;
1063
1077
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1064
1078
  height?: string | number | undefined;
1065
1079
  maxHeight?: string | number | undefined;
@@ -1107,7 +1121,7 @@ export declare const VDialog: {
1107
1121
  "v-slot:default"?: false | ((arg: {
1108
1122
  isActive: import("vue").Ref<boolean, boolean>;
1109
1123
  }) => import("vue").VNodeChild) | undefined;
1110
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
1124
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("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">;
1111
1125
  $attrs: {
1112
1126
  [x: string]: unknown;
1113
1127
  };
@@ -1139,6 +1153,7 @@ export declare const VDialog: {
1139
1153
  location: import("../../util/index.js").Anchor;
1140
1154
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1141
1155
  stickToTarget: boolean;
1156
+ viewportMargin: string | number;
1142
1157
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1143
1158
  activatorProps: Record<string, any>;
1144
1159
  openOnHover: boolean;
@@ -1239,6 +1254,7 @@ export declare const VDialog: {
1239
1254
  location: import("../../util/index.js").Anchor;
1240
1255
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1241
1256
  stickToTarget: boolean;
1257
+ viewportMargin: string | number;
1242
1258
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1243
1259
  activatorProps: Record<string, any>;
1244
1260
  openOnClick: boolean;
@@ -1295,6 +1311,7 @@ export declare const VDialog: {
1295
1311
  location: import("../../util/index.js").Anchor;
1296
1312
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1297
1313
  stickToTarget: boolean;
1314
+ viewportMargin: string | number;
1298
1315
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1299
1316
  activatorProps: Record<string, any>;
1300
1317
  openOnClick: boolean;
@@ -1318,6 +1335,7 @@ export declare const VDialog: {
1318
1335
  location: import("../../util/index.js").Anchor;
1319
1336
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1320
1337
  stickToTarget: boolean;
1338
+ viewportMargin: string | number;
1321
1339
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1322
1340
  activatorProps: Record<string, any>;
1323
1341
  openOnHover: boolean;
@@ -1396,7 +1414,7 @@ export declare const VDialog: {
1396
1414
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1397
1415
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1398
1416
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1399
- }, "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")> & import("vue").ShallowUnwrapRef<{
1417
+ }, "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")> & import("vue").ShallowUnwrapRef<{
1400
1418
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
1401
1419
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
1402
1420
  target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1406,7 +1424,7 @@ export declare const VDialog: {
1406
1424
  globalTop: Readonly<import("vue").Ref<boolean, boolean>>;
1407
1425
  localTop: Readonly<import("vue").Ref<boolean, boolean>>;
1408
1426
  updateLocation: import("vue").Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1409
- }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
1427
+ }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
1410
1428
  _allExposed: {
1411
1429
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
1412
1430
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1428,6 +1446,7 @@ export declare const VDialog: {
1428
1446
  location: import("../../util/index.js").Anchor;
1429
1447
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1430
1448
  stickToTarget: boolean;
1449
+ viewportMargin: string | number;
1431
1450
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1432
1451
  activatorProps: Record<string, any>;
1433
1452
  openOnClick: boolean;
@@ -1541,6 +1560,7 @@ export declare const VDialog: {
1541
1560
  location: import("../../util/index.js").Anchor;
1542
1561
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1543
1562
  stickToTarget: boolean;
1563
+ viewportMargin: string | number;
1544
1564
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1545
1565
  activatorProps: Record<string, any>;
1546
1566
  openOnHover: boolean;
@@ -1693,6 +1713,7 @@ export declare const VDialog: {
1693
1713
  location: import("../../util/index.js").Anchor;
1694
1714
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1695
1715
  stickToTarget: boolean;
1716
+ viewportMargin: string | number;
1696
1717
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1697
1718
  activatorProps: Record<string, any>;
1698
1719
  openOnClick: boolean;
@@ -1743,6 +1764,7 @@ export declare const VDialog: {
1743
1764
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1744
1765
  offset?: string | number | number[] | undefined;
1745
1766
  stickToTarget: boolean;
1767
+ viewportMargin: string | number;
1746
1768
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1747
1769
  height?: string | number | undefined;
1748
1770
  maxHeight?: string | number | undefined;
@@ -1790,7 +1812,7 @@ export declare const VDialog: {
1790
1812
  "v-slot:default"?: false | ((arg: {
1791
1813
  isActive: import("vue").Ref<boolean, boolean>;
1792
1814
  }) => import("vue").VNodeChild) | undefined;
1793
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
1815
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("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">;
1794
1816
  $attrs: {
1795
1817
  [x: string]: unknown;
1796
1818
  };
@@ -1822,6 +1844,7 @@ export declare const VDialog: {
1822
1844
  location: import("../../util/index.js").Anchor;
1823
1845
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1824
1846
  stickToTarget: boolean;
1847
+ viewportMargin: string | number;
1825
1848
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1826
1849
  activatorProps: Record<string, any>;
1827
1850
  openOnHover: boolean;
@@ -1922,6 +1945,7 @@ export declare const VDialog: {
1922
1945
  location: import("../../util/index.js").Anchor;
1923
1946
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1924
1947
  stickToTarget: boolean;
1948
+ viewportMargin: string | number;
1925
1949
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1926
1950
  activatorProps: Record<string, any>;
1927
1951
  openOnClick: boolean;
@@ -1978,6 +2002,7 @@ export declare const VDialog: {
1978
2002
  location: import("../../util/index.js").Anchor;
1979
2003
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1980
2004
  stickToTarget: boolean;
2005
+ viewportMargin: string | number;
1981
2006
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1982
2007
  activatorProps: Record<string, any>;
1983
2008
  openOnClick: boolean;
@@ -2001,6 +2026,7 @@ export declare const VDialog: {
2001
2026
  location: import("../../util/index.js").Anchor;
2002
2027
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2003
2028
  stickToTarget: boolean;
2029
+ viewportMargin: string | number;
2004
2030
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2005
2031
  activatorProps: Record<string, any>;
2006
2032
  openOnHover: boolean;
@@ -2079,7 +2105,7 @@ export declare const VDialog: {
2079
2105
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2080
2106
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2081
2107
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2082
- }, "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")> & import("vue").ShallowUnwrapRef<{
2108
+ }, "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")> & import("vue").ShallowUnwrapRef<{
2083
2109
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2084
2110
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2085
2111
  target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2089,7 +2115,7 @@ export declare const VDialog: {
2089
2115
  globalTop: Readonly<import("vue").Ref<boolean, boolean>>;
2090
2116
  localTop: Readonly<import("vue").Ref<boolean, boolean>>;
2091
2117
  updateLocation: import("vue").Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2092
- }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
2118
+ }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
2093
2119
  _allExposed: {
2094
2120
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2095
2121
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2107,6 +2133,7 @@ export declare const VDialog: {
2107
2133
  location: import("../../util/index.js").Anchor;
2108
2134
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2109
2135
  stickToTarget: boolean;
2136
+ viewportMargin: string | number;
2110
2137
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2111
2138
  activatorProps: Record<string, any>;
2112
2139
  openOnClick: boolean;
@@ -2204,6 +2231,7 @@ export declare const VDialog: {
2204
2231
  location: import("../../util/index.js").Anchor;
2205
2232
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2206
2233
  stickToTarget: boolean;
2234
+ viewportMargin: string | number;
2207
2235
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2208
2236
  activatorProps: Record<string, any>;
2209
2237
  openOnHover: boolean;
@@ -2356,6 +2384,7 @@ export declare const VDialog: {
2356
2384
  location: import("../../util/index.js").Anchor;
2357
2385
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2358
2386
  stickToTarget: boolean;
2387
+ viewportMargin: string | number;
2359
2388
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2360
2389
  activatorProps: Record<string, any>;
2361
2390
  openOnClick: boolean;
@@ -2406,6 +2435,7 @@ export declare const VDialog: {
2406
2435
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2407
2436
  offset?: string | number | number[] | undefined;
2408
2437
  stickToTarget: boolean;
2438
+ viewportMargin: string | number;
2409
2439
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2410
2440
  height?: string | number | undefined;
2411
2441
  maxHeight?: string | number | undefined;
@@ -2453,7 +2483,7 @@ export declare const VDialog: {
2453
2483
  "v-slot:default"?: false | ((arg: {
2454
2484
  isActive: import("vue").Ref<boolean, boolean>;
2455
2485
  }) => import("vue").VNodeChild) | undefined;
2456
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "zIndex">;
2486
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("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">;
2457
2487
  $attrs: {
2458
2488
  [x: string]: unknown;
2459
2489
  };
@@ -2485,6 +2515,7 @@ export declare const VDialog: {
2485
2515
  location: import("../../util/index.js").Anchor;
2486
2516
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2487
2517
  stickToTarget: boolean;
2518
+ viewportMargin: string | number;
2488
2519
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2489
2520
  activatorProps: Record<string, any>;
2490
2521
  openOnHover: boolean;
@@ -2585,6 +2616,7 @@ export declare const VDialog: {
2585
2616
  location: import("../../util/index.js").Anchor;
2586
2617
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2587
2618
  stickToTarget: boolean;
2619
+ viewportMargin: string | number;
2588
2620
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2589
2621
  activatorProps: Record<string, any>;
2590
2622
  openOnClick: boolean;
@@ -2641,6 +2673,7 @@ export declare const VDialog: {
2641
2673
  location: import("../../util/index.js").Anchor;
2642
2674
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2643
2675
  stickToTarget: boolean;
2676
+ viewportMargin: string | number;
2644
2677
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2645
2678
  activatorProps: Record<string, any>;
2646
2679
  openOnClick: boolean;
@@ -2664,6 +2697,7 @@ export declare const VDialog: {
2664
2697
  location: import("../../util/index.js").Anchor;
2665
2698
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2666
2699
  stickToTarget: boolean;
2700
+ viewportMargin: string | number;
2667
2701
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2668
2702
  activatorProps: Record<string, any>;
2669
2703
  openOnHover: boolean;
@@ -2742,7 +2776,7 @@ export declare const VDialog: {
2742
2776
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2743
2777
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2744
2778
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2745
- }, "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")> & import("vue").ShallowUnwrapRef<{
2779
+ }, "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")> & import("vue").ShallowUnwrapRef<{
2746
2780
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2747
2781
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2748
2782
  target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2752,7 +2786,7 @@ export declare const VDialog: {
2752
2786
  globalTop: Readonly<import("vue").Ref<boolean, boolean>>;
2753
2787
  localTop: Readonly<import("vue").Ref<boolean, boolean>>;
2754
2788
  updateLocation: import("vue").Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2755
- }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
2789
+ }> & {} & import("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 import("vue").VNodeProps>, `$${any}`> & {
2756
2790
  _allExposed: {
2757
2791
  activatorEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2758
2792
  scrimEl: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2774,6 +2808,7 @@ export declare const VDialog: {
2774
2808
  location: import("../../util/index.js").Anchor;
2775
2809
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2776
2810
  stickToTarget: boolean;
2811
+ viewportMargin: string | number;
2777
2812
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2778
2813
  activatorProps: Record<string, any>;
2779
2814
  openOnClick: boolean;
@@ -2899,6 +2934,10 @@ export declare const VDialog: {
2899
2934
  };
2900
2935
  offset: import("vue").PropType<string | number | number[] | undefined>;
2901
2936
  stickToTarget: BooleanConstructor;
2937
+ viewportMargin: {
2938
+ type: (NumberConstructor | StringConstructor)[];
2939
+ default: number;
2940
+ };
2902
2941
  scrollStrategy: Omit<{
2903
2942
  type: import("vue").PropType<"block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction>;
2904
2943
  default: string;
@@ -3126,6 +3165,10 @@ export declare const VDialog: {
3126
3165
  };
3127
3166
  offset: import("vue").PropType<string | number | number[] | undefined>;
3128
3167
  stickToTarget: BooleanConstructor;
3168
+ viewportMargin: {
3169
+ type: (NumberConstructor | StringConstructor)[];
3170
+ default: number;
3171
+ };
3129
3172
  scrollStrategy: Omit<{
3130
3173
  type: import("vue").PropType<"block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction>;
3131
3174
  default: string;