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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +1165 -1113
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +14 -1
  6. package/dist/json/web-types.json +2215 -2091
  7. package/dist/vuetify-labs.cjs +79 -38
  8. package/dist/vuetify-labs.css +5133 -5126
  9. package/dist/vuetify-labs.d.ts +398 -133
  10. package/dist/vuetify-labs.esm.js +79 -38
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +79 -38
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +79 -38
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2945 -2938
  17. package/dist/vuetify.d.ts +338 -113
  18. package/dist/vuetify.esm.js +79 -38
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +79 -38
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +23 -22
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +33 -11
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +25 -0
  27. package/lib/components/VBreadcrumbs/VBreadcrumbs.d.ts +13 -0
  28. package/lib/components/VBreadcrumbs/VBreadcrumbs.js +3 -2
  29. package/lib/components/VBreadcrumbs/VBreadcrumbs.js.map +1 -1
  30. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.d.ts +20 -0
  31. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +7 -2
  32. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
  33. package/lib/components/VCombobox/VCombobox.d.ts +33 -11
  34. package/lib/components/VDialog/VDialog.d.ts +52 -9
  35. package/lib/components/VInfiniteScroll/VInfiniteScroll.css +7 -0
  36. package/lib/components/VInfiniteScroll/VInfiniteScroll.js +3 -1
  37. package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
  38. package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -0
  39. package/lib/components/VMenu/VMenu.d.ts +52 -9
  40. package/lib/components/VOverlay/VOverlay.d.ts +25 -0
  41. package/lib/components/VOverlay/locationStrategies.d.ts +12 -0
  42. package/lib/components/VOverlay/locationStrategies.js +10 -7
  43. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  44. package/lib/components/VSelect/VSelect.d.ts +51 -17
  45. package/lib/components/VSnackbar/VSnackbar.d.ts +27 -9
  46. package/lib/components/VSnackbar/VSnackbar.js +1 -1
  47. package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
  48. package/lib/components/VSpeedDial/VSpeedDial.d.ts +25 -0
  49. package/lib/components/VTabs/VTab.d.ts +20 -0
  50. package/lib/components/VTabs/VTab.js +46 -17
  51. package/lib/components/VTabs/VTab.js.map +1 -1
  52. package/lib/components/VTabs/VTabs.d.ts +20 -0
  53. package/lib/components/VTabs/VTabs.js +9 -7
  54. package/lib/components/VTabs/VTabs.js.map +1 -1
  55. package/lib/components/VTooltip/VTooltip.d.ts +52 -9
  56. package/lib/entry-bundler.js +1 -1
  57. package/lib/framework.d.ts +90 -71
  58. package/lib/framework.js +1 -1
  59. package/lib/labs/VVideo/VVideo.d.ts +63 -21
  60. package/lib/labs/VVideo/VVideoControls.d.ts +30 -10
  61. package/lib/labs/VVideo/VVideoVolume.d.ts +30 -10
  62. package/package.json +1 -1
