@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/lib/framework.d.ts
CHANGED
|
@@ -719,6 +719,7 @@ interface StrategyProps$1 {
|
|
|
719
719
|
origin: Anchor | 'auto' | 'overlap';
|
|
720
720
|
offset?: number | string | number[];
|
|
721
721
|
stickToTarget?: boolean;
|
|
722
|
+
viewportMargin?: number | string;
|
|
722
723
|
maxHeight?: number | string;
|
|
723
724
|
maxWidth?: number | string;
|
|
724
725
|
minHeight?: number | string;
|
|
@@ -859,6 +860,7 @@ declare const VSnackbar: {
|
|
|
859
860
|
location: Anchor;
|
|
860
861
|
origin: "auto" | "overlap" | Anchor;
|
|
861
862
|
stickToTarget: boolean;
|
|
863
|
+
viewportMargin: string | number;
|
|
862
864
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
863
865
|
activatorProps: Record<string, any>;
|
|
864
866
|
openOnClick: boolean;
|
|
@@ -909,6 +911,7 @@ declare const VSnackbar: {
|
|
|
909
911
|
origin: "auto" | "overlap" | Anchor;
|
|
910
912
|
offset?: string | number | number[] | undefined;
|
|
911
913
|
stickToTarget: boolean;
|
|
914
|
+
viewportMargin: string | number;
|
|
912
915
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
913
916
|
height?: string | number | undefined;
|
|
914
917
|
maxHeight?: string | number | undefined;
|
|
@@ -956,7 +959,7 @@ declare const VSnackbar: {
|
|
|
956
959
|
"v-slot:default"?: false | ((arg: {
|
|
957
960
|
isActive: Ref<boolean, boolean>;
|
|
958
961
|
}) => vue.VNodeChild) | undefined;
|
|
959
|
-
} & 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">;
|
|
962
|
+
} & 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">;
|
|
960
963
|
$attrs: {
|
|
961
964
|
[x: string]: unknown;
|
|
962
965
|
};
|
|
@@ -988,6 +991,7 @@ declare const VSnackbar: {
|
|
|
988
991
|
location: Anchor;
|
|
989
992
|
origin: "auto" | "overlap" | Anchor;
|
|
990
993
|
stickToTarget: boolean;
|
|
994
|
+
viewportMargin: string | number;
|
|
991
995
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
992
996
|
activatorProps: Record<string, any>;
|
|
993
997
|
openOnHover: boolean;
|
|
@@ -1088,6 +1092,7 @@ declare const VSnackbar: {
|
|
|
1088
1092
|
location: Anchor;
|
|
1089
1093
|
origin: "auto" | "overlap" | Anchor;
|
|
1090
1094
|
stickToTarget: boolean;
|
|
1095
|
+
viewportMargin: string | number;
|
|
1091
1096
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1092
1097
|
activatorProps: Record<string, any>;
|
|
1093
1098
|
openOnClick: boolean;
|
|
@@ -1144,6 +1149,7 @@ declare const VSnackbar: {
|
|
|
1144
1149
|
location: Anchor;
|
|
1145
1150
|
origin: "auto" | "overlap" | Anchor;
|
|
1146
1151
|
stickToTarget: boolean;
|
|
1152
|
+
viewportMargin: string | number;
|
|
1147
1153
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1148
1154
|
activatorProps: Record<string, any>;
|
|
1149
1155
|
openOnClick: boolean;
|
|
@@ -1167,6 +1173,7 @@ declare const VSnackbar: {
|
|
|
1167
1173
|
location: Anchor;
|
|
1168
1174
|
origin: "auto" | "overlap" | Anchor;
|
|
1169
1175
|
stickToTarget: boolean;
|
|
1176
|
+
viewportMargin: string | number;
|
|
1170
1177
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1171
1178
|
activatorProps: Record<string, any>;
|
|
1172
1179
|
openOnHover: boolean;
|
|
@@ -1245,7 +1252,7 @@ declare const VSnackbar: {
|
|
|
1245
1252
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1246
1253
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
1247
1254
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1248
|
-
}, "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<{
|
|
1255
|
+
}, "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<{
|
|
1249
1256
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1250
1257
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1251
1258
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -1255,7 +1262,7 @@ declare const VSnackbar: {
|
|
|
1255
1262
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
|
1256
1263
|
localTop: Readonly<Ref<boolean, boolean>>;
|
|
1257
1264
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
1258
|
-
}> & {} & 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}`> & {
|
|
1265
|
+
}> & {} & 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}`> & {
|
|
1259
1266
|
_allExposed: {
|
|
1260
1267
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1261
1268
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -1414,6 +1421,7 @@ declare const VSnackbar: {
|
|
|
1414
1421
|
location: Anchor;
|
|
1415
1422
|
origin: "auto" | "overlap" | Anchor;
|
|
1416
1423
|
stickToTarget: boolean;
|
|
1424
|
+
viewportMargin: string | number;
|
|
1417
1425
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1418
1426
|
activatorProps: Record<string, any>;
|
|
1419
1427
|
openOnClick: boolean;
|
|
@@ -1464,6 +1472,7 @@ declare const VSnackbar: {
|
|
|
1464
1472
|
origin: "auto" | "overlap" | Anchor;
|
|
1465
1473
|
offset?: string | number | number[] | undefined;
|
|
1466
1474
|
stickToTarget: boolean;
|
|
1475
|
+
viewportMargin: string | number;
|
|
1467
1476
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1468
1477
|
height?: string | number | undefined;
|
|
1469
1478
|
maxHeight?: string | number | undefined;
|
|
@@ -1511,7 +1520,7 @@ declare const VSnackbar: {
|
|
|
1511
1520
|
"v-slot:default"?: false | ((arg: {
|
|
1512
1521
|
isActive: Ref<boolean, boolean>;
|
|
1513
1522
|
}) => vue.VNodeChild) | undefined;
|
|
1514
|
-
} & 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">;
|
|
1523
|
+
} & 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">;
|
|
1515
1524
|
$attrs: {
|
|
1516
1525
|
[x: string]: unknown;
|
|
1517
1526
|
};
|
|
@@ -1543,6 +1552,7 @@ declare const VSnackbar: {
|
|
|
1543
1552
|
location: Anchor;
|
|
1544
1553
|
origin: "auto" | "overlap" | Anchor;
|
|
1545
1554
|
stickToTarget: boolean;
|
|
1555
|
+
viewportMargin: string | number;
|
|
1546
1556
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1547
1557
|
activatorProps: Record<string, any>;
|
|
1548
1558
|
openOnHover: boolean;
|
|
@@ -1643,6 +1653,7 @@ declare const VSnackbar: {
|
|
|
1643
1653
|
location: Anchor;
|
|
1644
1654
|
origin: "auto" | "overlap" | Anchor;
|
|
1645
1655
|
stickToTarget: boolean;
|
|
1656
|
+
viewportMargin: string | number;
|
|
1646
1657
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1647
1658
|
activatorProps: Record<string, any>;
|
|
1648
1659
|
openOnClick: boolean;
|
|
@@ -1699,6 +1710,7 @@ declare const VSnackbar: {
|
|
|
1699
1710
|
location: Anchor;
|
|
1700
1711
|
origin: "auto" | "overlap" | Anchor;
|
|
1701
1712
|
stickToTarget: boolean;
|
|
1713
|
+
viewportMargin: string | number;
|
|
1702
1714
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1703
1715
|
activatorProps: Record<string, any>;
|
|
1704
1716
|
openOnClick: boolean;
|
|
@@ -1722,6 +1734,7 @@ declare const VSnackbar: {
|
|
|
1722
1734
|
location: Anchor;
|
|
1723
1735
|
origin: "auto" | "overlap" | Anchor;
|
|
1724
1736
|
stickToTarget: boolean;
|
|
1737
|
+
viewportMargin: string | number;
|
|
1725
1738
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1726
1739
|
activatorProps: Record<string, any>;
|
|
1727
1740
|
openOnHover: boolean;
|
|
@@ -1800,7 +1813,7 @@ declare const VSnackbar: {
|
|
|
1800
1813
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1801
1814
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
1802
1815
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1803
|
-
}, "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<{
|
|
1816
|
+
}, "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<{
|
|
1804
1817
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1805
1818
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1806
1819
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -1810,7 +1823,7 @@ declare const VSnackbar: {
|
|
|
1810
1823
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
|
1811
1824
|
localTop: Readonly<Ref<boolean, boolean>>;
|
|
1812
1825
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
1813
|
-
}> & {} & 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}`> & {
|
|
1826
|
+
}> & {} & 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}`> & {
|
|
1814
1827
|
_allExposed: {
|
|
1815
1828
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1816
1829
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -1946,6 +1959,7 @@ declare const VSnackbar: {
|
|
|
1946
1959
|
location: Anchor;
|
|
1947
1960
|
origin: "auto" | "overlap" | Anchor;
|
|
1948
1961
|
stickToTarget: boolean;
|
|
1962
|
+
viewportMargin: string | number;
|
|
1949
1963
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
1950
1964
|
activatorProps: Record<string, any>;
|
|
1951
1965
|
openOnClick: boolean;
|
|
@@ -1996,6 +2010,7 @@ declare const VSnackbar: {
|
|
|
1996
2010
|
origin: "auto" | "overlap" | Anchor;
|
|
1997
2011
|
offset?: string | number | number[] | undefined;
|
|
1998
2012
|
stickToTarget: boolean;
|
|
2013
|
+
viewportMargin: string | number;
|
|
1999
2014
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
2000
2015
|
height?: string | number | undefined;
|
|
2001
2016
|
maxHeight?: string | number | undefined;
|
|
@@ -2043,7 +2058,7 @@ declare const VSnackbar: {
|
|
|
2043
2058
|
"v-slot:default"?: false | ((arg: {
|
|
2044
2059
|
isActive: Ref<boolean, boolean>;
|
|
2045
2060
|
}) => vue.VNodeChild) | undefined;
|
|
2046
|
-
} & 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">;
|
|
2061
|
+
} & 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">;
|
|
2047
2062
|
$attrs: {
|
|
2048
2063
|
[x: string]: unknown;
|
|
2049
2064
|
};
|
|
@@ -2075,6 +2090,7 @@ declare const VSnackbar: {
|
|
|
2075
2090
|
location: Anchor;
|
|
2076
2091
|
origin: "auto" | "overlap" | Anchor;
|
|
2077
2092
|
stickToTarget: boolean;
|
|
2093
|
+
viewportMargin: string | number;
|
|
2078
2094
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
2079
2095
|
activatorProps: Record<string, any>;
|
|
2080
2096
|
openOnHover: boolean;
|
|
@@ -2175,6 +2191,7 @@ declare const VSnackbar: {
|
|
|
2175
2191
|
location: Anchor;
|
|
2176
2192
|
origin: "auto" | "overlap" | Anchor;
|
|
2177
2193
|
stickToTarget: boolean;
|
|
2194
|
+
viewportMargin: string | number;
|
|
2178
2195
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
2179
2196
|
activatorProps: Record<string, any>;
|
|
2180
2197
|
openOnClick: boolean;
|
|
@@ -2231,6 +2248,7 @@ declare const VSnackbar: {
|
|
|
2231
2248
|
location: Anchor;
|
|
2232
2249
|
origin: "auto" | "overlap" | Anchor;
|
|
2233
2250
|
stickToTarget: boolean;
|
|
2251
|
+
viewportMargin: string | number;
|
|
2234
2252
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
2235
2253
|
activatorProps: Record<string, any>;
|
|
2236
2254
|
openOnClick: boolean;
|
|
@@ -2254,6 +2272,7 @@ declare const VSnackbar: {
|
|
|
2254
2272
|
location: Anchor;
|
|
2255
2273
|
origin: "auto" | "overlap" | Anchor;
|
|
2256
2274
|
stickToTarget: boolean;
|
|
2275
|
+
viewportMargin: string | number;
|
|
2257
2276
|
scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction;
|
|
2258
2277
|
activatorProps: Record<string, any>;
|
|
2259
2278
|
openOnHover: boolean;
|
|
@@ -2332,7 +2351,7 @@ declare const VSnackbar: {
|
|
|
2332
2351
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
2333
2352
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
2334
2353
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2335
|
-
}, "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<{
|
|
2354
|
+
}, "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<{
|
|
2336
2355
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2337
2356
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2338
2357
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
@@ -2342,7 +2361,7 @@ declare const VSnackbar: {
|
|
|
2342
2361
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
|
2343
2362
|
localTop: Readonly<Ref<boolean, boolean>>;
|
|
2344
2363
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
|
2345
|
-
}> & {} & 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}`> & {
|
|
2364
|
+
}> & {} & 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}`> & {
|
|
2346
2365
|
_allExposed: {
|
|
2347
2366
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2348
2367
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -2722,78 +2741,80 @@ declare module 'vue' {
|
|
|
2722
2741
|
$children?: VNodeChild
|
|
2723
2742
|
}
|
|
2724
2743
|
export interface GlobalComponents {
|
|
2725
|
-
|
|
2726
|
-
|
|
2744
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
2745
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
2746
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
2747
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
2727
2748
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
2728
2749
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
2729
2750
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
2733
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2751
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
2752
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
2734
2753
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
2735
2754
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
2736
2755
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
2737
|
-
|
|
2738
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
2756
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
2739
2757
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
2740
2758
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
2741
2759
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
2742
|
-
|
|
2760
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2743
2761
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
2762
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
2744
2763
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
2764
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
2765
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2745
2766
|
VCard: typeof import('vuetify/components')['VCard']
|
|
2746
2767
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
2747
2768
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
2748
2769
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
2749
2770
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
2750
2771
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
2751
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
2752
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
2753
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2754
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
2755
2772
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
2756
2773
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
2757
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
2758
2774
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
2775
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
2759
2776
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
2763
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
2764
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
2765
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
2766
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
2767
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
2777
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
2778
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
2768
2779
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
2769
|
-
VFab: typeof import('vuetify/components')['VFab']
|
|
2770
2780
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
2771
2781
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
2772
2782
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
2773
2783
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
2774
2784
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
2775
2785
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
2776
|
-
|
|
2786
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
2787
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
2788
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
2789
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
2790
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
2791
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
2792
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
2777
2793
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
2794
|
+
VField: typeof import('vuetify/components')['VField']
|
|
2795
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
2778
2796
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
2779
2797
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
2780
2798
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
2781
2799
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
2800
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
2782
2801
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
2802
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
2783
2803
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
2784
|
-
|
|
2785
|
-
|
|
2804
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
2805
|
+
VFab: typeof import('vuetify/components')['VFab']
|
|
2786
2806
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
2787
2807
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
2788
2808
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
2789
2809
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
2790
2810
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
2811
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2791
2812
|
VImg: typeof import('vuetify/components')['VImg']
|
|
2792
|
-
|
|
2813
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
2793
2814
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
2794
2815
|
VItem: typeof import('vuetify/components')['VItem']
|
|
2795
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
2796
2816
|
VInput: typeof import('vuetify/components')['VInput']
|
|
2817
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
2797
2818
|
VList: typeof import('vuetify/components')['VList']
|
|
2798
2819
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
2799
2820
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -2803,81 +2824,79 @@ declare module 'vue' {
|
|
|
2803
2824
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
2804
2825
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
2805
2826
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
2806
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2807
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
2808
2827
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
2809
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
2810
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
2811
2828
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
2829
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
2812
2830
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
|
2813
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
2814
2831
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
2832
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
2833
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
2815
2834
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
2835
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
2816
2836
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
2837
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
2817
2838
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
2818
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
2819
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
2820
2839
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
2821
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
2822
2840
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
2841
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
2823
2842
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
2824
2843
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
2825
2844
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
2826
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
2827
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
2828
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
2829
2845
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
2830
2846
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
2831
2847
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
2832
2848
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
2833
2849
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
2834
2850
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
2851
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
2852
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
2853
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
2835
2854
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
2855
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
2836
2856
|
VTab: typeof import('vuetify/components')['VTab']
|
|
2837
2857
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
2838
2858
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
2839
2859
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
2840
2860
|
VTable: typeof import('vuetify/components')['VTable']
|
|
2841
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
2842
2861
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
2843
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
2844
2862
|
VTimePicker: typeof import('vuetify/components')['VTimePicker']
|
|
2845
2863
|
VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
|
|
2846
2864
|
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
|
2847
2865
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
2848
2866
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
2867
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
2849
2868
|
VTreeview: typeof import('vuetify/components')['VTreeview']
|
|
2850
2869
|
VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
|
|
2851
2870
|
VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
|
|
2871
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
|
2872
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
2852
2873
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
2853
2874
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
2854
2875
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
2855
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
|
2856
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
2857
2876
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
2858
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
2859
2877
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
2878
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
2860
2879
|
VForm: typeof import('vuetify/components')['VForm']
|
|
2880
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
2861
2881
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
2862
2882
|
VCol: typeof import('vuetify/components')['VCol']
|
|
2863
2883
|
VRow: typeof import('vuetify/components')['VRow']
|
|
2864
2884
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
2865
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
2866
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
2867
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
2868
2885
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
2869
2886
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
2887
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
2888
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
2870
2889
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
2871
2890
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
2872
2891
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
2873
2892
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
2874
2893
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
2875
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
2876
2894
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
|
2877
2895
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
2878
|
-
|
|
2896
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
2879
2897
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
2880
2898
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
2899
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
2881
2900
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
2882
2901
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
2883
2902
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -2895,22 +2914,22 @@ declare module 'vue' {
|
|
|
2895
2914
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
2896
2915
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
2897
2916
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
2898
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
|
2899
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
|
2900
2917
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
2901
2918
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
2902
|
-
|
|
2903
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
2904
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
2919
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
|
2905
2920
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
2906
2921
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
2907
|
-
|
|
2908
|
-
VVideo: typeof import('vuetify/labs/components')['VVideo']
|
|
2909
|
-
VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
|
|
2910
|
-
VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
|
|
2922
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
|
2911
2923
|
VPie: typeof import('vuetify/labs/components')['VPie']
|
|
2912
2924
|
VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
|
|
2913
2925
|
VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
|
|
2926
|
+
VVideo: typeof import('vuetify/labs/components')['VVideo']
|
|
2927
|
+
VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
|
|
2928
|
+
VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
|
|
2929
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
2930
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
2931
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
2932
|
+
VHotkey: typeof import('vuetify/labs/components')['VHotkey']
|
|
2914
2933
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
|
2915
2934
|
VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
|
|
2916
2935
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
package/lib/framework.js
CHANGED