@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
package/dist/vuetify.d.ts CHANGED
@@ -1060,6 +1060,7 @@ interface StrategyProps$1 {
1060
1060
  origin: Anchor | 'auto' | 'overlap';
1061
1061
  offset?: number | string | number[];
1062
1062
  stickToTarget?: boolean;
1063
+ viewportMargin?: number | string;
1063
1064
  maxHeight?: number | string;
1064
1065
  maxWidth?: number | string;
1065
1066
  minHeight?: number | string;
@@ -1200,6 +1201,7 @@ declare const VSnackbar: {
1200
1201
  location: Anchor;
1201
1202
  origin: "auto" | "overlap" | Anchor;
1202
1203
  stickToTarget: boolean;
1204
+ viewportMargin: string | number;
1203
1205
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1204
1206
  activatorProps: Record<string, any>;
1205
1207
  openOnClick: boolean;
@@ -1250,6 +1252,7 @@ declare const VSnackbar: {
1250
1252
  origin: "auto" | "overlap" | Anchor;
1251
1253
  offset?: string | number | number[] | undefined;
1252
1254
  stickToTarget: boolean;
1255
+ viewportMargin: string | number;
1253
1256
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1254
1257
  height?: string | number | undefined;
1255
1258
  maxHeight?: string | number | undefined;
@@ -1297,7 +1300,7 @@ declare const VSnackbar: {
1297
1300
  "v-slot:default"?: false | ((arg: {
1298
1301
  isActive: Ref<boolean, boolean>;
1299
1302
  }) => vue.VNodeChild) | undefined;
1300
- } & 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">;
1303
+ } & 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">;
1301
1304
  $attrs: {
1302
1305
  [x: string]: unknown;
1303
1306
  };
@@ -1329,6 +1332,7 @@ declare const VSnackbar: {
1329
1332
  location: Anchor;
1330
1333
  origin: "auto" | "overlap" | Anchor;
1331
1334
  stickToTarget: boolean;
1335
+ viewportMargin: string | number;
1332
1336
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1333
1337
  activatorProps: Record<string, any>;
1334
1338
  openOnHover: boolean;
@@ -1429,6 +1433,7 @@ declare const VSnackbar: {
1429
1433
  location: Anchor;
1430
1434
  origin: "auto" | "overlap" | Anchor;
1431
1435
  stickToTarget: boolean;
1436
+ viewportMargin: string | number;
1432
1437
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1433
1438
  activatorProps: Record<string, any>;
1434
1439
  openOnClick: boolean;
@@ -1485,6 +1490,7 @@ declare const VSnackbar: {
1485
1490
  location: Anchor;
1486
1491
  origin: "auto" | "overlap" | Anchor;
1487
1492
  stickToTarget: boolean;
1493
+ viewportMargin: string | number;
1488
1494
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1489
1495
  activatorProps: Record<string, any>;
1490
1496
  openOnClick: boolean;
@@ -1508,6 +1514,7 @@ declare const VSnackbar: {
1508
1514
  location: Anchor;
1509
1515
  origin: "auto" | "overlap" | Anchor;
1510
1516
  stickToTarget: boolean;
1517
+ viewportMargin: string | number;
1511
1518
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1512
1519
  activatorProps: Record<string, any>;
1513
1520
  openOnHover: boolean;
@@ -1586,7 +1593,7 @@ declare const VSnackbar: {
1586
1593
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1587
1594
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1588
1595
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1589
- }, "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<{
1596
+ }, "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<{
1590
1597
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1591
1598
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1592
1599
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1596,7 +1603,7 @@ declare const VSnackbar: {
1596
1603
  globalTop: Readonly<Ref<boolean, boolean>>;
1597
1604
  localTop: Readonly<Ref<boolean, boolean>>;
1598
1605
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1599
- }> & {} & 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}`> & {
1606
+ }> & {} & 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}`> & {
1600
1607
  _allExposed: {
1601
1608
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1602
1609
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1755,6 +1762,7 @@ declare const VSnackbar: {
1755
1762
  location: Anchor;
1756
1763
  origin: "auto" | "overlap" | Anchor;
1757
1764
  stickToTarget: boolean;
1765
+ viewportMargin: string | number;
1758
1766
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1759
1767
  activatorProps: Record<string, any>;
1760
1768
  openOnClick: boolean;
@@ -1805,6 +1813,7 @@ declare const VSnackbar: {
1805
1813
  origin: "auto" | "overlap" | Anchor;
1806
1814
  offset?: string | number | number[] | undefined;
1807
1815
  stickToTarget: boolean;
1816
+ viewportMargin: string | number;
1808
1817
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1809
1818
  height?: string | number | undefined;
1810
1819
  maxHeight?: string | number | undefined;
@@ -1852,7 +1861,7 @@ declare const VSnackbar: {
1852
1861
  "v-slot:default"?: false | ((arg: {
1853
1862
  isActive: Ref<boolean, boolean>;
1854
1863
  }) => vue.VNodeChild) | undefined;
1855
- } & 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">;
1864
+ } & 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">;
1856
1865
  $attrs: {
1857
1866
  [x: string]: unknown;
1858
1867
  };
@@ -1884,6 +1893,7 @@ declare const VSnackbar: {
1884
1893
  location: Anchor;
1885
1894
  origin: "auto" | "overlap" | Anchor;
1886
1895
  stickToTarget: boolean;
1896
+ viewportMargin: string | number;
1887
1897
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1888
1898
  activatorProps: Record<string, any>;
1889
1899
  openOnHover: boolean;
@@ -1984,6 +1994,7 @@ declare const VSnackbar: {
1984
1994
  location: Anchor;
1985
1995
  origin: "auto" | "overlap" | Anchor;
1986
1996
  stickToTarget: boolean;
1997
+ viewportMargin: string | number;
1987
1998
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
1988
1999
  activatorProps: Record<string, any>;
1989
2000
  openOnClick: boolean;
@@ -2040,6 +2051,7 @@ declare const VSnackbar: {
2040
2051
  location: Anchor;
2041
2052
  origin: "auto" | "overlap" | Anchor;
2042
2053
  stickToTarget: boolean;
2054
+ viewportMargin: string | number;
2043
2055
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2044
2056
  activatorProps: Record<string, any>;
2045
2057
  openOnClick: boolean;
@@ -2063,6 +2075,7 @@ declare const VSnackbar: {
2063
2075
  location: Anchor;
2064
2076
  origin: "auto" | "overlap" | Anchor;
2065
2077
  stickToTarget: boolean;
2078
+ viewportMargin: string | number;
2066
2079
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2067
2080
  activatorProps: Record<string, any>;
2068
2081
  openOnHover: boolean;
@@ -2141,7 +2154,7 @@ declare const VSnackbar: {
2141
2154
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2142
2155
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2143
2156
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2144
- }, "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<{
2157
+ }, "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<{
2145
2158
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2146
2159
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2147
2160
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2151,7 +2164,7 @@ declare const VSnackbar: {
2151
2164
  globalTop: Readonly<Ref<boolean, boolean>>;
2152
2165
  localTop: Readonly<Ref<boolean, boolean>>;
2153
2166
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2154
- }> & {} & 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}`> & {
2167
+ }> & {} & 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}`> & {
2155
2168
  _allExposed: {
2156
2169
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2157
2170
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2287,6 +2300,7 @@ declare const VSnackbar: {
2287
2300
  location: Anchor;
2288
2301
  origin: "auto" | "overlap" | Anchor;
2289
2302
  stickToTarget: boolean;
2303
+ viewportMargin: string | number;
2290
2304
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2291
2305
  activatorProps: Record<string, any>;
2292
2306
  openOnClick: boolean;
@@ -2337,6 +2351,7 @@ declare const VSnackbar: {
2337
2351
  origin: "auto" | "overlap" | Anchor;
2338
2352
  offset?: string | number | number[] | undefined;
2339
2353
  stickToTarget: boolean;
2354
+ viewportMargin: string | number;
2340
2355
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2341
2356
  height?: string | number | undefined;
2342
2357
  maxHeight?: string | number | undefined;
@@ -2384,7 +2399,7 @@ declare const VSnackbar: {
2384
2399
  "v-slot:default"?: false | ((arg: {
2385
2400
  isActive: Ref<boolean, boolean>;
2386
2401
  }) => vue.VNodeChild) | undefined;
2387
- } & 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">;
2402
+ } & 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">;
2388
2403
  $attrs: {
2389
2404
  [x: string]: unknown;
2390
2405
  };
@@ -2416,6 +2431,7 @@ declare const VSnackbar: {
2416
2431
  location: Anchor;
2417
2432
  origin: "auto" | "overlap" | Anchor;
2418
2433
  stickToTarget: boolean;
2434
+ viewportMargin: string | number;
2419
2435
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2420
2436
  activatorProps: Record<string, any>;
2421
2437
  openOnHover: boolean;
@@ -2516,6 +2532,7 @@ declare const VSnackbar: {
2516
2532
  location: Anchor;
2517
2533
  origin: "auto" | "overlap" | Anchor;
2518
2534
  stickToTarget: boolean;
2535
+ viewportMargin: string | number;
2519
2536
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2520
2537
  activatorProps: Record<string, any>;
2521
2538
  openOnClick: boolean;
@@ -2572,6 +2589,7 @@ declare const VSnackbar: {
2572
2589
  location: Anchor;
2573
2590
  origin: "auto" | "overlap" | Anchor;
2574
2591
  stickToTarget: boolean;
2592
+ viewportMargin: string | number;
2575
2593
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2576
2594
  activatorProps: Record<string, any>;
2577
2595
  openOnClick: boolean;
@@ -2595,6 +2613,7 @@ declare const VSnackbar: {
2595
2613
  location: Anchor;
2596
2614
  origin: "auto" | "overlap" | Anchor;
2597
2615
  stickToTarget: boolean;
2616
+ viewportMargin: string | number;
2598
2617
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
2599
2618
  activatorProps: Record<string, any>;
2600
2619
  openOnHover: boolean;
@@ -2673,7 +2692,7 @@ declare const VSnackbar: {
2673
2692
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2674
2693
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2675
2694
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2676
- }, "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<{
2695
+ }, "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<{
2677
2696
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2678
2697
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2679
2698
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2683,7 +2702,7 @@ declare const VSnackbar: {
2683
2702
  globalTop: Readonly<Ref<boolean, boolean>>;
2684
2703
  localTop: Readonly<Ref<boolean, boolean>>;
2685
2704
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2686
- }> & {} & 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}`> & {
2705
+ }> & {} & 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}`> & {
2687
2706
  _allExposed: {
2688
2707
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2689
2708
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -7813,6 +7832,7 @@ declare const VAutocomplete: {
7813
7832
  location: Anchor | undefined;
7814
7833
  origin: "auto" | "overlap" | Anchor;
7815
7834
  stickToTarget: boolean;
7835
+ viewportMargin: string | number;
7816
7836
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
7817
7837
  closeDelay: string | number;
7818
7838
  openDelay: string | number;
@@ -7933,6 +7953,7 @@ declare const VAutocomplete: {
7933
7953
  origin: "auto" | "overlap" | Anchor;
7934
7954
  offset?: string | number | number[] | undefined;
7935
7955
  stickToTarget: boolean;
7956
+ viewportMargin: string | number;
7936
7957
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
7937
7958
  height?: string | number | undefined;
7938
7959
  maxHeight?: string | number | undefined;
@@ -8042,7 +8063,7 @@ declare const VAutocomplete: {
8042
8063
  "v-slot:default"?: false | ((arg: {
8043
8064
  isActive: vue.Ref<boolean, boolean>;
8044
8065
  }) => vue.VNodeChild) | undefined;
8045
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
8066
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
8046
8067
  itemColor?: string | undefined;
8047
8068
  autoSelectFirst?: "exact" | boolean | undefined;
8048
8069
  search?: string | undefined;
@@ -10659,6 +10680,7 @@ declare const VAutocomplete: {
10659
10680
  location: Anchor | undefined;
10660
10681
  origin: "auto" | "overlap" | Anchor;
10661
10682
  stickToTarget: boolean;
10683
+ viewportMargin: string | number;
10662
10684
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
10663
10685
  closeDelay: string | number;
10664
10686
  openDelay: string | number;
@@ -10779,6 +10801,7 @@ declare const VAutocomplete: {
10779
10801
  origin: "auto" | "overlap" | Anchor;
10780
10802
  offset?: string | number | number[] | undefined;
10781
10803
  stickToTarget: boolean;
10804
+ viewportMargin: string | number;
10782
10805
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
10783
10806
  height?: string | number | undefined;
10784
10807
  maxHeight?: string | number | undefined;
@@ -10888,7 +10911,7 @@ declare const VAutocomplete: {
10888
10911
  "v-slot:default"?: false | ((arg: {
10889
10912
  isActive: vue.Ref<boolean, boolean>;
10890
10913
  }) => vue.VNodeChild) | undefined;
10891
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
10914
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
10892
10915
  itemColor?: string | undefined;
10893
10916
  autoSelectFirst?: "exact" | boolean | undefined;
10894
10917
  search?: string | undefined;
@@ -13423,6 +13446,7 @@ declare const VAutocomplete: {
13423
13446
  location: Anchor | undefined;
13424
13447
  origin: "auto" | "overlap" | Anchor;
13425
13448
  stickToTarget: boolean;
13449
+ viewportMargin: string | number;
13426
13450
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
13427
13451
  closeDelay: string | number;
13428
13452
  openDelay: string | number;
@@ -13543,6 +13567,7 @@ declare const VAutocomplete: {
13543
13567
  origin: "auto" | "overlap" | Anchor;
13544
13568
  offset?: string | number | number[] | undefined;
13545
13569
  stickToTarget: boolean;
13570
+ viewportMargin: string | number;
13546
13571
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
13547
13572
  height?: string | number | undefined;
13548
13573
  maxHeight?: string | number | undefined;
@@ -13652,7 +13677,7 @@ declare const VAutocomplete: {
13652
13677
  "v-slot:default"?: false | ((arg: {
13653
13678
  isActive: vue.Ref<boolean, boolean>;
13654
13679
  }) => vue.VNodeChild) | undefined;
13655
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
13680
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
13656
13681
  itemColor?: string | undefined;
13657
13682
  autoSelectFirst?: "exact" | boolean | undefined;
13658
13683
  search?: string | undefined;
@@ -16423,6 +16448,7 @@ declare const VAutocomplete: {
16423
16448
  location: Anchor | undefined;
16424
16449
  origin: "auto" | "overlap" | Anchor;
16425
16450
  stickToTarget: boolean;
16451
+ viewportMargin: string | number;
16426
16452
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
16427
16453
  closeDelay: string | number;
16428
16454
  openDelay: string | number;
@@ -16543,6 +16569,7 @@ declare const VAutocomplete: {
16543
16569
  origin: "auto" | "overlap" | Anchor;
16544
16570
  offset?: string | number | number[] | undefined;
16545
16571
  stickToTarget: boolean;
16572
+ viewportMargin: string | number;
16546
16573
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
16547
16574
  height?: string | number | undefined;
16548
16575
  maxHeight?: string | number | undefined;
@@ -16652,7 +16679,7 @@ declare const VAutocomplete: {
16652
16679
  "v-slot:default"?: false | ((arg: {
16653
16680
  isActive: vue.Ref<boolean, boolean>;
16654
16681
  }) => vue.VNodeChild) | undefined;
16655
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
16682
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
16656
16683
  };
16657
16684
  multiple: BooleanConstructor;
16658
16685
  noDataText: {
@@ -17066,6 +17093,7 @@ declare const VAutocomplete: {
17066
17093
  location: Anchor | undefined;
17067
17094
  origin: "auto" | "overlap" | Anchor;
17068
17095
  stickToTarget: boolean;
17096
+ viewportMargin: string | number;
17069
17097
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
17070
17098
  closeDelay: string | number;
17071
17099
  openDelay: string | number;
@@ -17186,6 +17214,7 @@ declare const VAutocomplete: {
17186
17214
  origin: "auto" | "overlap" | Anchor;
17187
17215
  offset?: string | number | number[] | undefined;
17188
17216
  stickToTarget: boolean;
17217
+ viewportMargin: string | number;
17189
17218
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
17190
17219
  height?: string | number | undefined;
17191
17220
  maxHeight?: string | number | undefined;
@@ -17295,7 +17324,7 @@ declare const VAutocomplete: {
17295
17324
  "v-slot:default"?: false | ((arg: {
17296
17325
  isActive: vue.Ref<boolean, boolean>;
17297
17326
  }) => vue.VNodeChild) | undefined;
17298
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
17327
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
17299
17328
  };
17300
17329
  multiple: BooleanConstructor;
17301
17330
  noDataText: {
@@ -18682,6 +18711,7 @@ declare const VBottomSheet: {
18682
18711
  location: Anchor;
18683
18712
  origin: "auto" | "overlap" | Anchor;
18684
18713
  stickToTarget: boolean;
18714
+ viewportMargin: string | number;
18685
18715
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
18686
18716
  activatorProps: Record<string, any>;
18687
18717
  openOnHover: boolean;
@@ -18832,6 +18862,7 @@ declare const VBottomSheet: {
18832
18862
  location: Anchor;
18833
18863
  origin: "auto" | "overlap" | Anchor;
18834
18864
  stickToTarget: boolean;
18865
+ viewportMargin: string | number;
18835
18866
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
18836
18867
  activatorProps: Record<string, any>;
18837
18868
  openOnClick: boolean;
@@ -18946,6 +18977,7 @@ declare const VBottomSheet: {
18946
18977
  location: Anchor;
18947
18978
  origin: "auto" | "overlap" | Anchor;
18948
18979
  stickToTarget: boolean;
18980
+ viewportMargin: string | number;
18949
18981
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
18950
18982
  activatorProps: Record<string, any>;
18951
18983
  openOnHover: boolean;
@@ -19094,6 +19126,7 @@ declare const VBottomSheet: {
19094
19126
  location: Anchor;
19095
19127
  origin: "auto" | "overlap" | Anchor;
19096
19128
  stickToTarget: boolean;
19129
+ viewportMargin: string | number;
19097
19130
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
19098
19131
  activatorProps: Record<string, any>;
19099
19132
  openOnClick: boolean;
@@ -19192,6 +19225,7 @@ declare const VBottomSheet: {
19192
19225
  location: Anchor;
19193
19226
  origin: "auto" | "overlap" | Anchor;
19194
19227
  stickToTarget: boolean;
19228
+ viewportMargin: string | number;
19195
19229
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
19196
19230
  activatorProps: Record<string, any>;
19197
19231
  openOnHover: boolean;
@@ -19342,6 +19376,7 @@ declare const VBottomSheet: {
19342
19376
  location: Anchor;
19343
19377
  origin: "auto" | "overlap" | Anchor;
19344
19378
  stickToTarget: boolean;
19379
+ viewportMargin: string | number;
19345
19380
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
19346
19381
  activatorProps: Record<string, any>;
19347
19382
  openOnClick: boolean;
@@ -19468,6 +19503,10 @@ declare const VBottomSheet: {
19468
19503
  };
19469
19504
  offset: vue.PropType<string | number | number[] | undefined>;
19470
19505
  stickToTarget: BooleanConstructor;
19506
+ viewportMargin: {
19507
+ type: (NumberConstructor | StringConstructor)[];
19508
+ default: number;
19509
+ };
19471
19510
  scrollStrategy: Omit<{
19472
19511
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
19473
19512
  default: string;
@@ -19833,6 +19872,10 @@ declare const VBottomSheet: {
19833
19872
  };
19834
19873
  offset: vue.PropType<string | number | number[] | undefined>;
19835
19874
  stickToTarget: BooleanConstructor;
19875
+ viewportMargin: {
19876
+ type: (NumberConstructor | StringConstructor)[];
19877
+ default: number;
19878
+ };
19836
19879
  scrollStrategy: Omit<{
19837
19880
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
19838
19881
  default: string;
@@ -20189,6 +20232,7 @@ declare const VBreadcrumbs: {
20189
20232
  tag: string | JSXComponent;
20190
20233
  disabled: boolean;
20191
20234
  divider: string;
20235
+ itemProps: boolean;
20192
20236
  } & {
20193
20237
  class?: any;
20194
20238
  rounded?: string | number | boolean | undefined;
@@ -20205,6 +20249,7 @@ declare const VBreadcrumbs: {
20205
20249
  tag: string | JSXComponent;
20206
20250
  disabled: boolean;
20207
20251
  divider: string;
20252
+ itemProps: boolean;
20208
20253
  }, true, {}, vue.SlotsType<Partial<{
20209
20254
  prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
20210
20255
  [key: string]: any;
@@ -20244,6 +20289,7 @@ declare const VBreadcrumbs: {
20244
20289
  tag: string | JSXComponent;
20245
20290
  disabled: boolean;
20246
20291
  divider: string;
20292
+ itemProps: boolean;
20247
20293
  } & {
20248
20294
  class?: any;
20249
20295
  rounded?: string | number | boolean | undefined;
@@ -20260,6 +20306,7 @@ declare const VBreadcrumbs: {
20260
20306
  tag: string | JSXComponent;
20261
20307
  disabled: boolean;
20262
20308
  divider: string;
20309
+ itemProps: boolean;
20263
20310
  }>;
20264
20311
  __isFragment?: undefined;
20265
20312
  __isTeleport?: undefined;
@@ -20271,6 +20318,7 @@ declare const VBreadcrumbs: {
20271
20318
  tag: string | JSXComponent;
20272
20319
  disabled: boolean;
20273
20320
  divider: string;
20321
+ itemProps: boolean;
20274
20322
  } & {
20275
20323
  class?: any;
20276
20324
  rounded?: string | number | boolean | undefined;
@@ -20287,6 +20335,7 @@ declare const VBreadcrumbs: {
20287
20335
  tag: string | JSXComponent;
20288
20336
  disabled: boolean;
20289
20337
  divider: string;
20338
+ itemProps: boolean;
20290
20339
  }, {}, string, vue.SlotsType<Partial<{
20291
20340
  prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
20292
20341
  [key: string]: any;
@@ -20383,6 +20432,7 @@ declare const VBreadcrumbs: {
20383
20432
  type: PropType<readonly BreadcrumbItem[]>;
20384
20433
  default: () => never[];
20385
20434
  };
20435
+ itemProps: BooleanConstructor;
20386
20436
  }, vue.ExtractPropTypes<{
20387
20437
  class: PropType<any>;
20388
20438
  style: {
@@ -20420,6 +20470,7 @@ declare const VBreadcrumbs: {
20420
20470
  type: PropType<readonly BreadcrumbItem[]>;
20421
20471
  default: () => never[];
20422
20472
  };
20473
+ itemProps: BooleanConstructor;
20423
20474
  }>>;
20424
20475
  type VBreadcrumbs = InstanceType<typeof VBreadcrumbs>;
20425
20476
 
@@ -20433,6 +20484,8 @@ declare const VBreadcrumbsItem: {
20433
20484
  disabled: boolean;
20434
20485
  } & {
20435
20486
  class?: any;
20487
+ maxWidth?: string | number | undefined;
20488
+ width?: string | number | undefined;
20436
20489
  href?: string | undefined;
20437
20490
  to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
20438
20491
  activeClass?: string | undefined;
@@ -20477,6 +20530,8 @@ declare const VBreadcrumbsItem: {
20477
20530
  disabled: boolean;
20478
20531
  } & {
20479
20532
  class?: any;
20533
+ maxWidth?: string | number | undefined;
20534
+ width?: string | number | undefined;
20480
20535
  href?: string | undefined;
20481
20536
  to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
20482
20537
  activeClass?: string | undefined;
@@ -20514,6 +20569,8 @@ declare const VBreadcrumbsItem: {
20514
20569
  disabled: boolean;
20515
20570
  } & {
20516
20571
  class?: any;
20572
+ maxWidth?: string | number | undefined;
20573
+ width?: string | number | undefined;
20517
20574
  href?: string | undefined;
20518
20575
  to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
20519
20576
  activeClass?: string | undefined;
@@ -20555,6 +20612,8 @@ declare const VBreadcrumbsItem: {
20555
20612
  type: vue.PropType<string | JSXComponent>;
20556
20613
  default: NonNullable<string | JSXComponent>;
20557
20614
  };
20615
+ maxWidth: (NumberConstructor | StringConstructor)[];
20616
+ width: (NumberConstructor | StringConstructor)[];
20558
20617
  href: StringConstructor;
20559
20618
  replace: BooleanConstructor;
20560
20619
  to: vue.PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
@@ -20578,6 +20637,8 @@ declare const VBreadcrumbsItem: {
20578
20637
  type: vue.PropType<string | JSXComponent>;
20579
20638
  default: NonNullable<string | JSXComponent>;
20580
20639
  };
20640
+ maxWidth: (NumberConstructor | StringConstructor)[];
20641
+ width: (NumberConstructor | StringConstructor)[];
20581
20642
  href: StringConstructor;
20582
20643
  replace: BooleanConstructor;
20583
20644
  to: vue.PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
@@ -28449,6 +28510,7 @@ declare const VCombobox: {
28449
28510
  location: Anchor | undefined;
28450
28511
  origin: "auto" | "overlap" | Anchor;
28451
28512
  stickToTarget: boolean;
28513
+ viewportMargin: string | number;
28452
28514
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
28453
28515
  closeDelay: string | number;
28454
28516
  openDelay: string | number;
@@ -28569,6 +28631,7 @@ declare const VCombobox: {
28569
28631
  origin: "auto" | "overlap" | Anchor;
28570
28632
  offset?: string | number | number[] | undefined;
28571
28633
  stickToTarget: boolean;
28634
+ viewportMargin: string | number;
28572
28635
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
28573
28636
  height?: string | number | undefined;
28574
28637
  maxHeight?: string | number | undefined;
@@ -28678,7 +28741,7 @@ declare const VCombobox: {
28678
28741
  "v-slot:default"?: false | ((arg: {
28679
28742
  isActive: vue.Ref<boolean, boolean>;
28680
28743
  }) => vue.VNodeChild) | undefined;
28681
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
28744
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
28682
28745
  itemColor?: string | undefined;
28683
28746
  autoSelectFirst?: "exact" | boolean | undefined;
28684
28747
  delimiters?: readonly string[] | undefined;
@@ -31295,6 +31358,7 @@ declare const VCombobox: {
31295
31358
  location: Anchor | undefined;
31296
31359
  origin: "auto" | "overlap" | Anchor;
31297
31360
  stickToTarget: boolean;
31361
+ viewportMargin: string | number;
31298
31362
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
31299
31363
  closeDelay: string | number;
31300
31364
  openDelay: string | number;
@@ -31415,6 +31479,7 @@ declare const VCombobox: {
31415
31479
  origin: "auto" | "overlap" | Anchor;
31416
31480
  offset?: string | number | number[] | undefined;
31417
31481
  stickToTarget: boolean;
31482
+ viewportMargin: string | number;
31418
31483
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
31419
31484
  height?: string | number | undefined;
31420
31485
  maxHeight?: string | number | undefined;
@@ -31524,7 +31589,7 @@ declare const VCombobox: {
31524
31589
  "v-slot:default"?: false | ((arg: {
31525
31590
  isActive: vue.Ref<boolean, boolean>;
31526
31591
  }) => vue.VNodeChild) | undefined;
31527
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
31592
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
31528
31593
  itemColor?: string | undefined;
31529
31594
  autoSelectFirst?: "exact" | boolean | undefined;
31530
31595
  delimiters?: readonly string[] | undefined;
@@ -34059,6 +34124,7 @@ declare const VCombobox: {
34059
34124
  location: Anchor | undefined;
34060
34125
  origin: "auto" | "overlap" | Anchor;
34061
34126
  stickToTarget: boolean;
34127
+ viewportMargin: string | number;
34062
34128
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
34063
34129
  closeDelay: string | number;
34064
34130
  openDelay: string | number;
@@ -34179,6 +34245,7 @@ declare const VCombobox: {
34179
34245
  origin: "auto" | "overlap" | Anchor;
34180
34246
  offset?: string | number | number[] | undefined;
34181
34247
  stickToTarget: boolean;
34248
+ viewportMargin: string | number;
34182
34249
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
34183
34250
  height?: string | number | undefined;
34184
34251
  maxHeight?: string | number | undefined;
@@ -34288,7 +34355,7 @@ declare const VCombobox: {
34288
34355
  "v-slot:default"?: false | ((arg: {
34289
34356
  isActive: vue.Ref<boolean, boolean>;
34290
34357
  }) => vue.VNodeChild) | undefined;
34291
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
34358
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
34292
34359
  itemColor?: string | undefined;
34293
34360
  autoSelectFirst?: "exact" | boolean | undefined;
34294
34361
  delimiters?: readonly string[] | undefined;
@@ -37064,6 +37131,7 @@ declare const VCombobox: {
37064
37131
  location: Anchor | undefined;
37065
37132
  origin: "auto" | "overlap" | Anchor;
37066
37133
  stickToTarget: boolean;
37134
+ viewportMargin: string | number;
37067
37135
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
37068
37136
  closeDelay: string | number;
37069
37137
  openDelay: string | number;
@@ -37184,6 +37252,7 @@ declare const VCombobox: {
37184
37252
  origin: "auto" | "overlap" | Anchor;
37185
37253
  offset?: string | number | number[] | undefined;
37186
37254
  stickToTarget: boolean;
37255
+ viewportMargin: string | number;
37187
37256
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
37188
37257
  height?: string | number | undefined;
37189
37258
  maxHeight?: string | number | undefined;
@@ -37293,7 +37362,7 @@ declare const VCombobox: {
37293
37362
  "v-slot:default"?: false | ((arg: {
37294
37363
  isActive: vue.Ref<boolean, boolean>;
37295
37364
  }) => vue.VNodeChild) | undefined;
37296
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
37365
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
37297
37366
  };
37298
37367
  multiple: BooleanConstructor;
37299
37368
  noDataText: {
@@ -37717,6 +37786,7 @@ declare const VCombobox: {
37717
37786
  location: Anchor | undefined;
37718
37787
  origin: "auto" | "overlap" | Anchor;
37719
37788
  stickToTarget: boolean;
37789
+ viewportMargin: string | number;
37720
37790
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
37721
37791
  closeDelay: string | number;
37722
37792
  openDelay: string | number;
@@ -37837,6 +37907,7 @@ declare const VCombobox: {
37837
37907
  origin: "auto" | "overlap" | Anchor;
37838
37908
  offset?: string | number | number[] | undefined;
37839
37909
  stickToTarget: boolean;
37910
+ viewportMargin: string | number;
37840
37911
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
37841
37912
  height?: string | number | undefined;
37842
37913
  maxHeight?: string | number | undefined;
@@ -37946,7 +38017,7 @@ declare const VCombobox: {
37946
38017
  "v-slot:default"?: false | ((arg: {
37947
38018
  isActive: vue.Ref<boolean, boolean>;
37948
38019
  }) => vue.VNodeChild) | undefined;
37949
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
38020
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
37950
38021
  };
37951
38022
  multiple: BooleanConstructor;
37952
38023
  noDataText: {
@@ -45118,6 +45189,7 @@ declare const VDialog: {
45118
45189
  location: Anchor;
45119
45190
  origin: "auto" | "overlap" | Anchor;
45120
45191
  stickToTarget: boolean;
45192
+ viewportMargin: string | number;
45121
45193
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45122
45194
  activatorProps: Record<string, any>;
45123
45195
  openOnHover: boolean;
@@ -45270,6 +45342,7 @@ declare const VDialog: {
45270
45342
  location: Anchor;
45271
45343
  origin: "auto" | "overlap" | Anchor;
45272
45344
  stickToTarget: boolean;
45345
+ viewportMargin: string | number;
45273
45346
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45274
45347
  activatorProps: Record<string, any>;
45275
45348
  openOnClick: boolean;
@@ -45320,6 +45393,7 @@ declare const VDialog: {
45320
45393
  origin: "auto" | "overlap" | Anchor;
45321
45394
  offset?: string | number | number[] | undefined;
45322
45395
  stickToTarget: boolean;
45396
+ viewportMargin: string | number;
45323
45397
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45324
45398
  height?: string | number | undefined;
45325
45399
  maxHeight?: string | number | undefined;
@@ -45367,7 +45441,7 @@ declare const VDialog: {
45367
45441
  "v-slot:default"?: false | ((arg: {
45368
45442
  isActive: vue.Ref<boolean, boolean>;
45369
45443
  }) => vue.VNodeChild) | undefined;
45370
- } & 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">;
45444
+ } & 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">;
45371
45445
  $attrs: {
45372
45446
  [x: string]: unknown;
45373
45447
  };
@@ -45399,6 +45473,7 @@ declare const VDialog: {
45399
45473
  location: Anchor;
45400
45474
  origin: "auto" | "overlap" | Anchor;
45401
45475
  stickToTarget: boolean;
45476
+ viewportMargin: string | number;
45402
45477
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45403
45478
  activatorProps: Record<string, any>;
45404
45479
  openOnHover: boolean;
@@ -45499,6 +45574,7 @@ declare const VDialog: {
45499
45574
  location: Anchor;
45500
45575
  origin: "auto" | "overlap" | Anchor;
45501
45576
  stickToTarget: boolean;
45577
+ viewportMargin: string | number;
45502
45578
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45503
45579
  activatorProps: Record<string, any>;
45504
45580
  openOnClick: boolean;
@@ -45555,6 +45631,7 @@ declare const VDialog: {
45555
45631
  location: Anchor;
45556
45632
  origin: "auto" | "overlap" | Anchor;
45557
45633
  stickToTarget: boolean;
45634
+ viewportMargin: string | number;
45558
45635
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45559
45636
  activatorProps: Record<string, any>;
45560
45637
  openOnClick: boolean;
@@ -45578,6 +45655,7 @@ declare const VDialog: {
45578
45655
  location: Anchor;
45579
45656
  origin: "auto" | "overlap" | Anchor;
45580
45657
  stickToTarget: boolean;
45658
+ viewportMargin: string | number;
45581
45659
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45582
45660
  activatorProps: Record<string, any>;
45583
45661
  openOnHover: boolean;
@@ -45656,7 +45734,7 @@ declare const VDialog: {
45656
45734
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
45657
45735
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
45658
45736
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
45659
- }, "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<{
45737
+ }, "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<{
45660
45738
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
45661
45739
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
45662
45740
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -45666,7 +45744,7 @@ declare const VDialog: {
45666
45744
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
45667
45745
  localTop: Readonly<vue.Ref<boolean, boolean>>;
45668
45746
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
45669
- }> & {} & 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}`> & {
45747
+ }> & {} & 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}`> & {
45670
45748
  _allExposed: {
45671
45749
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
45672
45750
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -45688,6 +45766,7 @@ declare const VDialog: {
45688
45766
  location: Anchor;
45689
45767
  origin: "auto" | "overlap" | Anchor;
45690
45768
  stickToTarget: boolean;
45769
+ viewportMargin: string | number;
45691
45770
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45692
45771
  activatorProps: Record<string, any>;
45693
45772
  openOnClick: boolean;
@@ -45801,6 +45880,7 @@ declare const VDialog: {
45801
45880
  location: Anchor;
45802
45881
  origin: "auto" | "overlap" | Anchor;
45803
45882
  stickToTarget: boolean;
45883
+ viewportMargin: string | number;
45804
45884
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45805
45885
  activatorProps: Record<string, any>;
45806
45886
  openOnHover: boolean;
@@ -45953,6 +46033,7 @@ declare const VDialog: {
45953
46033
  location: Anchor;
45954
46034
  origin: "auto" | "overlap" | Anchor;
45955
46035
  stickToTarget: boolean;
46036
+ viewportMargin: string | number;
45956
46037
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
45957
46038
  activatorProps: Record<string, any>;
45958
46039
  openOnClick: boolean;
@@ -46003,6 +46084,7 @@ declare const VDialog: {
46003
46084
  origin: "auto" | "overlap" | Anchor;
46004
46085
  offset?: string | number | number[] | undefined;
46005
46086
  stickToTarget: boolean;
46087
+ viewportMargin: string | number;
46006
46088
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46007
46089
  height?: string | number | undefined;
46008
46090
  maxHeight?: string | number | undefined;
@@ -46050,7 +46132,7 @@ declare const VDialog: {
46050
46132
  "v-slot:default"?: false | ((arg: {
46051
46133
  isActive: vue.Ref<boolean, boolean>;
46052
46134
  }) => vue.VNodeChild) | undefined;
46053
- } & 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">;
46135
+ } & 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">;
46054
46136
  $attrs: {
46055
46137
  [x: string]: unknown;
46056
46138
  };
@@ -46082,6 +46164,7 @@ declare const VDialog: {
46082
46164
  location: Anchor;
46083
46165
  origin: "auto" | "overlap" | Anchor;
46084
46166
  stickToTarget: boolean;
46167
+ viewportMargin: string | number;
46085
46168
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46086
46169
  activatorProps: Record<string, any>;
46087
46170
  openOnHover: boolean;
@@ -46182,6 +46265,7 @@ declare const VDialog: {
46182
46265
  location: Anchor;
46183
46266
  origin: "auto" | "overlap" | Anchor;
46184
46267
  stickToTarget: boolean;
46268
+ viewportMargin: string | number;
46185
46269
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46186
46270
  activatorProps: Record<string, any>;
46187
46271
  openOnClick: boolean;
@@ -46238,6 +46322,7 @@ declare const VDialog: {
46238
46322
  location: Anchor;
46239
46323
  origin: "auto" | "overlap" | Anchor;
46240
46324
  stickToTarget: boolean;
46325
+ viewportMargin: string | number;
46241
46326
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46242
46327
  activatorProps: Record<string, any>;
46243
46328
  openOnClick: boolean;
@@ -46261,6 +46346,7 @@ declare const VDialog: {
46261
46346
  location: Anchor;
46262
46347
  origin: "auto" | "overlap" | Anchor;
46263
46348
  stickToTarget: boolean;
46349
+ viewportMargin: string | number;
46264
46350
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46265
46351
  activatorProps: Record<string, any>;
46266
46352
  openOnHover: boolean;
@@ -46339,7 +46425,7 @@ declare const VDialog: {
46339
46425
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
46340
46426
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
46341
46427
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
46342
- }, "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<{
46428
+ }, "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<{
46343
46429
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
46344
46430
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
46345
46431
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -46349,7 +46435,7 @@ declare const VDialog: {
46349
46435
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
46350
46436
  localTop: Readonly<vue.Ref<boolean, boolean>>;
46351
46437
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
46352
- }> & {} & 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}`> & {
46438
+ }> & {} & 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}`> & {
46353
46439
  _allExposed: {
46354
46440
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
46355
46441
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -46367,6 +46453,7 @@ declare const VDialog: {
46367
46453
  location: Anchor;
46368
46454
  origin: "auto" | "overlap" | Anchor;
46369
46455
  stickToTarget: boolean;
46456
+ viewportMargin: string | number;
46370
46457
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46371
46458
  activatorProps: Record<string, any>;
46372
46459
  openOnClick: boolean;
@@ -46464,6 +46551,7 @@ declare const VDialog: {
46464
46551
  location: Anchor;
46465
46552
  origin: "auto" | "overlap" | Anchor;
46466
46553
  stickToTarget: boolean;
46554
+ viewportMargin: string | number;
46467
46555
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46468
46556
  activatorProps: Record<string, any>;
46469
46557
  openOnHover: boolean;
@@ -46616,6 +46704,7 @@ declare const VDialog: {
46616
46704
  location: Anchor;
46617
46705
  origin: "auto" | "overlap" | Anchor;
46618
46706
  stickToTarget: boolean;
46707
+ viewportMargin: string | number;
46619
46708
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46620
46709
  activatorProps: Record<string, any>;
46621
46710
  openOnClick: boolean;
@@ -46666,6 +46755,7 @@ declare const VDialog: {
46666
46755
  origin: "auto" | "overlap" | Anchor;
46667
46756
  offset?: string | number | number[] | undefined;
46668
46757
  stickToTarget: boolean;
46758
+ viewportMargin: string | number;
46669
46759
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46670
46760
  height?: string | number | undefined;
46671
46761
  maxHeight?: string | number | undefined;
@@ -46713,7 +46803,7 @@ declare const VDialog: {
46713
46803
  "v-slot:default"?: false | ((arg: {
46714
46804
  isActive: vue.Ref<boolean, boolean>;
46715
46805
  }) => vue.VNodeChild) | undefined;
46716
- } & 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">;
46806
+ } & 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">;
46717
46807
  $attrs: {
46718
46808
  [x: string]: unknown;
46719
46809
  };
@@ -46745,6 +46835,7 @@ declare const VDialog: {
46745
46835
  location: Anchor;
46746
46836
  origin: "auto" | "overlap" | Anchor;
46747
46837
  stickToTarget: boolean;
46838
+ viewportMargin: string | number;
46748
46839
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46749
46840
  activatorProps: Record<string, any>;
46750
46841
  openOnHover: boolean;
@@ -46845,6 +46936,7 @@ declare const VDialog: {
46845
46936
  location: Anchor;
46846
46937
  origin: "auto" | "overlap" | Anchor;
46847
46938
  stickToTarget: boolean;
46939
+ viewportMargin: string | number;
46848
46940
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46849
46941
  activatorProps: Record<string, any>;
46850
46942
  openOnClick: boolean;
@@ -46901,6 +46993,7 @@ declare const VDialog: {
46901
46993
  location: Anchor;
46902
46994
  origin: "auto" | "overlap" | Anchor;
46903
46995
  stickToTarget: boolean;
46996
+ viewportMargin: string | number;
46904
46997
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46905
46998
  activatorProps: Record<string, any>;
46906
46999
  openOnClick: boolean;
@@ -46924,6 +47017,7 @@ declare const VDialog: {
46924
47017
  location: Anchor;
46925
47018
  origin: "auto" | "overlap" | Anchor;
46926
47019
  stickToTarget: boolean;
47020
+ viewportMargin: string | number;
46927
47021
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
46928
47022
  activatorProps: Record<string, any>;
46929
47023
  openOnHover: boolean;
@@ -47002,7 +47096,7 @@ declare const VDialog: {
47002
47096
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
47003
47097
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
47004
47098
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
47005
- }, "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<{
47099
+ }, "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<{
47006
47100
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
47007
47101
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
47008
47102
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -47012,7 +47106,7 @@ declare const VDialog: {
47012
47106
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
47013
47107
  localTop: Readonly<vue.Ref<boolean, boolean>>;
47014
47108
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
47015
- }> & {} & 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}`> & {
47109
+ }> & {} & 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}`> & {
47016
47110
  _allExposed: {
47017
47111
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
47018
47112
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -47034,6 +47128,7 @@ declare const VDialog: {
47034
47128
  location: Anchor;
47035
47129
  origin: "auto" | "overlap" | Anchor;
47036
47130
  stickToTarget: boolean;
47131
+ viewportMargin: string | number;
47037
47132
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
47038
47133
  activatorProps: Record<string, any>;
47039
47134
  openOnClick: boolean;
@@ -47159,6 +47254,10 @@ declare const VDialog: {
47159
47254
  };
47160
47255
  offset: vue.PropType<string | number | number[] | undefined>;
47161
47256
  stickToTarget: BooleanConstructor;
47257
+ viewportMargin: {
47258
+ type: (NumberConstructor | StringConstructor)[];
47259
+ default: number;
47260
+ };
47162
47261
  scrollStrategy: Omit<{
47163
47262
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
47164
47263
  default: string;
@@ -47386,6 +47485,10 @@ declare const VDialog: {
47386
47485
  };
47387
47486
  offset: vue.PropType<string | number | number[] | undefined>;
47388
47487
  stickToTarget: BooleanConstructor;
47488
+ viewportMargin: {
47489
+ type: (NumberConstructor | StringConstructor)[];
47490
+ default: number;
47491
+ };
47389
47492
  scrollStrategy: Omit<{
47390
47493
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
47391
47494
  default: string;
@@ -57021,6 +57124,7 @@ declare const VMenu: {
57021
57124
  location: Anchor;
57022
57125
  origin: "auto" | "overlap" | Anchor;
57023
57126
  stickToTarget: boolean;
57127
+ viewportMargin: string | number;
57024
57128
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57025
57129
  closeDelay: string | number;
57026
57130
  openDelay: string | number;
@@ -57173,6 +57277,7 @@ declare const VMenu: {
57173
57277
  location: Anchor;
57174
57278
  origin: "auto" | "overlap" | Anchor;
57175
57279
  stickToTarget: boolean;
57280
+ viewportMargin: string | number;
57176
57281
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57177
57282
  activatorProps: Record<string, any>;
57178
57283
  openOnClick: boolean;
@@ -57223,6 +57328,7 @@ declare const VMenu: {
57223
57328
  origin: "auto" | "overlap" | Anchor;
57224
57329
  offset?: string | number | number[] | undefined;
57225
57330
  stickToTarget: boolean;
57331
+ viewportMargin: string | number;
57226
57332
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57227
57333
  height?: string | number | undefined;
57228
57334
  maxHeight?: string | number | undefined;
@@ -57270,7 +57376,7 @@ declare const VMenu: {
57270
57376
  "v-slot:default"?: false | ((arg: {
57271
57377
  isActive: vue.Ref<boolean, boolean>;
57272
57378
  }) => vue.VNodeChild) | undefined;
57273
- } & 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">;
57379
+ } & 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">;
57274
57380
  $attrs: {
57275
57381
  [x: string]: unknown;
57276
57382
  };
@@ -57302,6 +57408,7 @@ declare const VMenu: {
57302
57408
  location: Anchor;
57303
57409
  origin: "auto" | "overlap" | Anchor;
57304
57410
  stickToTarget: boolean;
57411
+ viewportMargin: string | number;
57305
57412
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57306
57413
  activatorProps: Record<string, any>;
57307
57414
  openOnHover: boolean;
@@ -57402,6 +57509,7 @@ declare const VMenu: {
57402
57509
  location: Anchor;
57403
57510
  origin: "auto" | "overlap" | Anchor;
57404
57511
  stickToTarget: boolean;
57512
+ viewportMargin: string | number;
57405
57513
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57406
57514
  activatorProps: Record<string, any>;
57407
57515
  openOnClick: boolean;
@@ -57458,6 +57566,7 @@ declare const VMenu: {
57458
57566
  location: Anchor;
57459
57567
  origin: "auto" | "overlap" | Anchor;
57460
57568
  stickToTarget: boolean;
57569
+ viewportMargin: string | number;
57461
57570
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57462
57571
  activatorProps: Record<string, any>;
57463
57572
  openOnClick: boolean;
@@ -57481,6 +57590,7 @@ declare const VMenu: {
57481
57590
  location: Anchor;
57482
57591
  origin: "auto" | "overlap" | Anchor;
57483
57592
  stickToTarget: boolean;
57593
+ viewportMargin: string | number;
57484
57594
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57485
57595
  activatorProps: Record<string, any>;
57486
57596
  openOnHover: boolean;
@@ -57559,7 +57669,7 @@ declare const VMenu: {
57559
57669
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
57560
57670
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
57561
57671
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
57562
- }, "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<{
57672
+ }, "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<{
57563
57673
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
57564
57674
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
57565
57675
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -57569,7 +57679,7 @@ declare const VMenu: {
57569
57679
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
57570
57680
  localTop: Readonly<vue.Ref<boolean, boolean>>;
57571
57681
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
57572
- }> & {} & 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}`> & {
57682
+ }> & {} & 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}`> & {
57573
57683
  _allExposed: {
57574
57684
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
57575
57685
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -57592,6 +57702,7 @@ declare const VMenu: {
57592
57702
  location: Anchor | undefined;
57593
57703
  origin: "auto" | "overlap" | Anchor;
57594
57704
  stickToTarget: boolean;
57705
+ viewportMargin: string | number;
57595
57706
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57596
57707
  closeDelay: string | number;
57597
57708
  openDelay: string | number;
@@ -57705,6 +57816,7 @@ declare const VMenu: {
57705
57816
  location: Anchor;
57706
57817
  origin: "auto" | "overlap" | Anchor;
57707
57818
  stickToTarget: boolean;
57819
+ viewportMargin: string | number;
57708
57820
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57709
57821
  closeDelay: string | number;
57710
57822
  openDelay: string | number;
@@ -57857,6 +57969,7 @@ declare const VMenu: {
57857
57969
  location: Anchor;
57858
57970
  origin: "auto" | "overlap" | Anchor;
57859
57971
  stickToTarget: boolean;
57972
+ viewportMargin: string | number;
57860
57973
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57861
57974
  activatorProps: Record<string, any>;
57862
57975
  openOnClick: boolean;
@@ -57907,6 +58020,7 @@ declare const VMenu: {
57907
58020
  origin: "auto" | "overlap" | Anchor;
57908
58021
  offset?: string | number | number[] | undefined;
57909
58022
  stickToTarget: boolean;
58023
+ viewportMargin: string | number;
57910
58024
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57911
58025
  height?: string | number | undefined;
57912
58026
  maxHeight?: string | number | undefined;
@@ -57954,7 +58068,7 @@ declare const VMenu: {
57954
58068
  "v-slot:default"?: false | ((arg: {
57955
58069
  isActive: vue.Ref<boolean, boolean>;
57956
58070
  }) => vue.VNodeChild) | undefined;
57957
- } & 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">;
58071
+ } & 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">;
57958
58072
  $attrs: {
57959
58073
  [x: string]: unknown;
57960
58074
  };
@@ -57986,6 +58100,7 @@ declare const VMenu: {
57986
58100
  location: Anchor;
57987
58101
  origin: "auto" | "overlap" | Anchor;
57988
58102
  stickToTarget: boolean;
58103
+ viewportMargin: string | number;
57989
58104
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
57990
58105
  activatorProps: Record<string, any>;
57991
58106
  openOnHover: boolean;
@@ -58086,6 +58201,7 @@ declare const VMenu: {
58086
58201
  location: Anchor;
58087
58202
  origin: "auto" | "overlap" | Anchor;
58088
58203
  stickToTarget: boolean;
58204
+ viewportMargin: string | number;
58089
58205
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58090
58206
  activatorProps: Record<string, any>;
58091
58207
  openOnClick: boolean;
@@ -58142,6 +58258,7 @@ declare const VMenu: {
58142
58258
  location: Anchor;
58143
58259
  origin: "auto" | "overlap" | Anchor;
58144
58260
  stickToTarget: boolean;
58261
+ viewportMargin: string | number;
58145
58262
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58146
58263
  activatorProps: Record<string, any>;
58147
58264
  openOnClick: boolean;
@@ -58165,6 +58282,7 @@ declare const VMenu: {
58165
58282
  location: Anchor;
58166
58283
  origin: "auto" | "overlap" | Anchor;
58167
58284
  stickToTarget: boolean;
58285
+ viewportMargin: string | number;
58168
58286
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58169
58287
  activatorProps: Record<string, any>;
58170
58288
  openOnHover: boolean;
@@ -58243,7 +58361,7 @@ declare const VMenu: {
58243
58361
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
58244
58362
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
58245
58363
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
58246
- }, "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<{
58364
+ }, "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<{
58247
58365
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58248
58366
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58249
58367
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -58253,7 +58371,7 @@ declare const VMenu: {
58253
58371
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
58254
58372
  localTop: Readonly<vue.Ref<boolean, boolean>>;
58255
58373
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
58256
- }> & {} & 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}`> & {
58374
+ }> & {} & 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}`> & {
58257
58375
  _allExposed: {
58258
58376
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58259
58377
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -58274,6 +58392,7 @@ declare const VMenu: {
58274
58392
  location: Anchor | undefined;
58275
58393
  origin: "auto" | "overlap" | Anchor;
58276
58394
  stickToTarget: boolean;
58395
+ viewportMargin: string | number;
58277
58396
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58278
58397
  closeDelay: string | number;
58279
58398
  openDelay: string | number;
@@ -58371,6 +58490,7 @@ declare const VMenu: {
58371
58490
  location: Anchor;
58372
58491
  origin: "auto" | "overlap" | Anchor;
58373
58492
  stickToTarget: boolean;
58493
+ viewportMargin: string | number;
58374
58494
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58375
58495
  closeDelay: string | number;
58376
58496
  openDelay: string | number;
@@ -58523,6 +58643,7 @@ declare const VMenu: {
58523
58643
  location: Anchor;
58524
58644
  origin: "auto" | "overlap" | Anchor;
58525
58645
  stickToTarget: boolean;
58646
+ viewportMargin: string | number;
58526
58647
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58527
58648
  activatorProps: Record<string, any>;
58528
58649
  openOnClick: boolean;
@@ -58573,6 +58694,7 @@ declare const VMenu: {
58573
58694
  origin: "auto" | "overlap" | Anchor;
58574
58695
  offset?: string | number | number[] | undefined;
58575
58696
  stickToTarget: boolean;
58697
+ viewportMargin: string | number;
58576
58698
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58577
58699
  height?: string | number | undefined;
58578
58700
  maxHeight?: string | number | undefined;
@@ -58620,7 +58742,7 @@ declare const VMenu: {
58620
58742
  "v-slot:default"?: false | ((arg: {
58621
58743
  isActive: vue.Ref<boolean, boolean>;
58622
58744
  }) => vue.VNodeChild) | undefined;
58623
- } & 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">;
58745
+ } & 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">;
58624
58746
  $attrs: {
58625
58747
  [x: string]: unknown;
58626
58748
  };
@@ -58652,6 +58774,7 @@ declare const VMenu: {
58652
58774
  location: Anchor;
58653
58775
  origin: "auto" | "overlap" | Anchor;
58654
58776
  stickToTarget: boolean;
58777
+ viewportMargin: string | number;
58655
58778
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58656
58779
  activatorProps: Record<string, any>;
58657
58780
  openOnHover: boolean;
@@ -58752,6 +58875,7 @@ declare const VMenu: {
58752
58875
  location: Anchor;
58753
58876
  origin: "auto" | "overlap" | Anchor;
58754
58877
  stickToTarget: boolean;
58878
+ viewportMargin: string | number;
58755
58879
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58756
58880
  activatorProps: Record<string, any>;
58757
58881
  openOnClick: boolean;
@@ -58808,6 +58932,7 @@ declare const VMenu: {
58808
58932
  location: Anchor;
58809
58933
  origin: "auto" | "overlap" | Anchor;
58810
58934
  stickToTarget: boolean;
58935
+ viewportMargin: string | number;
58811
58936
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58812
58937
  activatorProps: Record<string, any>;
58813
58938
  openOnClick: boolean;
@@ -58831,6 +58956,7 @@ declare const VMenu: {
58831
58956
  location: Anchor;
58832
58957
  origin: "auto" | "overlap" | Anchor;
58833
58958
  stickToTarget: boolean;
58959
+ viewportMargin: string | number;
58834
58960
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58835
58961
  activatorProps: Record<string, any>;
58836
58962
  openOnHover: boolean;
@@ -58909,7 +59035,7 @@ declare const VMenu: {
58909
59035
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
58910
59036
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
58911
59037
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
58912
- }, "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<{
59038
+ }, "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<{
58913
59039
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58914
59040
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58915
59041
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -58919,7 +59045,7 @@ declare const VMenu: {
58919
59045
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
58920
59046
  localTop: Readonly<vue.Ref<boolean, boolean>>;
58921
59047
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
58922
- }> & {} & 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}`> & {
59048
+ }> & {} & 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}`> & {
58923
59049
  _allExposed: {
58924
59050
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58925
59051
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -58942,6 +59068,7 @@ declare const VMenu: {
58942
59068
  location: Anchor | undefined;
58943
59069
  origin: "auto" | "overlap" | Anchor;
58944
59070
  stickToTarget: boolean;
59071
+ viewportMargin: string | number;
58945
59072
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
58946
59073
  closeDelay: string | number;
58947
59074
  openDelay: string | number;
@@ -59070,6 +59197,10 @@ declare const VMenu: {
59070
59197
  };
59071
59198
  offset: vue.PropType<string | number | number[] | undefined>;
59072
59199
  stickToTarget: BooleanConstructor;
59200
+ viewportMargin: {
59201
+ type: (NumberConstructor | StringConstructor)[];
59202
+ default: number;
59203
+ };
59073
59204
  scrollStrategy: Omit<{
59074
59205
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
59075
59206
  default: string;
@@ -59305,6 +59436,10 @@ declare const VMenu: {
59305
59436
  };
59306
59437
  offset: vue.PropType<string | number | number[] | undefined>;
59307
59438
  stickToTarget: BooleanConstructor;
59439
+ viewportMargin: {
59440
+ type: (NumberConstructor | StringConstructor)[];
59441
+ default: number;
59442
+ };
59308
59443
  scrollStrategy: Omit<{
59309
59444
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
59310
59445
  default: string;
@@ -67709,6 +67844,7 @@ declare const VOverlay: {
67709
67844
  location: Anchor;
67710
67845
  origin: "auto" | "overlap" | Anchor;
67711
67846
  stickToTarget: boolean;
67847
+ viewportMargin: string | number;
67712
67848
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
67713
67849
  activatorProps: Record<string, any>;
67714
67850
  openOnHover: boolean;
@@ -67809,6 +67945,7 @@ declare const VOverlay: {
67809
67945
  location: Anchor;
67810
67946
  origin: "auto" | "overlap" | Anchor;
67811
67947
  stickToTarget: boolean;
67948
+ viewportMargin: string | number;
67812
67949
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
67813
67950
  activatorProps: Record<string, any>;
67814
67951
  openOnClick: boolean;
@@ -67852,6 +67989,7 @@ declare const VOverlay: {
67852
67989
  location: Anchor;
67853
67990
  origin: "auto" | "overlap" | Anchor;
67854
67991
  stickToTarget: boolean;
67992
+ viewportMargin: string | number;
67855
67993
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
67856
67994
  activatorProps: Record<string, any>;
67857
67995
  openOnHover: boolean;
@@ -67946,6 +68084,7 @@ declare const VOverlay: {
67946
68084
  location: Anchor;
67947
68085
  origin: "auto" | "overlap" | Anchor;
67948
68086
  stickToTarget: boolean;
68087
+ viewportMargin: string | number;
67949
68088
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
67950
68089
  activatorProps: Record<string, any>;
67951
68090
  openOnClick: boolean;
@@ -67973,6 +68112,7 @@ declare const VOverlay: {
67973
68112
  location: Anchor;
67974
68113
  origin: "auto" | "overlap" | Anchor;
67975
68114
  stickToTarget: boolean;
68115
+ viewportMargin: string | number;
67976
68116
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
67977
68117
  activatorProps: Record<string, any>;
67978
68118
  openOnHover: boolean;
@@ -68073,6 +68213,7 @@ declare const VOverlay: {
68073
68213
  location: Anchor;
68074
68214
  origin: "auto" | "overlap" | Anchor;
68075
68215
  stickToTarget: boolean;
68216
+ viewportMargin: string | number;
68076
68217
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
68077
68218
  activatorProps: Record<string, any>;
68078
68219
  openOnClick: boolean;
@@ -68125,6 +68266,10 @@ declare const VOverlay: {
68125
68266
  };
68126
68267
  offset: PropType<string | number | number[] | undefined>;
68127
68268
  stickToTarget: BooleanConstructor;
68269
+ viewportMargin: {
68270
+ type: (NumberConstructor | StringConstructor)[];
68271
+ default: number;
68272
+ };
68128
68273
  scrollStrategy: {
68129
68274
  type: PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
68130
68275
  default: string;
@@ -68203,6 +68348,10 @@ declare const VOverlay: {
68203
68348
  };
68204
68349
  offset: PropType<string | number | number[] | undefined>;
68205
68350
  stickToTarget: BooleanConstructor;
68351
+ viewportMargin: {
68352
+ type: (NumberConstructor | StringConstructor)[];
68353
+ default: number;
68354
+ };
68206
68355
  scrollStrategy: {
68207
68356
  type: PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
68208
68357
  default: string;
@@ -73546,6 +73695,7 @@ declare const VSelect: {
73546
73695
  location: Anchor | undefined;
73547
73696
  origin: "auto" | "overlap" | Anchor;
73548
73697
  stickToTarget: boolean;
73698
+ viewportMargin: string | number;
73549
73699
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
73550
73700
  closeDelay: string | number;
73551
73701
  openDelay: string | number;
@@ -73666,6 +73816,7 @@ declare const VSelect: {
73666
73816
  origin: "auto" | "overlap" | Anchor;
73667
73817
  offset?: string | number | number[] | undefined;
73668
73818
  stickToTarget: boolean;
73819
+ viewportMargin: string | number;
73669
73820
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
73670
73821
  height?: string | number | undefined;
73671
73822
  maxHeight?: string | number | undefined;
@@ -73775,7 +73926,7 @@ declare const VSelect: {
73775
73926
  "v-slot:default"?: false | ((arg: {
73776
73927
  isActive: vue.Ref<boolean, boolean>;
73777
73928
  }) => vue.VNodeChild) | undefined;
73778
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
73929
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
73779
73930
  itemColor?: string | undefined;
73780
73931
  } & {
73781
73932
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -76378,6 +76529,7 @@ declare const VSelect: {
76378
76529
  location: Anchor | undefined;
76379
76530
  origin: "auto" | "overlap" | Anchor;
76380
76531
  stickToTarget: boolean;
76532
+ viewportMargin: string | number;
76381
76533
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
76382
76534
  closeDelay: string | number;
76383
76535
  openDelay: string | number;
@@ -76498,6 +76650,7 @@ declare const VSelect: {
76498
76650
  origin: "auto" | "overlap" | Anchor;
76499
76651
  offset?: string | number | number[] | undefined;
76500
76652
  stickToTarget: boolean;
76653
+ viewportMargin: string | number;
76501
76654
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
76502
76655
  height?: string | number | undefined;
76503
76656
  maxHeight?: string | number | undefined;
@@ -76607,7 +76760,7 @@ declare const VSelect: {
76607
76760
  "v-slot:default"?: false | ((arg: {
76608
76761
  isActive: vue.Ref<boolean, boolean>;
76609
76762
  }) => vue.VNodeChild) | undefined;
76610
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
76763
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
76611
76764
  itemColor?: string | undefined;
76612
76765
  } & {
76613
76766
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -79129,6 +79282,7 @@ declare const VSelect: {
79129
79282
  location: Anchor | undefined;
79130
79283
  origin: "auto" | "overlap" | Anchor;
79131
79284
  stickToTarget: boolean;
79285
+ viewportMargin: string | number;
79132
79286
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
79133
79287
  closeDelay: string | number;
79134
79288
  openDelay: string | number;
@@ -79249,6 +79403,7 @@ declare const VSelect: {
79249
79403
  origin: "auto" | "overlap" | Anchor;
79250
79404
  offset?: string | number | number[] | undefined;
79251
79405
  stickToTarget: boolean;
79406
+ viewportMargin: string | number;
79252
79407
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
79253
79408
  height?: string | number | undefined;
79254
79409
  maxHeight?: string | number | undefined;
@@ -79358,7 +79513,7 @@ declare const VSelect: {
79358
79513
  "v-slot:default"?: false | ((arg: {
79359
79514
  isActive: vue.Ref<boolean, boolean>;
79360
79515
  }) => vue.VNodeChild) | undefined;
79361
- } & vue.VNodeProps & vue.AllowedComponentProps & 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;
79516
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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;
79362
79517
  itemColor?: string | undefined;
79363
79518
  } & {
79364
79519
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -82117,6 +82272,7 @@ declare const VSelect: {
82117
82272
  location: Anchor | undefined;
82118
82273
  origin: "auto" | "overlap" | Anchor;
82119
82274
  stickToTarget: boolean;
82275
+ viewportMargin: string | number;
82120
82276
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
82121
82277
  closeDelay: string | number;
82122
82278
  openDelay: string | number;
@@ -82237,6 +82393,7 @@ declare const VSelect: {
82237
82393
  origin: "auto" | "overlap" | Anchor;
82238
82394
  offset?: string | number | number[] | undefined;
82239
82395
  stickToTarget: boolean;
82396
+ viewportMargin: string | number;
82240
82397
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
82241
82398
  height?: string | number | undefined;
82242
82399
  maxHeight?: string | number | undefined;
@@ -82346,7 +82503,7 @@ declare const VSelect: {
82346
82503
  "v-slot:default"?: false | ((arg: {
82347
82504
  isActive: vue.Ref<boolean, boolean>;
82348
82505
  }) => vue.VNodeChild) | undefined;
82349
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
82506
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
82350
82507
  };
82351
82508
  multiple: BooleanConstructor;
82352
82509
  noDataText: {
@@ -82756,6 +82913,7 @@ declare const VSelect: {
82756
82913
  location: Anchor | undefined;
82757
82914
  origin: "auto" | "overlap" | Anchor;
82758
82915
  stickToTarget: boolean;
82916
+ viewportMargin: string | number;
82759
82917
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
82760
82918
  closeDelay: string | number;
82761
82919
  openDelay: string | number;
@@ -82876,6 +83034,7 @@ declare const VSelect: {
82876
83034
  origin: "auto" | "overlap" | Anchor;
82877
83035
  offset?: string | number | number[] | undefined;
82878
83036
  stickToTarget: boolean;
83037
+ viewportMargin: string | number;
82879
83038
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
82880
83039
  height?: string | number | undefined;
82881
83040
  maxHeight?: string | number | undefined;
@@ -82985,7 +83144,7 @@ declare const VSelect: {
82985
83144
  "v-slot:default"?: false | ((arg: {
82986
83145
  isActive: vue.Ref<boolean, boolean>;
82987
83146
  }) => vue.VNodeChild) | undefined;
82988
- } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
83147
+ } & vue.VNodeProps & vue.AllowedComponentProps & 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">>;
82989
83148
  };
82990
83149
  multiple: BooleanConstructor;
82991
83150
  noDataText: {
@@ -85711,6 +85870,7 @@ declare const VSpeedDial: {
85711
85870
  origin: "auto" | "overlap" | Anchor;
85712
85871
  offset: string | number | number[];
85713
85872
  stickToTarget: boolean;
85873
+ viewportMargin: string | number;
85714
85874
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
85715
85875
  minWidth: string | number;
85716
85876
  closeDelay: string | number;
@@ -85859,6 +86019,7 @@ declare const VSpeedDial: {
85859
86019
  origin: "auto" | "overlap" | Anchor;
85860
86020
  offset: string | number | number[] | undefined;
85861
86021
  stickToTarget: boolean;
86022
+ viewportMargin: string | number;
85862
86023
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
85863
86024
  minWidth: string | number;
85864
86025
  closeDelay: string | number;
@@ -85974,6 +86135,7 @@ declare const VSpeedDial: {
85974
86135
  origin: "auto" | "overlap" | Anchor;
85975
86136
  offset: string | number | number[];
85976
86137
  stickToTarget: boolean;
86138
+ viewportMargin: string | number;
85977
86139
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
85978
86140
  minWidth: string | number;
85979
86141
  closeDelay: string | number;
@@ -86120,6 +86282,7 @@ declare const VSpeedDial: {
86120
86282
  origin: "auto" | "overlap" | Anchor;
86121
86283
  offset: string | number | number[] | undefined;
86122
86284
  stickToTarget: boolean;
86285
+ viewportMargin: string | number;
86123
86286
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
86124
86287
  minWidth: string | number;
86125
86288
  closeDelay: string | number;
@@ -86219,6 +86382,7 @@ declare const VSpeedDial: {
86219
86382
  origin: "auto" | "overlap" | Anchor;
86220
86383
  offset: string | number | number[];
86221
86384
  stickToTarget: boolean;
86385
+ viewportMargin: string | number;
86222
86386
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
86223
86387
  minWidth: string | number;
86224
86388
  closeDelay: string | number;
@@ -86367,6 +86531,7 @@ declare const VSpeedDial: {
86367
86531
  origin: "auto" | "overlap" | Anchor;
86368
86532
  offset: string | number | number[] | undefined;
86369
86533
  stickToTarget: boolean;
86534
+ viewportMargin: string | number;
86370
86535
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
86371
86536
  minWidth: string | number;
86372
86537
  closeDelay: string | number;
@@ -86502,6 +86667,10 @@ declare const VSpeedDial: {
86502
86667
  default: NonNullable<string | number | number[] | undefined>;
86503
86668
  };
86504
86669
  stickToTarget: BooleanConstructor;
86670
+ viewportMargin: {
86671
+ type: (NumberConstructor | StringConstructor)[];
86672
+ default: number;
86673
+ };
86505
86674
  scrollStrategy: Omit<{
86506
86675
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
86507
86676
  default: string;
@@ -86889,6 +87058,10 @@ declare const VSpeedDial: {
86889
87058
  default: NonNullable<string | number | number[] | undefined>;
86890
87059
  };
86891
87060
  stickToTarget: BooleanConstructor;
87061
+ viewportMargin: {
87062
+ type: (NumberConstructor | StringConstructor)[];
87063
+ default: number;
87064
+ };
86892
87065
  scrollStrategy: Omit<{
86893
87066
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
86894
87067
  default: string;
@@ -90362,6 +90535,8 @@ declare const VTab: {
90362
90535
  spaced?: "both" | "end" | "start" | undefined;
90363
90536
  text?: string | number | boolean | undefined;
90364
90537
  sliderColor?: string | undefined;
90538
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
90539
+ sliderTransitionDuration?: string | number | undefined;
90365
90540
  } & {
90366
90541
  $children?: {
90367
90542
  default?: (() => vue.VNodeChild) | undefined;
@@ -90828,6 +91003,8 @@ declare const VTab: {
90828
91003
  spaced?: "both" | "end" | "start" | undefined;
90829
91004
  text?: string | number | boolean | undefined;
90830
91005
  sliderColor?: string | undefined;
91006
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
91007
+ sliderTransitionDuration?: string | number | undefined;
90831
91008
  } & {
90832
91009
  $children?: {
90833
91010
  default?: (() => vue.VNodeChild) | undefined;
@@ -91278,6 +91455,8 @@ declare const VTab: {
91278
91455
  spaced?: "both" | "end" | "start" | undefined;
91279
91456
  text?: string | number | boolean | undefined;
91280
91457
  sliderColor?: string | undefined;
91458
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
91459
+ sliderTransitionDuration?: string | number | undefined;
91281
91460
  } & {
91282
91461
  $children?: {
91283
91462
  default?: (() => vue.VNodeChild) | undefined;
@@ -91775,6 +91954,8 @@ declare const VTab: {
91775
91954
  };
91776
91955
  fixed: BooleanConstructor;
91777
91956
  sliderColor: StringConstructor;
91957
+ sliderTransition: PropType<"fade" | "grow" | "shift">;
91958
+ sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
91778
91959
  hideSlider: BooleanConstructor;
91779
91960
  direction: {
91780
91961
  type: PropType<"horizontal" | "vertical">;
@@ -91864,6 +92045,8 @@ declare const VTab: {
91864
92045
  };
91865
92046
  fixed: BooleanConstructor;
91866
92047
  sliderColor: StringConstructor;
92048
+ sliderTransition: PropType<"fade" | "grow" | "shift">;
92049
+ sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
91867
92050
  hideSlider: BooleanConstructor;
91868
92051
  direction: {
91869
92052
  type: PropType<"horizontal" | "vertical">;
@@ -91916,6 +92099,8 @@ declare const VTabs: {
91916
92099
  spaced?: "both" | "end" | "start" | undefined;
91917
92100
  contentClass?: any;
91918
92101
  showArrows?: string | boolean | undefined;
92102
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
92103
+ sliderTransitionDuration?: string | number | undefined;
91919
92104
  color?: string | undefined;
91920
92105
  bgColor?: string | undefined;
91921
92106
  height?: string | number | undefined;
@@ -92006,6 +92191,8 @@ declare const VTabs: {
92006
92191
  spaced?: "both" | "end" | "start" | undefined;
92007
92192
  contentClass?: any;
92008
92193
  showArrows?: string | boolean | undefined;
92194
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
92195
+ sliderTransitionDuration?: string | number | undefined;
92009
92196
  color?: string | undefined;
92010
92197
  bgColor?: string | undefined;
92011
92198
  height?: string | number | undefined;
@@ -92066,6 +92253,8 @@ declare const VTabs: {
92066
92253
  spaced?: "both" | "end" | "start" | undefined;
92067
92254
  contentClass?: any;
92068
92255
  showArrows?: string | boolean | undefined;
92256
+ sliderTransition?: "fade" | "grow" | "shift" | undefined;
92257
+ sliderTransitionDuration?: string | number | undefined;
92069
92258
  color?: string | undefined;
92070
92259
  bgColor?: string | undefined;
92071
92260
  height?: string | number | undefined;
@@ -92193,6 +92382,8 @@ declare const VTabs: {
92193
92382
  type: (BooleanConstructor | StringConstructor)[];
92194
92383
  validator: (v: any) => boolean;
92195
92384
  };
92385
+ sliderTransition: PropType<"fade" | "grow" | "shift">;
92386
+ sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
92196
92387
  alignTabs: {
92197
92388
  type: PropType<"center" | "end" | "start" | "title">;
92198
92389
  default: string;
@@ -92280,6 +92471,8 @@ declare const VTabs: {
92280
92471
  type: (BooleanConstructor | StringConstructor)[];
92281
92472
  validator: (v: any) => boolean;
92282
92473
  };
92474
+ sliderTransition: PropType<"fade" | "grow" | "shift">;
92475
+ sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
92283
92476
  alignTabs: {
92284
92477
  type: PropType<"center" | "end" | "start" | "title">;
92285
92478
  default: string;
@@ -98207,6 +98400,7 @@ declare const VTooltip: {
98207
98400
  origin: "auto" | "overlap" | Anchor;
98208
98401
  offset: string | number | number[];
98209
98402
  stickToTarget: boolean;
98403
+ viewportMargin: string | number;
98210
98404
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98211
98405
  minWidth: string | number;
98212
98406
  activatorProps: Record<string, any>;
@@ -98289,6 +98483,7 @@ declare const VTooltip: {
98289
98483
  location: Anchor;
98290
98484
  origin: "auto" | "overlap" | Anchor;
98291
98485
  stickToTarget: boolean;
98486
+ viewportMargin: string | number;
98292
98487
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98293
98488
  activatorProps: Record<string, any>;
98294
98489
  openOnClick: boolean;
@@ -98339,6 +98534,7 @@ declare const VTooltip: {
98339
98534
  origin: "auto" | "overlap" | Anchor;
98340
98535
  offset?: string | number | number[] | undefined;
98341
98536
  stickToTarget: boolean;
98537
+ viewportMargin: string | number;
98342
98538
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98343
98539
  height?: string | number | undefined;
98344
98540
  maxHeight?: string | number | undefined;
@@ -98386,7 +98582,7 @@ declare const VTooltip: {
98386
98582
  "v-slot:default"?: false | ((arg: {
98387
98583
  isActive: vue.Ref<boolean, boolean>;
98388
98584
  }) => vue.VNodeChild) | undefined;
98389
- } & 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">;
98585
+ } & 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">;
98390
98586
  $attrs: {
98391
98587
  [x: string]: unknown;
98392
98588
  };
@@ -98418,6 +98614,7 @@ declare const VTooltip: {
98418
98614
  location: Anchor;
98419
98615
  origin: "auto" | "overlap" | Anchor;
98420
98616
  stickToTarget: boolean;
98617
+ viewportMargin: string | number;
98421
98618
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98422
98619
  activatorProps: Record<string, any>;
98423
98620
  openOnHover: boolean;
@@ -98518,6 +98715,7 @@ declare const VTooltip: {
98518
98715
  location: Anchor;
98519
98716
  origin: "auto" | "overlap" | Anchor;
98520
98717
  stickToTarget: boolean;
98718
+ viewportMargin: string | number;
98521
98719
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98522
98720
  activatorProps: Record<string, any>;
98523
98721
  openOnClick: boolean;
@@ -98574,6 +98772,7 @@ declare const VTooltip: {
98574
98772
  location: Anchor;
98575
98773
  origin: "auto" | "overlap" | Anchor;
98576
98774
  stickToTarget: boolean;
98775
+ viewportMargin: string | number;
98577
98776
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98578
98777
  activatorProps: Record<string, any>;
98579
98778
  openOnClick: boolean;
@@ -98597,6 +98796,7 @@ declare const VTooltip: {
98597
98796
  location: Anchor;
98598
98797
  origin: "auto" | "overlap" | Anchor;
98599
98798
  stickToTarget: boolean;
98799
+ viewportMargin: string | number;
98600
98800
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98601
98801
  activatorProps: Record<string, any>;
98602
98802
  openOnHover: boolean;
@@ -98675,7 +98875,7 @@ declare const VTooltip: {
98675
98875
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
98676
98876
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
98677
98877
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
98678
- }, "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<{
98878
+ }, "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<{
98679
98879
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
98680
98880
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
98681
98881
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -98685,7 +98885,7 @@ declare const VTooltip: {
98685
98885
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
98686
98886
  localTop: Readonly<vue.Ref<boolean, boolean>>;
98687
98887
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
98688
- }> & {} & 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}`> & {
98888
+ }> & {} & 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}`> & {
98689
98889
  _allExposed: {
98690
98890
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
98691
98891
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -98706,6 +98906,7 @@ declare const VTooltip: {
98706
98906
  origin: "auto" | "overlap" | Anchor;
98707
98907
  offset: string | number | number[] | undefined;
98708
98908
  stickToTarget: boolean;
98909
+ viewportMargin: string | number;
98709
98910
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98710
98911
  minWidth: string | number;
98711
98912
  activatorProps: Record<string, any>;
@@ -98752,6 +98953,7 @@ declare const VTooltip: {
98752
98953
  origin: "auto" | "overlap" | Anchor;
98753
98954
  offset: string | number | number[];
98754
98955
  stickToTarget: boolean;
98956
+ viewportMargin: string | number;
98755
98957
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98756
98958
  minWidth: string | number;
98757
98959
  activatorProps: Record<string, any>;
@@ -98834,6 +99036,7 @@ declare const VTooltip: {
98834
99036
  location: Anchor;
98835
99037
  origin: "auto" | "overlap" | Anchor;
98836
99038
  stickToTarget: boolean;
99039
+ viewportMargin: string | number;
98837
99040
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98838
99041
  activatorProps: Record<string, any>;
98839
99042
  openOnClick: boolean;
@@ -98884,6 +99087,7 @@ declare const VTooltip: {
98884
99087
  origin: "auto" | "overlap" | Anchor;
98885
99088
  offset?: string | number | number[] | undefined;
98886
99089
  stickToTarget: boolean;
99090
+ viewportMargin: string | number;
98887
99091
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98888
99092
  height?: string | number | undefined;
98889
99093
  maxHeight?: string | number | undefined;
@@ -98931,7 +99135,7 @@ declare const VTooltip: {
98931
99135
  "v-slot:default"?: false | ((arg: {
98932
99136
  isActive: vue.Ref<boolean, boolean>;
98933
99137
  }) => vue.VNodeChild) | undefined;
98934
- } & 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">;
99138
+ } & 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">;
98935
99139
  $attrs: {
98936
99140
  [x: string]: unknown;
98937
99141
  };
@@ -98963,6 +99167,7 @@ declare const VTooltip: {
98963
99167
  location: Anchor;
98964
99168
  origin: "auto" | "overlap" | Anchor;
98965
99169
  stickToTarget: boolean;
99170
+ viewportMargin: string | number;
98966
99171
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
98967
99172
  activatorProps: Record<string, any>;
98968
99173
  openOnHover: boolean;
@@ -99063,6 +99268,7 @@ declare const VTooltip: {
99063
99268
  location: Anchor;
99064
99269
  origin: "auto" | "overlap" | Anchor;
99065
99270
  stickToTarget: boolean;
99271
+ viewportMargin: string | number;
99066
99272
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99067
99273
  activatorProps: Record<string, any>;
99068
99274
  openOnClick: boolean;
@@ -99119,6 +99325,7 @@ declare const VTooltip: {
99119
99325
  location: Anchor;
99120
99326
  origin: "auto" | "overlap" | Anchor;
99121
99327
  stickToTarget: boolean;
99328
+ viewportMargin: string | number;
99122
99329
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99123
99330
  activatorProps: Record<string, any>;
99124
99331
  openOnClick: boolean;
@@ -99142,6 +99349,7 @@ declare const VTooltip: {
99142
99349
  location: Anchor;
99143
99350
  origin: "auto" | "overlap" | Anchor;
99144
99351
  stickToTarget: boolean;
99352
+ viewportMargin: string | number;
99145
99353
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99146
99354
  activatorProps: Record<string, any>;
99147
99355
  openOnHover: boolean;
@@ -99220,7 +99428,7 @@ declare const VTooltip: {
99220
99428
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
99221
99429
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
99222
99430
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
99223
- }, "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<{
99431
+ }, "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<{
99224
99432
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99225
99433
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99226
99434
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -99230,7 +99438,7 @@ declare const VTooltip: {
99230
99438
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
99231
99439
  localTop: Readonly<vue.Ref<boolean, boolean>>;
99232
99440
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
99233
- }> & {} & 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}`> & {
99441
+ }> & {} & 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}`> & {
99234
99442
  _allExposed: {
99235
99443
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99236
99444
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -99249,6 +99457,7 @@ declare const VTooltip: {
99249
99457
  origin: "auto" | "overlap" | Anchor;
99250
99458
  offset: string | number | number[] | undefined;
99251
99459
  stickToTarget: boolean;
99460
+ viewportMargin: string | number;
99252
99461
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99253
99462
  minWidth: string | number;
99254
99463
  activatorProps: Record<string, any>;
@@ -99279,6 +99488,7 @@ declare const VTooltip: {
99279
99488
  origin: "auto" | "overlap" | Anchor;
99280
99489
  offset: string | number | number[];
99281
99490
  stickToTarget: boolean;
99491
+ viewportMargin: string | number;
99282
99492
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99283
99493
  minWidth: string | number;
99284
99494
  activatorProps: Record<string, any>;
@@ -99361,6 +99571,7 @@ declare const VTooltip: {
99361
99571
  location: Anchor;
99362
99572
  origin: "auto" | "overlap" | Anchor;
99363
99573
  stickToTarget: boolean;
99574
+ viewportMargin: string | number;
99364
99575
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99365
99576
  activatorProps: Record<string, any>;
99366
99577
  openOnClick: boolean;
@@ -99411,6 +99622,7 @@ declare const VTooltip: {
99411
99622
  origin: "auto" | "overlap" | Anchor;
99412
99623
  offset?: string | number | number[] | undefined;
99413
99624
  stickToTarget: boolean;
99625
+ viewportMargin: string | number;
99414
99626
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99415
99627
  height?: string | number | undefined;
99416
99628
  maxHeight?: string | number | undefined;
@@ -99458,7 +99670,7 @@ declare const VTooltip: {
99458
99670
  "v-slot:default"?: false | ((arg: {
99459
99671
  isActive: vue.Ref<boolean, boolean>;
99460
99672
  }) => vue.VNodeChild) | undefined;
99461
- } & 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">;
99673
+ } & 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">;
99462
99674
  $attrs: {
99463
99675
  [x: string]: unknown;
99464
99676
  };
@@ -99490,6 +99702,7 @@ declare const VTooltip: {
99490
99702
  location: Anchor;
99491
99703
  origin: "auto" | "overlap" | Anchor;
99492
99704
  stickToTarget: boolean;
99705
+ viewportMargin: string | number;
99493
99706
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99494
99707
  activatorProps: Record<string, any>;
99495
99708
  openOnHover: boolean;
@@ -99590,6 +99803,7 @@ declare const VTooltip: {
99590
99803
  location: Anchor;
99591
99804
  origin: "auto" | "overlap" | Anchor;
99592
99805
  stickToTarget: boolean;
99806
+ viewportMargin: string | number;
99593
99807
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99594
99808
  activatorProps: Record<string, any>;
99595
99809
  openOnClick: boolean;
@@ -99646,6 +99860,7 @@ declare const VTooltip: {
99646
99860
  location: Anchor;
99647
99861
  origin: "auto" | "overlap" | Anchor;
99648
99862
  stickToTarget: boolean;
99863
+ viewportMargin: string | number;
99649
99864
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99650
99865
  activatorProps: Record<string, any>;
99651
99866
  openOnClick: boolean;
@@ -99669,6 +99884,7 @@ declare const VTooltip: {
99669
99884
  location: Anchor;
99670
99885
  origin: "auto" | "overlap" | Anchor;
99671
99886
  stickToTarget: boolean;
99887
+ viewportMargin: string | number;
99672
99888
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99673
99889
  activatorProps: Record<string, any>;
99674
99890
  openOnHover: boolean;
@@ -99747,7 +99963,7 @@ declare const VTooltip: {
99747
99963
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
99748
99964
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
99749
99965
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
99750
- }, "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<{
99966
+ }, "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<{
99751
99967
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99752
99968
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99753
99969
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -99757,7 +99973,7 @@ declare const VTooltip: {
99757
99973
  globalTop: Readonly<vue.Ref<boolean, boolean>>;
99758
99974
  localTop: Readonly<vue.Ref<boolean, boolean>>;
99759
99975
  updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
99760
- }> & {} & 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}`> & {
99976
+ }> & {} & 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}`> & {
99761
99977
  _allExposed: {
99762
99978
  activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
99763
99979
  scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -99778,6 +99994,7 @@ declare const VTooltip: {
99778
99994
  origin: "auto" | "overlap" | Anchor;
99779
99995
  offset: string | number | number[] | undefined;
99780
99996
  stickToTarget: boolean;
99997
+ viewportMargin: string | number;
99781
99998
  scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
99782
99999
  minWidth: string | number;
99783
100000
  activatorProps: Record<string, any>;
@@ -99844,6 +100061,10 @@ declare const VTooltip: {
99844
100061
  default: NonNullable<string | number | number[] | undefined>;
99845
100062
  };
99846
100063
  stickToTarget: BooleanConstructor;
100064
+ viewportMargin: {
100065
+ type: (NumberConstructor | StringConstructor)[];
100066
+ default: number;
100067
+ };
99847
100068
  scrollStrategy: Omit<{
99848
100069
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
99849
100070
  default: string;
@@ -99960,6 +100181,10 @@ declare const VTooltip: {
99960
100181
  default: NonNullable<string | number | number[] | undefined>;
99961
100182
  };
99962
100183
  stickToTarget: BooleanConstructor;
100184
+ viewportMargin: {
100185
+ type: (NumberConstructor | StringConstructor)[];
100186
+ default: number;
100187
+ };
99963
100188
  scrollStrategy: Omit<{
99964
100189
  type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
99965
100190
  default: string;
@@ -106174,78 +106399,80 @@ declare module 'vue' {
106174
106399
  $children?: VNodeChild
106175
106400
  }
106176
106401
  export interface GlobalComponents {
106177
- VAlert: VAlert
106178
- VAlertTitle: VAlertTitle
106402
+ VApp: VApp
106403
+ VAvatar: VAvatar
106404
+ VAutocomplete: VAutocomplete
106405
+ VBadge: VBadge
106179
106406
  VAppBar: VAppBar
106180
106407
  VAppBarNavIcon: VAppBarNavIcon
106181
106408
  VAppBarTitle: VAppBarTitle
106182
- VAutocomplete: VAutocomplete
106183
- VApp: VApp
106184
- VBadge: VBadge
106185
- VBottomNavigation: VBottomNavigation
106409
+ VAlert: VAlert
106410
+ VAlertTitle: VAlertTitle
106186
106411
  VBanner: VBanner
106187
106412
  VBannerActions: VBannerActions
106188
106413
  VBannerText: VBannerText
106189
- VAvatar: VAvatar
106190
- VBtnToggle: VBtnToggle
106414
+ VBottomSheet: VBottomSheet
106191
106415
  VBreadcrumbs: VBreadcrumbs
106192
106416
  VBreadcrumbsItem: VBreadcrumbsItem
106193
106417
  VBreadcrumbsDivider: VBreadcrumbsDivider
106194
- VBottomSheet: VBottomSheet
106418
+ VBottomNavigation: VBottomNavigation
106195
106419
  VBtnGroup: VBtnGroup
106420
+ VBtnToggle: VBtnToggle
106196
106421
  VBtn: VBtn
106422
+ VCheckbox: VCheckbox
106423
+ VCheckboxBtn: VCheckboxBtn
106197
106424
  VCard: VCard
106198
106425
  VCardActions: VCardActions
106199
106426
  VCardItem: VCardItem
106200
106427
  VCardSubtitle: VCardSubtitle
106201
106428
  VCardText: VCardText
106202
106429
  VCardTitle: VCardTitle
106203
- VCode: VCode
106204
- VCheckbox: VCheckbox
106205
- VCheckboxBtn: VCheckboxBtn
106206
- VChip: VChip
106207
106430
  VCarousel: VCarousel
106208
106431
  VCarouselItem: VCarouselItem
106209
- VColorPicker: VColorPicker
106210
106432
  VChipGroup: VChipGroup
106433
+ VChip: VChip
106211
106434
  VCombobox: VCombobox
106212
- VDataTable: VDataTable
106213
- VDataTableHeaders: VDataTableHeaders
106214
- VDataTableFooter: VDataTableFooter
106215
- VDataTableRows: VDataTableRows
106216
- VDataTableRow: VDataTableRow
106217
- VDataTableVirtual: VDataTableVirtual
106218
- VDataTableServer: VDataTableServer
106219
- VEmptyState: VEmptyState
106435
+ VColorPicker: VColorPicker
106436
+ VCode: VCode
106220
106437
  VCounter: VCounter
106221
- VFab: VFab
106222
106438
  VDatePicker: VDatePicker
106223
106439
  VDatePickerControls: VDatePickerControls
106224
106440
  VDatePickerHeader: VDatePickerHeader
106225
106441
  VDatePickerMonth: VDatePickerMonth
106226
106442
  VDatePickerMonths: VDatePickerMonths
106227
106443
  VDatePickerYears: VDatePickerYears
106228
- VDialog: VDialog
106444
+ VDataTable: VDataTable
106445
+ VDataTableHeaders: VDataTableHeaders
106446
+ VDataTableFooter: VDataTableFooter
106447
+ VDataTableRows: VDataTableRows
106448
+ VDataTableRow: VDataTableRow
106449
+ VDataTableVirtual: VDataTableVirtual
106450
+ VDataTableServer: VDataTableServer
106229
106451
  VDivider: VDivider
106452
+ VField: VField
106453
+ VFieldLabel: VFieldLabel
106230
106454
  VExpansionPanels: VExpansionPanels
106231
106455
  VExpansionPanel: VExpansionPanel
106232
106456
  VExpansionPanelText: VExpansionPanelText
106233
106457
  VExpansionPanelTitle: VExpansionPanelTitle
106458
+ VDialog: VDialog
106234
106459
  VFileInput: VFileInput
106460
+ VEmptyState: VEmptyState
106235
106461
  VFooter: VFooter
106236
- VField: VField
106237
- VFieldLabel: VFieldLabel
106462
+ VInfiniteScroll: VInfiniteScroll
106463
+ VFab: VFab
106238
106464
  VIcon: VIcon
106239
106465
  VComponentIcon: VComponentIcon
106240
106466
  VSvgIcon: VSvgIcon
106241
106467
  VLigatureIcon: VLigatureIcon
106242
106468
  VClassIcon: VClassIcon
106469
+ VLabel: VLabel
106243
106470
  VImg: VImg
106244
- VInfiniteScroll: VInfiniteScroll
106471
+ VKbd: VKbd
106245
106472
  VItemGroup: VItemGroup
106246
106473
  VItem: VItem
106247
- VKbd: VKbd
106248
106474
  VInput: VInput
106475
+ VMain: VMain
106249
106476
  VList: VList
106250
106477
  VListGroup: VListGroup
106251
106478
  VListImg: VListImg
@@ -106255,81 +106482,79 @@ declare module 'vue' {
106255
106482
  VListItemSubtitle: VListItemSubtitle
106256
106483
  VListItemTitle: VListItemTitle
106257
106484
  VListSubheader: VListSubheader
106258
- VLabel: VLabel
106259
- VMain: VMain
106260
106485
  VMenu: VMenu
106261
- VOverlay: VOverlay
106262
- VNavigationDrawer: VNavigationDrawer
106263
106486
  VMessages: VMessages
106487
+ VNavigationDrawer: VNavigationDrawer
106264
106488
  VNumberInput: VNumberInput
106265
- VPagination: VPagination
106266
106489
  VOtpInput: VOtpInput
106490
+ VPagination: VPagination
106491
+ VProgressLinear: VProgressLinear
106267
106492
  VProgressCircular: VProgressCircular
106493
+ VRating: VRating
106268
106494
  VRadioGroup: VRadioGroup
106495
+ VOverlay: VOverlay
106269
106496
  VSelect: VSelect
106270
- VProgressLinear: VProgressLinear
106271
- VSheet: VSheet
106272
106497
  VSelectionControlGroup: VSelectionControlGroup
106273
- VRating: VRating
106274
106498
  VSelectionControl: VSelectionControl
106499
+ VSheet: VSheet
106275
106500
  VSlideGroup: VSlideGroup
106276
106501
  VSlideGroupItem: VSlideGroupItem
106277
106502
  VSkeletonLoader: VSkeletonLoader
106278
- VSnackbar: VSnackbar
106279
- VSystemBar: VSystemBar
106280
- VSlider: VSlider
106281
106503
  VStepper: VStepper
106282
106504
  VStepperActions: VStepperActions
106283
106505
  VStepperHeader: VStepperHeader
106284
106506
  VStepperItem: VStepperItem
106285
106507
  VStepperWindow: VStepperWindow
106286
106508
  VStepperWindowItem: VStepperWindowItem
106509
+ VSnackbar: VSnackbar
106510
+ VSlider: VSlider
106511
+ VSystemBar: VSystemBar
106287
106512
  VSwitch: VSwitch
106513
+ VTextarea: VTextarea
106288
106514
  VTab: VTab
106289
106515
  VTabs: VTabs
106290
106516
  VTabsWindow: VTabsWindow
106291
106517
  VTabsWindowItem: VTabsWindowItem
106292
106518
  VTable: VTable
106293
- VTextarea: VTextarea
106294
106519
  VTextField: VTextField
106295
- VTooltip: VTooltip
106296
106520
  VTimePicker: VTimePicker
106297
106521
  VTimePickerClock: VTimePickerClock
106298
106522
  VTimePickerControls: VTimePickerControls
106299
106523
  VTimeline: VTimeline
106300
106524
  VTimelineItem: VTimelineItem
106525
+ VTooltip: VTooltip
106301
106526
  VTreeview: VTreeview
106302
106527
  VTreeviewItem: VTreeviewItem
106303
106528
  VTreeviewGroup: VTreeviewGroup
106529
+ VWindow: VWindow
106530
+ VWindowItem: VWindowItem
106304
106531
  VToolbar: VToolbar
106305
106532
  VToolbarTitle: VToolbarTitle
106306
106533
  VToolbarItems: VToolbarItems
106307
- VWindow: VWindow
106308
- VWindowItem: VWindowItem
106309
106534
  VConfirmEdit: VConfirmEdit
106310
- VDataIterator: VDataIterator
106311
106535
  VDefaultsProvider: VDefaultsProvider
106536
+ VDataIterator: VDataIterator
106312
106537
  VForm: VForm
106538
+ VHover: VHover
106313
106539
  VContainer: VContainer
106314
106540
  VCol: VCol
106315
106541
  VRow: VRow
106316
106542
  VSpacer: VSpacer
106317
- VHover: VHover
106318
- VLazy: VLazy
106319
- VLocaleProvider: VLocaleProvider
106320
106543
  VLayout: VLayout
106321
106544
  VLayoutItem: VLayoutItem
106545
+ VLocaleProvider: VLocaleProvider
106546
+ VLazy: VLazy
106322
106547
  VNoSsr: VNoSsr
106323
106548
  VParallax: VParallax
106324
106549
  VRadio: VRadio
106325
106550
  VRangeSlider: VRangeSlider
106326
106551
  VResponsive: VResponsive
106327
- VSparkline: VSparkline
106328
106552
  VSnackbarQueue: VSnackbarQueue
106329
106553
  VSpeedDial: VSpeedDial
106330
- VVirtualScroll: VVirtualScroll
106554
+ VSparkline: VSparkline
106331
106555
  VThemeProvider: VThemeProvider
106332
106556
  VValidation: VValidation
106557
+ VVirtualScroll: VVirtualScroll
106333
106558
  VFabTransition: VFabTransition
106334
106559
  VDialogBottomTransition: VDialogBottomTransition
106335
106560
  VDialogTopTransition: VDialogTopTransition
@@ -106347,22 +106572,22 @@ declare module 'vue' {
106347
106572
  VExpandXTransition: VExpandXTransition
106348
106573
  VDialogTransition: VDialogTransition
106349
106574
  VCalendar: VCalendar
106350
- VColorInput: VColorInput
106351
- VIconBtn: VIconBtn
106352
106575
  VFileUpload: VFileUpload
106353
106576
  VFileUploadItem: VFileUploadItem
106354
- VStepperVertical: VStepperVertical
106355
- VStepperVerticalItem: VStepperVerticalItem
106356
- VStepperVerticalActions: VStepperVerticalActions
106577
+ VColorInput: VColorInput
106357
106578
  VPicker: VPicker
106358
106579
  VPickerTitle: VPickerTitle
106359
- VHotkey: VHotkey
106360
- VVideo: VVideo
106361
- VVideoControls: VVideoControls
106362
- VVideoVolume: VVideoVolume
106580
+ VIconBtn: VIconBtn
106363
106581
  VPie: VPie
106364
106582
  VPieSegment: VPieSegment
106365
106583
  VPieTooltip: VPieTooltip
106584
+ VVideo: VVideo
106585
+ VVideoControls: VVideoControls
106586
+ VVideoVolume: VVideoVolume
106587
+ VStepperVertical: VStepperVertical
106588
+ VStepperVerticalItem: VStepperVerticalItem
106589
+ VStepperVerticalActions: VStepperVerticalActions
106590
+ VHotkey: VHotkey
106366
106591
  VDateInput: VDateInput
106367
106592
  VMaskInput: VMaskInput
106368
106593
  VPullToRefresh: VPullToRefresh