@@ -2,10 +2,11 @@ import { mergeProps as _mergeProps, createElementVNode as _createElementVNode, n
2
2
  // Composables
3
3
  import { useTextColor } from "../../composables/color.js";
4
4
  import { makeComponentProps } from "../../composables/component.js";
5
+ import { makeDimensionProps, useDimension } from "../../composables/dimensions.js";
5
6
  import { makeRouterProps, useLink } from "../../composables/router.js";
6
7
  import { makeTagProps } from "../../composables/tag.js"; // Utilities
7
8
  import { computed } from 'vue';
8
- import { genericComponent, propsFactory, useRender } from "../../util/index.js";
9
+ import { genericComponent, pick, propsFactory, useRender } from "../../util/index.js";
9
10
  export const makeVBreadcrumbsItemProps = propsFactory({
10
11
  active: Boolean,
11
12
  activeClass: String,
@@ -14,6 +15,7 @@ export const makeVBreadcrumbsItemProps = propsFactory({
14
15
  disabled: Boolean,
15
16
  title: String,
16
17
  ...makeComponentProps(),
18
+ ...pick(makeDimensionProps(), ['width', 'maxWidth']),
17
19
  ...makeRouterProps(),
18
20
  ...makeTagProps({
19
21
  tag: 'li'
@@ -29,6 +31,9 @@ export const VBreadcrumbsItem = genericComponent()({
29
31
  } = _ref;
30
32
  const link = useLink(props, attrs);
31
33
  const isActive = computed(() => props.active || link.isActive?.value);
34
+ const {
35
+ dimensionStyles
36
+ } = useDimension(props);
32
37
  const {
33
38
  textColorClasses,
34
39
  textColorStyles
@@ -40,7 +45,7 @@ export const VBreadcrumbsItem = genericComponent()({
40
45
  'v-breadcrumbs-item--disabled': props.disabled,
41
46
  [`${props.activeClass}`]: isActive.value && props.activeClass
42
47
  }, textColorClasses.value, props.class]),
43
- "style": _normalizeStyle([textColorStyles.value, props.style]),
48
+ "style": _normalizeStyle([textColorStyles.value, dimensionStyles.value, props.style]),
44
49
  "aria-current": isActive.value ? 'page' : undefined
45
50
  }, {
46
51
  default: () => [!link.isLink.value ? slots.default?.() ?? props.title : _createElementVNode("a", _mergeProps({
@@ -1 +1 @@
1
- {"version":3,"file":"VBreadcrumbsItem.js","names":["useTextColor","makeComponentProps","makeRouterProps","useLink","makeTagProps","computed","genericComponent","propsFactory","useRender","makeVBreadcrumbsItemProps","active","Boolean","activeClass","String","activeColor","color","disabled","title","tag","VBreadcrumbsItem","name","props","setup","_ref","slots","attrs","link","isActive","value","textColorClasses","textColorStyles","_createVNode","_normalizeClass","class","_normalizeStyle","style","undefined","default","isLink","_createElementVNode","_mergeProps","navigate","linkProps"],"sources":["../../../src/components/VBreadcrumbs/VBreadcrumbsItem.tsx"],"sourcesContent":["// Composables\nimport { useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { makeRouterProps, useLink } from '@/composables/router'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { computed } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVBreadcrumbsItemProps = propsFactory({\n active: Boolean,\n activeClass: String,\n activeColor: String,\n color: String,\n disabled: Boolean,\n title: String,\n\n ...makeComponentProps(),\n ...makeRouterProps(),\n ...makeTagProps({ tag: 'li' }),\n}, 'VBreadcrumbsItem')\n\nexport const VBreadcrumbsItem = genericComponent()({\n name: 'VBreadcrumbsItem',\n\n props: makeVBreadcrumbsItemProps(),\n\n setup (props, { slots, attrs }) {\n const link = useLink(props, attrs)\n const isActive = computed(() => props.active || link.isActive?.value)\n\n const { textColorClasses, textColorStyles } = useTextColor(\n () => isActive.value ? props.activeColor : props.color\n )\n\n useRender(() => {\n return (\n <props.tag\n class={[\n 'v-breadcrumbs-item',\n {\n 'v-breadcrumbs-item--active': isActive.value,\n 'v-breadcrumbs-item--disabled': props.disabled,\n [`${props.activeClass}`]: isActive.value && props.activeClass,\n },\n textColorClasses.value,\n props.class,\n ]}\n style={[\n textColorStyles.value,\n props.style,\n ]}\n aria-current={ isActive.value ? 'page' : undefined }\n >\n { !link.isLink.value ? slots.default?.() ?? props.title : (\n <a\n class=\"v-breadcrumbs-item--link\"\n onClick={ link.navigate }\n { ...link.linkProps }\n >\n { slots.default?.() ?? props.title }\n </a>\n )}\n </props.tag>\n )\n })\n return {}\n },\n})\n\nexport type VBreadcrumbsItem = InstanceType<typeof VBreadcrumbsItem>\n"],"mappings":";AAAA;AAAA,SACSA,YAAY;AAAA,SACZC,kBAAkB;AAAA,SAClBC,eAAe,EAAEC,OAAO;AAAA,SACxBC,YAAY,oCAErB;AACA,SAASC,QAAQ,QAAQ,KAAK;AAAA,SACrBC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,yBAAyB,GAAGF,YAAY,CAAC;EACpDG,MAAM,EAAEC,OAAO;EACfC,WAAW,EAAEC,MAAM;EACnBC,WAAW,EAAED,MAAM;EACnBE,KAAK,EAAEF,MAAM;EACbG,QAAQ,EAAEL,OAAO;EACjBM,KAAK,EAAEJ,MAAM;EAEb,GAAGZ,kBAAkB,CAAC,CAAC;EACvB,GAAGC,eAAe,CAAC,CAAC;EACpB,GAAGE,YAAY,CAAC;IAAEc,GAAG,EAAE;EAAK,CAAC;AAC/B,CAAC,EAAE,kBAAkB,CAAC;AAEtB,OAAO,MAAMC,gBAAgB,GAAGb,gBAAgB,CAAC,CAAC,CAAC;EACjDc,IAAI,EAAE,kBAAkB;EAExBC,KAAK,EAAEZ,yBAAyB,CAAC,CAAC;EAElCa,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAoB;IAAA,IAAlB;MAAEC,KAAK;MAAEC;IAAM,CAAC,GAAAF,IAAA;IAC5B,MAAMG,IAAI,GAAGvB,OAAO,CAACkB,KAAK,EAAEI,KAAK,CAAC;IAClC,MAAME,QAAQ,GAAGtB,QAAQ,CAAC,MAAMgB,KAAK,CAACX,MAAM,IAAIgB,IAAI,CAACC,QAAQ,EAAEC,KAAK,CAAC;IAErE,MAAM;MAAEC,gBAAgB;MAAEC;IAAgB,CAAC,GAAG9B,YAAY,CACxD,MAAM2B,QAAQ,CAACC,KAAK,GAAGP,KAAK,CAACP,WAAW,GAAGO,KAAK,CAACN,KACnD,CAAC;IAEDP,SAAS,CAAC,MAAM;MACd,OAAAuB,YAAA,CAAAV,KAAA,CAAAH,GAAA;QAAA,SAAAc,eAAA,CAEW,CACL,oBAAoB,EACpB;UACE,4BAA4B,EAAEL,QAAQ,CAACC,KAAK;UAC5C,8BAA8B,EAAEP,KAAK,CAACL,QAAQ;UAC9C,CAAC,GAAGK,KAAK,CAACT,WAAW,EAAE,GAAGe,QAAQ,CAACC,KAAK,IAAIP,KAAK,CAACT;QACpD,CAAC,EACDiB,gBAAgB,CAACD,KAAK,EACtBP,KAAK,CAACY,KAAK,CACZ;QAAA,SAAAC,eAAA,CACM,CACLJ,eAAe,CAACF,KAAK,EACrBP,KAAK,CAACc,KAAK,CACZ;QAAA,gBACcR,QAAQ,CAACC,KAAK,GAAG,MAAM,GAAGQ;MAAS;QAAAC,OAAA,EAAAA,CAAA,MAEhD,CAACX,IAAI,CAACY,MAAM,CAACV,KAAK,GAAGJ,KAAK,CAACa,OAAO,GAAG,CAAC,IAAIhB,KAAK,CAACJ,KAAK,GAAAsB,mBAAA,MAAAC,WAAA;UAAA;UAAA,WAGzCd,IAAI,CAACe;QAAQ,GAClBf,IAAI,CAACgB,SAAS,IAEjBlB,KAAK,CAACa,OAAO,GAAG,CAAC,IAAIhB,KAAK,CAACJ,KAAK,EAErC;MAAA;IAGP,CAAC,CAAC;IACF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"VBreadcrumbsItem.js","names":["useTextColor","makeComponentProps","makeDimensionProps","useDimension","makeRouterProps","useLink","makeTagProps","computed","genericComponent","pick","propsFactory","useRender","makeVBreadcrumbsItemProps","active","Boolean","activeClass","String","activeColor","color","disabled","title","tag","VBreadcrumbsItem","name","props","setup","_ref","slots","attrs","link","isActive","value","dimensionStyles","textColorClasses","textColorStyles","_createVNode","_normalizeClass","class","_normalizeStyle","style","undefined","default","isLink","_createElementVNode","_mergeProps","navigate","linkProps"],"sources":["../../../src/components/VBreadcrumbs/VBreadcrumbsItem.tsx"],"sourcesContent":["// Composables\nimport { useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDimensionProps, useDimension } from '@/composables/dimensions'\nimport { makeRouterProps, useLink } from '@/composables/router'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { computed } from 'vue'\nimport { genericComponent, pick, propsFactory, useRender } from '@/util'\n\nexport const makeVBreadcrumbsItemProps = propsFactory({\n active: Boolean,\n activeClass: String,\n activeColor: String,\n color: String,\n disabled: Boolean,\n title: String,\n\n ...makeComponentProps(),\n ...pick(makeDimensionProps(), ['width', 'maxWidth']),\n ...makeRouterProps(),\n ...makeTagProps({ tag: 'li' }),\n}, 'VBreadcrumbsItem')\n\nexport const VBreadcrumbsItem = genericComponent()({\n name: 'VBreadcrumbsItem',\n\n props: makeVBreadcrumbsItemProps(),\n\n setup (props, { slots, attrs }) {\n const link = useLink(props, attrs)\n const isActive = computed(() => props.active || link.isActive?.value)\n const { dimensionStyles } = useDimension(props)\n\n const { textColorClasses, textColorStyles } = useTextColor(\n () => isActive.value ? props.activeColor : props.color\n )\n\n useRender(() => {\n return (\n <props.tag\n class={[\n 'v-breadcrumbs-item',\n {\n 'v-breadcrumbs-item--active': isActive.value,\n 'v-breadcrumbs-item--disabled': props.disabled,\n [`${props.activeClass}`]: isActive.value && props.activeClass,\n },\n textColorClasses.value,\n props.class,\n ]}\n style={[\n textColorStyles.value,\n dimensionStyles.value,\n props.style,\n ]}\n aria-current={ isActive.value ? 'page' : undefined }\n >\n { !link.isLink.value ? slots.default?.() ?? props.title : (\n <a\n class=\"v-breadcrumbs-item--link\"\n onClick={ link.navigate }\n { ...link.linkProps }\n >\n { slots.default?.() ?? props.title }\n </a>\n )}\n </props.tag>\n )\n })\n return {}\n },\n})\n\nexport type VBreadcrumbsItem = InstanceType<typeof VBreadcrumbsItem>\n"],"mappings":";AAAA;AAAA,SACSA,YAAY;AAAA,SACZC,kBAAkB;AAAA,SAClBC,kBAAkB,EAAEC,YAAY;AAAA,SAChCC,eAAe,EAAEC,OAAO;AAAA,SACxBC,YAAY,oCAErB;AACA,SAASC,QAAQ,QAAQ,KAAK;AAAA,SACrBC,gBAAgB,EAAEC,IAAI,EAAEC,YAAY,EAAEC,SAAS;AAExD,OAAO,MAAMC,yBAAyB,GAAGF,YAAY,CAAC;EACpDG,MAAM,EAAEC,OAAO;EACfC,WAAW,EAAEC,MAAM;EACnBC,WAAW,EAAED,MAAM;EACnBE,KAAK,EAAEF,MAAM;EACbG,QAAQ,EAAEL,OAAO;EACjBM,KAAK,EAAEJ,MAAM;EAEb,GAAGf,kBAAkB,CAAC,CAAC;EACvB,GAAGQ,IAAI,CAACP,kBAAkB,CAAC,CAAC,EAAE,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;EACpD,GAAGE,eAAe,CAAC,CAAC;EACpB,GAAGE,YAAY,CAAC;IAAEe,GAAG,EAAE;EAAK,CAAC;AAC/B,CAAC,EAAE,kBAAkB,CAAC;AAEtB,OAAO,MAAMC,gBAAgB,GAAGd,gBAAgB,CAAC,CAAC,CAAC;EACjDe,IAAI,EAAE,kBAAkB;EAExBC,KAAK,EAAEZ,yBAAyB,CAAC,CAAC;EAElCa,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAoB;IAAA,IAAlB;MAAEC,KAAK;MAAEC;IAAM,CAAC,GAAAF,IAAA;IAC5B,MAAMG,IAAI,GAAGxB,OAAO,CAACmB,KAAK,EAAEI,KAAK,CAAC;IAClC,MAAME,QAAQ,GAAGvB,QAAQ,CAAC,MAAMiB,KAAK,CAACX,MAAM,IAAIgB,IAAI,CAACC,QAAQ,EAAEC,KAAK,CAAC;IACrE,MAAM;MAAEC;IAAgB,CAAC,GAAG7B,YAAY,CAACqB,KAAK,CAAC;IAE/C,MAAM;MAAES,gBAAgB;MAAEC;IAAgB,CAAC,GAAGlC,YAAY,CACxD,MAAM8B,QAAQ,CAACC,KAAK,GAAGP,KAAK,CAACP,WAAW,GAAGO,KAAK,CAACN,KACnD,CAAC;IAEDP,SAAS,CAAC,MAAM;MACd,OAAAwB,YAAA,CAAAX,KAAA,CAAAH,GAAA;QAAA,SAAAe,eAAA,CAEW,CACL,oBAAoB,EACpB;UACE,4BAA4B,EAAEN,QAAQ,CAACC,KAAK;UAC5C,8BAA8B,EAAEP,KAAK,CAACL,QAAQ;UAC9C,CAAC,GAAGK,KAAK,CAACT,WAAW,EAAE,GAAGe,QAAQ,CAACC,KAAK,IAAIP,KAAK,CAACT;QACpD,CAAC,EACDkB,gBAAgB,CAACF,KAAK,EACtBP,KAAK,CAACa,KAAK,CACZ;QAAA,SAAAC,eAAA,CACM,CACLJ,eAAe,CAACH,KAAK,EACrBC,eAAe,CAACD,KAAK,EACrBP,KAAK,CAACe,KAAK,CACZ;QAAA,gBACcT,QAAQ,CAACC,KAAK,GAAG,MAAM,GAAGS;MAAS;QAAAC,OAAA,EAAAA,CAAA,MAEhD,CAACZ,IAAI,CAACa,MAAM,CAACX,KAAK,GAAGJ,KAAK,CAACc,OAAO,GAAG,CAAC,IAAIjB,KAAK,CAACJ,KAAK,GAAAuB,mBAAA,MAAAC,WAAA;UAAA;UAAA,WAGzCf,IAAI,CAACgB;QAAQ,GAClBhB,IAAI,CAACiB,SAAS,IAEjBnB,KAAK,CAACc,OAAO,GAAG,CAAC,IAAIjB,KAAK,CAACJ,KAAK,EAErC;MAAA;IAGP,CAAC,CAAC;IACF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC","ignoreList":[]}
@@ -1946,6 +1946,7 @@ export declare const makeVComboboxProps: <Defaults extends {
1946
1946
  location: import("../../util/index.js").Anchor | undefined;
1947
1947
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
1948
1948
  stickToTarget: boolean;
1949
+ viewportMargin: string | number;
1949
1950
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
1950
1951
  closeDelay: string | number;
1951
1952
  openDelay: string | number;
@@ -2066,6 +2067,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2066
2067
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2067
2068
  offset?: string | number | number[] | undefined;
2068
2069
  stickToTarget: boolean;
2070
+ viewportMargin: string | number;
2069
2071
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2070
2072
  height?: string | number | undefined;
2071
2073
  maxHeight?: string | number | undefined;
@@ -2175,7 +2177,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2175
2177
  "v-slot:default"?: false | ((arg: {
2176
2178
  isActive: import("vue").Ref<boolean, boolean>;
2177
2179
  }) => import("vue").VNodeChild) | undefined;
2178
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
2180
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
2179
2181
  } : Omit<{
2180
2182
  type: PropType<Partial<{
2181
2183
  style: import("vue").StyleValue;
@@ -2183,6 +2185,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2183
2185
  location: import("../../util/index.js").Anchor | undefined;
2184
2186
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2185
2187
  stickToTarget: boolean;
2188
+ viewportMargin: string | number;
2186
2189
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2187
2190
  closeDelay: string | number;
2188
2191
  openDelay: string | number;
@@ -2303,6 +2306,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2303
2306
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2304
2307
  offset?: string | number | number[] | undefined;
2305
2308
  stickToTarget: boolean;
2309
+ viewportMargin: string | number;
2306
2310
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2307
2311
  height?: string | number | undefined;
2308
2312
  maxHeight?: string | number | undefined;
@@ -2412,7 +2416,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2412
2416
  "v-slot:default"?: false | ((arg: {
2413
2417
  isActive: import("vue").Ref<boolean, boolean>;
2414
2418
  }) => import("vue").VNodeChild) | undefined;
2415
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
2419
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
2416
2420
  }, "default" | "type"> & {
2417
2421
  type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
2418
2422
  style: import("vue").StyleValue;
@@ -2420,6 +2424,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2420
2424
  location: import("../../util/index.js").Anchor | undefined;
2421
2425
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2422
2426
  stickToTarget: boolean;
2427
+ viewportMargin: string | number;
2423
2428
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2424
2429
  closeDelay: string | number;
2425
2430
  openDelay: string | number;
@@ -2540,6 +2545,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2540
2545
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2541
2546
  offset?: string | number | number[] | undefined;
2542
2547
  stickToTarget: boolean;
2548
+ viewportMargin: string | number;
2543
2549
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2544
2550
  height?: string | number | undefined;
2545
2551
  maxHeight?: string | number | undefined;
@@ -2649,12 +2655,13 @@ export declare const makeVComboboxProps: <Defaults extends {
2649
2655
  "v-slot:default"?: false | ((arg: {
2650
2656
  isActive: import("vue").Ref<boolean, boolean>;
2651
2657
  }) => import("vue").VNodeChild) | undefined;
2652
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex"> : Defaults["menuProps"] | (Partial<{
2658
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | (Partial<{
2653
2659
  style: import("vue").StyleValue;
2654
2660
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
2655
2661
  location: import("../../util/index.js").Anchor | undefined;
2656
2662
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2657
2663
  stickToTarget: boolean;
2664
+ viewportMargin: string | number;
2658
2665
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2659
2666
  closeDelay: string | number;
2660
2667
  openDelay: string | number;
@@ -2775,6 +2782,7 @@ export declare const makeVComboboxProps: <Defaults extends {
2775
2782
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2776
2783
  offset?: string | number | number[] | undefined;
2777
2784
  stickToTarget: boolean;
2785
+ viewportMargin: string | number;
2778
2786
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2779
2787
  height?: string | number | undefined;
2780
2788
  maxHeight?: string | number | undefined;
@@ -2884,13 +2892,14 @@ export declare const makeVComboboxProps: <Defaults extends {
2884
2892
  "v-slot:default"?: false | ((arg: {
2885
2893
  isActive: import("vue").Ref<boolean, boolean>;
2886
2894
  }) => import("vue").VNodeChild) | undefined;
2887
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">)>;
2895
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">)>;
2888
2896
  default: unknown extends Defaults["menuProps"] ? Partial<{
2889
2897
  style: import("vue").StyleValue;
2890
2898
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
2891
2899
  location: import("../../util/index.js").Anchor | undefined;
2892
2900
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
2893
2901
  stickToTarget: boolean;
2902
+ viewportMargin: string | number;
2894
2903
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
2895
2904
  closeDelay: string | number;
2896
2905
  openDelay: string | number;
@@ -3011,6 +3020,7 @@ export declare const makeVComboboxProps: <Defaults extends {
3011
3020
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3012
3021
  offset?: string | number | number[] | undefined;
3013
3022
  stickToTarget: boolean;
3023
+ viewportMargin: string | number;
3014
3024
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3015
3025
  height?: string | number | undefined;
3016
3026
  maxHeight?: string | number | undefined;
@@ -3120,12 +3130,13 @@ export declare const makeVComboboxProps: <Defaults extends {
3120
3130
  "v-slot:default"?: false | ((arg: {
3121
3131
  isActive: import("vue").Ref<boolean, boolean>;
3122
3132
  }) => import("vue").VNodeChild) | undefined;
3123
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
3133
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex"> : Defaults["menuProps"] | NonNullable<Partial<{
3124
3134
  style: import("vue").StyleValue;
3125
3135
  locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
3126
3136
  location: import("../../util/index.js").Anchor | undefined;
3127
3137
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3128
3138
  stickToTarget: boolean;
3139
+ viewportMargin: string | number;
3129
3140
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3130
3141
  closeDelay: string | number;
3131
3142
  openDelay: string | number;
@@ -3246,6 +3257,7 @@ export declare const makeVComboboxProps: <Defaults extends {
3246
3257
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3247
3258
  offset?: string | number | number[] | undefined;
3248
3259
  stickToTarget: boolean;
3260
+ viewportMargin: string | number;
3249
3261
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3250
3262
  height?: string | number | undefined;
3251
3263
  maxHeight?: string | number | undefined;
@@ -3355,7 +3367,7 @@ export declare const makeVComboboxProps: <Defaults extends {
3355
3367
  "v-slot:default"?: false | ((arg: {
3356
3368
  isActive: import("vue").Ref<boolean, boolean>;
3357
3369
  }) => import("vue").VNodeChild) | undefined;
3358
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
3370
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
3359
3371
  };
3360
3372
  multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
3361
3373
  type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
@@ -3721,6 +3733,7 @@ export declare const VCombobox: {
3721
3733
  location: import("../../util/index.js").Anchor | undefined;
3722
3734
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3723
3735
  stickToTarget: boolean;
3736
+ viewportMargin: string | number;
3724
3737
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3725
3738
  closeDelay: string | number;
3726
3739
  openDelay: string | number;
@@ -3841,6 +3854,7 @@ export declare const VCombobox: {
3841
3854
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
3842
3855
  offset?: string | number | number[] | undefined;
3843
3856
  stickToTarget: boolean;
3857
+ viewportMargin: string | number;
3844
3858
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
3845
3859
  height?: string | number | undefined;
3846
3860
  maxHeight?: string | number | undefined;
@@ -3950,7 +3964,7 @@ export declare const VCombobox: {
3950
3964
  "v-slot:default"?: false | ((arg: {
3951
3965
  isActive: import("vue").Ref<boolean, boolean>;
3952
3966
  }) => import("vue").VNodeChild) | undefined;
3953
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
3967
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
3954
3968
  itemColor?: string | undefined;
3955
3969
  autoSelectFirst?: "exact" | boolean | undefined;
3956
3970
  delimiters?: readonly string[] | undefined;
@@ -6567,6 +6581,7 @@ export declare const VCombobox: {
6567
6581
  location: import("../../util/index.js").Anchor | undefined;
6568
6582
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
6569
6583
  stickToTarget: boolean;
6584
+ viewportMargin: string | number;
6570
6585
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
6571
6586
  closeDelay: string | number;
6572
6587
  openDelay: string | number;
@@ -6687,6 +6702,7 @@ export declare const VCombobox: {
6687
6702
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
6688
6703
  offset?: string | number | number[] | undefined;
6689
6704
  stickToTarget: boolean;
6705
+ viewportMargin: string | number;
6690
6706
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
6691
6707
  height?: string | number | undefined;
6692
6708
  maxHeight?: string | number | undefined;
@@ -6796,7 +6812,7 @@ export declare const VCombobox: {
6796
6812
  "v-slot:default"?: false | ((arg: {
6797
6813
  isActive: import("vue").Ref<boolean, boolean>;
6798
6814
  }) => import("vue").VNodeChild) | undefined;
6799
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
6815
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
6800
6816
  itemColor?: string | undefined;
6801
6817
  autoSelectFirst?: "exact" | boolean | undefined;
6802
6818
  delimiters?: readonly string[] | undefined;
@@ -9331,6 +9347,7 @@ export declare const VCombobox: {
9331
9347
  location: import("../../util/index.js").Anchor | undefined;
9332
9348
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
9333
9349
  stickToTarget: boolean;
9350
+ viewportMargin: string | number;
9334
9351
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
9335
9352
  closeDelay: string | number;
9336
9353
  openDelay: string | number;
@@ -9451,6 +9468,7 @@ export declare const VCombobox: {
9451
9468
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
9452
9469
  offset?: string | number | number[] | undefined;
9453
9470
  stickToTarget: boolean;
9471
+ viewportMargin: string | number;
9454
9472
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
9455
9473
  height?: string | number | undefined;
9456
9474
  maxHeight?: string | number | undefined;
@@ -9560,7 +9578,7 @@ export declare const VCombobox: {
9560
9578
  "v-slot:default"?: false | ((arg: {
9561
9579
  isActive: import("vue").Ref<boolean, boolean>;
9562
9580
  }) => import("vue").VNodeChild) | undefined;
9563
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">) | undefined;
9581
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">) | undefined;
9564
9582
  itemColor?: string | undefined;
9565
9583
  autoSelectFirst?: "exact" | boolean | undefined;
9566
9584
  delimiters?: readonly string[] | undefined;
@@ -12336,6 +12354,7 @@ export declare const VCombobox: {
12336
12354
  location: import("../../util/index.js").Anchor | undefined;
12337
12355
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
12338
12356
  stickToTarget: boolean;
12357
+ viewportMargin: string | number;
12339
12358
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
12340
12359
  closeDelay: string | number;
12341
12360
  openDelay: string | number;
@@ -12456,6 +12475,7 @@ export declare const VCombobox: {
12456
12475
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
12457
12476
  offset?: string | number | number[] | undefined;
12458
12477
  stickToTarget: boolean;
12478
+ viewportMargin: string | number;
12459
12479
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
12460
12480
  height?: string | number | undefined;
12461
12481
  maxHeight?: string | number | undefined;
@@ -12565,7 +12585,7 @@ export declare const VCombobox: {
12565
12585
  "v-slot:default"?: false | ((arg: {
12566
12586
  isActive: import("vue").Ref<boolean, boolean>;
12567
12587
  }) => import("vue").VNodeChild) | undefined;
12568
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
12588
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
12569
12589
  };
12570
12590
  multiple: BooleanConstructor;
12571
12591
  noDataText: {
@@ -12989,6 +13009,7 @@ export declare const VCombobox: {
12989
13009
  location: import("../../util/index.js").Anchor | undefined;
12990
13010
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
12991
13011
  stickToTarget: boolean;
13012
+ viewportMargin: string | number;
12992
13013
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
12993
13014
  closeDelay: string | number;
12994
13015
  openDelay: string | number;
@@ -13109,6 +13130,7 @@ export declare const VCombobox: {
13109
13130
  origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
13110
13131
  offset?: string | number | number[] | undefined;
13111
13132
  stickToTarget: boolean;
13133
+ viewportMargin: string | number;
13112
13134
  scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
13113
13135
  height?: string | number | undefined;
13114
13136
  maxHeight?: string | number | undefined;
@@ -13218,7 +13240,7 @@ export declare const VCombobox: {
13218
13240
  "v-slot:default"?: false | ((arg: {
13219
13241
  isActive: import("vue").Ref<boolean, boolean>;
13220
13242
  }) => import("vue").VNodeChild) | undefined;
13221
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
13243
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "viewportMargin" | "zIndex">>;
13222
13244
  };
13223
13245
  multiple: BooleanConstructor;
13224
13246
  noDataText: {