@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.
- package/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +1165 -1113
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +14 -1
- package/dist/json/web-types.json +2215 -2091
- package/dist/vuetify-labs.cjs +79 -38
- package/dist/vuetify-labs.css +5133 -5126
- package/dist/vuetify-labs.d.ts +398 -133
- package/dist/vuetify-labs.esm.js +79 -38
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +79 -38
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +79 -38
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2945 -2938
- package/dist/vuetify.d.ts +338 -113
- package/dist/vuetify.esm.js +79 -38
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +79 -38
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +23 -22
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +33 -11
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +25 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.d.ts +13 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.js +3 -2
- package/lib/components/VBreadcrumbs/VBreadcrumbs.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.d.ts +20 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +7 -2
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +33 -11
- package/lib/components/VDialog/VDialog.d.ts +52 -9
- package/lib/components/VInfiniteScroll/VInfiniteScroll.css +7 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +3 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -0
- package/lib/components/VMenu/VMenu.d.ts +52 -9
- package/lib/components/VOverlay/VOverlay.d.ts +25 -0
- package/lib/components/VOverlay/locationStrategies.d.ts +12 -0
- package/lib/components/VOverlay/locationStrategies.js +10 -7
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +51 -17
- package/lib/components/VSnackbar/VSnackbar.d.ts +27 -9
- package/lib/components/VSnackbar/VSnackbar.js +1 -1
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +25 -0
- package/lib/components/VTabs/VTab.d.ts +20 -0
- package/lib/components/VTabs/VTab.js +46 -17
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTabs/VTabs.d.ts +20 -0
- package/lib/components/VTabs/VTabs.js +9 -7
- package/lib/components/VTabs/VTabs.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.d.ts +52 -9
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +90 -71
- package/lib/framework.js +1 -1
- package/lib/labs/VVideo/VVideo.d.ts +63 -21
- package/lib/labs/VVideo/VVideoControls.d.ts +30 -10
- package/lib/labs/VVideo/VVideoVolume.d.ts +30 -10
- package/package.json +1 -1
|
@@ -1472,6 +1472,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1472
1472
|
location: import("../../util/index.js").Anchor | undefined;
|
|
1473
1473
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
1474
1474
|
stickToTarget: boolean;
|
|
1475
|
+
viewportMargin: string | number;
|
|
1475
1476
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
1476
1477
|
closeDelay: string | number;
|
|
1477
1478
|
openDelay: string | number;
|
|
@@ -1592,6 +1593,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1592
1593
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
1593
1594
|
offset?: string | number | number[] | undefined;
|
|
1594
1595
|
stickToTarget: boolean;
|
|
1596
|
+
viewportMargin: string | number;
|
|
1595
1597
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
1596
1598
|
height?: string | number | undefined;
|
|
1597
1599
|
maxHeight?: string | number | undefined;
|
|
@@ -1701,7 +1703,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1701
1703
|
"v-slot:default"?: false | ((arg: {
|
|
1702
1704
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
1703
1705
|
}) => import("vue").VNodeChild) | undefined;
|
|
1704
|
-
} & 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">>;
|
|
1706
|
+
} & 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">>;
|
|
1705
1707
|
} : Omit<{
|
|
1706
1708
|
type: PropType<Partial<{
|
|
1707
1709
|
style: import("vue").StyleValue;
|
|
@@ -1709,6 +1711,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1709
1711
|
location: import("../../util/index.js").Anchor | undefined;
|
|
1710
1712
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
1711
1713
|
stickToTarget: boolean;
|
|
1714
|
+
viewportMargin: string | number;
|
|
1712
1715
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
1713
1716
|
closeDelay: string | number;
|
|
1714
1717
|
openDelay: string | number;
|
|
@@ -1829,6 +1832,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1829
1832
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
1830
1833
|
offset?: string | number | number[] | undefined;
|
|
1831
1834
|
stickToTarget: boolean;
|
|
1835
|
+
viewportMargin: string | number;
|
|
1832
1836
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
1833
1837
|
height?: string | number | undefined;
|
|
1834
1838
|
maxHeight?: string | number | undefined;
|
|
@@ -1938,7 +1942,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1938
1942
|
"v-slot:default"?: false | ((arg: {
|
|
1939
1943
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
1940
1944
|
}) => import("vue").VNodeChild) | undefined;
|
|
1941
|
-
} & 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">>;
|
|
1945
|
+
} & 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">>;
|
|
1942
1946
|
}, "default" | "type"> & {
|
|
1943
1947
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
1944
1948
|
style: import("vue").StyleValue;
|
|
@@ -1946,6 +1950,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
1946
1950
|
location: import("../../util/index.js").Anchor | undefined;
|
|
1947
1951
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
1948
1952
|
stickToTarget: boolean;
|
|
1953
|
+
viewportMargin: string | number;
|
|
1949
1954
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
1950
1955
|
closeDelay: string | number;
|
|
1951
1956
|
openDelay: string | number;
|
|
@@ -2066,6 +2071,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2066
2071
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2067
2072
|
offset?: string | number | number[] | undefined;
|
|
2068
2073
|
stickToTarget: boolean;
|
|
2074
|
+
viewportMargin: string | number;
|
|
2069
2075
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2070
2076
|
height?: string | number | undefined;
|
|
2071
2077
|
maxHeight?: string | number | undefined;
|
|
@@ -2175,12 +2181,13 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2175
2181
|
"v-slot:default"?: false | ((arg: {
|
|
2176
2182
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
2177
2183
|
}) => 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"> : Defaults["menuProps"] | (Partial<{
|
|
2184
|
+
} & 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<{
|
|
2179
2185
|
style: import("vue").StyleValue;
|
|
2180
2186
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
2181
2187
|
location: import("../../util/index.js").Anchor | undefined;
|
|
2182
2188
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2183
2189
|
stickToTarget: boolean;
|
|
2190
|
+
viewportMargin: string | number;
|
|
2184
2191
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2185
2192
|
closeDelay: string | number;
|
|
2186
2193
|
openDelay: string | number;
|
|
@@ -2301,6 +2308,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2301
2308
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2302
2309
|
offset?: string | number | number[] | undefined;
|
|
2303
2310
|
stickToTarget: boolean;
|
|
2311
|
+
viewportMargin: string | number;
|
|
2304
2312
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2305
2313
|
height?: string | number | undefined;
|
|
2306
2314
|
maxHeight?: string | number | undefined;
|
|
@@ -2410,13 +2418,14 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2410
2418
|
"v-slot:default"?: false | ((arg: {
|
|
2411
2419
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
2412
2420
|
}) => import("vue").VNodeChild) | undefined;
|
|
2413
|
-
} & 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">)>;
|
|
2421
|
+
} & 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">)>;
|
|
2414
2422
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
2415
2423
|
style: import("vue").StyleValue;
|
|
2416
2424
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
2417
2425
|
location: import("../../util/index.js").Anchor | undefined;
|
|
2418
2426
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2419
2427
|
stickToTarget: boolean;
|
|
2428
|
+
viewportMargin: string | number;
|
|
2420
2429
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2421
2430
|
closeDelay: string | number;
|
|
2422
2431
|
openDelay: string | number;
|
|
@@ -2537,6 +2546,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2537
2546
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2538
2547
|
offset?: string | number | number[] | undefined;
|
|
2539
2548
|
stickToTarget: boolean;
|
|
2549
|
+
viewportMargin: string | number;
|
|
2540
2550
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2541
2551
|
height?: string | number | undefined;
|
|
2542
2552
|
maxHeight?: string | number | undefined;
|
|
@@ -2646,12 +2656,13 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2646
2656
|
"v-slot:default"?: false | ((arg: {
|
|
2647
2657
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
2648
2658
|
}) => import("vue").VNodeChild) | undefined;
|
|
2649
|
-
} & 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<{
|
|
2659
|
+
} & 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<{
|
|
2650
2660
|
style: import("vue").StyleValue;
|
|
2651
2661
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
2652
2662
|
location: import("../../util/index.js").Anchor | undefined;
|
|
2653
2663
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2654
2664
|
stickToTarget: boolean;
|
|
2665
|
+
viewportMargin: string | number;
|
|
2655
2666
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2656
2667
|
closeDelay: string | number;
|
|
2657
2668
|
openDelay: string | number;
|
|
@@ -2772,6 +2783,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2772
2783
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
2773
2784
|
offset?: string | number | number[] | undefined;
|
|
2774
2785
|
stickToTarget: boolean;
|
|
2786
|
+
viewportMargin: string | number;
|
|
2775
2787
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
2776
2788
|
height?: string | number | undefined;
|
|
2777
2789
|
maxHeight?: string | number | undefined;
|
|
@@ -2881,7 +2893,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
|
2881
2893
|
"v-slot:default"?: false | ((arg: {
|
|
2882
2894
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
2883
2895
|
}) => import("vue").VNodeChild) | undefined;
|
|
2884
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "activatorProps" | "closeDelay" | "closeOnBack" | "closeOnContentClick" | "contained" | "disableInitialFocus" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openDelay" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "submenu" | "transition" | "zIndex">>;
|
|
2896
|
+
} & 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">>;
|
|
2885
2897
|
};
|
|
2886
2898
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
|
2887
2899
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
|
@@ -4834,6 +4846,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
4834
4846
|
location: import("../../util/index.js").Anchor | undefined;
|
|
4835
4847
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
4836
4848
|
stickToTarget: boolean;
|
|
4849
|
+
viewportMargin: string | number;
|
|
4837
4850
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
4838
4851
|
closeDelay: string | number;
|
|
4839
4852
|
openDelay: string | number;
|
|
@@ -4954,6 +4967,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
4954
4967
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
4955
4968
|
offset?: string | number | number[] | undefined;
|
|
4956
4969
|
stickToTarget: boolean;
|
|
4970
|
+
viewportMargin: string | number;
|
|
4957
4971
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
4958
4972
|
height?: string | number | undefined;
|
|
4959
4973
|
maxHeight?: string | number | undefined;
|
|
@@ -5063,7 +5077,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5063
5077
|
"v-slot:default"?: false | ((arg: {
|
|
5064
5078
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
5065
5079
|
}) => import("vue").VNodeChild) | undefined;
|
|
5066
|
-
} & 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">>;
|
|
5080
|
+
} & 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">>;
|
|
5067
5081
|
} : Omit<{
|
|
5068
5082
|
type: PropType<Partial<{
|
|
5069
5083
|
style: import("vue").StyleValue;
|
|
@@ -5071,6 +5085,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5071
5085
|
location: import("../../util/index.js").Anchor | undefined;
|
|
5072
5086
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5073
5087
|
stickToTarget: boolean;
|
|
5088
|
+
viewportMargin: string | number;
|
|
5074
5089
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5075
5090
|
closeDelay: string | number;
|
|
5076
5091
|
openDelay: string | number;
|
|
@@ -5191,6 +5206,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5191
5206
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5192
5207
|
offset?: string | number | number[] | undefined;
|
|
5193
5208
|
stickToTarget: boolean;
|
|
5209
|
+
viewportMargin: string | number;
|
|
5194
5210
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5195
5211
|
height?: string | number | undefined;
|
|
5196
5212
|
maxHeight?: string | number | undefined;
|
|
@@ -5300,7 +5316,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5300
5316
|
"v-slot:default"?: false | ((arg: {
|
|
5301
5317
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
5302
5318
|
}) => import("vue").VNodeChild) | undefined;
|
|
5303
|
-
} & 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">>;
|
|
5319
|
+
} & 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">>;
|
|
5304
5320
|
}, "default" | "type"> & {
|
|
5305
5321
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
5306
5322
|
style: import("vue").StyleValue;
|
|
@@ -5308,6 +5324,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5308
5324
|
location: import("../../util/index.js").Anchor | undefined;
|
|
5309
5325
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5310
5326
|
stickToTarget: boolean;
|
|
5327
|
+
viewportMargin: string | number;
|
|
5311
5328
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5312
5329
|
closeDelay: string | number;
|
|
5313
5330
|
openDelay: string | number;
|
|
@@ -5428,6 +5445,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5428
5445
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5429
5446
|
offset?: string | number | number[] | undefined;
|
|
5430
5447
|
stickToTarget: boolean;
|
|
5448
|
+
viewportMargin: string | number;
|
|
5431
5449
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5432
5450
|
height?: string | number | undefined;
|
|
5433
5451
|
maxHeight?: string | number | undefined;
|
|
@@ -5537,12 +5555,13 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5537
5555
|
"v-slot:default"?: false | ((arg: {
|
|
5538
5556
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
5539
5557
|
}) => import("vue").VNodeChild) | undefined;
|
|
5540
|
-
} & 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<{
|
|
5558
|
+
} & 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<{
|
|
5541
5559
|
style: import("vue").StyleValue;
|
|
5542
5560
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
5543
5561
|
location: import("../../util/index.js").Anchor | undefined;
|
|
5544
5562
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5545
5563
|
stickToTarget: boolean;
|
|
5564
|
+
viewportMargin: string | number;
|
|
5546
5565
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5547
5566
|
closeDelay: string | number;
|
|
5548
5567
|
openDelay: string | number;
|
|
@@ -5663,6 +5682,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5663
5682
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5664
5683
|
offset?: string | number | number[] | undefined;
|
|
5665
5684
|
stickToTarget: boolean;
|
|
5685
|
+
viewportMargin: string | number;
|
|
5666
5686
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5667
5687
|
height?: string | number | undefined;
|
|
5668
5688
|
maxHeight?: string | number | undefined;
|
|
@@ -5772,13 +5792,14 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5772
5792
|
"v-slot:default"?: false | ((arg: {
|
|
5773
5793
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
5774
5794
|
}) => import("vue").VNodeChild) | undefined;
|
|
5775
|
-
} & 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">)>;
|
|
5795
|
+
} & 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">)>;
|
|
5776
5796
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
5777
5797
|
style: import("vue").StyleValue;
|
|
5778
5798
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
5779
5799
|
location: import("../../util/index.js").Anchor | undefined;
|
|
5780
5800
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5781
5801
|
stickToTarget: boolean;
|
|
5802
|
+
viewportMargin: string | number;
|
|
5782
5803
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5783
5804
|
closeDelay: string | number;
|
|
5784
5805
|
openDelay: string | number;
|
|
@@ -5899,6 +5920,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
5899
5920
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
5900
5921
|
offset?: string | number | number[] | undefined;
|
|
5901
5922
|
stickToTarget: boolean;
|
|
5923
|
+
viewportMargin: string | number;
|
|
5902
5924
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
5903
5925
|
height?: string | number | undefined;
|
|
5904
5926
|
maxHeight?: string | number | undefined;
|
|
@@ -6008,12 +6030,13 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
6008
6030
|
"v-slot:default"?: false | ((arg: {
|
|
6009
6031
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
6010
6032
|
}) => import("vue").VNodeChild) | undefined;
|
|
6011
|
-
} & 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<{
|
|
6033
|
+
} & 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<{
|
|
6012
6034
|
style: import("vue").StyleValue;
|
|
6013
6035
|
locationStrategy: "connected" | "static" | import("../../types.js").LocationStrategyFunction;
|
|
6014
6036
|
location: import("../../util/index.js").Anchor | undefined;
|
|
6015
6037
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
6016
6038
|
stickToTarget: boolean;
|
|
6039
|
+
viewportMargin: string | number;
|
|
6017
6040
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
6018
6041
|
closeDelay: string | number;
|
|
6019
6042
|
openDelay: string | number;
|
|
@@ -6134,6 +6157,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
6134
6157
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
6135
6158
|
offset?: string | number | number[] | undefined;
|
|
6136
6159
|
stickToTarget: boolean;
|
|
6160
|
+
viewportMargin: string | number;
|
|
6137
6161
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
6138
6162
|
height?: string | number | undefined;
|
|
6139
6163
|
maxHeight?: string | number | undefined;
|
|
@@ -6243,7 +6267,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
|
6243
6267
|
"v-slot:default"?: false | ((arg: {
|
|
6244
6268
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
6245
6269
|
}) => import("vue").VNodeChild) | undefined;
|
|
6246
|
-
} & 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">>;
|
|
6270
|
+
} & 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">>;
|
|
6247
6271
|
};
|
|
6248
6272
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
|
6249
6273
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
|
@@ -6581,6 +6605,7 @@ export declare const VSelect: {
|
|
|
6581
6605
|
location: import("../../util/index.js").Anchor | undefined;
|
|
6582
6606
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
6583
6607
|
stickToTarget: boolean;
|
|
6608
|
+
viewportMargin: string | number;
|
|
6584
6609
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
6585
6610
|
closeDelay: string | number;
|
|
6586
6611
|
openDelay: string | number;
|
|
@@ -6701,6 +6726,7 @@ export declare const VSelect: {
|
|
|
6701
6726
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
6702
6727
|
offset?: string | number | number[] | undefined;
|
|
6703
6728
|
stickToTarget: boolean;
|
|
6729
|
+
viewportMargin: string | number;
|
|
6704
6730
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
6705
6731
|
height?: string | number | undefined;
|
|
6706
6732
|
maxHeight?: string | number | undefined;
|
|
@@ -6810,7 +6836,7 @@ export declare const VSelect: {
|
|
|
6810
6836
|
"v-slot:default"?: false | ((arg: {
|
|
6811
6837
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
6812
6838
|
}) => import("vue").VNodeChild) | undefined;
|
|
6813
|
-
} & 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;
|
|
6839
|
+
} & 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;
|
|
6814
6840
|
itemColor?: string | undefined;
|
|
6815
6841
|
} & {
|
|
6816
6842
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -9413,6 +9439,7 @@ export declare const VSelect: {
|
|
|
9413
9439
|
location: import("../../util/index.js").Anchor | undefined;
|
|
9414
9440
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
9415
9441
|
stickToTarget: boolean;
|
|
9442
|
+
viewportMargin: string | number;
|
|
9416
9443
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
9417
9444
|
closeDelay: string | number;
|
|
9418
9445
|
openDelay: string | number;
|
|
@@ -9533,6 +9560,7 @@ export declare const VSelect: {
|
|
|
9533
9560
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
9534
9561
|
offset?: string | number | number[] | undefined;
|
|
9535
9562
|
stickToTarget: boolean;
|
|
9563
|
+
viewportMargin: string | number;
|
|
9536
9564
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
9537
9565
|
height?: string | number | undefined;
|
|
9538
9566
|
maxHeight?: string | number | undefined;
|
|
@@ -9642,7 +9670,7 @@ export declare const VSelect: {
|
|
|
9642
9670
|
"v-slot:default"?: false | ((arg: {
|
|
9643
9671
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
9644
9672
|
}) => import("vue").VNodeChild) | undefined;
|
|
9645
|
-
} & 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;
|
|
9673
|
+
} & 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;
|
|
9646
9674
|
itemColor?: string | undefined;
|
|
9647
9675
|
} & {
|
|
9648
9676
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -12164,6 +12192,7 @@ export declare const VSelect: {
|
|
|
12164
12192
|
location: import("../../util/index.js").Anchor | undefined;
|
|
12165
12193
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
12166
12194
|
stickToTarget: boolean;
|
|
12195
|
+
viewportMargin: string | number;
|
|
12167
12196
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
12168
12197
|
closeDelay: string | number;
|
|
12169
12198
|
openDelay: string | number;
|
|
@@ -12284,6 +12313,7 @@ export declare const VSelect: {
|
|
|
12284
12313
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
12285
12314
|
offset?: string | number | number[] | undefined;
|
|
12286
12315
|
stickToTarget: boolean;
|
|
12316
|
+
viewportMargin: string | number;
|
|
12287
12317
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
12288
12318
|
height?: string | number | undefined;
|
|
12289
12319
|
maxHeight?: string | number | undefined;
|
|
@@ -12393,7 +12423,7 @@ export declare const VSelect: {
|
|
|
12393
12423
|
"v-slot:default"?: false | ((arg: {
|
|
12394
12424
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
12395
12425
|
}) => import("vue").VNodeChild) | undefined;
|
|
12396
|
-
} & 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;
|
|
12426
|
+
} & 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;
|
|
12397
12427
|
itemColor?: string | undefined;
|
|
12398
12428
|
} & {
|
|
12399
12429
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -15152,6 +15182,7 @@ export declare const VSelect: {
|
|
|
15152
15182
|
location: import("../../util/index.js").Anchor | undefined;
|
|
15153
15183
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
15154
15184
|
stickToTarget: boolean;
|
|
15185
|
+
viewportMargin: string | number;
|
|
15155
15186
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
15156
15187
|
closeDelay: string | number;
|
|
15157
15188
|
openDelay: string | number;
|
|
@@ -15272,6 +15303,7 @@ export declare const VSelect: {
|
|
|
15272
15303
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
15273
15304
|
offset?: string | number | number[] | undefined;
|
|
15274
15305
|
stickToTarget: boolean;
|
|
15306
|
+
viewportMargin: string | number;
|
|
15275
15307
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
15276
15308
|
height?: string | number | undefined;
|
|
15277
15309
|
maxHeight?: string | number | undefined;
|
|
@@ -15381,7 +15413,7 @@ export declare const VSelect: {
|
|
|
15381
15413
|
"v-slot:default"?: false | ((arg: {
|
|
15382
15414
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
15383
15415
|
}) => import("vue").VNodeChild) | undefined;
|
|
15384
|
-
} & 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">>;
|
|
15416
|
+
} & 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">>;
|
|
15385
15417
|
};
|
|
15386
15418
|
multiple: BooleanConstructor;
|
|
15387
15419
|
noDataText: {
|
|
@@ -15791,6 +15823,7 @@ export declare const VSelect: {
|
|
|
15791
15823
|
location: import("../../util/index.js").Anchor | undefined;
|
|
15792
15824
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
15793
15825
|
stickToTarget: boolean;
|
|
15826
|
+
viewportMargin: string | number;
|
|
15794
15827
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
15795
15828
|
closeDelay: string | number;
|
|
15796
15829
|
openDelay: string | number;
|
|
@@ -15911,6 +15944,7 @@ export declare const VSelect: {
|
|
|
15911
15944
|
origin: "auto" | "overlap" | import("../../util/index.js").Anchor;
|
|
15912
15945
|
offset?: string | number | number[] | undefined;
|
|
15913
15946
|
stickToTarget: boolean;
|
|
15947
|
+
viewportMargin: string | number;
|
|
15914
15948
|
scrollStrategy: "block" | "close" | "none" | "reposition" | import("../../types.js").ScrollStrategyFunction;
|
|
15915
15949
|
height?: string | number | undefined;
|
|
15916
15950
|
maxHeight?: string | number | undefined;
|
|
@@ -16020,7 +16054,7 @@ export declare const VSelect: {
|
|
|
16020
16054
|
"v-slot:default"?: false | ((arg: {
|
|
16021
16055
|
isActive: import("vue").Ref<boolean, boolean>;
|
|
16022
16056
|
}) => import("vue").VNodeChild) | undefined;
|
|
16023
|
-
} & 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">>;
|
|
16057
|
+
} & 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">>;
|
|
16024
16058
|
};
|
|
16025
16059
|
multiple: BooleanConstructor;
|
|
16026
16060
|
noDataText: {
|