@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.
- package/CHANGELOG.md +6 -3
- package/dist/json/attributes.json +3507 -3455
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +14 -1
- package/dist/json/web-types.json +6462 -6338
- package/dist/vuetify-labs.cjs +76 -37
- package/dist/vuetify-labs.css +4631 -4631
- package/dist/vuetify-labs.d.ts +394 -129
- package/dist/vuetify-labs.esm.js +76 -37
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +76 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +76 -37
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3336 -3336
- package/dist/vuetify.d.ts +334 -109
- package/dist/vuetify.esm.js +76 -37
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +76 -37
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -21
- 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/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 +86 -67
- 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
package/dist/vuetify-labs.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>;
|
|
@@ -8104,6 +8123,7 @@ declare const VAutocomplete: {
|
|
|
8104
8123
|
location: Anchor | undefined;
|
|
8105
8124
|
origin: "auto" | "overlap" | Anchor;
|
|
8106
8125
|
stickToTarget: boolean;
|
|
8126
|
+
viewportMargin: string | number;
|
|
8107
8127
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
8108
8128
|
closeDelay: string | number;
|
|
8109
8129
|
openDelay: string | number;
|
|
@@ -8224,6 +8244,7 @@ declare const VAutocomplete: {
|
|
|
8224
8244
|
origin: "auto" | "overlap" | Anchor;
|
|
8225
8245
|
offset?: string | number | number[] | undefined;
|
|
8226
8246
|
stickToTarget: boolean;
|
|
8247
|
+
viewportMargin: string | number;
|
|
8227
8248
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
8228
8249
|
height?: string | number | undefined;
|
|
8229
8250
|
maxHeight?: string | number | undefined;
|
|
@@ -8333,7 +8354,7 @@ declare const VAutocomplete: {
|
|
|
8333
8354
|
"v-slot:default"?: false | ((arg: {
|
|
8334
8355
|
isActive: vue.Ref<boolean, boolean>;
|
|
8335
8356
|
}) => vue.VNodeChild) | undefined;
|
|
8336
|
-
} & 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;
|
|
8357
|
+
} & 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;
|
|
8337
8358
|
itemColor?: string | undefined;
|
|
8338
8359
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
8339
8360
|
search?: string | undefined;
|
|
@@ -10950,6 +10971,7 @@ declare const VAutocomplete: {
|
|
|
10950
10971
|
location: Anchor | undefined;
|
|
10951
10972
|
origin: "auto" | "overlap" | Anchor;
|
|
10952
10973
|
stickToTarget: boolean;
|
|
10974
|
+
viewportMargin: string | number;
|
|
10953
10975
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
10954
10976
|
closeDelay: string | number;
|
|
10955
10977
|
openDelay: string | number;
|
|
@@ -11070,6 +11092,7 @@ declare const VAutocomplete: {
|
|
|
11070
11092
|
origin: "auto" | "overlap" | Anchor;
|
|
11071
11093
|
offset?: string | number | number[] | undefined;
|
|
11072
11094
|
stickToTarget: boolean;
|
|
11095
|
+
viewportMargin: string | number;
|
|
11073
11096
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
11074
11097
|
height?: string | number | undefined;
|
|
11075
11098
|
maxHeight?: string | number | undefined;
|
|
@@ -11179,7 +11202,7 @@ declare const VAutocomplete: {
|
|
|
11179
11202
|
"v-slot:default"?: false | ((arg: {
|
|
11180
11203
|
isActive: vue.Ref<boolean, boolean>;
|
|
11181
11204
|
}) => vue.VNodeChild) | undefined;
|
|
11182
|
-
} & 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;
|
|
11205
|
+
} & 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;
|
|
11183
11206
|
itemColor?: string | undefined;
|
|
11184
11207
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
11185
11208
|
search?: string | undefined;
|
|
@@ -13714,6 +13737,7 @@ declare const VAutocomplete: {
|
|
|
13714
13737
|
location: Anchor | undefined;
|
|
13715
13738
|
origin: "auto" | "overlap" | Anchor;
|
|
13716
13739
|
stickToTarget: boolean;
|
|
13740
|
+
viewportMargin: string | number;
|
|
13717
13741
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
13718
13742
|
closeDelay: string | number;
|
|
13719
13743
|
openDelay: string | number;
|
|
@@ -13834,6 +13858,7 @@ declare const VAutocomplete: {
|
|
|
13834
13858
|
origin: "auto" | "overlap" | Anchor;
|
|
13835
13859
|
offset?: string | number | number[] | undefined;
|
|
13836
13860
|
stickToTarget: boolean;
|
|
13861
|
+
viewportMargin: string | number;
|
|
13837
13862
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
13838
13863
|
height?: string | number | undefined;
|
|
13839
13864
|
maxHeight?: string | number | undefined;
|
|
@@ -13943,7 +13968,7 @@ declare const VAutocomplete: {
|
|
|
13943
13968
|
"v-slot:default"?: false | ((arg: {
|
|
13944
13969
|
isActive: vue.Ref<boolean, boolean>;
|
|
13945
13970
|
}) => vue.VNodeChild) | undefined;
|
|
13946
|
-
} & 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;
|
|
13971
|
+
} & 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;
|
|
13947
13972
|
itemColor?: string | undefined;
|
|
13948
13973
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
13949
13974
|
search?: string | undefined;
|
|
@@ -16714,6 +16739,7 @@ declare const VAutocomplete: {
|
|
|
16714
16739
|
location: Anchor | undefined;
|
|
16715
16740
|
origin: "auto" | "overlap" | Anchor;
|
|
16716
16741
|
stickToTarget: boolean;
|
|
16742
|
+
viewportMargin: string | number;
|
|
16717
16743
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
16718
16744
|
closeDelay: string | number;
|
|
16719
16745
|
openDelay: string | number;
|
|
@@ -16834,6 +16860,7 @@ declare const VAutocomplete: {
|
|
|
16834
16860
|
origin: "auto" | "overlap" | Anchor;
|
|
16835
16861
|
offset?: string | number | number[] | undefined;
|
|
16836
16862
|
stickToTarget: boolean;
|
|
16863
|
+
viewportMargin: string | number;
|
|
16837
16864
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
16838
16865
|
height?: string | number | undefined;
|
|
16839
16866
|
maxHeight?: string | number | undefined;
|
|
@@ -16943,7 +16970,7 @@ declare const VAutocomplete: {
|
|
|
16943
16970
|
"v-slot:default"?: false | ((arg: {
|
|
16944
16971
|
isActive: vue.Ref<boolean, boolean>;
|
|
16945
16972
|
}) => vue.VNodeChild) | undefined;
|
|
16946
|
-
} & 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">>;
|
|
16973
|
+
} & 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">>;
|
|
16947
16974
|
};
|
|
16948
16975
|
multiple: BooleanConstructor;
|
|
16949
16976
|
noDataText: {
|
|
@@ -17357,6 +17384,7 @@ declare const VAutocomplete: {
|
|
|
17357
17384
|
location: Anchor | undefined;
|
|
17358
17385
|
origin: "auto" | "overlap" | Anchor;
|
|
17359
17386
|
stickToTarget: boolean;
|
|
17387
|
+
viewportMargin: string | number;
|
|
17360
17388
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
17361
17389
|
closeDelay: string | number;
|
|
17362
17390
|
openDelay: string | number;
|
|
@@ -17477,6 +17505,7 @@ declare const VAutocomplete: {
|
|
|
17477
17505
|
origin: "auto" | "overlap" | Anchor;
|
|
17478
17506
|
offset?: string | number | number[] | undefined;
|
|
17479
17507
|
stickToTarget: boolean;
|
|
17508
|
+
viewportMargin: string | number;
|
|
17480
17509
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
17481
17510
|
height?: string | number | undefined;
|
|
17482
17511
|
maxHeight?: string | number | undefined;
|
|
@@ -17586,7 +17615,7 @@ declare const VAutocomplete: {
|
|
|
17586
17615
|
"v-slot:default"?: false | ((arg: {
|
|
17587
17616
|
isActive: vue.Ref<boolean, boolean>;
|
|
17588
17617
|
}) => vue.VNodeChild) | undefined;
|
|
17589
|
-
} & 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">>;
|
|
17618
|
+
} & 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">>;
|
|
17590
17619
|
};
|
|
17591
17620
|
multiple: BooleanConstructor;
|
|
17592
17621
|
noDataText: {
|
|
@@ -18973,6 +19002,7 @@ declare const VBottomSheet: {
|
|
|
18973
19002
|
location: Anchor;
|
|
18974
19003
|
origin: "auto" | "overlap" | Anchor;
|
|
18975
19004
|
stickToTarget: boolean;
|
|
19005
|
+
viewportMargin: string | number;
|
|
18976
19006
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
18977
19007
|
activatorProps: Record<string, any>;
|
|
18978
19008
|
openOnHover: boolean;
|
|
@@ -19123,6 +19153,7 @@ declare const VBottomSheet: {
|
|
|
19123
19153
|
location: Anchor;
|
|
19124
19154
|
origin: "auto" | "overlap" | Anchor;
|
|
19125
19155
|
stickToTarget: boolean;
|
|
19156
|
+
viewportMargin: string | number;
|
|
19126
19157
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
19127
19158
|
activatorProps: Record<string, any>;
|
|
19128
19159
|
openOnClick: boolean;
|
|
@@ -19237,6 +19268,7 @@ declare const VBottomSheet: {
|
|
|
19237
19268
|
location: Anchor;
|
|
19238
19269
|
origin: "auto" | "overlap" | Anchor;
|
|
19239
19270
|
stickToTarget: boolean;
|
|
19271
|
+
viewportMargin: string | number;
|
|
19240
19272
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
19241
19273
|
activatorProps: Record<string, any>;
|
|
19242
19274
|
openOnHover: boolean;
|
|
@@ -19385,6 +19417,7 @@ declare const VBottomSheet: {
|
|
|
19385
19417
|
location: Anchor;
|
|
19386
19418
|
origin: "auto" | "overlap" | Anchor;
|
|
19387
19419
|
stickToTarget: boolean;
|
|
19420
|
+
viewportMargin: string | number;
|
|
19388
19421
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
19389
19422
|
activatorProps: Record<string, any>;
|
|
19390
19423
|
openOnClick: boolean;
|
|
@@ -19483,6 +19516,7 @@ declare const VBottomSheet: {
|
|
|
19483
19516
|
location: Anchor;
|
|
19484
19517
|
origin: "auto" | "overlap" | Anchor;
|
|
19485
19518
|
stickToTarget: boolean;
|
|
19519
|
+
viewportMargin: string | number;
|
|
19486
19520
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
19487
19521
|
activatorProps: Record<string, any>;
|
|
19488
19522
|
openOnHover: boolean;
|
|
@@ -19633,6 +19667,7 @@ declare const VBottomSheet: {
|
|
|
19633
19667
|
location: Anchor;
|
|
19634
19668
|
origin: "auto" | "overlap" | Anchor;
|
|
19635
19669
|
stickToTarget: boolean;
|
|
19670
|
+
viewportMargin: string | number;
|
|
19636
19671
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
19637
19672
|
activatorProps: Record<string, any>;
|
|
19638
19673
|
openOnClick: boolean;
|
|
@@ -19759,6 +19794,10 @@ declare const VBottomSheet: {
|
|
|
19759
19794
|
};
|
|
19760
19795
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
19761
19796
|
stickToTarget: BooleanConstructor;
|
|
19797
|
+
viewportMargin: {
|
|
19798
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
19799
|
+
default: number;
|
|
19800
|
+
};
|
|
19762
19801
|
scrollStrategy: Omit<{
|
|
19763
19802
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
19764
19803
|
default: string;
|
|
@@ -20124,6 +20163,10 @@ declare const VBottomSheet: {
|
|
|
20124
20163
|
};
|
|
20125
20164
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
20126
20165
|
stickToTarget: BooleanConstructor;
|
|
20166
|
+
viewportMargin: {
|
|
20167
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
20168
|
+
default: number;
|
|
20169
|
+
};
|
|
20127
20170
|
scrollStrategy: Omit<{
|
|
20128
20171
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
20129
20172
|
default: string;
|
|
@@ -20480,6 +20523,7 @@ declare const VBreadcrumbs: {
|
|
|
20480
20523
|
tag: string | JSXComponent;
|
|
20481
20524
|
disabled: boolean;
|
|
20482
20525
|
divider: string;
|
|
20526
|
+
itemProps: boolean;
|
|
20483
20527
|
} & {
|
|
20484
20528
|
class?: any;
|
|
20485
20529
|
rounded?: string | number | boolean | undefined;
|
|
@@ -20496,6 +20540,7 @@ declare const VBreadcrumbs: {
|
|
|
20496
20540
|
tag: string | JSXComponent;
|
|
20497
20541
|
disabled: boolean;
|
|
20498
20542
|
divider: string;
|
|
20543
|
+
itemProps: boolean;
|
|
20499
20544
|
}, true, {}, vue.SlotsType<Partial<{
|
|
20500
20545
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20501
20546
|
[key: string]: any;
|
|
@@ -20535,6 +20580,7 @@ declare const VBreadcrumbs: {
|
|
|
20535
20580
|
tag: string | JSXComponent;
|
|
20536
20581
|
disabled: boolean;
|
|
20537
20582
|
divider: string;
|
|
20583
|
+
itemProps: boolean;
|
|
20538
20584
|
} & {
|
|
20539
20585
|
class?: any;
|
|
20540
20586
|
rounded?: string | number | boolean | undefined;
|
|
@@ -20551,6 +20597,7 @@ declare const VBreadcrumbs: {
|
|
|
20551
20597
|
tag: string | JSXComponent;
|
|
20552
20598
|
disabled: boolean;
|
|
20553
20599
|
divider: string;
|
|
20600
|
+
itemProps: boolean;
|
|
20554
20601
|
}>;
|
|
20555
20602
|
__isFragment?: undefined;
|
|
20556
20603
|
__isTeleport?: undefined;
|
|
@@ -20562,6 +20609,7 @@ declare const VBreadcrumbs: {
|
|
|
20562
20609
|
tag: string | JSXComponent;
|
|
20563
20610
|
disabled: boolean;
|
|
20564
20611
|
divider: string;
|
|
20612
|
+
itemProps: boolean;
|
|
20565
20613
|
} & {
|
|
20566
20614
|
class?: any;
|
|
20567
20615
|
rounded?: string | number | boolean | undefined;
|
|
@@ -20578,6 +20626,7 @@ declare const VBreadcrumbs: {
|
|
|
20578
20626
|
tag: string | JSXComponent;
|
|
20579
20627
|
disabled: boolean;
|
|
20580
20628
|
divider: string;
|
|
20629
|
+
itemProps: boolean;
|
|
20581
20630
|
}, {}, string, vue.SlotsType<Partial<{
|
|
20582
20631
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20583
20632
|
[key: string]: any;
|
|
@@ -20674,6 +20723,7 @@ declare const VBreadcrumbs: {
|
|
|
20674
20723
|
type: PropType<readonly BreadcrumbItem[]>;
|
|
20675
20724
|
default: () => never[];
|
|
20676
20725
|
};
|
|
20726
|
+
itemProps: BooleanConstructor;
|
|
20677
20727
|
}, vue.ExtractPropTypes<{
|
|
20678
20728
|
class: PropType<any>;
|
|
20679
20729
|
style: {
|
|
@@ -20711,6 +20761,7 @@ declare const VBreadcrumbs: {
|
|
|
20711
20761
|
type: PropType<readonly BreadcrumbItem[]>;
|
|
20712
20762
|
default: () => never[];
|
|
20713
20763
|
};
|
|
20764
|
+
itemProps: BooleanConstructor;
|
|
20714
20765
|
}>>;
|
|
20715
20766
|
type VBreadcrumbs = InstanceType<typeof VBreadcrumbs>;
|
|
20716
20767
|
|
|
@@ -20724,6 +20775,8 @@ declare const VBreadcrumbsItem: {
|
|
|
20724
20775
|
disabled: boolean;
|
|
20725
20776
|
} & {
|
|
20726
20777
|
class?: any;
|
|
20778
|
+
maxWidth?: string | number | undefined;
|
|
20779
|
+
width?: string | number | undefined;
|
|
20727
20780
|
href?: string | undefined;
|
|
20728
20781
|
to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
|
|
20729
20782
|
activeClass?: string | undefined;
|
|
@@ -20768,6 +20821,8 @@ declare const VBreadcrumbsItem: {
|
|
|
20768
20821
|
disabled: boolean;
|
|
20769
20822
|
} & {
|
|
20770
20823
|
class?: any;
|
|
20824
|
+
maxWidth?: string | number | undefined;
|
|
20825
|
+
width?: string | number | undefined;
|
|
20771
20826
|
href?: string | undefined;
|
|
20772
20827
|
to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
|
|
20773
20828
|
activeClass?: string | undefined;
|
|
@@ -20805,6 +20860,8 @@ declare const VBreadcrumbsItem: {
|
|
|
20805
20860
|
disabled: boolean;
|
|
20806
20861
|
} & {
|
|
20807
20862
|
class?: any;
|
|
20863
|
+
maxWidth?: string | number | undefined;
|
|
20864
|
+
width?: string | number | undefined;
|
|
20808
20865
|
href?: string | undefined;
|
|
20809
20866
|
to?: string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric | undefined;
|
|
20810
20867
|
activeClass?: string | undefined;
|
|
@@ -20846,6 +20903,8 @@ declare const VBreadcrumbsItem: {
|
|
|
20846
20903
|
type: vue.PropType<string | JSXComponent>;
|
|
20847
20904
|
default: NonNullable<string | JSXComponent>;
|
|
20848
20905
|
};
|
|
20906
|
+
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
20907
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
20849
20908
|
href: StringConstructor;
|
|
20850
20909
|
replace: BooleanConstructor;
|
|
20851
20910
|
to: vue.PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
|
|
@@ -20869,6 +20928,8 @@ declare const VBreadcrumbsItem: {
|
|
|
20869
20928
|
type: vue.PropType<string | JSXComponent>;
|
|
20870
20929
|
default: NonNullable<string | JSXComponent>;
|
|
20871
20930
|
};
|
|
20931
|
+
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
20932
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
20872
20933
|
href: StringConstructor;
|
|
20873
20934
|
replace: BooleanConstructor;
|
|
20874
20935
|
to: vue.PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
|
|
@@ -28740,6 +28801,7 @@ declare const VCombobox: {
|
|
|
28740
28801
|
location: Anchor | undefined;
|
|
28741
28802
|
origin: "auto" | "overlap" | Anchor;
|
|
28742
28803
|
stickToTarget: boolean;
|
|
28804
|
+
viewportMargin: string | number;
|
|
28743
28805
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
28744
28806
|
closeDelay: string | number;
|
|
28745
28807
|
openDelay: string | number;
|
|
@@ -28860,6 +28922,7 @@ declare const VCombobox: {
|
|
|
28860
28922
|
origin: "auto" | "overlap" | Anchor;
|
|
28861
28923
|
offset?: string | number | number[] | undefined;
|
|
28862
28924
|
stickToTarget: boolean;
|
|
28925
|
+
viewportMargin: string | number;
|
|
28863
28926
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
28864
28927
|
height?: string | number | undefined;
|
|
28865
28928
|
maxHeight?: string | number | undefined;
|
|
@@ -28969,7 +29032,7 @@ declare const VCombobox: {
|
|
|
28969
29032
|
"v-slot:default"?: false | ((arg: {
|
|
28970
29033
|
isActive: vue.Ref<boolean, boolean>;
|
|
28971
29034
|
}) => vue.VNodeChild) | undefined;
|
|
28972
|
-
} & 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;
|
|
29035
|
+
} & 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;
|
|
28973
29036
|
itemColor?: string | undefined;
|
|
28974
29037
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
28975
29038
|
delimiters?: readonly string[] | undefined;
|
|
@@ -31586,6 +31649,7 @@ declare const VCombobox: {
|
|
|
31586
31649
|
location: Anchor | undefined;
|
|
31587
31650
|
origin: "auto" | "overlap" | Anchor;
|
|
31588
31651
|
stickToTarget: boolean;
|
|
31652
|
+
viewportMargin: string | number;
|
|
31589
31653
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
31590
31654
|
closeDelay: string | number;
|
|
31591
31655
|
openDelay: string | number;
|
|
@@ -31706,6 +31770,7 @@ declare const VCombobox: {
|
|
|
31706
31770
|
origin: "auto" | "overlap" | Anchor;
|
|
31707
31771
|
offset?: string | number | number[] | undefined;
|
|
31708
31772
|
stickToTarget: boolean;
|
|
31773
|
+
viewportMargin: string | number;
|
|
31709
31774
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
31710
31775
|
height?: string | number | undefined;
|
|
31711
31776
|
maxHeight?: string | number | undefined;
|
|
@@ -31815,7 +31880,7 @@ declare const VCombobox: {
|
|
|
31815
31880
|
"v-slot:default"?: false | ((arg: {
|
|
31816
31881
|
isActive: vue.Ref<boolean, boolean>;
|
|
31817
31882
|
}) => vue.VNodeChild) | undefined;
|
|
31818
|
-
} & 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;
|
|
31883
|
+
} & 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;
|
|
31819
31884
|
itemColor?: string | undefined;
|
|
31820
31885
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
31821
31886
|
delimiters?: readonly string[] | undefined;
|
|
@@ -34350,6 +34415,7 @@ declare const VCombobox: {
|
|
|
34350
34415
|
location: Anchor | undefined;
|
|
34351
34416
|
origin: "auto" | "overlap" | Anchor;
|
|
34352
34417
|
stickToTarget: boolean;
|
|
34418
|
+
viewportMargin: string | number;
|
|
34353
34419
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
34354
34420
|
closeDelay: string | number;
|
|
34355
34421
|
openDelay: string | number;
|
|
@@ -34470,6 +34536,7 @@ declare const VCombobox: {
|
|
|
34470
34536
|
origin: "auto" | "overlap" | Anchor;
|
|
34471
34537
|
offset?: string | number | number[] | undefined;
|
|
34472
34538
|
stickToTarget: boolean;
|
|
34539
|
+
viewportMargin: string | number;
|
|
34473
34540
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
34474
34541
|
height?: string | number | undefined;
|
|
34475
34542
|
maxHeight?: string | number | undefined;
|
|
@@ -34579,7 +34646,7 @@ declare const VCombobox: {
|
|
|
34579
34646
|
"v-slot:default"?: false | ((arg: {
|
|
34580
34647
|
isActive: vue.Ref<boolean, boolean>;
|
|
34581
34648
|
}) => vue.VNodeChild) | undefined;
|
|
34582
|
-
} & 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;
|
|
34649
|
+
} & 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;
|
|
34583
34650
|
itemColor?: string | undefined;
|
|
34584
34651
|
autoSelectFirst?: "exact" | boolean | undefined;
|
|
34585
34652
|
delimiters?: readonly string[] | undefined;
|
|
@@ -37355,6 +37422,7 @@ declare const VCombobox: {
|
|
|
37355
37422
|
location: Anchor | undefined;
|
|
37356
37423
|
origin: "auto" | "overlap" | Anchor;
|
|
37357
37424
|
stickToTarget: boolean;
|
|
37425
|
+
viewportMargin: string | number;
|
|
37358
37426
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
37359
37427
|
closeDelay: string | number;
|
|
37360
37428
|
openDelay: string | number;
|
|
@@ -37475,6 +37543,7 @@ declare const VCombobox: {
|
|
|
37475
37543
|
origin: "auto" | "overlap" | Anchor;
|
|
37476
37544
|
offset?: string | number | number[] | undefined;
|
|
37477
37545
|
stickToTarget: boolean;
|
|
37546
|
+
viewportMargin: string | number;
|
|
37478
37547
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
37479
37548
|
height?: string | number | undefined;
|
|
37480
37549
|
maxHeight?: string | number | undefined;
|
|
@@ -37584,7 +37653,7 @@ declare const VCombobox: {
|
|
|
37584
37653
|
"v-slot:default"?: false | ((arg: {
|
|
37585
37654
|
isActive: vue.Ref<boolean, boolean>;
|
|
37586
37655
|
}) => vue.VNodeChild) | undefined;
|
|
37587
|
-
} & 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">>;
|
|
37656
|
+
} & 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">>;
|
|
37588
37657
|
};
|
|
37589
37658
|
multiple: BooleanConstructor;
|
|
37590
37659
|
noDataText: {
|
|
@@ -38008,6 +38077,7 @@ declare const VCombobox: {
|
|
|
38008
38077
|
location: Anchor | undefined;
|
|
38009
38078
|
origin: "auto" | "overlap" | Anchor;
|
|
38010
38079
|
stickToTarget: boolean;
|
|
38080
|
+
viewportMargin: string | number;
|
|
38011
38081
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
38012
38082
|
closeDelay: string | number;
|
|
38013
38083
|
openDelay: string | number;
|
|
@@ -38128,6 +38198,7 @@ declare const VCombobox: {
|
|
|
38128
38198
|
origin: "auto" | "overlap" | Anchor;
|
|
38129
38199
|
offset?: string | number | number[] | undefined;
|
|
38130
38200
|
stickToTarget: boolean;
|
|
38201
|
+
viewportMargin: string | number;
|
|
38131
38202
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
38132
38203
|
height?: string | number | undefined;
|
|
38133
38204
|
maxHeight?: string | number | undefined;
|
|
@@ -38237,7 +38308,7 @@ declare const VCombobox: {
|
|
|
38237
38308
|
"v-slot:default"?: false | ((arg: {
|
|
38238
38309
|
isActive: vue.Ref<boolean, boolean>;
|
|
38239
38310
|
}) => vue.VNodeChild) | undefined;
|
|
38240
|
-
} & 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">>;
|
|
38311
|
+
} & 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">>;
|
|
38241
38312
|
};
|
|
38242
38313
|
multiple: BooleanConstructor;
|
|
38243
38314
|
noDataText: {
|
|
@@ -45689,6 +45760,7 @@ declare const VDialog: {
|
|
|
45689
45760
|
location: Anchor;
|
|
45690
45761
|
origin: "auto" | "overlap" | Anchor;
|
|
45691
45762
|
stickToTarget: boolean;
|
|
45763
|
+
viewportMargin: string | number;
|
|
45692
45764
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
45693
45765
|
activatorProps: Record<string, any>;
|
|
45694
45766
|
openOnHover: boolean;
|
|
@@ -45841,6 +45913,7 @@ declare const VDialog: {
|
|
|
45841
45913
|
location: Anchor;
|
|
45842
45914
|
origin: "auto" | "overlap" | Anchor;
|
|
45843
45915
|
stickToTarget: boolean;
|
|
45916
|
+
viewportMargin: string | number;
|
|
45844
45917
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
45845
45918
|
activatorProps: Record<string, any>;
|
|
45846
45919
|
openOnClick: boolean;
|
|
@@ -45891,6 +45964,7 @@ declare const VDialog: {
|
|
|
45891
45964
|
origin: "auto" | "overlap" | Anchor;
|
|
45892
45965
|
offset?: string | number | number[] | undefined;
|
|
45893
45966
|
stickToTarget: boolean;
|
|
45967
|
+
viewportMargin: string | number;
|
|
45894
45968
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
45895
45969
|
height?: string | number | undefined;
|
|
45896
45970
|
maxHeight?: string | number | undefined;
|
|
@@ -45938,7 +46012,7 @@ declare const VDialog: {
|
|
|
45938
46012
|
"v-slot:default"?: false | ((arg: {
|
|
45939
46013
|
isActive: vue.Ref<boolean, boolean>;
|
|
45940
46014
|
}) => vue.VNodeChild) | undefined;
|
|
45941
|
-
} & 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">;
|
|
46015
|
+
} & 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">;
|
|
45942
46016
|
$attrs: {
|
|
45943
46017
|
[x: string]: unknown;
|
|
45944
46018
|
};
|
|
@@ -45970,6 +46044,7 @@ declare const VDialog: {
|
|
|
45970
46044
|
location: Anchor;
|
|
45971
46045
|
origin: "auto" | "overlap" | Anchor;
|
|
45972
46046
|
stickToTarget: boolean;
|
|
46047
|
+
viewportMargin: string | number;
|
|
45973
46048
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
45974
46049
|
activatorProps: Record<string, any>;
|
|
45975
46050
|
openOnHover: boolean;
|
|
@@ -46070,6 +46145,7 @@ declare const VDialog: {
|
|
|
46070
46145
|
location: Anchor;
|
|
46071
46146
|
origin: "auto" | "overlap" | Anchor;
|
|
46072
46147
|
stickToTarget: boolean;
|
|
46148
|
+
viewportMargin: string | number;
|
|
46073
46149
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46074
46150
|
activatorProps: Record<string, any>;
|
|
46075
46151
|
openOnClick: boolean;
|
|
@@ -46126,6 +46202,7 @@ declare const VDialog: {
|
|
|
46126
46202
|
location: Anchor;
|
|
46127
46203
|
origin: "auto" | "overlap" | Anchor;
|
|
46128
46204
|
stickToTarget: boolean;
|
|
46205
|
+
viewportMargin: string | number;
|
|
46129
46206
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46130
46207
|
activatorProps: Record<string, any>;
|
|
46131
46208
|
openOnClick: boolean;
|
|
@@ -46149,6 +46226,7 @@ declare const VDialog: {
|
|
|
46149
46226
|
location: Anchor;
|
|
46150
46227
|
origin: "auto" | "overlap" | Anchor;
|
|
46151
46228
|
stickToTarget: boolean;
|
|
46229
|
+
viewportMargin: string | number;
|
|
46152
46230
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46153
46231
|
activatorProps: Record<string, any>;
|
|
46154
46232
|
openOnHover: boolean;
|
|
@@ -46227,7 +46305,7 @@ declare const VDialog: {
|
|
|
46227
46305
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
46228
46306
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
46229
46307
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
46230
|
-
}, "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<{
|
|
46308
|
+
}, "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<{
|
|
46231
46309
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46232
46310
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46233
46311
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -46237,7 +46315,7 @@ declare const VDialog: {
|
|
|
46237
46315
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
46238
46316
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
46239
46317
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
46240
|
-
}> & {} & 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}`> & {
|
|
46318
|
+
}> & {} & 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}`> & {
|
|
46241
46319
|
_allExposed: {
|
|
46242
46320
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46243
46321
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -46259,6 +46337,7 @@ declare const VDialog: {
|
|
|
46259
46337
|
location: Anchor;
|
|
46260
46338
|
origin: "auto" | "overlap" | Anchor;
|
|
46261
46339
|
stickToTarget: boolean;
|
|
46340
|
+
viewportMargin: string | number;
|
|
46262
46341
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46263
46342
|
activatorProps: Record<string, any>;
|
|
46264
46343
|
openOnClick: boolean;
|
|
@@ -46372,6 +46451,7 @@ declare const VDialog: {
|
|
|
46372
46451
|
location: Anchor;
|
|
46373
46452
|
origin: "auto" | "overlap" | Anchor;
|
|
46374
46453
|
stickToTarget: boolean;
|
|
46454
|
+
viewportMargin: string | number;
|
|
46375
46455
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46376
46456
|
activatorProps: Record<string, any>;
|
|
46377
46457
|
openOnHover: boolean;
|
|
@@ -46524,6 +46604,7 @@ declare const VDialog: {
|
|
|
46524
46604
|
location: Anchor;
|
|
46525
46605
|
origin: "auto" | "overlap" | Anchor;
|
|
46526
46606
|
stickToTarget: boolean;
|
|
46607
|
+
viewportMargin: string | number;
|
|
46527
46608
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46528
46609
|
activatorProps: Record<string, any>;
|
|
46529
46610
|
openOnClick: boolean;
|
|
@@ -46574,6 +46655,7 @@ declare const VDialog: {
|
|
|
46574
46655
|
origin: "auto" | "overlap" | Anchor;
|
|
46575
46656
|
offset?: string | number | number[] | undefined;
|
|
46576
46657
|
stickToTarget: boolean;
|
|
46658
|
+
viewportMargin: string | number;
|
|
46577
46659
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46578
46660
|
height?: string | number | undefined;
|
|
46579
46661
|
maxHeight?: string | number | undefined;
|
|
@@ -46621,7 +46703,7 @@ declare const VDialog: {
|
|
|
46621
46703
|
"v-slot:default"?: false | ((arg: {
|
|
46622
46704
|
isActive: vue.Ref<boolean, boolean>;
|
|
46623
46705
|
}) => vue.VNodeChild) | undefined;
|
|
46624
|
-
} & 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">;
|
|
46706
|
+
} & 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">;
|
|
46625
46707
|
$attrs: {
|
|
46626
46708
|
[x: string]: unknown;
|
|
46627
46709
|
};
|
|
@@ -46653,6 +46735,7 @@ declare const VDialog: {
|
|
|
46653
46735
|
location: Anchor;
|
|
46654
46736
|
origin: "auto" | "overlap" | Anchor;
|
|
46655
46737
|
stickToTarget: boolean;
|
|
46738
|
+
viewportMargin: string | number;
|
|
46656
46739
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46657
46740
|
activatorProps: Record<string, any>;
|
|
46658
46741
|
openOnHover: boolean;
|
|
@@ -46753,6 +46836,7 @@ declare const VDialog: {
|
|
|
46753
46836
|
location: Anchor;
|
|
46754
46837
|
origin: "auto" | "overlap" | Anchor;
|
|
46755
46838
|
stickToTarget: boolean;
|
|
46839
|
+
viewportMargin: string | number;
|
|
46756
46840
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46757
46841
|
activatorProps: Record<string, any>;
|
|
46758
46842
|
openOnClick: boolean;
|
|
@@ -46809,6 +46893,7 @@ declare const VDialog: {
|
|
|
46809
46893
|
location: Anchor;
|
|
46810
46894
|
origin: "auto" | "overlap" | Anchor;
|
|
46811
46895
|
stickToTarget: boolean;
|
|
46896
|
+
viewportMargin: string | number;
|
|
46812
46897
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46813
46898
|
activatorProps: Record<string, any>;
|
|
46814
46899
|
openOnClick: boolean;
|
|
@@ -46832,6 +46917,7 @@ declare const VDialog: {
|
|
|
46832
46917
|
location: Anchor;
|
|
46833
46918
|
origin: "auto" | "overlap" | Anchor;
|
|
46834
46919
|
stickToTarget: boolean;
|
|
46920
|
+
viewportMargin: string | number;
|
|
46835
46921
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46836
46922
|
activatorProps: Record<string, any>;
|
|
46837
46923
|
openOnHover: boolean;
|
|
@@ -46910,7 +46996,7 @@ declare const VDialog: {
|
|
|
46910
46996
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
46911
46997
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
46912
46998
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
46913
|
-
}, "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<{
|
|
46999
|
+
}, "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<{
|
|
46914
47000
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46915
47001
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46916
47002
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -46920,7 +47006,7 @@ declare const VDialog: {
|
|
|
46920
47006
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
46921
47007
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
46922
47008
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
46923
|
-
}> & {} & 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}`> & {
|
|
47009
|
+
}> & {} & 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}`> & {
|
|
46924
47010
|
_allExposed: {
|
|
46925
47011
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
46926
47012
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -46938,6 +47024,7 @@ declare const VDialog: {
|
|
|
46938
47024
|
location: Anchor;
|
|
46939
47025
|
origin: "auto" | "overlap" | Anchor;
|
|
46940
47026
|
stickToTarget: boolean;
|
|
47027
|
+
viewportMargin: string | number;
|
|
46941
47028
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
46942
47029
|
activatorProps: Record<string, any>;
|
|
46943
47030
|
openOnClick: boolean;
|
|
@@ -47035,6 +47122,7 @@ declare const VDialog: {
|
|
|
47035
47122
|
location: Anchor;
|
|
47036
47123
|
origin: "auto" | "overlap" | Anchor;
|
|
47037
47124
|
stickToTarget: boolean;
|
|
47125
|
+
viewportMargin: string | number;
|
|
47038
47126
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47039
47127
|
activatorProps: Record<string, any>;
|
|
47040
47128
|
openOnHover: boolean;
|
|
@@ -47187,6 +47275,7 @@ declare const VDialog: {
|
|
|
47187
47275
|
location: Anchor;
|
|
47188
47276
|
origin: "auto" | "overlap" | Anchor;
|
|
47189
47277
|
stickToTarget: boolean;
|
|
47278
|
+
viewportMargin: string | number;
|
|
47190
47279
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47191
47280
|
activatorProps: Record<string, any>;
|
|
47192
47281
|
openOnClick: boolean;
|
|
@@ -47237,6 +47326,7 @@ declare const VDialog: {
|
|
|
47237
47326
|
origin: "auto" | "overlap" | Anchor;
|
|
47238
47327
|
offset?: string | number | number[] | undefined;
|
|
47239
47328
|
stickToTarget: boolean;
|
|
47329
|
+
viewportMargin: string | number;
|
|
47240
47330
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47241
47331
|
height?: string | number | undefined;
|
|
47242
47332
|
maxHeight?: string | number | undefined;
|
|
@@ -47284,7 +47374,7 @@ declare const VDialog: {
|
|
|
47284
47374
|
"v-slot:default"?: false | ((arg: {
|
|
47285
47375
|
isActive: vue.Ref<boolean, boolean>;
|
|
47286
47376
|
}) => vue.VNodeChild) | undefined;
|
|
47287
|
-
} & 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">;
|
|
47377
|
+
} & 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">;
|
|
47288
47378
|
$attrs: {
|
|
47289
47379
|
[x: string]: unknown;
|
|
47290
47380
|
};
|
|
@@ -47316,6 +47406,7 @@ declare const VDialog: {
|
|
|
47316
47406
|
location: Anchor;
|
|
47317
47407
|
origin: "auto" | "overlap" | Anchor;
|
|
47318
47408
|
stickToTarget: boolean;
|
|
47409
|
+
viewportMargin: string | number;
|
|
47319
47410
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47320
47411
|
activatorProps: Record<string, any>;
|
|
47321
47412
|
openOnHover: boolean;
|
|
@@ -47416,6 +47507,7 @@ declare const VDialog: {
|
|
|
47416
47507
|
location: Anchor;
|
|
47417
47508
|
origin: "auto" | "overlap" | Anchor;
|
|
47418
47509
|
stickToTarget: boolean;
|
|
47510
|
+
viewportMargin: string | number;
|
|
47419
47511
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47420
47512
|
activatorProps: Record<string, any>;
|
|
47421
47513
|
openOnClick: boolean;
|
|
@@ -47472,6 +47564,7 @@ declare const VDialog: {
|
|
|
47472
47564
|
location: Anchor;
|
|
47473
47565
|
origin: "auto" | "overlap" | Anchor;
|
|
47474
47566
|
stickToTarget: boolean;
|
|
47567
|
+
viewportMargin: string | number;
|
|
47475
47568
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47476
47569
|
activatorProps: Record<string, any>;
|
|
47477
47570
|
openOnClick: boolean;
|
|
@@ -47495,6 +47588,7 @@ declare const VDialog: {
|
|
|
47495
47588
|
location: Anchor;
|
|
47496
47589
|
origin: "auto" | "overlap" | Anchor;
|
|
47497
47590
|
stickToTarget: boolean;
|
|
47591
|
+
viewportMargin: string | number;
|
|
47498
47592
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47499
47593
|
activatorProps: Record<string, any>;
|
|
47500
47594
|
openOnHover: boolean;
|
|
@@ -47573,7 +47667,7 @@ declare const VDialog: {
|
|
|
47573
47667
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
47574
47668
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
47575
47669
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
47576
|
-
}, "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<{
|
|
47670
|
+
}, "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<{
|
|
47577
47671
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
47578
47672
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
47579
47673
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -47583,7 +47677,7 @@ declare const VDialog: {
|
|
|
47583
47677
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
47584
47678
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
47585
47679
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
47586
|
-
}> & {} & 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}`> & {
|
|
47680
|
+
}> & {} & 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}`> & {
|
|
47587
47681
|
_allExposed: {
|
|
47588
47682
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
47589
47683
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -47605,6 +47699,7 @@ declare const VDialog: {
|
|
|
47605
47699
|
location: Anchor;
|
|
47606
47700
|
origin: "auto" | "overlap" | Anchor;
|
|
47607
47701
|
stickToTarget: boolean;
|
|
47702
|
+
viewportMargin: string | number;
|
|
47608
47703
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
47609
47704
|
activatorProps: Record<string, any>;
|
|
47610
47705
|
openOnClick: boolean;
|
|
@@ -47730,6 +47825,10 @@ declare const VDialog: {
|
|
|
47730
47825
|
};
|
|
47731
47826
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
47732
47827
|
stickToTarget: BooleanConstructor;
|
|
47828
|
+
viewportMargin: {
|
|
47829
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
47830
|
+
default: number;
|
|
47831
|
+
};
|
|
47733
47832
|
scrollStrategy: Omit<{
|
|
47734
47833
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
47735
47834
|
default: string;
|
|
@@ -47957,6 +48056,10 @@ declare const VDialog: {
|
|
|
47957
48056
|
};
|
|
47958
48057
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
47959
48058
|
stickToTarget: BooleanConstructor;
|
|
48059
|
+
viewportMargin: {
|
|
48060
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
48061
|
+
default: number;
|
|
48062
|
+
};
|
|
47960
48063
|
scrollStrategy: Omit<{
|
|
47961
48064
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
47962
48065
|
default: string;
|
|
@@ -57592,6 +57695,7 @@ declare const VMenu: {
|
|
|
57592
57695
|
location: Anchor;
|
|
57593
57696
|
origin: "auto" | "overlap" | Anchor;
|
|
57594
57697
|
stickToTarget: boolean;
|
|
57698
|
+
viewportMargin: string | number;
|
|
57595
57699
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
57596
57700
|
closeDelay: string | number;
|
|
57597
57701
|
openDelay: string | number;
|
|
@@ -57744,6 +57848,7 @@ declare const VMenu: {
|
|
|
57744
57848
|
location: Anchor;
|
|
57745
57849
|
origin: "auto" | "overlap" | Anchor;
|
|
57746
57850
|
stickToTarget: boolean;
|
|
57851
|
+
viewportMargin: string | number;
|
|
57747
57852
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
57748
57853
|
activatorProps: Record<string, any>;
|
|
57749
57854
|
openOnClick: boolean;
|
|
@@ -57794,6 +57899,7 @@ declare const VMenu: {
|
|
|
57794
57899
|
origin: "auto" | "overlap" | Anchor;
|
|
57795
57900
|
offset?: string | number | number[] | undefined;
|
|
57796
57901
|
stickToTarget: boolean;
|
|
57902
|
+
viewportMargin: string | number;
|
|
57797
57903
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
57798
57904
|
height?: string | number | undefined;
|
|
57799
57905
|
maxHeight?: string | number | undefined;
|
|
@@ -57841,7 +57947,7 @@ declare const VMenu: {
|
|
|
57841
57947
|
"v-slot:default"?: false | ((arg: {
|
|
57842
57948
|
isActive: vue.Ref<boolean, boolean>;
|
|
57843
57949
|
}) => vue.VNodeChild) | undefined;
|
|
57844
|
-
} & 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">;
|
|
57950
|
+
} & 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">;
|
|
57845
57951
|
$attrs: {
|
|
57846
57952
|
[x: string]: unknown;
|
|
57847
57953
|
};
|
|
@@ -57873,6 +57979,7 @@ declare const VMenu: {
|
|
|
57873
57979
|
location: Anchor;
|
|
57874
57980
|
origin: "auto" | "overlap" | Anchor;
|
|
57875
57981
|
stickToTarget: boolean;
|
|
57982
|
+
viewportMargin: string | number;
|
|
57876
57983
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
57877
57984
|
activatorProps: Record<string, any>;
|
|
57878
57985
|
openOnHover: boolean;
|
|
@@ -57973,6 +58080,7 @@ declare const VMenu: {
|
|
|
57973
58080
|
location: Anchor;
|
|
57974
58081
|
origin: "auto" | "overlap" | Anchor;
|
|
57975
58082
|
stickToTarget: boolean;
|
|
58083
|
+
viewportMargin: string | number;
|
|
57976
58084
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
57977
58085
|
activatorProps: Record<string, any>;
|
|
57978
58086
|
openOnClick: boolean;
|
|
@@ -58029,6 +58137,7 @@ declare const VMenu: {
|
|
|
58029
58137
|
location: Anchor;
|
|
58030
58138
|
origin: "auto" | "overlap" | Anchor;
|
|
58031
58139
|
stickToTarget: boolean;
|
|
58140
|
+
viewportMargin: string | number;
|
|
58032
58141
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58033
58142
|
activatorProps: Record<string, any>;
|
|
58034
58143
|
openOnClick: boolean;
|
|
@@ -58052,6 +58161,7 @@ declare const VMenu: {
|
|
|
58052
58161
|
location: Anchor;
|
|
58053
58162
|
origin: "auto" | "overlap" | Anchor;
|
|
58054
58163
|
stickToTarget: boolean;
|
|
58164
|
+
viewportMargin: string | number;
|
|
58055
58165
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58056
58166
|
activatorProps: Record<string, any>;
|
|
58057
58167
|
openOnHover: boolean;
|
|
@@ -58130,7 +58240,7 @@ declare const VMenu: {
|
|
|
58130
58240
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
58131
58241
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
58132
58242
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
58133
|
-
}, "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<{
|
|
58243
|
+
}, "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<{
|
|
58134
58244
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58135
58245
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58136
58246
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -58140,7 +58250,7 @@ declare const VMenu: {
|
|
|
58140
58250
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
58141
58251
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
58142
58252
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
58143
|
-
}> & {} & 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}`> & {
|
|
58253
|
+
}> & {} & 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}`> & {
|
|
58144
58254
|
_allExposed: {
|
|
58145
58255
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58146
58256
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -58163,6 +58273,7 @@ declare const VMenu: {
|
|
|
58163
58273
|
location: Anchor | undefined;
|
|
58164
58274
|
origin: "auto" | "overlap" | Anchor;
|
|
58165
58275
|
stickToTarget: boolean;
|
|
58276
|
+
viewportMargin: string | number;
|
|
58166
58277
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58167
58278
|
closeDelay: string | number;
|
|
58168
58279
|
openDelay: string | number;
|
|
@@ -58276,6 +58387,7 @@ declare const VMenu: {
|
|
|
58276
58387
|
location: Anchor;
|
|
58277
58388
|
origin: "auto" | "overlap" | Anchor;
|
|
58278
58389
|
stickToTarget: boolean;
|
|
58390
|
+
viewportMargin: string | number;
|
|
58279
58391
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58280
58392
|
closeDelay: string | number;
|
|
58281
58393
|
openDelay: string | number;
|
|
@@ -58428,6 +58540,7 @@ declare const VMenu: {
|
|
|
58428
58540
|
location: Anchor;
|
|
58429
58541
|
origin: "auto" | "overlap" | Anchor;
|
|
58430
58542
|
stickToTarget: boolean;
|
|
58543
|
+
viewportMargin: string | number;
|
|
58431
58544
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58432
58545
|
activatorProps: Record<string, any>;
|
|
58433
58546
|
openOnClick: boolean;
|
|
@@ -58478,6 +58591,7 @@ declare const VMenu: {
|
|
|
58478
58591
|
origin: "auto" | "overlap" | Anchor;
|
|
58479
58592
|
offset?: string | number | number[] | undefined;
|
|
58480
58593
|
stickToTarget: boolean;
|
|
58594
|
+
viewportMargin: string | number;
|
|
58481
58595
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58482
58596
|
height?: string | number | undefined;
|
|
58483
58597
|
maxHeight?: string | number | undefined;
|
|
@@ -58525,7 +58639,7 @@ declare const VMenu: {
|
|
|
58525
58639
|
"v-slot:default"?: false | ((arg: {
|
|
58526
58640
|
isActive: vue.Ref<boolean, boolean>;
|
|
58527
58641
|
}) => vue.VNodeChild) | undefined;
|
|
58528
|
-
} & 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">;
|
|
58642
|
+
} & 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">;
|
|
58529
58643
|
$attrs: {
|
|
58530
58644
|
[x: string]: unknown;
|
|
58531
58645
|
};
|
|
@@ -58557,6 +58671,7 @@ declare const VMenu: {
|
|
|
58557
58671
|
location: Anchor;
|
|
58558
58672
|
origin: "auto" | "overlap" | Anchor;
|
|
58559
58673
|
stickToTarget: boolean;
|
|
58674
|
+
viewportMargin: string | number;
|
|
58560
58675
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58561
58676
|
activatorProps: Record<string, any>;
|
|
58562
58677
|
openOnHover: boolean;
|
|
@@ -58657,6 +58772,7 @@ declare const VMenu: {
|
|
|
58657
58772
|
location: Anchor;
|
|
58658
58773
|
origin: "auto" | "overlap" | Anchor;
|
|
58659
58774
|
stickToTarget: boolean;
|
|
58775
|
+
viewportMargin: string | number;
|
|
58660
58776
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58661
58777
|
activatorProps: Record<string, any>;
|
|
58662
58778
|
openOnClick: boolean;
|
|
@@ -58713,6 +58829,7 @@ declare const VMenu: {
|
|
|
58713
58829
|
location: Anchor;
|
|
58714
58830
|
origin: "auto" | "overlap" | Anchor;
|
|
58715
58831
|
stickToTarget: boolean;
|
|
58832
|
+
viewportMargin: string | number;
|
|
58716
58833
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58717
58834
|
activatorProps: Record<string, any>;
|
|
58718
58835
|
openOnClick: boolean;
|
|
@@ -58736,6 +58853,7 @@ declare const VMenu: {
|
|
|
58736
58853
|
location: Anchor;
|
|
58737
58854
|
origin: "auto" | "overlap" | Anchor;
|
|
58738
58855
|
stickToTarget: boolean;
|
|
58856
|
+
viewportMargin: string | number;
|
|
58739
58857
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58740
58858
|
activatorProps: Record<string, any>;
|
|
58741
58859
|
openOnHover: boolean;
|
|
@@ -58814,7 +58932,7 @@ declare const VMenu: {
|
|
|
58814
58932
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
58815
58933
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
58816
58934
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
58817
|
-
}, "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<{
|
|
58935
|
+
}, "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<{
|
|
58818
58936
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58819
58937
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58820
58938
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -58824,7 +58942,7 @@ declare const VMenu: {
|
|
|
58824
58942
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
58825
58943
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
58826
58944
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
58827
|
-
}> & {} & 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}`> & {
|
|
58945
|
+
}> & {} & 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}`> & {
|
|
58828
58946
|
_allExposed: {
|
|
58829
58947
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
58830
58948
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -58845,6 +58963,7 @@ declare const VMenu: {
|
|
|
58845
58963
|
location: Anchor | undefined;
|
|
58846
58964
|
origin: "auto" | "overlap" | Anchor;
|
|
58847
58965
|
stickToTarget: boolean;
|
|
58966
|
+
viewportMargin: string | number;
|
|
58848
58967
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58849
58968
|
closeDelay: string | number;
|
|
58850
58969
|
openDelay: string | number;
|
|
@@ -58942,6 +59061,7 @@ declare const VMenu: {
|
|
|
58942
59061
|
location: Anchor;
|
|
58943
59062
|
origin: "auto" | "overlap" | Anchor;
|
|
58944
59063
|
stickToTarget: boolean;
|
|
59064
|
+
viewportMargin: string | number;
|
|
58945
59065
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
58946
59066
|
closeDelay: string | number;
|
|
58947
59067
|
openDelay: string | number;
|
|
@@ -59094,6 +59214,7 @@ declare const VMenu: {
|
|
|
59094
59214
|
location: Anchor;
|
|
59095
59215
|
origin: "auto" | "overlap" | Anchor;
|
|
59096
59216
|
stickToTarget: boolean;
|
|
59217
|
+
viewportMargin: string | number;
|
|
59097
59218
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59098
59219
|
activatorProps: Record<string, any>;
|
|
59099
59220
|
openOnClick: boolean;
|
|
@@ -59144,6 +59265,7 @@ declare const VMenu: {
|
|
|
59144
59265
|
origin: "auto" | "overlap" | Anchor;
|
|
59145
59266
|
offset?: string | number | number[] | undefined;
|
|
59146
59267
|
stickToTarget: boolean;
|
|
59268
|
+
viewportMargin: string | number;
|
|
59147
59269
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59148
59270
|
height?: string | number | undefined;
|
|
59149
59271
|
maxHeight?: string | number | undefined;
|
|
@@ -59191,7 +59313,7 @@ declare const VMenu: {
|
|
|
59191
59313
|
"v-slot:default"?: false | ((arg: {
|
|
59192
59314
|
isActive: vue.Ref<boolean, boolean>;
|
|
59193
59315
|
}) => vue.VNodeChild) | undefined;
|
|
59194
|
-
} & 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">;
|
|
59316
|
+
} & 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">;
|
|
59195
59317
|
$attrs: {
|
|
59196
59318
|
[x: string]: unknown;
|
|
59197
59319
|
};
|
|
@@ -59223,6 +59345,7 @@ declare const VMenu: {
|
|
|
59223
59345
|
location: Anchor;
|
|
59224
59346
|
origin: "auto" | "overlap" | Anchor;
|
|
59225
59347
|
stickToTarget: boolean;
|
|
59348
|
+
viewportMargin: string | number;
|
|
59226
59349
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59227
59350
|
activatorProps: Record<string, any>;
|
|
59228
59351
|
openOnHover: boolean;
|
|
@@ -59323,6 +59446,7 @@ declare const VMenu: {
|
|
|
59323
59446
|
location: Anchor;
|
|
59324
59447
|
origin: "auto" | "overlap" | Anchor;
|
|
59325
59448
|
stickToTarget: boolean;
|
|
59449
|
+
viewportMargin: string | number;
|
|
59326
59450
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59327
59451
|
activatorProps: Record<string, any>;
|
|
59328
59452
|
openOnClick: boolean;
|
|
@@ -59379,6 +59503,7 @@ declare const VMenu: {
|
|
|
59379
59503
|
location: Anchor;
|
|
59380
59504
|
origin: "auto" | "overlap" | Anchor;
|
|
59381
59505
|
stickToTarget: boolean;
|
|
59506
|
+
viewportMargin: string | number;
|
|
59382
59507
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59383
59508
|
activatorProps: Record<string, any>;
|
|
59384
59509
|
openOnClick: boolean;
|
|
@@ -59402,6 +59527,7 @@ declare const VMenu: {
|
|
|
59402
59527
|
location: Anchor;
|
|
59403
59528
|
origin: "auto" | "overlap" | Anchor;
|
|
59404
59529
|
stickToTarget: boolean;
|
|
59530
|
+
viewportMargin: string | number;
|
|
59405
59531
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59406
59532
|
activatorProps: Record<string, any>;
|
|
59407
59533
|
openOnHover: boolean;
|
|
@@ -59480,7 +59606,7 @@ declare const VMenu: {
|
|
|
59480
59606
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
59481
59607
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
59482
59608
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
59483
|
-
}, "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<{
|
|
59609
|
+
}, "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<{
|
|
59484
59610
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
59485
59611
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
59486
59612
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -59490,7 +59616,7 @@ declare const VMenu: {
|
|
|
59490
59616
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
59491
59617
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
59492
59618
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
59493
|
-
}> & {} & 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}`> & {
|
|
59619
|
+
}> & {} & 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}`> & {
|
|
59494
59620
|
_allExposed: {
|
|
59495
59621
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
59496
59622
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -59513,6 +59639,7 @@ declare const VMenu: {
|
|
|
59513
59639
|
location: Anchor | undefined;
|
|
59514
59640
|
origin: "auto" | "overlap" | Anchor;
|
|
59515
59641
|
stickToTarget: boolean;
|
|
59642
|
+
viewportMargin: string | number;
|
|
59516
59643
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
59517
59644
|
closeDelay: string | number;
|
|
59518
59645
|
openDelay: string | number;
|
|
@@ -59641,6 +59768,10 @@ declare const VMenu: {
|
|
|
59641
59768
|
};
|
|
59642
59769
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
59643
59770
|
stickToTarget: BooleanConstructor;
|
|
59771
|
+
viewportMargin: {
|
|
59772
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
59773
|
+
default: number;
|
|
59774
|
+
};
|
|
59644
59775
|
scrollStrategy: Omit<{
|
|
59645
59776
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
59646
59777
|
default: string;
|
|
@@ -59876,6 +60007,10 @@ declare const VMenu: {
|
|
|
59876
60007
|
};
|
|
59877
60008
|
offset: vue.PropType<string | number | number[] | undefined>;
|
|
59878
60009
|
stickToTarget: BooleanConstructor;
|
|
60010
|
+
viewportMargin: {
|
|
60011
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
60012
|
+
default: number;
|
|
60013
|
+
};
|
|
59879
60014
|
scrollStrategy: Omit<{
|
|
59880
60015
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
59881
60016
|
default: string;
|
|
@@ -68280,6 +68415,7 @@ declare const VOverlay: {
|
|
|
68280
68415
|
location: Anchor;
|
|
68281
68416
|
origin: "auto" | "overlap" | Anchor;
|
|
68282
68417
|
stickToTarget: boolean;
|
|
68418
|
+
viewportMargin: string | number;
|
|
68283
68419
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68284
68420
|
activatorProps: Record<string, any>;
|
|
68285
68421
|
openOnHover: boolean;
|
|
@@ -68380,6 +68516,7 @@ declare const VOverlay: {
|
|
|
68380
68516
|
location: Anchor;
|
|
68381
68517
|
origin: "auto" | "overlap" | Anchor;
|
|
68382
68518
|
stickToTarget: boolean;
|
|
68519
|
+
viewportMargin: string | number;
|
|
68383
68520
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68384
68521
|
activatorProps: Record<string, any>;
|
|
68385
68522
|
openOnClick: boolean;
|
|
@@ -68423,6 +68560,7 @@ declare const VOverlay: {
|
|
|
68423
68560
|
location: Anchor;
|
|
68424
68561
|
origin: "auto" | "overlap" | Anchor;
|
|
68425
68562
|
stickToTarget: boolean;
|
|
68563
|
+
viewportMargin: string | number;
|
|
68426
68564
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68427
68565
|
activatorProps: Record<string, any>;
|
|
68428
68566
|
openOnHover: boolean;
|
|
@@ -68517,6 +68655,7 @@ declare const VOverlay: {
|
|
|
68517
68655
|
location: Anchor;
|
|
68518
68656
|
origin: "auto" | "overlap" | Anchor;
|
|
68519
68657
|
stickToTarget: boolean;
|
|
68658
|
+
viewportMargin: string | number;
|
|
68520
68659
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68521
68660
|
activatorProps: Record<string, any>;
|
|
68522
68661
|
openOnClick: boolean;
|
|
@@ -68544,6 +68683,7 @@ declare const VOverlay: {
|
|
|
68544
68683
|
location: Anchor;
|
|
68545
68684
|
origin: "auto" | "overlap" | Anchor;
|
|
68546
68685
|
stickToTarget: boolean;
|
|
68686
|
+
viewportMargin: string | number;
|
|
68547
68687
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68548
68688
|
activatorProps: Record<string, any>;
|
|
68549
68689
|
openOnHover: boolean;
|
|
@@ -68644,6 +68784,7 @@ declare const VOverlay: {
|
|
|
68644
68784
|
location: Anchor;
|
|
68645
68785
|
origin: "auto" | "overlap" | Anchor;
|
|
68646
68786
|
stickToTarget: boolean;
|
|
68787
|
+
viewportMargin: string | number;
|
|
68647
68788
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
68648
68789
|
activatorProps: Record<string, any>;
|
|
68649
68790
|
openOnClick: boolean;
|
|
@@ -68696,6 +68837,10 @@ declare const VOverlay: {
|
|
|
68696
68837
|
};
|
|
68697
68838
|
offset: PropType<string | number | number[] | undefined>;
|
|
68698
68839
|
stickToTarget: BooleanConstructor;
|
|
68840
|
+
viewportMargin: {
|
|
68841
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
68842
|
+
default: number;
|
|
68843
|
+
};
|
|
68699
68844
|
scrollStrategy: {
|
|
68700
68845
|
type: PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
68701
68846
|
default: string;
|
|
@@ -68774,6 +68919,10 @@ declare const VOverlay: {
|
|
|
68774
68919
|
};
|
|
68775
68920
|
offset: PropType<string | number | number[] | undefined>;
|
|
68776
68921
|
stickToTarget: BooleanConstructor;
|
|
68922
|
+
viewportMargin: {
|
|
68923
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
68924
|
+
default: number;
|
|
68925
|
+
};
|
|
68777
68926
|
scrollStrategy: {
|
|
68778
68927
|
type: PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
68779
68928
|
default: string;
|
|
@@ -74117,6 +74266,7 @@ declare const VSelect: {
|
|
|
74117
74266
|
location: Anchor | undefined;
|
|
74118
74267
|
origin: "auto" | "overlap" | Anchor;
|
|
74119
74268
|
stickToTarget: boolean;
|
|
74269
|
+
viewportMargin: string | number;
|
|
74120
74270
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
74121
74271
|
closeDelay: string | number;
|
|
74122
74272
|
openDelay: string | number;
|
|
@@ -74237,6 +74387,7 @@ declare const VSelect: {
|
|
|
74237
74387
|
origin: "auto" | "overlap" | Anchor;
|
|
74238
74388
|
offset?: string | number | number[] | undefined;
|
|
74239
74389
|
stickToTarget: boolean;
|
|
74390
|
+
viewportMargin: string | number;
|
|
74240
74391
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
74241
74392
|
height?: string | number | undefined;
|
|
74242
74393
|
maxHeight?: string | number | undefined;
|
|
@@ -74346,7 +74497,7 @@ declare const VSelect: {
|
|
|
74346
74497
|
"v-slot:default"?: false | ((arg: {
|
|
74347
74498
|
isActive: vue.Ref<boolean, boolean>;
|
|
74348
74499
|
}) => vue.VNodeChild) | undefined;
|
|
74349
|
-
} & 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;
|
|
74500
|
+
} & 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;
|
|
74350
74501
|
itemColor?: string | undefined;
|
|
74351
74502
|
} & {
|
|
74352
74503
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -76949,6 +77100,7 @@ declare const VSelect: {
|
|
|
76949
77100
|
location: Anchor | undefined;
|
|
76950
77101
|
origin: "auto" | "overlap" | Anchor;
|
|
76951
77102
|
stickToTarget: boolean;
|
|
77103
|
+
viewportMargin: string | number;
|
|
76952
77104
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
76953
77105
|
closeDelay: string | number;
|
|
76954
77106
|
openDelay: string | number;
|
|
@@ -77069,6 +77221,7 @@ declare const VSelect: {
|
|
|
77069
77221
|
origin: "auto" | "overlap" | Anchor;
|
|
77070
77222
|
offset?: string | number | number[] | undefined;
|
|
77071
77223
|
stickToTarget: boolean;
|
|
77224
|
+
viewportMargin: string | number;
|
|
77072
77225
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
77073
77226
|
height?: string | number | undefined;
|
|
77074
77227
|
maxHeight?: string | number | undefined;
|
|
@@ -77178,7 +77331,7 @@ declare const VSelect: {
|
|
|
77178
77331
|
"v-slot:default"?: false | ((arg: {
|
|
77179
77332
|
isActive: vue.Ref<boolean, boolean>;
|
|
77180
77333
|
}) => vue.VNodeChild) | undefined;
|
|
77181
|
-
} & 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;
|
|
77334
|
+
} & 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;
|
|
77182
77335
|
itemColor?: string | undefined;
|
|
77183
77336
|
} & {
|
|
77184
77337
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -79700,6 +79853,7 @@ declare const VSelect: {
|
|
|
79700
79853
|
location: Anchor | undefined;
|
|
79701
79854
|
origin: "auto" | "overlap" | Anchor;
|
|
79702
79855
|
stickToTarget: boolean;
|
|
79856
|
+
viewportMargin: string | number;
|
|
79703
79857
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
79704
79858
|
closeDelay: string | number;
|
|
79705
79859
|
openDelay: string | number;
|
|
@@ -79820,6 +79974,7 @@ declare const VSelect: {
|
|
|
79820
79974
|
origin: "auto" | "overlap" | Anchor;
|
|
79821
79975
|
offset?: string | number | number[] | undefined;
|
|
79822
79976
|
stickToTarget: boolean;
|
|
79977
|
+
viewportMargin: string | number;
|
|
79823
79978
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
79824
79979
|
height?: string | number | undefined;
|
|
79825
79980
|
maxHeight?: string | number | undefined;
|
|
@@ -79929,7 +80084,7 @@ declare const VSelect: {
|
|
|
79929
80084
|
"v-slot:default"?: false | ((arg: {
|
|
79930
80085
|
isActive: vue.Ref<boolean, boolean>;
|
|
79931
80086
|
}) => vue.VNodeChild) | undefined;
|
|
79932
|
-
} & 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;
|
|
80087
|
+
} & 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;
|
|
79933
80088
|
itemColor?: string | undefined;
|
|
79934
80089
|
} & {
|
|
79935
80090
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -82688,6 +82843,7 @@ declare const VSelect: {
|
|
|
82688
82843
|
location: Anchor | undefined;
|
|
82689
82844
|
origin: "auto" | "overlap" | Anchor;
|
|
82690
82845
|
stickToTarget: boolean;
|
|
82846
|
+
viewportMargin: string | number;
|
|
82691
82847
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
82692
82848
|
closeDelay: string | number;
|
|
82693
82849
|
openDelay: string | number;
|
|
@@ -82808,6 +82964,7 @@ declare const VSelect: {
|
|
|
82808
82964
|
origin: "auto" | "overlap" | Anchor;
|
|
82809
82965
|
offset?: string | number | number[] | undefined;
|
|
82810
82966
|
stickToTarget: boolean;
|
|
82967
|
+
viewportMargin: string | number;
|
|
82811
82968
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
82812
82969
|
height?: string | number | undefined;
|
|
82813
82970
|
maxHeight?: string | number | undefined;
|
|
@@ -82917,7 +83074,7 @@ declare const VSelect: {
|
|
|
82917
83074
|
"v-slot:default"?: false | ((arg: {
|
|
82918
83075
|
isActive: vue.Ref<boolean, boolean>;
|
|
82919
83076
|
}) => vue.VNodeChild) | undefined;
|
|
82920
|
-
} & 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">>;
|
|
83077
|
+
} & 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">>;
|
|
82921
83078
|
};
|
|
82922
83079
|
multiple: BooleanConstructor;
|
|
82923
83080
|
noDataText: {
|
|
@@ -83327,6 +83484,7 @@ declare const VSelect: {
|
|
|
83327
83484
|
location: Anchor | undefined;
|
|
83328
83485
|
origin: "auto" | "overlap" | Anchor;
|
|
83329
83486
|
stickToTarget: boolean;
|
|
83487
|
+
viewportMargin: string | number;
|
|
83330
83488
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
83331
83489
|
closeDelay: string | number;
|
|
83332
83490
|
openDelay: string | number;
|
|
@@ -83447,6 +83605,7 @@ declare const VSelect: {
|
|
|
83447
83605
|
origin: "auto" | "overlap" | Anchor;
|
|
83448
83606
|
offset?: string | number | number[] | undefined;
|
|
83449
83607
|
stickToTarget: boolean;
|
|
83608
|
+
viewportMargin: string | number;
|
|
83450
83609
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
83451
83610
|
height?: string | number | undefined;
|
|
83452
83611
|
maxHeight?: string | number | undefined;
|
|
@@ -83556,7 +83715,7 @@ declare const VSelect: {
|
|
|
83556
83715
|
"v-slot:default"?: false | ((arg: {
|
|
83557
83716
|
isActive: vue.Ref<boolean, boolean>;
|
|
83558
83717
|
}) => vue.VNodeChild) | undefined;
|
|
83559
|
-
} & 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">>;
|
|
83718
|
+
} & 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">>;
|
|
83560
83719
|
};
|
|
83561
83720
|
multiple: BooleanConstructor;
|
|
83562
83721
|
noDataText: {
|
|
@@ -86282,6 +86441,7 @@ declare const VSpeedDial: {
|
|
|
86282
86441
|
origin: "auto" | "overlap" | Anchor;
|
|
86283
86442
|
offset: string | number | number[];
|
|
86284
86443
|
stickToTarget: boolean;
|
|
86444
|
+
viewportMargin: string | number;
|
|
86285
86445
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86286
86446
|
minWidth: string | number;
|
|
86287
86447
|
closeDelay: string | number;
|
|
@@ -86430,6 +86590,7 @@ declare const VSpeedDial: {
|
|
|
86430
86590
|
origin: "auto" | "overlap" | Anchor;
|
|
86431
86591
|
offset: string | number | number[] | undefined;
|
|
86432
86592
|
stickToTarget: boolean;
|
|
86593
|
+
viewportMargin: string | number;
|
|
86433
86594
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86434
86595
|
minWidth: string | number;
|
|
86435
86596
|
closeDelay: string | number;
|
|
@@ -86545,6 +86706,7 @@ declare const VSpeedDial: {
|
|
|
86545
86706
|
origin: "auto" | "overlap" | Anchor;
|
|
86546
86707
|
offset: string | number | number[];
|
|
86547
86708
|
stickToTarget: boolean;
|
|
86709
|
+
viewportMargin: string | number;
|
|
86548
86710
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86549
86711
|
minWidth: string | number;
|
|
86550
86712
|
closeDelay: string | number;
|
|
@@ -86691,6 +86853,7 @@ declare const VSpeedDial: {
|
|
|
86691
86853
|
origin: "auto" | "overlap" | Anchor;
|
|
86692
86854
|
offset: string | number | number[] | undefined;
|
|
86693
86855
|
stickToTarget: boolean;
|
|
86856
|
+
viewportMargin: string | number;
|
|
86694
86857
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86695
86858
|
minWidth: string | number;
|
|
86696
86859
|
closeDelay: string | number;
|
|
@@ -86790,6 +86953,7 @@ declare const VSpeedDial: {
|
|
|
86790
86953
|
origin: "auto" | "overlap" | Anchor;
|
|
86791
86954
|
offset: string | number | number[];
|
|
86792
86955
|
stickToTarget: boolean;
|
|
86956
|
+
viewportMargin: string | number;
|
|
86793
86957
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86794
86958
|
minWidth: string | number;
|
|
86795
86959
|
closeDelay: string | number;
|
|
@@ -86938,6 +87102,7 @@ declare const VSpeedDial: {
|
|
|
86938
87102
|
origin: "auto" | "overlap" | Anchor;
|
|
86939
87103
|
offset: string | number | number[] | undefined;
|
|
86940
87104
|
stickToTarget: boolean;
|
|
87105
|
+
viewportMargin: string | number;
|
|
86941
87106
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
86942
87107
|
minWidth: string | number;
|
|
86943
87108
|
closeDelay: string | number;
|
|
@@ -87073,6 +87238,10 @@ declare const VSpeedDial: {
|
|
|
87073
87238
|
default: NonNullable<string | number | number[] | undefined>;
|
|
87074
87239
|
};
|
|
87075
87240
|
stickToTarget: BooleanConstructor;
|
|
87241
|
+
viewportMargin: {
|
|
87242
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
87243
|
+
default: number;
|
|
87244
|
+
};
|
|
87076
87245
|
scrollStrategy: Omit<{
|
|
87077
87246
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
87078
87247
|
default: string;
|
|
@@ -87460,6 +87629,10 @@ declare const VSpeedDial: {
|
|
|
87460
87629
|
default: NonNullable<string | number | number[] | undefined>;
|
|
87461
87630
|
};
|
|
87462
87631
|
stickToTarget: BooleanConstructor;
|
|
87632
|
+
viewportMargin: {
|
|
87633
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
87634
|
+
default: number;
|
|
87635
|
+
};
|
|
87463
87636
|
scrollStrategy: Omit<{
|
|
87464
87637
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
87465
87638
|
default: string;
|
|
@@ -90933,6 +91106,8 @@ declare const VTab: {
|
|
|
90933
91106
|
spaced?: "both" | "end" | "start" | undefined;
|
|
90934
91107
|
text?: string | number | boolean | undefined;
|
|
90935
91108
|
sliderColor?: string | undefined;
|
|
91109
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
91110
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
90936
91111
|
} & {
|
|
90937
91112
|
$children?: {
|
|
90938
91113
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -91399,6 +91574,8 @@ declare const VTab: {
|
|
|
91399
91574
|
spaced?: "both" | "end" | "start" | undefined;
|
|
91400
91575
|
text?: string | number | boolean | undefined;
|
|
91401
91576
|
sliderColor?: string | undefined;
|
|
91577
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
91578
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
91402
91579
|
} & {
|
|
91403
91580
|
$children?: {
|
|
91404
91581
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -91849,6 +92026,8 @@ declare const VTab: {
|
|
|
91849
92026
|
spaced?: "both" | "end" | "start" | undefined;
|
|
91850
92027
|
text?: string | number | boolean | undefined;
|
|
91851
92028
|
sliderColor?: string | undefined;
|
|
92029
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
92030
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
91852
92031
|
} & {
|
|
91853
92032
|
$children?: {
|
|
91854
92033
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -92346,6 +92525,8 @@ declare const VTab: {
|
|
|
92346
92525
|
};
|
|
92347
92526
|
fixed: BooleanConstructor;
|
|
92348
92527
|
sliderColor: StringConstructor;
|
|
92528
|
+
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
92529
|
+
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
92349
92530
|
hideSlider: BooleanConstructor;
|
|
92350
92531
|
direction: {
|
|
92351
92532
|
type: PropType<"horizontal" | "vertical">;
|
|
@@ -92435,6 +92616,8 @@ declare const VTab: {
|
|
|
92435
92616
|
};
|
|
92436
92617
|
fixed: BooleanConstructor;
|
|
92437
92618
|
sliderColor: StringConstructor;
|
|
92619
|
+
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
92620
|
+
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
92438
92621
|
hideSlider: BooleanConstructor;
|
|
92439
92622
|
direction: {
|
|
92440
92623
|
type: PropType<"horizontal" | "vertical">;
|
|
@@ -92487,6 +92670,8 @@ declare const VTabs: {
|
|
|
92487
92670
|
spaced?: "both" | "end" | "start" | undefined;
|
|
92488
92671
|
contentClass?: any;
|
|
92489
92672
|
showArrows?: string | boolean | undefined;
|
|
92673
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
92674
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
92490
92675
|
color?: string | undefined;
|
|
92491
92676
|
bgColor?: string | undefined;
|
|
92492
92677
|
height?: string | number | undefined;
|
|
@@ -92577,6 +92762,8 @@ declare const VTabs: {
|
|
|
92577
92762
|
spaced?: "both" | "end" | "start" | undefined;
|
|
92578
92763
|
contentClass?: any;
|
|
92579
92764
|
showArrows?: string | boolean | undefined;
|
|
92765
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
92766
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
92580
92767
|
color?: string | undefined;
|
|
92581
92768
|
bgColor?: string | undefined;
|
|
92582
92769
|
height?: string | number | undefined;
|
|
@@ -92637,6 +92824,8 @@ declare const VTabs: {
|
|
|
92637
92824
|
spaced?: "both" | "end" | "start" | undefined;
|
|
92638
92825
|
contentClass?: any;
|
|
92639
92826
|
showArrows?: string | boolean | undefined;
|
|
92827
|
+
sliderTransition?: "fade" | "grow" | "shift" | undefined;
|
|
92828
|
+
sliderTransitionDuration?: string | number | undefined;
|
|
92640
92829
|
color?: string | undefined;
|
|
92641
92830
|
bgColor?: string | undefined;
|
|
92642
92831
|
height?: string | number | undefined;
|
|
@@ -92764,6 +92953,8 @@ declare const VTabs: {
|
|
|
92764
92953
|
type: (BooleanConstructor | StringConstructor)[];
|
|
92765
92954
|
validator: (v: any) => boolean;
|
|
92766
92955
|
};
|
|
92956
|
+
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
92957
|
+
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
92767
92958
|
alignTabs: {
|
|
92768
92959
|
type: PropType<"center" | "end" | "start" | "title">;
|
|
92769
92960
|
default: string;
|
|
@@ -92851,6 +93042,8 @@ declare const VTabs: {
|
|
|
92851
93042
|
type: (BooleanConstructor | StringConstructor)[];
|
|
92852
93043
|
validator: (v: any) => boolean;
|
|
92853
93044
|
};
|
|
93045
|
+
sliderTransition: PropType<"fade" | "grow" | "shift">;
|
|
93046
|
+
sliderTransitionDuration: (NumberConstructor | StringConstructor)[];
|
|
92854
93047
|
alignTabs: {
|
|
92855
93048
|
type: PropType<"center" | "end" | "start" | "title">;
|
|
92856
93049
|
default: string;
|
|
@@ -98782,6 +98975,7 @@ declare const VTooltip: {
|
|
|
98782
98975
|
origin: "auto" | "overlap" | Anchor;
|
|
98783
98976
|
offset: string | number | number[];
|
|
98784
98977
|
stickToTarget: boolean;
|
|
98978
|
+
viewportMargin: string | number;
|
|
98785
98979
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
98786
98980
|
minWidth: string | number;
|
|
98787
98981
|
activatorProps: Record<string, any>;
|
|
@@ -98864,6 +99058,7 @@ declare const VTooltip: {
|
|
|
98864
99058
|
location: Anchor;
|
|
98865
99059
|
origin: "auto" | "overlap" | Anchor;
|
|
98866
99060
|
stickToTarget: boolean;
|
|
99061
|
+
viewportMargin: string | number;
|
|
98867
99062
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
98868
99063
|
activatorProps: Record<string, any>;
|
|
98869
99064
|
openOnClick: boolean;
|
|
@@ -98914,6 +99109,7 @@ declare const VTooltip: {
|
|
|
98914
99109
|
origin: "auto" | "overlap" | Anchor;
|
|
98915
99110
|
offset?: string | number | number[] | undefined;
|
|
98916
99111
|
stickToTarget: boolean;
|
|
99112
|
+
viewportMargin: string | number;
|
|
98917
99113
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
98918
99114
|
height?: string | number | undefined;
|
|
98919
99115
|
maxHeight?: string | number | undefined;
|
|
@@ -98961,7 +99157,7 @@ declare const VTooltip: {
|
|
|
98961
99157
|
"v-slot:default"?: false | ((arg: {
|
|
98962
99158
|
isActive: vue.Ref<boolean, boolean>;
|
|
98963
99159
|
}) => vue.VNodeChild) | undefined;
|
|
98964
|
-
} & 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">;
|
|
99160
|
+
} & 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">;
|
|
98965
99161
|
$attrs: {
|
|
98966
99162
|
[x: string]: unknown;
|
|
98967
99163
|
};
|
|
@@ -98993,6 +99189,7 @@ declare const VTooltip: {
|
|
|
98993
99189
|
location: Anchor;
|
|
98994
99190
|
origin: "auto" | "overlap" | Anchor;
|
|
98995
99191
|
stickToTarget: boolean;
|
|
99192
|
+
viewportMargin: string | number;
|
|
98996
99193
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
98997
99194
|
activatorProps: Record<string, any>;
|
|
98998
99195
|
openOnHover: boolean;
|
|
@@ -99093,6 +99290,7 @@ declare const VTooltip: {
|
|
|
99093
99290
|
location: Anchor;
|
|
99094
99291
|
origin: "auto" | "overlap" | Anchor;
|
|
99095
99292
|
stickToTarget: boolean;
|
|
99293
|
+
viewportMargin: string | number;
|
|
99096
99294
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99097
99295
|
activatorProps: Record<string, any>;
|
|
99098
99296
|
openOnClick: boolean;
|
|
@@ -99149,6 +99347,7 @@ declare const VTooltip: {
|
|
|
99149
99347
|
location: Anchor;
|
|
99150
99348
|
origin: "auto" | "overlap" | Anchor;
|
|
99151
99349
|
stickToTarget: boolean;
|
|
99350
|
+
viewportMargin: string | number;
|
|
99152
99351
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99153
99352
|
activatorProps: Record<string, any>;
|
|
99154
99353
|
openOnClick: boolean;
|
|
@@ -99172,6 +99371,7 @@ declare const VTooltip: {
|
|
|
99172
99371
|
location: Anchor;
|
|
99173
99372
|
origin: "auto" | "overlap" | Anchor;
|
|
99174
99373
|
stickToTarget: boolean;
|
|
99374
|
+
viewportMargin: string | number;
|
|
99175
99375
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99176
99376
|
activatorProps: Record<string, any>;
|
|
99177
99377
|
openOnHover: boolean;
|
|
@@ -99250,7 +99450,7 @@ declare const VTooltip: {
|
|
|
99250
99450
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
99251
99451
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
99252
99452
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
99253
|
-
}, "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<{
|
|
99453
|
+
}, "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<{
|
|
99254
99454
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99255
99455
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99256
99456
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -99260,7 +99460,7 @@ declare const VTooltip: {
|
|
|
99260
99460
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
99261
99461
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
99262
99462
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
99263
|
-
}> & {} & 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}`> & {
|
|
99463
|
+
}> & {} & 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}`> & {
|
|
99264
99464
|
_allExposed: {
|
|
99265
99465
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99266
99466
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -99281,6 +99481,7 @@ declare const VTooltip: {
|
|
|
99281
99481
|
origin: "auto" | "overlap" | Anchor;
|
|
99282
99482
|
offset: string | number | number[] | undefined;
|
|
99283
99483
|
stickToTarget: boolean;
|
|
99484
|
+
viewportMargin: string | number;
|
|
99284
99485
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99285
99486
|
minWidth: string | number;
|
|
99286
99487
|
activatorProps: Record<string, any>;
|
|
@@ -99327,6 +99528,7 @@ declare const VTooltip: {
|
|
|
99327
99528
|
origin: "auto" | "overlap" | Anchor;
|
|
99328
99529
|
offset: string | number | number[];
|
|
99329
99530
|
stickToTarget: boolean;
|
|
99531
|
+
viewportMargin: string | number;
|
|
99330
99532
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99331
99533
|
minWidth: string | number;
|
|
99332
99534
|
activatorProps: Record<string, any>;
|
|
@@ -99409,6 +99611,7 @@ declare const VTooltip: {
|
|
|
99409
99611
|
location: Anchor;
|
|
99410
99612
|
origin: "auto" | "overlap" | Anchor;
|
|
99411
99613
|
stickToTarget: boolean;
|
|
99614
|
+
viewportMargin: string | number;
|
|
99412
99615
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99413
99616
|
activatorProps: Record<string, any>;
|
|
99414
99617
|
openOnClick: boolean;
|
|
@@ -99459,6 +99662,7 @@ declare const VTooltip: {
|
|
|
99459
99662
|
origin: "auto" | "overlap" | Anchor;
|
|
99460
99663
|
offset?: string | number | number[] | undefined;
|
|
99461
99664
|
stickToTarget: boolean;
|
|
99665
|
+
viewportMargin: string | number;
|
|
99462
99666
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99463
99667
|
height?: string | number | undefined;
|
|
99464
99668
|
maxHeight?: string | number | undefined;
|
|
@@ -99506,7 +99710,7 @@ declare const VTooltip: {
|
|
|
99506
99710
|
"v-slot:default"?: false | ((arg: {
|
|
99507
99711
|
isActive: vue.Ref<boolean, boolean>;
|
|
99508
99712
|
}) => vue.VNodeChild) | undefined;
|
|
99509
|
-
} & 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">;
|
|
99713
|
+
} & 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">;
|
|
99510
99714
|
$attrs: {
|
|
99511
99715
|
[x: string]: unknown;
|
|
99512
99716
|
};
|
|
@@ -99538,6 +99742,7 @@ declare const VTooltip: {
|
|
|
99538
99742
|
location: Anchor;
|
|
99539
99743
|
origin: "auto" | "overlap" | Anchor;
|
|
99540
99744
|
stickToTarget: boolean;
|
|
99745
|
+
viewportMargin: string | number;
|
|
99541
99746
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99542
99747
|
activatorProps: Record<string, any>;
|
|
99543
99748
|
openOnHover: boolean;
|
|
@@ -99638,6 +99843,7 @@ declare const VTooltip: {
|
|
|
99638
99843
|
location: Anchor;
|
|
99639
99844
|
origin: "auto" | "overlap" | Anchor;
|
|
99640
99845
|
stickToTarget: boolean;
|
|
99846
|
+
viewportMargin: string | number;
|
|
99641
99847
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99642
99848
|
activatorProps: Record<string, any>;
|
|
99643
99849
|
openOnClick: boolean;
|
|
@@ -99694,6 +99900,7 @@ declare const VTooltip: {
|
|
|
99694
99900
|
location: Anchor;
|
|
99695
99901
|
origin: "auto" | "overlap" | Anchor;
|
|
99696
99902
|
stickToTarget: boolean;
|
|
99903
|
+
viewportMargin: string | number;
|
|
99697
99904
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99698
99905
|
activatorProps: Record<string, any>;
|
|
99699
99906
|
openOnClick: boolean;
|
|
@@ -99717,6 +99924,7 @@ declare const VTooltip: {
|
|
|
99717
99924
|
location: Anchor;
|
|
99718
99925
|
origin: "auto" | "overlap" | Anchor;
|
|
99719
99926
|
stickToTarget: boolean;
|
|
99927
|
+
viewportMargin: string | number;
|
|
99720
99928
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99721
99929
|
activatorProps: Record<string, any>;
|
|
99722
99930
|
openOnHover: boolean;
|
|
@@ -99795,7 +100003,7 @@ declare const VTooltip: {
|
|
|
99795
100003
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
99796
100004
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
99797
100005
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
99798
|
-
}, "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<{
|
|
100006
|
+
}, "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<{
|
|
99799
100007
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99800
100008
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99801
100009
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -99805,7 +100013,7 @@ declare const VTooltip: {
|
|
|
99805
100013
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
99806
100014
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
99807
100015
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
99808
|
-
}> & {} & 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}`> & {
|
|
100016
|
+
}> & {} & 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}`> & {
|
|
99809
100017
|
_allExposed: {
|
|
99810
100018
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
99811
100019
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -99824,6 +100032,7 @@ declare const VTooltip: {
|
|
|
99824
100032
|
origin: "auto" | "overlap" | Anchor;
|
|
99825
100033
|
offset: string | number | number[] | undefined;
|
|
99826
100034
|
stickToTarget: boolean;
|
|
100035
|
+
viewportMargin: string | number;
|
|
99827
100036
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99828
100037
|
minWidth: string | number;
|
|
99829
100038
|
activatorProps: Record<string, any>;
|
|
@@ -99854,6 +100063,7 @@ declare const VTooltip: {
|
|
|
99854
100063
|
origin: "auto" | "overlap" | Anchor;
|
|
99855
100064
|
offset: string | number | number[];
|
|
99856
100065
|
stickToTarget: boolean;
|
|
100066
|
+
viewportMargin: string | number;
|
|
99857
100067
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99858
100068
|
minWidth: string | number;
|
|
99859
100069
|
activatorProps: Record<string, any>;
|
|
@@ -99936,6 +100146,7 @@ declare const VTooltip: {
|
|
|
99936
100146
|
location: Anchor;
|
|
99937
100147
|
origin: "auto" | "overlap" | Anchor;
|
|
99938
100148
|
stickToTarget: boolean;
|
|
100149
|
+
viewportMargin: string | number;
|
|
99939
100150
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99940
100151
|
activatorProps: Record<string, any>;
|
|
99941
100152
|
openOnClick: boolean;
|
|
@@ -99986,6 +100197,7 @@ declare const VTooltip: {
|
|
|
99986
100197
|
origin: "auto" | "overlap" | Anchor;
|
|
99987
100198
|
offset?: string | number | number[] | undefined;
|
|
99988
100199
|
stickToTarget: boolean;
|
|
100200
|
+
viewportMargin: string | number;
|
|
99989
100201
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
99990
100202
|
height?: string | number | undefined;
|
|
99991
100203
|
maxHeight?: string | number | undefined;
|
|
@@ -100033,7 +100245,7 @@ declare const VTooltip: {
|
|
|
100033
100245
|
"v-slot:default"?: false | ((arg: {
|
|
100034
100246
|
isActive: vue.Ref<boolean, boolean>;
|
|
100035
100247
|
}) => vue.VNodeChild) | undefined;
|
|
100036
|
-
} & 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">;
|
|
100248
|
+
} & 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">;
|
|
100037
100249
|
$attrs: {
|
|
100038
100250
|
[x: string]: unknown;
|
|
100039
100251
|
};
|
|
@@ -100065,6 +100277,7 @@ declare const VTooltip: {
|
|
|
100065
100277
|
location: Anchor;
|
|
100066
100278
|
origin: "auto" | "overlap" | Anchor;
|
|
100067
100279
|
stickToTarget: boolean;
|
|
100280
|
+
viewportMargin: string | number;
|
|
100068
100281
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
100069
100282
|
activatorProps: Record<string, any>;
|
|
100070
100283
|
openOnHover: boolean;
|
|
@@ -100165,6 +100378,7 @@ declare const VTooltip: {
|
|
|
100165
100378
|
location: Anchor;
|
|
100166
100379
|
origin: "auto" | "overlap" | Anchor;
|
|
100167
100380
|
stickToTarget: boolean;
|
|
100381
|
+
viewportMargin: string | number;
|
|
100168
100382
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
100169
100383
|
activatorProps: Record<string, any>;
|
|
100170
100384
|
openOnClick: boolean;
|
|
@@ -100221,6 +100435,7 @@ declare const VTooltip: {
|
|
|
100221
100435
|
location: Anchor;
|
|
100222
100436
|
origin: "auto" | "overlap" | Anchor;
|
|
100223
100437
|
stickToTarget: boolean;
|
|
100438
|
+
viewportMargin: string | number;
|
|
100224
100439
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
100225
100440
|
activatorProps: Record<string, any>;
|
|
100226
100441
|
openOnClick: boolean;
|
|
@@ -100244,6 +100459,7 @@ declare const VTooltip: {
|
|
|
100244
100459
|
location: Anchor;
|
|
100245
100460
|
origin: "auto" | "overlap" | Anchor;
|
|
100246
100461
|
stickToTarget: boolean;
|
|
100462
|
+
viewportMargin: string | number;
|
|
100247
100463
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
100248
100464
|
activatorProps: Record<string, any>;
|
|
100249
100465
|
openOnHover: boolean;
|
|
@@ -100322,7 +100538,7 @@ declare const VTooltip: {
|
|
|
100322
100538
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
100323
100539
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
100324
100540
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
100325
|
-
}, "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<{
|
|
100541
|
+
}, "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<{
|
|
100326
100542
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
100327
100543
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
100328
100544
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -100332,7 +100548,7 @@ declare const VTooltip: {
|
|
|
100332
100548
|
globalTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
100333
100549
|
localTop: Readonly<vue.Ref<boolean, boolean>>;
|
|
100334
100550
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
100335
|
-
}> & {} & 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}`> & {
|
|
100551
|
+
}> & {} & 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}`> & {
|
|
100336
100552
|
_allExposed: {
|
|
100337
100553
|
activatorEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
100338
100554
|
scrimEl: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -100353,6 +100569,7 @@ declare const VTooltip: {
|
|
|
100353
100569
|
origin: "auto" | "overlap" | Anchor;
|
|
100354
100570
|
offset: string | number | number[] | undefined;
|
|
100355
100571
|
stickToTarget: boolean;
|
|
100572
|
+
viewportMargin: string | number;
|
|
100356
100573
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
100357
100574
|
minWidth: string | number;
|
|
100358
100575
|
activatorProps: Record<string, any>;
|
|
@@ -100419,6 +100636,10 @@ declare const VTooltip: {
|
|
|
100419
100636
|
default: NonNullable<string | number | number[] | undefined>;
|
|
100420
100637
|
};
|
|
100421
100638
|
stickToTarget: BooleanConstructor;
|
|
100639
|
+
viewportMargin: {
|
|
100640
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
100641
|
+
default: number;
|
|
100642
|
+
};
|
|
100422
100643
|
scrollStrategy: Omit<{
|
|
100423
100644
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
100424
100645
|
default: string;
|
|
@@ -100535,6 +100756,10 @@ declare const VTooltip: {
|
|
|
100535
100756
|
default: NonNullable<string | number | number[] | undefined>;
|
|
100536
100757
|
};
|
|
100537
100758
|
stickToTarget: BooleanConstructor;
|
|
100759
|
+
viewportMargin: {
|
|
100760
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
100761
|
+
default: number;
|
|
100762
|
+
};
|
|
100538
100763
|
scrollStrategy: Omit<{
|
|
100539
100764
|
type: vue.PropType<"block" | "close" | "none" | "reposition" | ScrollStrategyFunction>;
|
|
100540
100765
|
default: string;
|
|
@@ -133550,6 +133775,7 @@ declare const VVideoControls: {
|
|
|
133550
133775
|
location: Anchor | undefined;
|
|
133551
133776
|
origin: "auto" | "overlap" | Anchor;
|
|
133552
133777
|
stickToTarget: boolean;
|
|
133778
|
+
viewportMargin: string | number;
|
|
133553
133779
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
133554
133780
|
closeDelay: string | number;
|
|
133555
133781
|
openDelay: string | number;
|
|
@@ -133670,6 +133896,7 @@ declare const VVideoControls: {
|
|
|
133670
133896
|
origin: "auto" | "overlap" | Anchor;
|
|
133671
133897
|
offset?: string | number | number[] | undefined;
|
|
133672
133898
|
stickToTarget: boolean;
|
|
133899
|
+
viewportMargin: string | number;
|
|
133673
133900
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
133674
133901
|
height?: string | number | undefined;
|
|
133675
133902
|
maxHeight?: string | number | undefined;
|
|
@@ -133779,7 +134006,7 @@ declare const VVideoControls: {
|
|
|
133779
134006
|
"v-slot:default"?: false | ((arg: {
|
|
133780
134007
|
isActive: Ref<boolean, boolean>;
|
|
133781
134008
|
}) => vue.VNodeChild) | undefined;
|
|
133782
|
-
} & 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;
|
|
134009
|
+
} & 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;
|
|
133783
134010
|
sliderProps?: Pick<Partial<{
|
|
133784
134011
|
style: vue.StyleValue;
|
|
133785
134012
|
focused: boolean;
|
|
@@ -134028,6 +134255,7 @@ declare const VVideoControls: {
|
|
|
134028
134255
|
location: Anchor | undefined;
|
|
134029
134256
|
origin: "auto" | "overlap" | Anchor;
|
|
134030
134257
|
stickToTarget: boolean;
|
|
134258
|
+
viewportMargin: string | number;
|
|
134031
134259
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
134032
134260
|
closeDelay: string | number;
|
|
134033
134261
|
openDelay: string | number;
|
|
@@ -134148,6 +134376,7 @@ declare const VVideoControls: {
|
|
|
134148
134376
|
origin: "auto" | "overlap" | Anchor;
|
|
134149
134377
|
offset?: string | number | number[] | undefined;
|
|
134150
134378
|
stickToTarget: boolean;
|
|
134379
|
+
viewportMargin: string | number;
|
|
134151
134380
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
134152
134381
|
height?: string | number | undefined;
|
|
134153
134382
|
maxHeight?: string | number | undefined;
|
|
@@ -134257,7 +134486,7 @@ declare const VVideoControls: {
|
|
|
134257
134486
|
"v-slot:default"?: false | ((arg: {
|
|
134258
134487
|
isActive: Ref<boolean, boolean>;
|
|
134259
134488
|
}) => vue.VNodeChild) | undefined;
|
|
134260
|
-
} & 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;
|
|
134489
|
+
} & 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;
|
|
134261
134490
|
sliderProps?: Pick<Partial<{
|
|
134262
134491
|
style: vue.StyleValue;
|
|
134263
134492
|
focused: boolean;
|
|
@@ -134487,6 +134716,7 @@ declare const VVideoControls: {
|
|
|
134487
134716
|
location: Anchor | undefined;
|
|
134488
134717
|
origin: "auto" | "overlap" | Anchor;
|
|
134489
134718
|
stickToTarget: boolean;
|
|
134719
|
+
viewportMargin: string | number;
|
|
134490
134720
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
134491
134721
|
closeDelay: string | number;
|
|
134492
134722
|
openDelay: string | number;
|
|
@@ -134607,6 +134837,7 @@ declare const VVideoControls: {
|
|
|
134607
134837
|
origin: "auto" | "overlap" | Anchor;
|
|
134608
134838
|
offset?: string | number | number[] | undefined;
|
|
134609
134839
|
stickToTarget: boolean;
|
|
134840
|
+
viewportMargin: string | number;
|
|
134610
134841
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
134611
134842
|
height?: string | number | undefined;
|
|
134612
134843
|
maxHeight?: string | number | undefined;
|
|
@@ -134716,7 +134947,7 @@ declare const VVideoControls: {
|
|
|
134716
134947
|
"v-slot:default"?: false | ((arg: {
|
|
134717
134948
|
isActive: Ref<boolean, boolean>;
|
|
134718
134949
|
}) => vue.VNodeChild) | undefined;
|
|
134719
|
-
} & 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;
|
|
134950
|
+
} & 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;
|
|
134720
134951
|
sliderProps?: Pick<Partial<{
|
|
134721
134952
|
style: vue.StyleValue;
|
|
134722
134953
|
focused: boolean;
|
|
@@ -134974,6 +135205,7 @@ declare const VVideoControls: {
|
|
|
134974
135205
|
location: Anchor | undefined;
|
|
134975
135206
|
origin: "auto" | "overlap" | Anchor;
|
|
134976
135207
|
stickToTarget: boolean;
|
|
135208
|
+
viewportMargin: string | number;
|
|
134977
135209
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
134978
135210
|
closeDelay: string | number;
|
|
134979
135211
|
openDelay: string | number;
|
|
@@ -135094,6 +135326,7 @@ declare const VVideoControls: {
|
|
|
135094
135326
|
origin: "auto" | "overlap" | Anchor;
|
|
135095
135327
|
offset?: string | number | number[] | undefined;
|
|
135096
135328
|
stickToTarget: boolean;
|
|
135329
|
+
viewportMargin: string | number;
|
|
135097
135330
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
135098
135331
|
height?: string | number | undefined;
|
|
135099
135332
|
maxHeight?: string | number | undefined;
|
|
@@ -135203,7 +135436,7 @@ declare const VVideoControls: {
|
|
|
135203
135436
|
"v-slot:default"?: false | ((arg: {
|
|
135204
135437
|
isActive: Ref<boolean, boolean>;
|
|
135205
135438
|
}) => vue.VNodeChild) | undefined;
|
|
135206
|
-
} & 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;
|
|
135439
|
+
} & 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;
|
|
135207
135440
|
sliderProps?: Pick<Partial<{
|
|
135208
135441
|
style: vue.StyleValue;
|
|
135209
135442
|
focused: boolean;
|
|
@@ -135406,6 +135639,7 @@ declare const VVideoControls: {
|
|
|
135406
135639
|
location: Anchor | undefined;
|
|
135407
135640
|
origin: "auto" | "overlap" | Anchor;
|
|
135408
135641
|
stickToTarget: boolean;
|
|
135642
|
+
viewportMargin: string | number;
|
|
135409
135643
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
135410
135644
|
closeDelay: string | number;
|
|
135411
135645
|
openDelay: string | number;
|
|
@@ -135526,6 +135760,7 @@ declare const VVideoControls: {
|
|
|
135526
135760
|
origin: "auto" | "overlap" | Anchor;
|
|
135527
135761
|
offset?: string | number | number[] | undefined;
|
|
135528
135762
|
stickToTarget: boolean;
|
|
135763
|
+
viewportMargin: string | number;
|
|
135529
135764
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
135530
135765
|
height?: string | number | undefined;
|
|
135531
135766
|
maxHeight?: string | number | undefined;
|
|
@@ -135635,7 +135870,7 @@ declare const VVideoControls: {
|
|
|
135635
135870
|
"v-slot:default"?: false | ((arg: {
|
|
135636
135871
|
isActive: Ref<boolean, boolean>;
|
|
135637
135872
|
}) => vue.VNodeChild) | undefined;
|
|
135638
|
-
} & 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;
|
|
135873
|
+
} & 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;
|
|
135639
135874
|
sliderProps?: Pick<Partial<{
|
|
135640
135875
|
style: vue.StyleValue;
|
|
135641
135876
|
focused: boolean;
|
|
@@ -135839,6 +136074,7 @@ declare const VVideo: {
|
|
|
135839
136074
|
location: Anchor | undefined;
|
|
135840
136075
|
origin: "auto" | "overlap" | Anchor;
|
|
135841
136076
|
stickToTarget: boolean;
|
|
136077
|
+
viewportMargin: string | number;
|
|
135842
136078
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
135843
136079
|
closeDelay: string | number;
|
|
135844
136080
|
openDelay: string | number;
|
|
@@ -135959,6 +136195,7 @@ declare const VVideo: {
|
|
|
135959
136195
|
origin: "auto" | "overlap" | Anchor;
|
|
135960
136196
|
offset?: string | number | number[] | undefined;
|
|
135961
136197
|
stickToTarget: boolean;
|
|
136198
|
+
viewportMargin: string | number;
|
|
135962
136199
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
135963
136200
|
height?: string | number | undefined;
|
|
135964
136201
|
maxHeight?: string | number | undefined;
|
|
@@ -136068,7 +136305,7 @@ declare const VVideo: {
|
|
|
136068
136305
|
"v-slot:default"?: false | ((arg: {
|
|
136069
136306
|
isActive: vue.Ref<boolean, boolean>;
|
|
136070
136307
|
}) => vue.VNodeChild) | undefined;
|
|
136071
|
-
} & 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;
|
|
136308
|
+
} & 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;
|
|
136072
136309
|
sliderProps?: Pick<Partial<{
|
|
136073
136310
|
style: vue.StyleValue;
|
|
136074
136311
|
focused: boolean;
|
|
@@ -136288,6 +136525,7 @@ declare const VVideo: {
|
|
|
136288
136525
|
location: Anchor | undefined;
|
|
136289
136526
|
origin: "auto" | "overlap" | Anchor;
|
|
136290
136527
|
stickToTarget: boolean;
|
|
136528
|
+
viewportMargin: string | number;
|
|
136291
136529
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
136292
136530
|
closeDelay: string | number;
|
|
136293
136531
|
openDelay: string | number;
|
|
@@ -136408,6 +136646,7 @@ declare const VVideo: {
|
|
|
136408
136646
|
origin: "auto" | "overlap" | Anchor;
|
|
136409
136647
|
offset?: string | number | number[] | undefined;
|
|
136410
136648
|
stickToTarget: boolean;
|
|
136649
|
+
viewportMargin: string | number;
|
|
136411
136650
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
136412
136651
|
height?: string | number | undefined;
|
|
136413
136652
|
maxHeight?: string | number | undefined;
|
|
@@ -136517,7 +136756,7 @@ declare const VVideo: {
|
|
|
136517
136756
|
"v-slot:default"?: false | ((arg: {
|
|
136518
136757
|
isActive: vue.Ref<boolean, boolean>;
|
|
136519
136758
|
}) => vue.VNodeChild) | undefined;
|
|
136520
|
-
} & 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;
|
|
136759
|
+
} & 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;
|
|
136521
136760
|
sliderProps?: Pick<Partial<{
|
|
136522
136761
|
style: vue.StyleValue;
|
|
136523
136762
|
focused: boolean;
|
|
@@ -136821,6 +137060,7 @@ declare const VVideo: {
|
|
|
136821
137060
|
location: Anchor | undefined;
|
|
136822
137061
|
origin: "auto" | "overlap" | Anchor;
|
|
136823
137062
|
stickToTarget: boolean;
|
|
137063
|
+
viewportMargin: string | number;
|
|
136824
137064
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
136825
137065
|
closeDelay: string | number;
|
|
136826
137066
|
openDelay: string | number;
|
|
@@ -136941,6 +137181,7 @@ declare const VVideo: {
|
|
|
136941
137181
|
origin: "auto" | "overlap" | Anchor;
|
|
136942
137182
|
offset?: string | number | number[] | undefined;
|
|
136943
137183
|
stickToTarget: boolean;
|
|
137184
|
+
viewportMargin: string | number;
|
|
136944
137185
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
136945
137186
|
height?: string | number | undefined;
|
|
136946
137187
|
maxHeight?: string | number | undefined;
|
|
@@ -137050,7 +137291,7 @@ declare const VVideo: {
|
|
|
137050
137291
|
"v-slot:default"?: false | ((arg: {
|
|
137051
137292
|
isActive: vue.Ref<boolean, boolean>;
|
|
137052
137293
|
}) => vue.VNodeChild) | undefined;
|
|
137053
|
-
} & 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;
|
|
137294
|
+
} & 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;
|
|
137054
137295
|
sliderProps?: Pick<Partial<{
|
|
137055
137296
|
style: vue.StyleValue;
|
|
137056
137297
|
focused: boolean;
|
|
@@ -137270,6 +137511,7 @@ declare const VVideo: {
|
|
|
137270
137511
|
location: Anchor | undefined;
|
|
137271
137512
|
origin: "auto" | "overlap" | Anchor;
|
|
137272
137513
|
stickToTarget: boolean;
|
|
137514
|
+
viewportMargin: string | number;
|
|
137273
137515
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
137274
137516
|
closeDelay: string | number;
|
|
137275
137517
|
openDelay: string | number;
|
|
@@ -137390,6 +137632,7 @@ declare const VVideo: {
|
|
|
137390
137632
|
origin: "auto" | "overlap" | Anchor;
|
|
137391
137633
|
offset?: string | number | number[] | undefined;
|
|
137392
137634
|
stickToTarget: boolean;
|
|
137635
|
+
viewportMargin: string | number;
|
|
137393
137636
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
137394
137637
|
height?: string | number | undefined;
|
|
137395
137638
|
maxHeight?: string | number | undefined;
|
|
@@ -137499,7 +137742,7 @@ declare const VVideo: {
|
|
|
137499
137742
|
"v-slot:default"?: false | ((arg: {
|
|
137500
137743
|
isActive: vue.Ref<boolean, boolean>;
|
|
137501
137744
|
}) => vue.VNodeChild) | undefined;
|
|
137502
|
-
} & 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;
|
|
137745
|
+
} & 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;
|
|
137503
137746
|
sliderProps?: Pick<Partial<{
|
|
137504
137747
|
style: vue.StyleValue;
|
|
137505
137748
|
focused: boolean;
|
|
@@ -137776,6 +138019,7 @@ declare const VVideo: {
|
|
|
137776
138019
|
location: Anchor | undefined;
|
|
137777
138020
|
origin: "auto" | "overlap" | Anchor;
|
|
137778
138021
|
stickToTarget: boolean;
|
|
138022
|
+
viewportMargin: string | number;
|
|
137779
138023
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
137780
138024
|
closeDelay: string | number;
|
|
137781
138025
|
openDelay: string | number;
|
|
@@ -137896,6 +138140,7 @@ declare const VVideo: {
|
|
|
137896
138140
|
origin: "auto" | "overlap" | Anchor;
|
|
137897
138141
|
offset?: string | number | number[] | undefined;
|
|
137898
138142
|
stickToTarget: boolean;
|
|
138143
|
+
viewportMargin: string | number;
|
|
137899
138144
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
137900
138145
|
height?: string | number | undefined;
|
|
137901
138146
|
maxHeight?: string | number | undefined;
|
|
@@ -138005,7 +138250,7 @@ declare const VVideo: {
|
|
|
138005
138250
|
"v-slot:default"?: false | ((arg: {
|
|
138006
138251
|
isActive: vue.Ref<boolean, boolean>;
|
|
138007
138252
|
}) => vue.VNodeChild) | undefined;
|
|
138008
|
-
} & 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;
|
|
138253
|
+
} & 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;
|
|
138009
138254
|
sliderProps?: Pick<Partial<{
|
|
138010
138255
|
style: vue.StyleValue;
|
|
138011
138256
|
focused: boolean;
|
|
@@ -138225,6 +138470,7 @@ declare const VVideo: {
|
|
|
138225
138470
|
location: Anchor | undefined;
|
|
138226
138471
|
origin: "auto" | "overlap" | Anchor;
|
|
138227
138472
|
stickToTarget: boolean;
|
|
138473
|
+
viewportMargin: string | number;
|
|
138228
138474
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
138229
138475
|
closeDelay: string | number;
|
|
138230
138476
|
openDelay: string | number;
|
|
@@ -138345,6 +138591,7 @@ declare const VVideo: {
|
|
|
138345
138591
|
origin: "auto" | "overlap" | Anchor;
|
|
138346
138592
|
offset?: string | number | number[] | undefined;
|
|
138347
138593
|
stickToTarget: boolean;
|
|
138594
|
+
viewportMargin: string | number;
|
|
138348
138595
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
138349
138596
|
height?: string | number | undefined;
|
|
138350
138597
|
maxHeight?: string | number | undefined;
|
|
@@ -138454,7 +138701,7 @@ declare const VVideo: {
|
|
|
138454
138701
|
"v-slot:default"?: false | ((arg: {
|
|
138455
138702
|
isActive: vue.Ref<boolean, boolean>;
|
|
138456
138703
|
}) => vue.VNodeChild) | undefined;
|
|
138457
|
-
} & 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;
|
|
138704
|
+
} & 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;
|
|
138458
138705
|
sliderProps?: Pick<Partial<{
|
|
138459
138706
|
style: vue.StyleValue;
|
|
138460
138707
|
focused: boolean;
|
|
@@ -138759,6 +139006,7 @@ declare const VVideo: {
|
|
|
138759
139006
|
location: Anchor | undefined;
|
|
138760
139007
|
origin: "auto" | "overlap" | Anchor;
|
|
138761
139008
|
stickToTarget: boolean;
|
|
139009
|
+
viewportMargin: string | number;
|
|
138762
139010
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
138763
139011
|
closeDelay: string | number;
|
|
138764
139012
|
openDelay: string | number;
|
|
@@ -138879,6 +139127,7 @@ declare const VVideo: {
|
|
|
138879
139127
|
origin: "auto" | "overlap" | Anchor;
|
|
138880
139128
|
offset?: string | number | number[] | undefined;
|
|
138881
139129
|
stickToTarget: boolean;
|
|
139130
|
+
viewportMargin: string | number;
|
|
138882
139131
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
138883
139132
|
height?: string | number | undefined;
|
|
138884
139133
|
maxHeight?: string | number | undefined;
|
|
@@ -138988,7 +139237,7 @@ declare const VVideo: {
|
|
|
138988
139237
|
"v-slot:default"?: false | ((arg: {
|
|
138989
139238
|
isActive: vue.Ref<boolean, boolean>;
|
|
138990
139239
|
}) => vue.VNodeChild) | undefined;
|
|
138991
|
-
} & 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;
|
|
139240
|
+
} & 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;
|
|
138992
139241
|
sliderProps?: Pick<Partial<{
|
|
138993
139242
|
style: vue.StyleValue;
|
|
138994
139243
|
focused: boolean;
|
|
@@ -139226,6 +139475,7 @@ declare const VVideo: {
|
|
|
139226
139475
|
location: Anchor | undefined;
|
|
139227
139476
|
origin: "auto" | "overlap" | Anchor;
|
|
139228
139477
|
stickToTarget: boolean;
|
|
139478
|
+
viewportMargin: string | number;
|
|
139229
139479
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
139230
139480
|
closeDelay: string | number;
|
|
139231
139481
|
openDelay: string | number;
|
|
@@ -139346,6 +139596,7 @@ declare const VVideo: {
|
|
|
139346
139596
|
origin: "auto" | "overlap" | Anchor;
|
|
139347
139597
|
offset?: string | number | number[] | undefined;
|
|
139348
139598
|
stickToTarget: boolean;
|
|
139599
|
+
viewportMargin: string | number;
|
|
139349
139600
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
139350
139601
|
height?: string | number | undefined;
|
|
139351
139602
|
maxHeight?: string | number | undefined;
|
|
@@ -139455,7 +139706,7 @@ declare const VVideo: {
|
|
|
139455
139706
|
"v-slot:default"?: false | ((arg: {
|
|
139456
139707
|
isActive: vue.Ref<boolean, boolean>;
|
|
139457
139708
|
}) => vue.VNodeChild) | undefined;
|
|
139458
|
-
} & 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;
|
|
139709
|
+
} & 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;
|
|
139459
139710
|
sliderProps?: Pick<Partial<{
|
|
139460
139711
|
style: vue.StyleValue;
|
|
139461
139712
|
focused: boolean;
|
|
@@ -139674,6 +139925,7 @@ declare const VVideo: {
|
|
|
139674
139925
|
location: Anchor | undefined;
|
|
139675
139926
|
origin: "auto" | "overlap" | Anchor;
|
|
139676
139927
|
stickToTarget: boolean;
|
|
139928
|
+
viewportMargin: string | number;
|
|
139677
139929
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
139678
139930
|
closeDelay: string | number;
|
|
139679
139931
|
openDelay: string | number;
|
|
@@ -139794,6 +140046,7 @@ declare const VVideo: {
|
|
|
139794
140046
|
origin: "auto" | "overlap" | Anchor;
|
|
139795
140047
|
offset?: string | number | number[] | undefined;
|
|
139796
140048
|
stickToTarget: boolean;
|
|
140049
|
+
viewportMargin: string | number;
|
|
139797
140050
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
139798
140051
|
height?: string | number | undefined;
|
|
139799
140052
|
maxHeight?: string | number | undefined;
|
|
@@ -139903,7 +140156,7 @@ declare const VVideo: {
|
|
|
139903
140156
|
"v-slot:default"?: false | ((arg: {
|
|
139904
140157
|
isActive: vue.Ref<boolean, boolean>;
|
|
139905
140158
|
}) => vue.VNodeChild) | undefined;
|
|
139906
|
-
} & 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;
|
|
140159
|
+
} & 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;
|
|
139907
140160
|
sliderProps?: Pick<Partial<{
|
|
139908
140161
|
style: vue.StyleValue;
|
|
139909
140162
|
focused: boolean;
|
|
@@ -140141,6 +140394,7 @@ declare const VVideo: {
|
|
|
140141
140394
|
location: Anchor | undefined;
|
|
140142
140395
|
origin: "auto" | "overlap" | Anchor;
|
|
140143
140396
|
stickToTarget: boolean;
|
|
140397
|
+
viewportMargin: string | number;
|
|
140144
140398
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
140145
140399
|
closeDelay: string | number;
|
|
140146
140400
|
openDelay: string | number;
|
|
@@ -140261,6 +140515,7 @@ declare const VVideo: {
|
|
|
140261
140515
|
origin: "auto" | "overlap" | Anchor;
|
|
140262
140516
|
offset?: string | number | number[] | undefined;
|
|
140263
140517
|
stickToTarget: boolean;
|
|
140518
|
+
viewportMargin: string | number;
|
|
140264
140519
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
140265
140520
|
height?: string | number | undefined;
|
|
140266
140521
|
maxHeight?: string | number | undefined;
|
|
@@ -140370,7 +140625,7 @@ declare const VVideo: {
|
|
|
140370
140625
|
"v-slot:default"?: false | ((arg: {
|
|
140371
140626
|
isActive: vue.Ref<boolean, boolean>;
|
|
140372
140627
|
}) => vue.VNodeChild) | undefined;
|
|
140373
|
-
} & 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;
|
|
140628
|
+
} & 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;
|
|
140374
140629
|
sliderProps?: Pick<Partial<{
|
|
140375
140630
|
style: vue.StyleValue;
|
|
140376
140631
|
focused: boolean;
|
|
@@ -140539,6 +140794,7 @@ declare const VVideoVolume: {
|
|
|
140539
140794
|
location: Anchor | undefined;
|
|
140540
140795
|
origin: "auto" | "overlap" | Anchor;
|
|
140541
140796
|
stickToTarget: boolean;
|
|
140797
|
+
viewportMargin: string | number;
|
|
140542
140798
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
140543
140799
|
closeDelay: string | number;
|
|
140544
140800
|
openDelay: string | number;
|
|
@@ -140659,6 +140915,7 @@ declare const VVideoVolume: {
|
|
|
140659
140915
|
origin: "auto" | "overlap" | Anchor;
|
|
140660
140916
|
offset?: string | number | number[] | undefined;
|
|
140661
140917
|
stickToTarget: boolean;
|
|
140918
|
+
viewportMargin: string | number;
|
|
140662
140919
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
140663
140920
|
height?: string | number | undefined;
|
|
140664
140921
|
maxHeight?: string | number | undefined;
|
|
@@ -140768,7 +141025,7 @@ declare const VVideoVolume: {
|
|
|
140768
141025
|
"v-slot:default"?: false | ((arg: {
|
|
140769
141026
|
isActive: vue.Ref<boolean, boolean>;
|
|
140770
141027
|
}) => vue.VNodeChild) | undefined;
|
|
140771
|
-
} & 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;
|
|
141028
|
+
} & 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;
|
|
140772
141029
|
sliderProps?: Pick<Partial<{
|
|
140773
141030
|
style: vue.StyleValue;
|
|
140774
141031
|
focused: boolean;
|
|
@@ -140950,6 +141207,7 @@ declare const VVideoVolume: {
|
|
|
140950
141207
|
location: Anchor | undefined;
|
|
140951
141208
|
origin: "auto" | "overlap" | Anchor;
|
|
140952
141209
|
stickToTarget: boolean;
|
|
141210
|
+
viewportMargin: string | number;
|
|
140953
141211
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
140954
141212
|
closeDelay: string | number;
|
|
140955
141213
|
openDelay: string | number;
|
|
@@ -141070,6 +141328,7 @@ declare const VVideoVolume: {
|
|
|
141070
141328
|
origin: "auto" | "overlap" | Anchor;
|
|
141071
141329
|
offset?: string | number | number[] | undefined;
|
|
141072
141330
|
stickToTarget: boolean;
|
|
141331
|
+
viewportMargin: string | number;
|
|
141073
141332
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
141074
141333
|
height?: string | number | undefined;
|
|
141075
141334
|
maxHeight?: string | number | undefined;
|
|
@@ -141179,7 +141438,7 @@ declare const VVideoVolume: {
|
|
|
141179
141438
|
"v-slot:default"?: false | ((arg: {
|
|
141180
141439
|
isActive: vue.Ref<boolean, boolean>;
|
|
141181
141440
|
}) => vue.VNodeChild) | undefined;
|
|
141182
|
-
} & 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;
|
|
141441
|
+
} & 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;
|
|
141183
141442
|
sliderProps?: Pick<Partial<{
|
|
141184
141443
|
style: vue.StyleValue;
|
|
141185
141444
|
focused: boolean;
|
|
@@ -141352,6 +141611,7 @@ declare const VVideoVolume: {
|
|
|
141352
141611
|
location: Anchor | undefined;
|
|
141353
141612
|
origin: "auto" | "overlap" | Anchor;
|
|
141354
141613
|
stickToTarget: boolean;
|
|
141614
|
+
viewportMargin: string | number;
|
|
141355
141615
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
141356
141616
|
closeDelay: string | number;
|
|
141357
141617
|
openDelay: string | number;
|
|
@@ -141472,6 +141732,7 @@ declare const VVideoVolume: {
|
|
|
141472
141732
|
origin: "auto" | "overlap" | Anchor;
|
|
141473
141733
|
offset?: string | number | number[] | undefined;
|
|
141474
141734
|
stickToTarget: boolean;
|
|
141735
|
+
viewportMargin: string | number;
|
|
141475
141736
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
141476
141737
|
height?: string | number | undefined;
|
|
141477
141738
|
maxHeight?: string | number | undefined;
|
|
@@ -141581,7 +141842,7 @@ declare const VVideoVolume: {
|
|
|
141581
141842
|
"v-slot:default"?: false | ((arg: {
|
|
141582
141843
|
isActive: vue.Ref<boolean, boolean>;
|
|
141583
141844
|
}) => vue.VNodeChild) | undefined;
|
|
141584
|
-
} & 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;
|
|
141845
|
+
} & 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;
|
|
141585
141846
|
sliderProps?: Pick<Partial<{
|
|
141586
141847
|
style: vue.StyleValue;
|
|
141587
141848
|
focused: boolean;
|
|
@@ -141764,6 +142025,7 @@ declare const VVideoVolume: {
|
|
|
141764
142025
|
location: Anchor | undefined;
|
|
141765
142026
|
origin: "auto" | "overlap" | Anchor;
|
|
141766
142027
|
stickToTarget: boolean;
|
|
142028
|
+
viewportMargin: string | number;
|
|
141767
142029
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
141768
142030
|
closeDelay: string | number;
|
|
141769
142031
|
openDelay: string | number;
|
|
@@ -141884,6 +142146,7 @@ declare const VVideoVolume: {
|
|
|
141884
142146
|
origin: "auto" | "overlap" | Anchor;
|
|
141885
142147
|
offset?: string | number | number[] | undefined;
|
|
141886
142148
|
stickToTarget: boolean;
|
|
142149
|
+
viewportMargin: string | number;
|
|
141887
142150
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
141888
142151
|
height?: string | number | undefined;
|
|
141889
142152
|
maxHeight?: string | number | undefined;
|
|
@@ -141993,7 +142256,7 @@ declare const VVideoVolume: {
|
|
|
141993
142256
|
"v-slot:default"?: false | ((arg: {
|
|
141994
142257
|
isActive: vue.Ref<boolean, boolean>;
|
|
141995
142258
|
}) => vue.VNodeChild) | undefined;
|
|
141996
|
-
} & 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">>;
|
|
142259
|
+
} & 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">>;
|
|
141997
142260
|
sliderProps: PropType<Pick<Partial<{
|
|
141998
142261
|
style: vue.StyleValue;
|
|
141999
142262
|
focused: boolean;
|
|
@@ -142152,6 +142415,7 @@ declare const VVideoVolume: {
|
|
|
142152
142415
|
location: Anchor | undefined;
|
|
142153
142416
|
origin: "auto" | "overlap" | Anchor;
|
|
142154
142417
|
stickToTarget: boolean;
|
|
142418
|
+
viewportMargin: string | number;
|
|
142155
142419
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
142156
142420
|
closeDelay: string | number;
|
|
142157
142421
|
openDelay: string | number;
|
|
@@ -142272,6 +142536,7 @@ declare const VVideoVolume: {
|
|
|
142272
142536
|
origin: "auto" | "overlap" | Anchor;
|
|
142273
142537
|
offset?: string | number | number[] | undefined;
|
|
142274
142538
|
stickToTarget: boolean;
|
|
142539
|
+
viewportMargin: string | number;
|
|
142275
142540
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
142276
142541
|
height?: string | number | undefined;
|
|
142277
142542
|
maxHeight?: string | number | undefined;
|
|
@@ -142381,7 +142646,7 @@ declare const VVideoVolume: {
|
|
|
142381
142646
|
"v-slot:default"?: false | ((arg: {
|
|
142382
142647
|
isActive: vue.Ref<boolean, boolean>;
|
|
142383
142648
|
}) => vue.VNodeChild) | undefined;
|
|
142384
|
-
} & 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">>;
|
|
142649
|
+
} & 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">>;
|
|
142385
142650
|
sliderProps: PropType<Pick<Partial<{
|
|
142386
142651
|
style: vue.StyleValue;
|
|
142387
142652
|
focused: boolean;
|
|
@@ -143050,78 +143315,80 @@ declare module 'vue' {
|
|
|
143050
143315
|
$children?: VNodeChild
|
|
143051
143316
|
}
|
|
143052
143317
|
export interface GlobalComponents {
|
|
143053
|
-
|
|
143054
|
-
|
|
143318
|
+
VApp: VApp
|
|
143319
|
+
VAvatar: VAvatar
|
|
143320
|
+
VAutocomplete: VAutocomplete
|
|
143321
|
+
VBadge: VBadge
|
|
143055
143322
|
VAppBar: VAppBar
|
|
143056
143323
|
VAppBarNavIcon: VAppBarNavIcon
|
|
143057
143324
|
VAppBarTitle: VAppBarTitle
|
|
143058
|
-
|
|
143059
|
-
|
|
143060
|
-
VBadge: VBadge
|
|
143061
|
-
VBottomNavigation: VBottomNavigation
|
|
143325
|
+
VAlert: VAlert
|
|
143326
|
+
VAlertTitle: VAlertTitle
|
|
143062
143327
|
VBanner: VBanner
|
|
143063
143328
|
VBannerActions: VBannerActions
|
|
143064
143329
|
VBannerText: VBannerText
|
|
143065
|
-
|
|
143066
|
-
VBtnToggle: VBtnToggle
|
|
143330
|
+
VBottomSheet: VBottomSheet
|
|
143067
143331
|
VBreadcrumbs: VBreadcrumbs
|
|
143068
143332
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
143069
143333
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
143070
|
-
|
|
143334
|
+
VBottomNavigation: VBottomNavigation
|
|
143071
143335
|
VBtnGroup: VBtnGroup
|
|
143336
|
+
VBtnToggle: VBtnToggle
|
|
143072
143337
|
VBtn: VBtn
|
|
143338
|
+
VCheckbox: VCheckbox
|
|
143339
|
+
VCheckboxBtn: VCheckboxBtn
|
|
143073
143340
|
VCard: VCard
|
|
143074
143341
|
VCardActions: VCardActions
|
|
143075
143342
|
VCardItem: VCardItem
|
|
143076
143343
|
VCardSubtitle: VCardSubtitle
|
|
143077
143344
|
VCardText: VCardText
|
|
143078
143345
|
VCardTitle: VCardTitle
|
|
143079
|
-
VCode: VCode
|
|
143080
|
-
VCheckbox: VCheckbox
|
|
143081
|
-
VCheckboxBtn: VCheckboxBtn
|
|
143082
|
-
VChip: VChip
|
|
143083
143346
|
VCarousel: VCarousel
|
|
143084
143347
|
VCarouselItem: VCarouselItem
|
|
143085
|
-
VColorPicker: VColorPicker
|
|
143086
143348
|
VChipGroup: VChipGroup
|
|
143349
|
+
VChip: VChip
|
|
143087
143350
|
VCombobox: VCombobox
|
|
143088
|
-
|
|
143089
|
-
|
|
143090
|
-
VDataTableFooter: VDataTableFooter
|
|
143091
|
-
VDataTableRows: VDataTableRows
|
|
143092
|
-
VDataTableRow: VDataTableRow
|
|
143093
|
-
VDataTableVirtual: VDataTableVirtual
|
|
143094
|
-
VDataTableServer: VDataTableServer
|
|
143095
|
-
VEmptyState: VEmptyState
|
|
143351
|
+
VColorPicker: VColorPicker
|
|
143352
|
+
VCode: VCode
|
|
143096
143353
|
VCounter: VCounter
|
|
143097
|
-
VFab: VFab
|
|
143098
143354
|
VDatePicker: VDatePicker
|
|
143099
143355
|
VDatePickerControls: VDatePickerControls
|
|
143100
143356
|
VDatePickerHeader: VDatePickerHeader
|
|
143101
143357
|
VDatePickerMonth: VDatePickerMonth
|
|
143102
143358
|
VDatePickerMonths: VDatePickerMonths
|
|
143103
143359
|
VDatePickerYears: VDatePickerYears
|
|
143104
|
-
|
|
143360
|
+
VDataTable: VDataTable
|
|
143361
|
+
VDataTableHeaders: VDataTableHeaders
|
|
143362
|
+
VDataTableFooter: VDataTableFooter
|
|
143363
|
+
VDataTableRows: VDataTableRows
|
|
143364
|
+
VDataTableRow: VDataTableRow
|
|
143365
|
+
VDataTableVirtual: VDataTableVirtual
|
|
143366
|
+
VDataTableServer: VDataTableServer
|
|
143105
143367
|
VDivider: VDivider
|
|
143368
|
+
VField: VField
|
|
143369
|
+
VFieldLabel: VFieldLabel
|
|
143106
143370
|
VExpansionPanels: VExpansionPanels
|
|
143107
143371
|
VExpansionPanel: VExpansionPanel
|
|
143108
143372
|
VExpansionPanelText: VExpansionPanelText
|
|
143109
143373
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
143374
|
+
VDialog: VDialog
|
|
143110
143375
|
VFileInput: VFileInput
|
|
143376
|
+
VEmptyState: VEmptyState
|
|
143111
143377
|
VFooter: VFooter
|
|
143112
|
-
|
|
143113
|
-
|
|
143378
|
+
VInfiniteScroll: VInfiniteScroll
|
|
143379
|
+
VFab: VFab
|
|
143114
143380
|
VIcon: VIcon
|
|
143115
143381
|
VComponentIcon: VComponentIcon
|
|
143116
143382
|
VSvgIcon: VSvgIcon
|
|
143117
143383
|
VLigatureIcon: VLigatureIcon
|
|
143118
143384
|
VClassIcon: VClassIcon
|
|
143385
|
+
VLabel: VLabel
|
|
143119
143386
|
VImg: VImg
|
|
143120
|
-
|
|
143387
|
+
VKbd: VKbd
|
|
143121
143388
|
VItemGroup: VItemGroup
|
|
143122
143389
|
VItem: VItem
|
|
143123
|
-
VKbd: VKbd
|
|
143124
143390
|
VInput: VInput
|
|
143391
|
+
VMain: VMain
|
|
143125
143392
|
VList: VList
|
|
143126
143393
|
VListGroup: VListGroup
|
|
143127
143394
|
VListImg: VListImg
|
|
@@ -143131,81 +143398,79 @@ declare module 'vue' {
|
|
|
143131
143398
|
VListItemSubtitle: VListItemSubtitle
|
|
143132
143399
|
VListItemTitle: VListItemTitle
|
|
143133
143400
|
VListSubheader: VListSubheader
|
|
143134
|
-
VLabel: VLabel
|
|
143135
|
-
VMain: VMain
|
|
143136
143401
|
VMenu: VMenu
|
|
143137
|
-
VOverlay: VOverlay
|
|
143138
|
-
VNavigationDrawer: VNavigationDrawer
|
|
143139
143402
|
VMessages: VMessages
|
|
143403
|
+
VNavigationDrawer: VNavigationDrawer
|
|
143140
143404
|
VNumberInput: VNumberInput
|
|
143141
|
-
VPagination: VPagination
|
|
143142
143405
|
VOtpInput: VOtpInput
|
|
143406
|
+
VPagination: VPagination
|
|
143407
|
+
VProgressLinear: VProgressLinear
|
|
143143
143408
|
VProgressCircular: VProgressCircular
|
|
143409
|
+
VRating: VRating
|
|
143144
143410
|
VRadioGroup: VRadioGroup
|
|
143411
|
+
VOverlay: VOverlay
|
|
143145
143412
|
VSelect: VSelect
|
|
143146
|
-
VProgressLinear: VProgressLinear
|
|
143147
|
-
VSheet: VSheet
|
|
143148
143413
|
VSelectionControlGroup: VSelectionControlGroup
|
|
143149
|
-
VRating: VRating
|
|
143150
143414
|
VSelectionControl: VSelectionControl
|
|
143415
|
+
VSheet: VSheet
|
|
143151
143416
|
VSlideGroup: VSlideGroup
|
|
143152
143417
|
VSlideGroupItem: VSlideGroupItem
|
|
143153
143418
|
VSkeletonLoader: VSkeletonLoader
|
|
143154
|
-
VSnackbar: VSnackbar
|
|
143155
|
-
VSystemBar: VSystemBar
|
|
143156
|
-
VSlider: VSlider
|
|
143157
143419
|
VStepper: VStepper
|
|
143158
143420
|
VStepperActions: VStepperActions
|
|
143159
143421
|
VStepperHeader: VStepperHeader
|
|
143160
143422
|
VStepperItem: VStepperItem
|
|
143161
143423
|
VStepperWindow: VStepperWindow
|
|
143162
143424
|
VStepperWindowItem: VStepperWindowItem
|
|
143425
|
+
VSnackbar: VSnackbar
|
|
143426
|
+
VSlider: VSlider
|
|
143427
|
+
VSystemBar: VSystemBar
|
|
143163
143428
|
VSwitch: VSwitch
|
|
143429
|
+
VTextarea: VTextarea
|
|
143164
143430
|
VTab: VTab
|
|
143165
143431
|
VTabs: VTabs
|
|
143166
143432
|
VTabsWindow: VTabsWindow
|
|
143167
143433
|
VTabsWindowItem: VTabsWindowItem
|
|
143168
143434
|
VTable: VTable
|
|
143169
|
-
VTextarea: VTextarea
|
|
143170
143435
|
VTextField: VTextField
|
|
143171
|
-
VTooltip: VTooltip
|
|
143172
143436
|
VTimePicker: VTimePicker
|
|
143173
143437
|
VTimePickerClock: VTimePickerClock
|
|
143174
143438
|
VTimePickerControls: VTimePickerControls
|
|
143175
143439
|
VTimeline: VTimeline
|
|
143176
143440
|
VTimelineItem: VTimelineItem
|
|
143441
|
+
VTooltip: VTooltip
|
|
143177
143442
|
VTreeview: VTreeview
|
|
143178
143443
|
VTreeviewItem: VTreeviewItem
|
|
143179
143444
|
VTreeviewGroup: VTreeviewGroup
|
|
143445
|
+
VWindow: VWindow
|
|
143446
|
+
VWindowItem: VWindowItem
|
|
143180
143447
|
VToolbar: VToolbar
|
|
143181
143448
|
VToolbarTitle: VToolbarTitle
|
|
143182
143449
|
VToolbarItems: VToolbarItems
|
|
143183
|
-
VWindow: VWindow
|
|
143184
|
-
VWindowItem: VWindowItem
|
|
143185
143450
|
VConfirmEdit: VConfirmEdit
|
|
143186
|
-
VDataIterator: VDataIterator
|
|
143187
143451
|
VDefaultsProvider: VDefaultsProvider
|
|
143452
|
+
VDataIterator: VDataIterator
|
|
143188
143453
|
VForm: VForm
|
|
143454
|
+
VHover: VHover
|
|
143189
143455
|
VContainer: VContainer
|
|
143190
143456
|
VCol: VCol
|
|
143191
143457
|
VRow: VRow
|
|
143192
143458
|
VSpacer: VSpacer
|
|
143193
|
-
VHover: VHover
|
|
143194
|
-
VLazy: VLazy
|
|
143195
|
-
VLocaleProvider: VLocaleProvider
|
|
143196
143459
|
VLayout: VLayout
|
|
143197
143460
|
VLayoutItem: VLayoutItem
|
|
143461
|
+
VLocaleProvider: VLocaleProvider
|
|
143462
|
+
VLazy: VLazy
|
|
143198
143463
|
VNoSsr: VNoSsr
|
|
143199
143464
|
VParallax: VParallax
|
|
143200
143465
|
VRadio: VRadio
|
|
143201
143466
|
VRangeSlider: VRangeSlider
|
|
143202
143467
|
VResponsive: VResponsive
|
|
143203
|
-
VSparkline: VSparkline
|
|
143204
143468
|
VSnackbarQueue: VSnackbarQueue
|
|
143205
143469
|
VSpeedDial: VSpeedDial
|
|
143206
|
-
|
|
143470
|
+
VSparkline: VSparkline
|
|
143207
143471
|
VThemeProvider: VThemeProvider
|
|
143208
143472
|
VValidation: VValidation
|
|
143473
|
+
VVirtualScroll: VVirtualScroll
|
|
143209
143474
|
VFabTransition: VFabTransition
|
|
143210
143475
|
VDialogBottomTransition: VDialogBottomTransition
|
|
143211
143476
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -143223,22 +143488,22 @@ declare module 'vue' {
|
|
|
143223
143488
|
VExpandXTransition: VExpandXTransition
|
|
143224
143489
|
VDialogTransition: VDialogTransition
|
|
143225
143490
|
VCalendar: VCalendar
|
|
143226
|
-
VColorInput: VColorInput
|
|
143227
|
-
VIconBtn: VIconBtn
|
|
143228
143491
|
VFileUpload: VFileUpload
|
|
143229
143492
|
VFileUploadItem: VFileUploadItem
|
|
143230
|
-
|
|
143231
|
-
VStepperVerticalItem: VStepperVerticalItem
|
|
143232
|
-
VStepperVerticalActions: VStepperVerticalActions
|
|
143493
|
+
VColorInput: VColorInput
|
|
143233
143494
|
VPicker: VPicker
|
|
143234
143495
|
VPickerTitle: VPickerTitle
|
|
143235
|
-
|
|
143236
|
-
VVideo: VVideo
|
|
143237
|
-
VVideoControls: VVideoControls
|
|
143238
|
-
VVideoVolume: VVideoVolume
|
|
143496
|
+
VIconBtn: VIconBtn
|
|
143239
143497
|
VPie: VPie
|
|
143240
143498
|
VPieSegment: VPieSegment
|
|
143241
143499
|
VPieTooltip: VPieTooltip
|
|
143500
|
+
VVideo: VVideo
|
|
143501
|
+
VVideoControls: VVideoControls
|
|
143502
|
+
VVideoVolume: VVideoVolume
|
|
143503
|
+
VStepperVertical: VStepperVertical
|
|
143504
|
+
VStepperVerticalItem: VStepperVerticalItem
|
|
143505
|
+
VStepperVerticalActions: VStepperVerticalActions
|
|
143506
|
+
VHotkey: VHotkey
|
|
143242
143507
|
VDateInput: VDateInput
|
|
143243
143508
|
VMaskInput: VMaskInput
|
|
143244
143509
|
VPullToRefresh: VPullToRefresh
|